blob: 84f6dc8b7574d318178476c227586218bf98d7a1 (
plain)
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
|
.epigraph {
text-align: right;
}
table {
border-collapse: collapse;
}
table td, table th {
padding: 0 0.25rem;
}
table th {
border-bottom: 1px var(--form-success-bg) solid;
}
table td {
border-bottom: 1px var(--form-success-text) solid;
}
blockquote li > p:only-child {
display: contents;
}
@media screen and (max-width: 800px) {
.site-navigation { /* Override for hard-coded light theme style. */
background: rgba(0, 0, 0, 0.9);
}
}
.site-footer {
a { /* Override for hard-coded light theme style. */
font-size: 14px;
font-family: 'PT Sans', sans-serif;
color: var(--grey-ccc);
text-decoration: none;
@include transition(all .15s ease);
&:hover {
color: var(--grey-555);
}
}
}
|