|
1 |
| -body { |
2 |
| - margin: 0 auto; |
3 |
| - background-color: #f8f8f8; |
4 |
| - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, |
5 |
| - Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; |
6 |
| - color: rgb(0, 0, 0, 87%); |
7 |
| -} |
8 |
| - |
9 |
| -#main-container { |
10 |
| - display: flex; |
11 |
| - flex-direction: column; |
12 |
| - align-items: stretch; |
13 |
| - margin: 0 4px; |
14 |
| -} |
15 |
| - |
16 |
| -@media (min-width: 960px) { |
17 |
| - body { |
18 |
| - width: 960px; |
19 |
| - } |
20 |
| - #main-container { |
21 |
| - flex-direction: row; |
22 |
| - align-items: flex-start; |
23 |
| - margin: 0; |
24 |
| - } |
25 |
| -} |
26 |
| - |
27 |
| -.header { |
28 |
| - color: white; |
29 |
| - background-color: #3f51b5; |
30 |
| - padding: 8px 16px; |
31 |
| - display: flex; |
32 |
| - flex-direction: row; |
33 |
| - align-items: center; |
34 |
| - height: 56px; |
35 |
| -} |
36 |
| - |
37 |
| -.repo-select { |
38 |
| - height: 32px; |
39 |
| - margin: 0 16px; |
40 |
| -} |
41 |
| - |
42 |
| -.repo-container, |
43 |
| -.contributors-container { |
44 |
| - background-color: white; |
45 |
| - flex: 1; |
46 |
| - margin: 8px 4px; |
47 |
| -} |
48 |
| - |
49 |
| -.card-container { |
50 |
| - padding: 16px; |
51 |
| -} |
52 |
| - |
53 |
| -.contributor-header { |
54 |
| - font-size: 0.8rem; |
55 |
| - color: rgb(0, 0, 0, 54%); |
56 |
| - padding: 16px; |
57 |
| -} |
58 |
| - |
59 |
| -.contributor-list { |
60 |
| - list-style-type: none; |
61 |
| - padding: 0; |
62 |
| - margin: 0; |
63 |
| -} |
64 |
| - |
65 |
| -.contributor-item { |
66 |
| - border-bottom: solid 1px rgb(0, 0, 0, 12%); |
67 |
| - padding: 16px; |
68 |
| - display: flex; |
69 |
| - flex-direction: row; |
70 |
| - align-items: center; |
71 |
| - text-decoration: none; |
72 |
| -} |
73 |
| - |
74 |
| -.contributor-item:hover { |
75 |
| - background-color: #eee; |
76 |
| -} |
77 |
| - |
78 |
| -.contributor-avatar { |
79 |
| - border-radius: 3px; |
80 |
| - margin-right: 16px; |
81 |
| -} |
82 |
| - |
83 |
| -.contributor-data { |
84 |
| - flex: 1; |
85 |
| - display: flex; |
86 |
| - flex-direction: row; |
87 |
| - justify-content: space-between; |
88 |
| - align-content: center; |
89 |
| -} |
90 |
| - |
91 |
| -.contributor-badge { |
92 |
| - font-size: 12px; |
93 |
| - padding: 2px 8px; |
94 |
| - line-height: 1rem; |
95 |
| - background-color: gray; |
96 |
| - color: white; |
97 |
| - border-radius: 4px; |
98 |
| -} |
99 |
| - |
100 |
| -table { |
101 |
| - table-layout: fixed; |
102 |
| - color: rgb(0, 0, 0, 81%); |
103 |
| -} |
104 |
| - |
105 |
| -td, |
106 |
| -th { |
107 |
| - vertical-align: top; |
108 |
| -} |
109 |
| - |
110 |
| -th { |
111 |
| - width: 100px; |
112 |
| - min-width: 100px; |
113 |
| - max-width: 100px; |
114 |
| -} |
115 |
| - |
116 |
| -.whiteframe { |
117 |
| - border: none; |
118 |
| - border-radius: 2px; |
119 |
| - background-color: #fff; |
120 |
| - box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), |
121 |
| - 0 3px 3px -2px rgba(0, 0, 0, 0.12); |
122 |
| -} |
123 |
| - |
124 |
| -.alert { |
125 |
| - padding: 0.75rem 1.25rem; |
126 |
| - margin: 4px 0; |
127 |
| - border-radius: 0.25rem; |
128 |
| - flex: 1; |
129 |
| -} |
130 |
| - |
131 | 1 | .alert-error {
|
132 |
| - color: #721c24; |
133 |
| - background-color: #f8d7da; |
| 2 | + color: red; |
134 | 3 | }
|
0 commit comments