static/style.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
:root { font-size: 1rem; --medium-gray: #ddd; --gray: #6a6a6a; } /* make sure the scrollbar is always shown so the width doesnt change between pages */ html { overflow-y: scroll } a img { display: block; border-bottom: none; } a:hover { border-bottom: 1.5px solid var(--gray); background-color: #fafad2; } a { color: black; text-decoration: none; border-bottom: 1.5px solid var(--medium-gray); } sub a { border-bottom: none; } #main, #header, aside, img { /* TODO: i don't knoiw why 89ch works out to 80ch in my thought posts but it does */ margin: 0 auto; max-width: 500px; padding: 0; } li { list-style: none; padding-left: 1em; text-indent: -1em; } li:before { content: "ඞ"; padding-right: 5px; } #header { font-family: monospace; text-align: center; } .center { text-align: center; } .termfont { text-align: center; font-size: 1.2rem; } .datefont { text-align: center; font-style: italic; font-size: 0.7rem; } .thoughtbody { font-size: min(2.5vw, 1rem); max-width: 80ch; font-family: monospace; white-space: pre; display: block; width: auto; overflow-x: auto; /* allows horizontal scrolling */ overflow-y: visible; /* keeps vertical scroll behavior normal */ margin: 20px auto; padding: 20px; } .grayscale { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%); } .abyss { color: gray; text-shadow: 1px 1px 3px black, -1px -1px 3px black, 1px -1px 3px black, -1px 1px 3px black, 0 0 2em black, 0 0 0.8em black, 0 0 5px black, 0 0 10px black, 0 0 15px black; } @keyframes lol { from{ transform: rotate(0deg); } to { transform: rotate(9000deg); } } .lol { animation: lol; animation-duration: 500s; animation-timing-function: ease; animation-fill-mode: forwards; animation-delay: 1s; } .box{ border: 2px dashed #888; margin: 0 auto; width: 320px; height: 140px; position: relative; } .box b { position: absolute; -webkit-animation: moveX 2s linear 0s infinite alternate, moveY 3.4s linear 0s infinite alternate; -moz-animation: moveX 2s linear 0s infinite alternate, moveY 3.4s linear 0s infinite alternate; -o-animation: moveX 2s linear 0s infinite alternate, moveY 3.4s linear 0s infinite alternate; animation: moveX 2s linear 0s infinite alternate, moveY 3.4s linear 0s infinite alternate; } @-webkit-keyframes moveX { from { left: 0; } to { left: 280px; } } @-moz-keyframes moveX { from { left: 0; } to { left: 280px; } } @-o-keyframes moveX { from { left: 0; } to { left: 280px; } } @keyframes moveX { from { left: 0; } to { left: 280px; } } @-webkit-keyframes moveY { from { top: 0; } to { top: 100px; } } @-moz-keyframes moveY { from { top: 0; } to { top: 100px; } } @-o-keyframes moveY { from { top: 0; } to { top: 100px; } } @keyframes moveY { from { top: 0; } to { top: 100px; } }