-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (102 loc) · 1.67 KB
/
styles.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
119
120
121
122
:root {
--link-color: rgba(0, 123, 167)
}
body {
font-family: 'Source Sans Pro', sans-serif;
font-size: 18px;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
padding: 0 20px;
}
section {
padding: 24px 20px;
border-top: 1px solid rgba(167, 167, 167, 0.5);
}
section:first-child {
border-top: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Gotu', sans-serif;
line-height: 1.2;
}
h3, h4 {
margin: 1.5em 0 0;
}
a {
color: var(--link-color);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
blockquote {
border-left-width: 2px;
border-left-color: black;
border-left-style: solid;
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-left: 1em;
font-style: italic;
}
kbd {
font-weight: 700;
}
.button {
--link-color: rgb(0, 167, 123);
display: inline-block;
padding: 0.5em 1em;
margin: 0.5em 0;
font-size: 1.111em;
line-height: 1;
text-decoration: none;
border-radius: 4px;
color: white;
background-color: var(--link-color);
}
.button.large {
font-size: 1.33em;
}
.button:hover {
text-decoration: none;
}
table {
border-collapse: collapse;
}
td {
padding: 1em;
border-bottom: 1px solid rgba(167, 167, 167, 0.5)
}
table caption {
padding: 1em;
font-size: 14px;
caption-side: bottom;
text-align: left;
font-style: italic;
}
@media (max-width: 500px) {
td:first-child, table caption {
padding-left: 0;
}
td:first-child::after {
font-size: 14px;
content: "6:00pm\00a0 ET";
display: block;
}
td:last-child, table caption {
padding-right: 0;
}
td:nth-child(2) {
display: none;
}
}