]>
Commit | Line | Data |
---|---|---|
a13e3f35 BB |
1 | html { |
2 | font-size: 10px; | |
3 | } | |
4 | ||
c412c76b | 5 | body { |
35ed3bd3 | 6 | margin: 0; |
967d51a0 BB |
7 | background-color: white; |
8 | font-family: times, 'Times New Roman', serif; | |
89539330 | 9 | } |
967d51a0 | 10 | |
a13e3f35 | 11 | header a, header a:visited { |
967d51a0 BB |
12 | color: black; |
13 | } | |
14 | ||
cdfb33f1 | 15 | h1, h2 { |
beaf2913 | 16 | display: inline-block; |
633769f9 | 17 | margin-left: 1rem; |
b157bf19 | 18 | font-weight: 300; |
16b61d2c BB |
19 | } |
20 | ||
50a2afb6 | 21 | header { |
a13e3f35 BB |
22 | margin: -0.3em 0 0 -0.1em; |
23 | font-size: 9.6em; | |
24 | font-style: italic; | |
25 | text-transform: uppercase; | |
967d51a0 BB |
26 | } |
27 | ||
cdfb33f1 | 28 | h1, h2 { |
a13e3f35 | 29 | font-size: 4.8em; |
16b61d2c BB |
30 | } |
31 | ||
c412c76b | 32 | a { |
967d51a0 | 33 | color: blue; |
89539330 BB |
34 | } |
35 | ||
967d51a0 BB |
36 | a:visited { |
37 | color: purple; | |
89539330 BB |
38 | } |
39 | ||
35ed3bd3 | 40 | ul, p { |
633769f9 | 41 | font-size: 1.8rem; |
a13e3f35 BB |
42 | line-height: 1.28em; |
43 | margin-left: 1em; | |
44 | max-width: 50em; | |
45 | font-family: 'Helvetica Neue', Arial, sans-serif; | |
35ed3bd3 BB |
46 | } |
47 | ||
50a2afb6 BB |
48 | li { |
49 | display: block; | |
89539330 BB |
50 | } |
51 | ||
633769f9 | 52 | li p { |
beaf2913 | 53 | display: inline-block; |
967d51a0 | 54 | line-height: 1.82em; |
633769f9 | 55 | margin: 0; |
967d51a0 | 56 | } |
35ed3bd3 | 57 | |
50a2afb6 | 58 | span { |
a13e3f35 BB |
59 | display: inline; |
60 | color: grey; | |
61 | } | |
62 | ||
35ed3bd3 BB |
63 | img, |
64 | video { | |
50a2afb6 | 65 | display: block; |
35ed3bd3 BB |
66 | max-width: 100vw; |
67 | } | |
bb31ec9c | 68 | |
cdfb33f1 | 69 | header a, h1, h2, p { |
beaf2913 BB |
70 | background-color: white; |
71 | } | |
72 | ||
bb31ec9c BB |
73 | /* Dark mode overrides */ |
74 | @media (prefers-color-scheme: dark) { | |
75 | body { | |
09522cce | 76 | background-color: black; |
bb31ec9c BB |
77 | color: white; |
78 | } | |
79 | ||
50a2afb6 | 80 | header a, header a:visited { |
bb31ec9c BB |
81 | color: white; |
82 | } | |
83 | ||
84 | a { | |
85 | color: #53FFFF; | |
86 | } | |
87 | ||
88 | a:visited { | |
89 | color: #FF55FF; | |
90 | } | |
a13e3f35 BB |
91 | |
92 | a[href^="telnet"] { | |
93 | color: #55FF55; | |
94 | } | |
95 | ||
50a2afb6 | 96 | span { |
a13e3f35 BB |
97 | color: #FFEC27; |
98 | } | |
beaf2913 | 99 | |
cdfb33f1 | 100 | header a, h1, h2, p { |
beaf2913 BB |
101 | background-color: black; |
102 | } | |
103 | } | |
104 | ||
105 | /* | |
106 | * Mini header | |
107 | */ | |
108 | @media (max-width: 600px) { | |
50a2afb6 | 109 | header { |
beaf2913 BB |
110 | font-size: 4.8em; |
111 | } | |
112 | } | |
113 | ||
114 | /* | |
115 | * Breadsticks | |
116 | */ | |
117 | canvas.background { | |
118 | width: 100%; | |
119 | height: 100%; | |
120 | position: fixed; | |
121 | top: 0; | |
122 | left: 0; | |
123 | z-index: -1; | |
bb31ec9c | 124 | } |