-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
118 lines (100 loc) · 1.78 KB
/
style.css
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
background: #111;
font-family: sans-serif;
}
.perc-pos {
color: green !important;
}
.perc-neg {
color: red !important;
}
.mobile {
display: none;
}
.mobile-body {
font-size: 0.8rem;
color: #fff;
text-align: center;
margin-left: auto;
margin-right: auto;
}
.mobile-body a {
color: #fff;
text-decoration: none;
}
hr {
height: 1px;
border: none;
background-color: #ccc;
}
.btn-wrapper {
margin: 35px;
}
.btn {
background-color: #F7931A;
color: white;
font-weight: bold;
padding: 7px 10px;
text-decoration: none;
}
.progress-bar-wrapper {
width: 98%;
text-align: left;
}
.progress-bar {
width: 100%;
background-color: #4d4d4e;
padding: 3px;
border-radius: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
}
.progress-bar-fill {
display: block;
height: 22px;
background-color: #F7931A;
border-radius: 3px;
float: left;
margin: -2px 10px 2px -2px;
}
.percentage-text {
display: inline;
color: #F7931A;
font-size: 0.95rem;
}
/* Map */
.svgMap-map-wrapper {
background: #111 !important;
}
/* GitHub Repository Link */
.github-fork-ribbon:before {
background: #F7931A !important;
}
@media (max-width : 960px) {
h1 {
font-size: 1.2rem;
color: #F7931A;
text-align: center;
}
.mobile {
display: block;
}
footer {
color: #fff;
font-size: 0.7rem;
text-align: center;
margin-left: auto;
margin-right: auto;
}
footer i {
font-size: 2rem;
padding: 1rem 1rem 0rem 1rem;
}
footer a {
color: #fff;
text-decoration: none;
}
/* GitHub Repository Link */
.github-fork-ribbon {
display: none;
}
}