forked from jojototh/btcp-roadmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (50 loc) · 840 Bytes
/
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
body {
font-family: ubuntu, sans-serif;
font-size: 20px;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
i {
font-style: normal;
font-weight: bold;
}
.roadmap {
margin-top: 80px;
color: #272D63;
line-height: 48px;
}
.date {
color: #444;
font-style: italic;
font-weight: lighter;
}
.goal {
font-style: italic;
}
.status {
background: url(status.png);
background-repeat: repeat-y;
background-position: center;
font-size: 32px;
}
.done {
color: #00A950;
}
.in-progress {
color: #FFAD05;
}
.sub {
line-height: 21px;
font-size: 14px;
}
@media (max-width: 575px) {
.roadmap, .date, .goal {
text-align: center!important;
}
}