-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
executable file
·70 lines (58 loc) · 1.13 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
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Work+Sans:300,400,600,700&display=swap");
* {
font-family: "Work Sans";
}
h1.hero {
font-weight: 300;
color: #218c74;
}
ul.reading {
padding: 16px;
}
h2.hero {
color: #218c74;
}
img.header {
margin-top: 32px;
width: 100%;
}
.bg-mc {
background-color: #218c74;
}
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
border: 1px solid white;
}
a.link {
border: 2px solid green;
border-radius: 2px;
font-weight: light;
width: auto;
font-size: 14px;
color: green;
padding-left: 2px;
padding-right: 2px;
white-space: nowrap;
}
a.link:visited {
color: green;
}
a.link:hover {
color: white;
text-decoration: none;
background-color: green;
}
footer {
font-size: 10px;
text-align: center;
}
/* detecting mobile */
@media (pointer: none), (pointer: coarse) {
table {
font-size: 8px;
}
}