aboutsummaryrefslogtreecommitdiff
path: root/assets/css/custom.css
blob: d23b92ca01165c08950f59df5a4d490ec097acab (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
.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;
}

@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);
    }
  }
}