css/main.css

06351d7c41b4bcbccd1198747d5762378b3fddc5 · 4.3 KB · 229 lines raw

1 @font-face {
2 font-family: 'Comic';
3 src: url('/css/comic.ttf') format('truetype');
4 font-display: swap;
5 }
6
7 .trail {
8 position: absolute;
9 z-index: 9999;
10 cursor-events: none;
11 }
12
13 body {
14 font-family: 'Comic';
15 color: yellow;
16 font-size: 20px;
17 margin: 0;
18 padding: 0;
19 overflow-x: hidden;
20 }
21 #overview {
22 min-width: min-content;
23 max-width: max-content;
24 margin: 0 auto;
25 }
26 #tuxDiv {
27 background: url(/index_files/Tux_Mono.svg.png) repeat;
28 height: 300px;
29 width: 100%;
30 }
31 #penDiv {
32 background: url(/index_files/penguin-bod.webp) repeat;
33 height: 900px;
34 width: 100%;
35 }
36 #mainBod {
37 background-image: url(/index_files/Apex_3D_Logo_2_.png);
38 background-repeat: repeat;
39 background-color: #a25300;
40 border: 70px solid;
41 min-height: 100vh;
42 box-sizing: border-box;
43 border-image: url(/index_files/dollarspindownd.gif) 50 / 6 / 0 stretch;
44 }
45 #linhead {
46 background: white;
47 color: black;
48 }
49 .lincontent {
50 color: black;
51 vertical-align: top;
52 width: 40%;
53 }
54 .navctr {
55 margin-bottom: 30px;
56 height: 36px;
57 min-width: min-content;
58 max-width: max-content;
59 background-color: black;
60 color: white;
61 border: 1px solid #e5e5e5;
62 }
63
64 .nav > ul > li:last-child > a {
65 border-right: 0;
66 }
67 .nav-img {
68 height: 15px;
69 }
70 .nav-link {
71 padding-right: 12px;
72 padding-left: 12px;
73 padding-bottom: 11px;
74 padding-top: 11px;
75 line-height: 16px;
76 margin: 0;
77 border-left: 1px solid #f5f5f5;
78 border-right: 1px solid #f5f5f5;
79 border-bottom: 1px solid #f5f5f5;
80 border-radius: 0;
81 color: yellow;
82 background: black;
83 display: block;
84 }
85 .nav-link:hover {
86 padding-left: 13px;
87 background: yellow;
88 color: black;
89 border-right-color: #ddd;
90 border-left: 0;
91 }
92 .addBanner {
93 width: 469px;
94 margin: auto;
95 height: 80px;
96 text-align: center;
97 font-family: "Comic Sans MS", sans-serif;
98 line-height: 80px;
99 background-color: white;
100 color: darkblue;
101 }
102 .apexAlert {
103 color: #00cfff !important;
104 text-decoration: none;
105 font-size: 40px;
106 line-height: 35px;
107 }
108 .nav {
109 margin: 0 0 10px 0px;
110 padding: 0;
111 list-style: none;
112 }
113 .container {
114 margin: auto;
115 width: 75%;
116 }
117 blink {
118 animation: blink 1s linear infinite;
119 }
120 @keyframes blink {
121 0% {
122 opacity: 0;
123 }
124 40% {
125 opacity: 0;
126 }
127 41% {
128 opacity: 1;
129 }
130 99% {
131 opacity: 1;
132 }
133 100% {
134 opacity: 0;
135 }
136 }
137 .subhead {
138 padding-bottom: 0;
139 margin-bottom: 9px;
140 }
141 li {
142 float: left;
143 line-height: 20px;
144 list-style: none;
145 }
146
147 html.dither>body>div{
148 background: url("data:image/webp;base64,UklGRjAAAABXRUJQVlA4TCQAAAAvA8AAAIVS27ahb3uzOUmSJoqqrOq6P47of8DQdcprYdP8/VY=");
149 filter: contrast(2000);
150 image-rendering: crisp-edges;
151 }
152 html.dither>body>div>div{
153 filter: initial;
154 mix-blend-mode: soft-light;
155 isolation: isolate;
156 image-rendering: initial;
157 }
158
159 #eyes {
160 display: inline-block;
161 }
162
163 #eyes>summary {
164 cursor: pointer;
165 font-size: 0;
166 }
167
168 #eyes[open]>div {
169 position: fixed;
170 top: 0;
171 left: 0;
172 width: 100%;
173 height: 100%;
174 background-color: black;
175 z-index: 9999;
176 pointer-events: none;
177 }
178
179 @font-face {
180 font-family: "MiiverseSymbols";
181 src: url('MiiverseSymbols-Regular.ttf');
182 src: url('MiiverseSymbols-Regular.eot') format('embedded-opentype'), url('MiiverseSymbols-Regular.woff') format('woff'), url('MiiverseSymbols-Regular.ttf') format('truetype');
183 font-weight: normal;
184 font-style: normal;
185 }
186
187 #yeah, #yeah div {
188 vertical-align: top;
189 }
190 #yeah-toggle:checked+label>#yeah-off {
191 display: none;
192 }
193 #yeah-toggle:not(:checked)+label>#yeah-on {
194 display: none;
195 }
196 #yeah div {
197 font-family: 'Helvetica', 'Arial', sans-serif;
198 cursor: pointer;
199 display: inline-block;
200 margin: 0 auto;
201 padding: 3px 5px 2px;
202 border: 1px solid #ddd;
203 border-bottom-color: #ccc;
204 background: #FFF;
205 font-size: 12px;
206 color: #323232;
207 text-align: center;
208 -webkit-border-radius: 5px;
209 -moz-border-radius: 5px;
210 -ms-border-radius: 5px;
211 -o-border-radius: 5px;
212 border-radius: 5px;
213 -webkit-box-shadow: inset 0 1px 0 #fff;
214 -moz-box-shadow: inset 0 1px 0 #fff;
215 -ms-box-shadow: inset 0 1px 0 #fff;
216 -o-box-shadow: inset 0 1px 0 #fff;
217 box-shadow: inset 0 1px 0 #fff;
218 }
219 #yeah div::before {
220 font-family: "MiiverseSymbols", sans-serif !important;
221 font-weight: normal !important;
222 content: "E";
223 font-size: 16px;
224 color: #969696;
225 margin-right: 2px;
226 margin-top: -3px;
227 display: inline-block;
228 vertical-align: middle;
229 }