diff options
author | tint <tint@tint.red> | 2022-11-23 14:27:50 -0500 |
---|---|---|
committer | tint <tint@tint.red> | 2022-11-23 14:27:50 -0500 |
commit | 6137c09543ea99816ef6563c6e5125f1b2ec0fba (patch) | |
tree | e46d80a46fdba60ce4b1401598f4633544791ec9 /css/main.css | |
parent | 098fd71380e856b1cd1570e1cb482ef73c725cff (diff) |
adds one (1) line of js. and a bunch of css
Diffstat (limited to 'css/main.css')
-rw-r--r-- | css/main.css | 55 |
1 files changed, 46 insertions, 9 deletions
diff --git a/css/main.css b/css/main.css index b81c375..4b612c4 100644 --- a/css/main.css +++ b/css/main.css | |||
@@ -4,6 +4,8 @@ body { | |||
4 | sans-serif; | 4 | sans-serif; |
5 | color: yellow; | 5 | color: yellow; |
6 | font-size: 20px; | 6 | font-size: 20px; |
7 | margin: 0; | ||
8 | padding: 0; | ||
7 | } | 9 | } |
8 | #overview { | 10 | #overview { |
9 | min-width: min-content; | 11 | min-width: min-content; |
@@ -20,17 +22,20 @@ body { | |||
20 | height: 900px; | 22 | height: 900px; |
21 | width: 100%; | 23 | width: 100%; |
22 | } | 24 | } |
25 | body>div { | ||
26 | height: 100vh; | ||
27 | } | ||
28 | body>div>div { | ||
29 | height: 100%; | ||
30 | } | ||
23 | #mainBod { | 31 | #mainBod { |
24 | background: url(/index_files/Apex_3D_Logo_2_.png) repeat; | 32 | background-image: url(/index_files/Apex_3D_Logo_2_.png); |
25 | border: 70px solid; | 33 | background-repeat: repeat; |
34 | background-color: #a25300; | ||
35 | border: 70px solid; | ||
26 | content: ""; | 36 | content: ""; |
27 | opacity: 0.75; | 37 | height: 100%; |
28 | top: 0; | 38 | box-sizing: border-box; |
29 | left: 0; | ||
30 | bottom: 0; | ||
31 | right: 0; | ||
32 | position: absolute; | ||
33 | z-index: -1; | ||
34 | border-image: url(/index_files/dollarspindownd.gif) 50 / 6 / 0 stretch; | 39 | border-image: url(/index_files/dollarspindownd.gif) 50 / 6 / 0 stretch; |
35 | } | 40 | } |
36 | #linhead { | 41 | #linhead { |
@@ -134,3 +139,35 @@ li { | |||
134 | line-height: 20px; | 139 | line-height: 20px; |
135 | list-style: none; | 140 | list-style: none; |
136 | } | 141 | } |
142 | |||
143 | html.dither>body>div{ | ||
144 | background: url("data:image/webp;base64,UklGRjAAAABXRUJQVlA4TCQAAAAvA8AAAIVS27ahb3uzOUmSJoqqrOq6P47of8DQdcprYdP8/VY="); | ||
145 | filter: contrast(2000); | ||
146 | image-rendering: crisp-edges; | ||
147 | } | ||
148 | html.dither>body>div>div{ | ||
149 | filter: initial; | ||
150 | mix-blend-mode: soft-light; | ||
151 | isolation: isolate; | ||
152 | image-rendering: initial; | ||
153 | } | ||
154 | |||
155 | #eyes { | ||
156 | display: inline-block; | ||
157 | } | ||
158 | |||
159 | #eyes>summary { | ||
160 | cursor: pointer; | ||
161 | font-size: 0; | ||
162 | } | ||
163 | |||
164 | #eyes[open]>div { | ||
165 | position: fixed; | ||
166 | top: 0; | ||
167 | left: 0; | ||
168 | width: 100%; | ||
169 | height: 100%; | ||
170 | background-color: black; | ||
171 | z-index: 9999; | ||
172 | pointer-events: none; | ||
173 | } | ||