]> git.r.bdr.sh - rbdr/r.bdr.sh/blame_incremental - jekyll/css/application.css
Correct the sorting hat URL
[rbdr/r.bdr.sh] / jekyll / css / application.css
... / ...
CommitLineData
1html {
2 font-size: 10px;
3}
4
5body {
6 margin: 0;
7 background-color: white;
8 font-family: times, 'Times New Roman', serif;
9}
10
11header a, header a:visited {
12 color: black;
13}
14
15h2,
16h3 {
17 margin-left: 10px;
18 font-weight: 300;
19}
20
21h1 {
22 margin: -0.3em 0 0 -0.1em;
23 font-size: 9.6em;
24 font-style: italic;
25 text-transform: uppercase;
26}
27
28h2 {
29 font-size: 4.8em;
30}
31
32a {
33 color: blue;
34}
35
36a:visited {
37 color: purple;
38}
39
40ul, p {
41 font-size: 1.8em;
42 line-height: 1.28em;
43 margin-left: 1em;
44 max-width: 50em;
45 font-family: 'Helvetica Neue', Arial, sans-serif;
46}
47
48ul {
49 list-style: square;
50}
51
52li {
53 line-height: 1.82em;
54}
55
56aside {
57 display: inline;
58 color: grey;
59}
60
61img,
62video {
63 max-width: 100vw;
64}
65
66/* Dark mode overrides */
67@media (prefers-color-scheme: dark) {
68 body {
69 background-color: black;
70 color: white;
71 }
72
73 h1 a, h1 a:visited {
74 color: white;
75 }
76
77 a {
78 color: #53FFFF;
79 }
80
81 a:visited {
82 color: #FF55FF;
83 }
84
85 a[href^="telnet"] {
86 color: #55FF55;
87 }
88
89 aside {
90 color: #FFEC27;
91 }
92}