forked from HackYourFuture/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (86 loc) · 1.72 KB
/
style.css
File metadata and controls
104 lines (86 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body {
width: 768px;
margin-left: auto;
margin-right: auto;
background-color: #529c20;
font-family: "Roboto", sans-serif;
color: rgb(0, 0, 0, 87%);
margin-top: 0;
}
#container {
margin: 0;
flex-direction: column;
align-items: stretch;
}
.header {
color: white;
margin-bottom: 16px;
display: flex;
flex-direction: row;
align-items: center;
}
.selector {
margin-left: 16px;
font-size: 14px;
width: 250px;
height: 32px;
padding: 2px;
}
.left-div,
.right-div {
background-color: rgb(226, 223, 7);
flex: 1;
}
.left-div {
padding: 16px;
margin-right: 16px;
}
.contributor-list {
list-style-type: none;
padding: 0;
margin: 0;
}
.alert {
padding: 0.75rem 1.25rem;
margin-bottom: 1rem;
border-radius: 0.25rem;
flex: 1;
}
.alert-error {
color: #34c018;
background-color: #d7e8f8;
}
.contributor-header {
font-size: 0.8rem;
color: rgb(0, 0, 0, 54%);
padding: 8px 16px 4px 16px;
}
.contributor-avatar {
border-radius: 3px;
margin-right: 16px;
height: 48px;
}
.contributor-badge {
font-size: 12px;
padding: 2px 8px;
line-height: 1rem;
background-color: rgb(134, 17, 17);
color: white;
border-radius: 4px;
}
table {
table-layout: fixed;
color: rgb(0, 0, 0, 81%);
}
.whiteframe {
margin-bottom: 8px;
border: none;
border-radius: 2px;
background-color: #fff;
box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14),
0 3px 3px -2px rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
body {
width: 100%;
}