Update UI font stacj in all themes to include GW-Symbols
[lw2-viewer.git] / www / css / style-dark.mac.css
blobec105ea499c3d74d988f3d690709fd57591f3b55
1 body {
2 --invertible-display: none;
3 --inverted-display: initial;
5 /*************/
6 /* VARIABLES */
7 /*************/
9 :root {
10 --GW-comment-background-color-odd: transparent;
11 --GW-comment-background-color-even: transparent;
12 --GW-comment-background-color-target: transparent;
14 --inverted-display: none;
17 /***************/
18 /* BASE LAYOUT */
19 /***************/
21 html {
22 box-sizing: border-box;
23 font-size: 16px;
25 *, *::before, *::after {
26 box-sizing: inherit;
28 script {
29 display: none !important;
32 /*=------=*/
33 /*= Body =*/
34 /*=------=*/
36 body {
37 padding: 0;
38 margin: 0;
40 body::before {
41 background-color: inherit;
42 position: fixed;
43 width: 100%;
44 height: 100%;
47 body.no-scroll {
48 overflow-y: scroll;
49 position: fixed;
50 width: 100%;
53 /*=----------------------------=*/
54 /*= Immediate children of body =*/
55 /*=----------------------------=*/
57 body > * {
58 max-width: 900px;
61 /* Special styles for special browsers.
62 (This one is a fix for Firefox’s built-in screenshot feature.)
64 body > iframe[id^='firefox-screenshots'] {
65 max-width: unset;
68 #content {
69 margin: 0 auto;
70 padding: 0 30px;
71 position: relative;
72 overflow: visible;
73 display: grid;
74 grid-template-columns: 2fr 1fr 2fr;
76 #content::before {
77 content: "";
78 display: block;
79 position: absolute;
80 top: 0;
81 left: 0;
82 width: 100%;
83 height: 100%;
84 z-index: -1;
85 pointer-events: none;
88 /*=---------=*/
89 /*= Content =*/
90 /*=---------=*/
92 #content > * {
93 grid-column: 1 / span 3;
96 /*=----------------------=*/
97 /*= Floating UI elements =*/
98 /*=----------------------=*/
100 #ui-elements-container {
101 position: fixed;
102 height: 100vh;
103 top: 0;
104 left: 0;
105 right: 0;
106 margin: auto;
107 z-index: 10000;
108 pointer-events: none;
110 #ui-elements-container > * {
111 pointer-events: auto;
114 /*=----------------=*/
115 /*= Images overlay =*/
116 /*=----------------=*/
117 /* (To exclude images in posts from theme tweaks) */
119 #images-overlay {
120 position: absolute;
121 z-index: 1;
122 left: 0;
123 right: 0;
124 margin: auto;
127 /***********/
128 /* NAV BAR */
129 /***********/
131 .nav-bar {
132 margin: 0 -30px;
133 display: flex;
134 order: -11;
135 z-index: 1;
138 /*=---------------=*/
139 /*= Nav bar items =*/
140 /*=---------------=*/
142 .nav-item {
143 flex: 1 1 auto;
145 .nav-item * {
146 text-overflow: ellipsis;
147 white-space: nowrap;
148 overflow: hidden;
150 .nav-inner {
151 padding: 12px 30px;
152 text-align: center;
153 display: block;
154 position: relative;
156 .nav-bar-top:not(#primary-bar) .nav-inner {
157 padding: 4px 0;
160 #nav-item-sequences .nav-inner::before {
161 font-family: "Font Awesome", "Font Awesome 5 Free";
162 content: "\F5DB";
164 @media only screen and (min-width: 901px) {
165 #nav-item-about .nav-inner {
166 margin-right: 0.5em;
168 #nav-item-sequences .nav-inner::before {
169 font-size: 1rem;
170 display: block;
172 #secondary-bar #nav-item-sequences .nav-inner {
173 font-size: 0;
174 line-height: 1.4;
178 /*=------------=*/
179 /*= Bottom bar =*/
180 /*=------------=*/
182 #bottom-bar {
183 order: 11;
185 h1.listing ~ #bottom-bar {
186 margin-top: 1.25em;
188 #bottom-bar .nav-item {
189 flex: 1 1 0;
192 /*=-----------------=*/
193 /*= Accesskey hints =*/
194 /*=-----------------=*/
196 .nav-inner::after {
197 content: attr(accesskey);
198 display: none;
201 /*=---------------=*/
202 /*= Pagination UI =*/
203 /*=---------------=*/
205 #bottom-bar .nav-item a::before,
206 #top-nav-bar a::before {
207 font-family: "Font Awesome", "Font Awesome 5 Free";
208 font-weight: 900;
209 font-size: 0.8em;
210 position: relative;
211 bottom: 1px;
212 margin-right: 0.5em;
214 #bottom-bar #nav-item-first a::before,
215 #top-nav-bar a.nav-item-first::before {
216 content: "\F33e";
218 #bottom-bar #nav-item-top a::before {
219 content: "\F062";
221 #bottom-bar #nav-item-prev a::before,
222 #top-nav-bar a.nav-item-prev::before {
223 content: "\F060";
225 #bottom-bar #nav-item-next a::before,
226 #top-nav-bar a.nav-item-next::before {
227 content: "\F061";
229 #bottom-bar #nav-item-last a::before,
230 #top-nav-bar a.nav-item-last::before {
231 content: "\F340";
233 #bottom-bar #nav-item-next a::before {
234 margin-left: -2em;
235 margin-right: 0;
236 left: 3.8em;
238 #bottom-bar #nav-item-last a::before {
239 margin-left: -1.8em;
240 margin-right: 0;
241 left: 3.4em;
244 /*= Hover tooltips =*/
246 #top-nav-bar a {
247 position: relative;
249 #top-nav-bar a::after {
250 bottom: calc(100% - 3px);
251 content: attr(data-target-page);
253 #top-nav-bar a::after {
254 display: block;
255 position: absolute;
256 font-size: 0.75rem;
257 width: 100%;
258 line-height: 1;
259 visibility: hidden;
261 #top-nav-bar a:hover::after,
262 #bottom-bar a:hover::after {
263 visibility: visible;
266 /*=-----------------------=*/
267 /*= Decorative bottom bar =*/
268 /*=-----------------------=*/
269 /* (On short pages with no pagination) */
271 #bottom-bar.decorative {
272 position: relative;
274 #bottom-bar.decorative .nav-item {
275 display: none;
278 /*=------------=*/
279 /*= Search tab =*/
280 /*=------------=*/
282 #nav-item-search {
283 flex: 4 1 auto;
285 #nav-item-search form::before {
286 content: "\F002";
287 font-family: "Font Awesome", "Font Awesome 5 Free";
288 font-weight: 900;
289 display: inline-block;
290 vertical-align: top;
291 height: 23px;
292 width: 23px;
294 #nav-item-search input {
295 height: 23px;
296 width: calc(95% - 80px);
297 padding: 1px 4px;
299 #nav-item-search button {
300 height: 21px;
303 /*=-----------=*/
304 /*= Login tab =*/
305 /*=-----------=*/
307 #nav-item-login {
308 position: relative;
309 padding-right: 0.5em;
312 /*******************/
313 /* INBOX INDICATOR */
314 /*******************/
316 #inbox-indicator {
317 position: absolute;
318 top: 1px;
319 right: 0;
320 height: 100%;
321 visibility: hidden;
323 #inbox-indicator::before {
324 content: "\F0E0";
325 font-family: "Font Awesome", "Font Awesome 5 Free";
326 color: #393939;
327 font-size: 1.1875rem;
328 position: absolute;
329 height: 100%;
330 right: 0;
331 top: 0;
332 padding: 0 0.45em;
333 visibility: visible;
334 font-weight: 900;
336 #inbox-indicator.new-messages::before {
337 color: #0090e0;
338 text-shadow:
339 0 0 1px #777,
340 0.5px 0.5px 1px #777;
342 a#inbox-indicator:hover::before {
343 color: #000;
344 text-shadow:
345 0 0 1px #fff,
346 0 0 2px #fff,
347 0 0 4px #fff,
348 0 0 1px #777,
349 0.5px 0.5px 1px #777;
351 a#inbox-indicator.new-messages:hover::before {
352 text-shadow:
353 0 0 1px #0090e0,
354 0 0 2px #0090e0,
355 0 0 4px #0090e0,
356 0 0 1px #777,
357 0.5px 0.5px 1px #777;
360 /****************/
361 /* PAGE TOOLBAR */
362 /****************/
364 .page-toolbar {
365 font-size: 0.9em;
366 line-height: 1.8;
367 text-align: right;
368 margin-right: -20px;
370 #content > .page-toolbar {
371 grid-column: 3;
372 grid-row: span 3;
374 #content.user-page > .page-toolbar {
375 grid-column: 2 / span 2;
376 order: -4;
379 /*=--------------------------=*/
380 /*= Page toolbar items (all) =*/
381 /*=--------------------------=*/
383 .page-toolbar > * {
384 display: inline-block;
385 margin-left: 1.5em;
387 .page-toolbar > form button {
388 padding: 0;
389 text-align: right;
390 white-space: unset;
392 .page-toolbar > form button::before {
393 text-align: center;
395 .page-toolbar .button::before {
396 font-family: "Font Awesome", "Font Awesome 5 Free";
397 font-size: 0.9em;
398 padding-right: 0.3em;
401 /*=-------------------------------=*/
402 /*= Page toolbar items (specific) =*/
403 /*=-------------------------------=*/
405 .new-post::before {
406 content: '\F067';
407 font-weight: 900;
409 .new-private-message::before {
410 content: '\F075';
411 font-weight: 400;
413 .logout-button::before {
414 content: '\F2F5';
415 font-weight: 900;
417 #enable-push-notifications::before {
418 content: '\F0F3';
419 font-weight: 400;
421 .ignore-button::before {
422 content: "\F070";
423 font-weight: 400;
425 .unignore-button::before {
426 content: "\F06E";
427 font-weight: 400;
429 .rss::before {
430 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
431 display: inline-block;
432 width: 1em;
433 padding-right: 0.2em;
434 position: relative;
435 top: 1px;
438 /*********************/
439 /* TOP PAGINATION UI */
440 /*********************/
442 #top-nav-bar {
443 grid-column: 2;
444 margin: 0.25em 0 0 0;
445 padding: 0.75em 0 0 0;
446 text-align: center;
447 font-size: 1.25em;
448 display: flex;
449 justify-content: center;
451 #top-nav-bar a {
452 line-height: 1;
454 #top-nav-bar a.disabled {
455 pointer-events: none;
456 visibility: hidden;
458 #top-nav-bar .page-number {
459 position: relative;
460 display: inline-block;
461 width: 1.5em;
463 #top-nav-bar .page-number-label {
464 position: absolute;
465 font-size: 0.5em;
466 text-transform: uppercase;
467 width: 100%;
468 bottom: 90%;
469 left: 0;
471 #top-nav-bar a::before {
472 margin: 0.5em;
473 display: inline-block;
476 /****************/
477 /* SUBLEVEL NAV */
478 /****************/
480 .sublevel-nav {
481 text-align: center;
482 display: flex;
483 justify-content: center;
484 margin: 1em 0 0 0;
486 #content > .sublevel-nav:not(.sort) {
487 grid-column: 2;
488 align-self: start;
490 .sublevel-nav .sublevel-item {
491 flex: 0 0 6em;
492 padding: 0.125em 0.5em;
493 font-size: 1.125rem;
495 .sublevel-nav .sublevel-item:active {
496 transform: none;
498 .sublevel-nav .sublevel-item.selected {
499 cursor: default;
502 /***********************/
503 /* SORT ORDER SELECTOR */
504 /***********************/
506 .sublevel-nav.sort {
507 position: relative;
508 margin-top: 8px;
509 font-size: 0.75em;
511 #content > .sublevel-nav.sort {
512 grid-column: 3;
513 grid-row: span 2;
514 justify-self: end;
515 align-self: start;
516 flex-flow: column;
518 #content.index-page > .sublevel-nav.sort {
519 grid-column: 1;
520 justify-self: start;
521 flex-flow: row;
524 .sublevel-nav.sort::before {
525 content: "Sort";
526 font-size: 0.75rem;
527 position: absolute;
528 top: 0;
529 left: 0;
530 width: 100%;
532 .sublevel-nav.sort .sublevel-item {
533 line-height: 1;
534 font-size: 0.875rem;
535 flex-basis: unset;
538 /*******************************/
539 /* COMMENTS SORT MODE SELECTOR */
540 /*******************************/
542 .comments > .sublevel-nav.sort {
543 margin: 1em auto 0 auto;
545 @supports (width: -moz-fit-content) {
546 .comments > .sublevel-nav.sort {
547 width: -moz-fit-content;
550 @supports (width: fit-content) {
551 .comments > .sublevel-nav.sort {
552 width: fit-content;
556 /******************/
557 /* WIDTH SELECTOR */
558 /******************/
560 #width-selector {
561 position: absolute;
562 top: 4px;
563 right: -78px;
565 #width-selector button {
566 width: 22px;
567 height: 22px;
568 padding: 6px;
569 margin: 1px;
570 overflow: hidden;
571 background-repeat: no-repeat;
572 background-size: 100%;
573 background-origin: content-box;
575 #width-selector button,
576 #width-selector button:active,
577 #width-selector button:focus {
578 text-shadow: none;
579 color: transparent;
581 #width-selector button:disabled {
582 cursor: auto;
584 #width-selector button.select-width-normal {
585 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
587 #width-selector button.select-width-wide {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
590 #width-selector button.select-width-fluid {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
594 /*=----------------=*/
595 /*= Hover tooltips =*/
596 /*=----------------=*/
598 #width-selector button::after {
599 content: attr(data-name);
600 position: absolute;
601 display: block;
602 left: 0;
603 width: 100%;
604 text-align: center;
605 top: 56px;
606 visibility: hidden;
608 #width-selector button.selected::after {
609 content: attr(data-name) " (selected)";
611 #width-selector button:hover:not(:active)::after {
612 visibility: visible;
615 head.content-width-normal + body > * {
616 max-width: 900px;
618 head.content-width-wide + body > * {
619 max-width: 1150px;
621 head.content-width-fluid + body > * {
622 max-width: calc(100% - 300px);
625 /******************/
626 /* THEME SELECTOR */
627 /******************/
629 #theme-selector {
630 position: absolute;
631 top: 3px;
632 left: -41px;
633 opacity: 0.4;
634 display: table;
635 max-width: 40px;
637 #theme-selector:hover {
638 opacity: 1.0;
641 /*=----------------------=*/
642 /*= Theme select buttons =*/
643 /*=----------------------=*/
645 .theme-selector button {
646 display: table-cell;
647 width: 26px;
648 height: 26px;
649 padding: 5px;
650 margin: 1px 7px 0 7px;
651 color: transparent;
652 background-size: 16px 16px;
653 background-origin: content-box;
655 .theme-selector button,
656 .theme-selector button:hover,
657 .theme-selector button:active,
658 .theme-selector button:focus {
659 text-shadow: none;
660 color: transparent;
662 .theme-selector button:disabled {
663 cursor: auto;
666 /*=----------------------------=*/
667 /*= Pre-rendered button images =*/
668 /*=----------------------------=*/
669 /* (Each is just a capital letter A through whatever) */
671 .theme-selector button:nth-of-type(1) {
672 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
674 .theme-selector button:nth-of-type(2) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
677 .theme-selector button:nth-of-type(3) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
680 .theme-selector button:nth-of-type(4) {
681 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
683 .theme-selector button:nth-of-type(5) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
686 .theme-selector button:nth-of-type(6) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
689 .theme-selector button:nth-of-type(7) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
692 .theme-selector button:nth-of-type(8) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
695 .theme-selector button:nth-of-type(9) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
699 /*=------------------------------=*/
700 /*= Theme select button tooltips =*/
701 /*=------------------------------=*/
702 /* (with the name & description of the theme that each button selects) */
704 #theme-selector button {
705 position: relative;
706 z-index: 1;
708 #theme-selector button::before {
709 content: attr(data-theme-name);
710 position: absolute;
711 top: 0;
712 right: 100%;
713 padding: 5px 6px 6px 6px;
714 line-height: 1;
715 width: 6em;
716 text-align: right;
717 z-index: 1;
718 visibility: hidden;
720 #theme-selector:hover button::before {
721 visibility: visible;
723 #theme-selector:hover ~ #theme-tweaker-toggle,
724 #theme-selector:active ~ #theme-tweaker-toggle {
725 z-index: -1;
728 /************************/
729 /* THEME TWEAKER TOGGLE */
730 /************************/
732 #theme-tweaker-toggle {
733 position: absolute;
734 top: 7px;
735 left: -75px;
737 #theme-tweaker-toggle button {
738 font-family: "Font Awesome", "Font Awesome 5 Free";
739 font-weight: 900;
740 font-size: 1.25rem;
741 opacity: 0.4;
742 z-index: 1;
744 #theme-tweaker-toggle button:hover {
745 opacity: 1.0;
748 /*******************/
749 /* QUICKNAV WIDGET */
750 /*******************/
752 #quick-nav-ui {
753 position: absolute;
754 right: -67px;
755 bottom: 20px;
757 #quick-nav-ui a {
758 font-family: "Font Awesome", "Font Awesome 5 Free";
759 font-weight: 900;
760 font-size: 1.5rem;
761 line-height: 1.7;
762 text-align: center;
763 display: block;
764 width: 40px;
765 height: 40px;
766 margin: 10px 0 0 0;
768 #quick-nav-ui a[href='#comments'].no-comments {
769 pointer-events: none;
771 #quick-nav-ui a {
772 visibility: hidden;
774 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
775 visibility: visible;
778 /************************/
779 /* NEW COMMENT QUICKNAV */
780 /************************/
782 #new-comment-nav-ui {
783 position: absolute;
784 right: -112px;
785 bottom: 42px;
787 #new-comment-nav-ui > * {
788 display: block;
789 position: relative;
791 #new-comment-nav-ui.no-comments {
792 display: none;
795 /*=--------------------=*/
796 /*= New comments count =*/
797 /*=--------------------=*/
799 #new-comment-nav-ui .new-comments-count {
800 width: 2em;
801 font-size: 1.25rem;
802 line-height: 1.1;
803 text-align: center;
804 left: 1px;
805 cursor: pointer;
807 #new-comment-nav-ui .new-comments-count::selection {
808 background-color: transparent;
810 #new-comment-nav-ui .new-comments-count::after {
811 content: "NEW";
812 display: block;
813 font-size: 0.625rem;
816 /*=-----------------------------------=*/
817 /*= Next/previous new comment buttons =*/
818 /*=-----------------------------------=*/
820 #new-comment-nav-ui .new-comment-sequential-nav-button {
821 font-size: 1.75rem;
822 font-family: "Font Awesome", "Font Awesome 5 Free";
823 font-weight: 900;
824 width: 1.5em;
825 z-index: 5001;
827 #new-comment-nav-ui .new-comment-previous {
828 top: 8px;
830 #new-comment-nav-ui .new-comment-next {
831 bottom: 6px;
833 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
834 cursor: auto;
835 pointer-events: none;
838 /*******************/
839 /* HNS DATE PICKER */
840 /*******************/
842 #hns-date-picker {
843 position: absolute;
844 bottom: 72px;
845 right: -253px;
846 opacity: 0.6;
848 #hns-date-picker:hover,
849 #hns-date-picker:focus-within {
850 opacity: 1.0;
852 #hns-date-picker.no-comments {
853 display: none;
856 /*=---------------=*/
857 /*= "Since" label =*/
858 /*=---------------=*/
860 #hns-date-picker span {
861 display: block;
862 font-size: 0.75rem;
863 text-transform: uppercase;
866 /*=--------------------=*/
867 /*= "Since" text field =*/
868 /*=--------------------=*/
870 #hns-date-picker input {
871 margin-top: 1px;
872 padding: 1px 3px;
873 width: 140px;
874 text-align: center;
875 box-shadow: 0 0 0 1px transparent;
878 /************************/
879 /* ANTI-KIBITZER TOGGLE */
880 /************************/
882 #anti-kibitzer-toggle {
883 position: absolute;
884 right: -67px;
885 bottom: 225px;
887 #anti-kibitzer-toggle button {
888 display: block;
889 width: 40px;
890 height: 54px;
891 padding: 0;
893 #anti-kibitzer-toggle button::before,
894 #anti-kibitzer-toggle button::after {
895 font-family: "Font Awesome", "Font Awesome 5 Free";
897 #anti-kibitzer-toggle button::before {
898 content: "\F06E";
899 display: block;
900 font-size: 1.75em;
901 font-weight: 400;
903 #anti-kibitzer-toggle button::after {
904 content: "\F007\2004\F164";
905 font-size: 0.875em;
906 font-weight: 900;
908 #anti-kibitzer-toggle.engaged button::before {
909 content: "\F070";
912 /************************/
913 /* TEXT SIZE ADJUSTMENT */
914 /************************/
916 #text-size-adjustment-ui {
917 position: absolute;
918 top: 30px;
919 right: -78px;
920 opacity: 0.4;
922 #text-size-adjustment-ui:hover {
923 opacity: 1.0;
926 /* This doesn't work in Mozilla browsers, so hide it */
927 @-moz-document url-prefix() {
928 #text-size-adjustment-ui {
929 display: none;
933 /*=---------=*/
934 /*= Buttons =*/
935 /*=---------=*/
937 #text-size-adjustment-ui button {
938 font-weight: 900;
939 font-family: "Font Awesome", "Font Awesome 5 Free";
940 font-size: 0.75rem;
941 width: 24px;
942 height: 24px;
943 padding: 0;
945 #text-size-adjustment-ui button.default {
946 font-family: inherit;
947 font-size: 1.125rem;
948 position: relative;
949 top: 1px;
951 #text-size-adjustment-ui button:disabled {
952 opacity: 0.5;
954 #text-size-adjustment-ui button:disabled:hover {
955 cursor: default;
958 /*=----------------=*/
959 /*= Hover tooltips =*/
960 /*=----------------=*/
962 #text-size-adjustment-ui::after {
963 content: "Adjust text size";
964 position: absolute;
965 display: block;
966 left: 0;
967 width: 100%;
968 text-align: center;
969 top: 32px;
970 visibility: hidden;
971 font-size: 0.9em;
973 #text-size-adjustment-ui:hover::after {
974 visibility: visible;
977 /*******************************/
978 /* COMMENTS VIEW MODE SELECTOR */
979 /*******************************/
981 #comments-view-mode-selector {
982 position: absolute;
983 bottom: 30px;
984 left: -40px;
985 opacity: 0.6;
987 #comments-view-mode-selector:hover {
988 opacity: 1.0;
991 /*=---------=*/
992 /*= Buttons =*/
993 /*=---------=*/
995 #comments-view-mode-selector a {
996 display: block;
997 font-family: "Font Awesome", "Font Awesome 5 Free";
998 font-size: 1.25rem;
999 text-align: center;
1000 opacity: 0.4;
1001 padding: 0.25em;
1002 z-index: 1;
1004 #comments-view-mode-selector a.threaded {
1005 transform: scaleY(-1);
1006 font-weight: 900;
1008 #comments-view-mode-selector a.chrono {
1009 font-weight: normal;
1011 #comments-view-mode-selector a.selected,
1012 #comments-view-mode-selector a:hover {
1013 opacity: 1.0;
1014 text-decoration: none;
1016 #comments-view-mode-selector a.selected {
1017 cursor: default;
1020 /*****************/
1021 /* KEYBOARD HELP */
1022 /*****************/
1024 #keyboard-help-overlay {
1025 width: 100vw;
1026 height: 100vh;
1027 background-color: rgba(255, 255, 255, 0.7);
1028 position: fixed;
1029 left: 0;
1030 top: 0;
1031 z-index: 5001;
1033 display: flex;
1034 justify-content: center;
1035 align-items: center;
1036 padding: 20px 30px 30px 20px;
1038 visibility: hidden;
1041 #keyboard-help-overlay .keyboard-help-container {
1042 background-color: #000;
1043 filter: drop-shadow(4px 4px 2px #000);
1044 flex: 1 1 auto;
1045 max-width: 1500px;
1046 max-height: 100%;
1047 overflow-y: auto;
1048 position: relative;
1050 #keyboard-help-overlay .keyboard-help-container h1 {
1051 text-align: center;
1052 border-bottom: 1px solid #1f1f1f;
1053 margin: 0;
1054 padding: 10px 20px;
1056 #keyboard-help-overlay .keyboard-help-container .note {
1057 margin: 0.5em auto;
1058 padding: 0 1em;
1059 width: fit-content;
1061 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1062 column-width: 21em;
1063 column-count: auto;
1064 column-gap: 1.5em;
1065 border-top: 1px solid #1f1f1f;
1066 padding: 15px 20px;
1068 #keyboard-help-overlay .keyboard-help-container ul {
1069 list-style-type: none;
1070 margin: 0;
1071 padding: 0;
1072 break-inside: avoid;
1073 white-space: nowrap;
1075 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1076 margin: 20px 0 0 0;
1078 #keyboard-help-overlay .keyboard-help-container ul li.section {
1079 font-weight: bold;
1080 font-size: 1.125rem;
1081 break-after: avoid;
1083 #keyboard-help-overlay .keyboard-help-container .keys {
1084 margin: 0 0.5em 0 0;
1085 min-width: 4.5em;
1086 display: inline-block;
1088 #keyboard-help-overlay .keyboard-help-container .keys code {
1089 margin: 0 6px 0 0;
1091 #keyboard-help-overlay .keyboard-help-container code {
1092 display: inline-block;
1093 background-color: #131313;
1094 border: 1px solid #2c2c2c;
1095 padding: 3px 8px 4px 8px;
1096 margin: 0 1px;
1098 #keyboard-help-overlay .keyboard-help-container code.ak {
1099 background-color: #001b5f;
1100 border-color: #0052bc;
1102 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1103 content: "ak+";
1104 opacity: 0.3;
1107 #nav-item-about button.open-keyboard-help {
1108 display: none;
1110 @media only screen and (hover:hover) and (pointer:fine) {
1111 #nav-item-about {
1112 position: relative;
1113 padding-right: 0.25em;
1115 #nav-item-about button.open-keyboard-help {
1116 font-family: "Font Awesome", "Font Awesome 5 Free";
1117 font-weight: 900;
1118 position: absolute;
1119 top: 0;
1120 right: 0;
1121 height: 100%;
1122 padding: 8px;
1123 display: initial;
1124 line-height: 1;
1125 background-color: transparent;
1129 #keyboard-help-overlay button.close-keyboard-help {
1130 position: absolute;
1131 right: 0;
1132 top: 0;
1133 font-family: "Font Awesome", "Font Awesome 5 Free";
1134 font-size: 1.5rem;
1135 padding: 10px 12px;
1138 /************/
1139 /* ARCHIVES */
1140 /************/
1142 .archive-nav {
1143 margin: 1.25em 0.5em 0 0.5em;
1144 padding: 0.25em;
1146 .archive-nav > * {
1147 display: flex;
1149 .archive-nav *[class^='archive-nav-item'] {
1150 line-height: 1;
1151 flex: 1 1 5%;
1152 text-align: center;
1153 padding: 6px 4px 4px 4px;
1154 max-width: 8%;
1156 @-moz-document url-prefix() {
1157 .archive-nav *[class^='archive-nav-item'] {
1158 padding: 5px 4px;
1161 .archive-nav-days .archive-nav-item-day {
1162 font-size: 0.8em;
1163 padding: 7px 0 5px 0;
1164 max-width: 4%;
1166 .archive-nav-days .archive-nav-item-day:first-child {
1167 flex-basis: 10%;
1170 /************/
1171 /* ARCHIVES */
1172 /************/
1174 .archive-nav {
1175 margin: 1.25em 0.5em 0 0.5em;
1176 padding: 0.25em;
1178 .archive-nav > * {
1179 display: flex;
1181 .archive-nav *[class^='archive-nav-item'] {
1182 line-height: 1;
1183 flex: 1 1 5%;
1184 text-align: center;
1185 padding: 6px 4px 4px 4px;
1186 max-width: 8%;
1188 @-moz-document url-prefix() {
1189 .archive-nav *[class^='archive-nav-item'] {
1190 padding: 5px 4px;
1193 .archive-nav-days .archive-nav-item-day {
1194 font-size: 0.8em;
1195 padding: 7px 0 5px 0;
1196 max-width: 4%;
1198 .archive-nav-days .archive-nav-item-day:first-child {
1199 flex-basis: 10%;
1202 /************/
1203 /* LISTINGS */
1204 /************/
1206 h1.listing {
1207 font-size: 1.875rem;
1208 line-height: 1.15;
1209 max-height: 1.15em;
1210 position: relative;
1213 h1.listing a {
1214 position: relative;
1217 /* Links to link-posts (not the link-post links themselves; that's below) */
1218 h1.listing .link-post-link + a {
1219 margin-left: 0.25em;
1222 h1.listing .link-post-link {
1223 font-size: 0.8em;
1224 display: inline;
1225 vertical-align: top;
1226 position: relative;
1227 top: 4px;
1230 /*=----------------------=*/
1231 /*= Listing hover reveal =*/
1232 /*=----------------------=*/
1233 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1235 @media only screen and (min-width: 1160px) {
1236 h1.listing a {
1237 max-width: 100%;
1238 display: inline-block;
1239 white-space: nowrap;
1240 text-overflow: ellipsis;
1241 overflow: hidden;
1242 border-bottom: 1px solid transparent;
1243 -webkit-hyphens: auto;
1244 -moz-hyphens: auto;
1245 -ms-hyphens: auto;
1246 hyphens: auto;
1247 z-index: 1;
1248 padding: 0 0 1px 1px;
1250 h1.listing .link-post-link + a {
1251 max-width: calc(100% - 33px);
1253 h1.listing a:hover,
1254 h1.listing a:focus {
1255 text-decoration: dotted underline;
1256 white-space: initial;
1257 overflow: visible;
1258 z-index: 2;
1260 h1.listing:focus-within::before {
1261 content: "\F105";
1262 font-family: "Font Awesome", "Font Awesome 5 Free";
1263 display: block;
1264 position: absolute;
1265 left: -0.75em;
1268 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1269 mouse movements) */
1271 h1.listing a:not(.edit-post-link):hover::before {
1272 content: "";
1273 position: absolute;
1274 top: -10px;
1275 right: -10px;
1276 bottom: -10px;
1277 left: -10px;
1278 z-index: -1;
1280 h1.listing .link-post-link:hover {
1281 text-decoration: none;
1285 /*=-----------------------=*/
1286 /*= In-listing edit links =*/
1287 /*=-----------------------=*/
1289 h1.listing .edit-post-link {
1290 position: absolute;
1291 margin: 0;
1294 /*=---------------------------------=*/
1295 /*= Error messages on listing pages =*/
1296 /*=---------------------------------=*/
1298 .listing-message {
1299 width: 100%;
1300 text-align: center;
1301 padding: 1.25em 0 1.25em 0;
1302 font-size: 1.375em;
1305 /*********************/
1306 /* LISTING POST-META */
1307 /*********************/
1309 h1.listing + .post-meta {
1310 position: relative;
1311 justify-content: flex-start;
1312 margin: 0 20px 0 21px;
1315 h1.listing + .post-meta > * {
1316 margin: 0 1em 0 0;
1319 h1.listing + .post-meta .post-section {
1320 width: 0;
1321 margin: 0;
1322 overflow: hidden;
1324 h1.listing + .post-meta .post-section::before {
1325 position: absolute;
1326 left: -36px;
1329 h1.listing + .post-meta .read-time {
1330 cursor: default;
1333 /********************/
1334 /* SEQUENCES & TAGS */
1335 /********************/
1337 .sequence-text, .tag-description {
1338 font-size: 1.2rem;
1339 padding: 0 22px;
1342 #content.tag-index-page .tag-description {
1343 margin: 1em 0 0;
1346 section {
1347 margin-top: 2em;
1348 margin-bottom: 4em;
1351 h1.sequence-chapter {
1352 font-size: 2.3rem;
1355 article {
1356 max-width: 100%;
1359 .post-meta + .comments {
1360 margin-top: 3em;
1363 .tag-list {
1364 column-count: auto;
1365 column-width: 15em;
1366 margin-top: 0;
1367 border-bottom: 1px solid #575756;
1368 padding-bottom: 1em;
1369 margin-bottom: 0;
1372 /**************/
1373 /* USER PAGES */
1374 /**************/
1376 /*=---------------------=*/
1377 /*= User's display name =*/
1378 /*=---------------------=*/
1380 #content.user-page h1.page-main-heading {
1381 margin: 0.25em 0 0 0;
1382 line-height: 1.1;
1383 grid-column: 1 / span 2;
1384 order: -2;
1387 #content.user-page h1.page-main-heading .user-full-name {
1388 font-size: 1rem;
1389 font-weight: normal;
1390 padding-left: 0.5em;
1393 /*=--------------------=*/
1394 /*= User's karma total =*/
1395 /*=--------------------=*/
1397 #content.user-page .user-stats {
1398 grid-column: 3;
1399 order: -2;
1400 text-align: right;
1401 align-self: end;
1404 #content.user-page .user-stats .karma-type {
1405 white-space: nowrap;
1408 /*=----------------------=*/
1409 /*= Expanded vs. compact =*/
1410 /*=----------------------=*/
1412 #content.user-page #comments-list-mode-selector {
1413 grid-row: span 2;
1415 #content.user-page #comments-list-mode-selector button {
1416 display: block;
1419 /*=----------------------------------------------------=*/
1420 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1421 /*=----------------------------------------------------=*/
1423 #content.user-page .sublevel-nav {
1424 margin-bottom: 0.5em;
1427 /*=--------------=*/
1428 /*= User's posts =*/
1429 /*=--------------=*/
1431 #content.user-page h1.listing {
1432 margin: 0.5em 0 0 0;
1435 #content.user-page .user-bio :first-child {
1436 margin-top: 0.5em;
1439 /*****************/
1440 /* CONVERSATIONS */
1441 /*****************/
1443 /*=----------------------=*/
1444 /*= List of participants =*/
1445 /*=----------------------=*/
1447 #content.conversation-page .conversation-participants {
1448 grid-column: 2 / span 2;
1449 text-align: right;
1450 margin: 0.5em 0 0 0;
1452 .post-meta > .conversation-participants {
1453 white-space: normal;
1455 .conversation-participants ul,
1456 .conversation-participants li {
1457 list-style-type: none;
1458 display: inline-block;
1459 margin: 0;
1460 padding: 0;
1462 .conversation-participants li {
1463 margin-left: 0.375em;
1465 .conversation-participants li:not(:last-of-type)::after {
1466 content: ",";
1469 /*=-------------------------=*/
1470 /*= Posting controls (form) =*/
1471 /*=-------------------------=*/
1473 #content.conversation-page .posting-controls {
1474 padding: 0 0 1em 0;
1476 #content.conversation-page .post-meta-fields {
1477 overflow: auto;
1478 display: flex;
1479 flex-flow: row wrap;
1481 .posting-controls.standalone textarea {
1482 margin-top: 0.375em;
1484 .posting-controls.standalone form {
1485 padding: 0 1em;
1487 #content.conversation-page .posting-controls.standalone form {
1488 padding: 0 1em 3em 1em;
1490 .posting-controls.standalone input[type='text'],
1491 .posting-controls.standalone label {
1492 margin: 0.25em 0;
1494 .posting-controls.standalone label {
1495 width: 4em;
1496 text-align: right;
1497 padding: 2px 6px;
1498 border: 1px solid transparent;
1500 .posting-controls.standalone input[type='text'] {
1501 width: calc(100% - 4em);
1502 padding: 0.25em;
1504 .posting-controls.standalone input[type='submit'] {
1505 float: right;
1507 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1508 white-space: nowrap;
1510 .posting-controls.standalone #markdown-hints {
1511 top: calc(100% + 2em);
1514 /*=--------------------=*/
1515 /*= Conversation title =*/
1516 /*=--------------------=*/
1518 #content.conversation-page h1.page-main-heading {
1519 text-align: center;
1520 margin: 0.5em 0;
1521 line-height: 1.15;
1524 /*=----------=*/
1525 /*= Messages =*/
1526 /*=----------=*/
1528 #content.conversation-page > ul.comment-thread:last-of-type {
1529 margin-bottom: 2em;
1532 /******************/
1533 /* SEARCH RESULTS */
1534 /******************/
1536 #content.search-results-page h1.listing,
1537 #content.sequence-page h1.listing,
1538 #content.post-page h1.listing {
1539 font-size: 1.625em;
1542 /**************/
1543 /* LOGIN PAGE */
1544 /**************/
1546 .login-container {
1547 margin: 2em 0;
1548 padding: 1em;
1549 display: flex;
1550 flex-flow: row wrap;
1553 .login-container form {
1554 flex-basis: 50%;
1555 display: grid;
1556 grid-row-gap: 0.5em;
1557 align-content: start;
1559 .login-container form label {
1560 text-align: right;
1561 padding: 0.25em 0.5em;
1562 white-space: nowrap;
1563 grid-column: 1;
1565 .login-container form input {
1566 grid-column: 2;
1567 padding: 0.25em;
1569 .login-container form input[type='submit'],
1570 .login-container form a {
1571 grid-column: 2;
1572 justify-self: center;
1574 .login-container form input[type='submit'] {
1575 width: 10em;
1576 padding: 0.35em;
1577 line-height: 1;
1578 margin: 0.5em 0 0 0;
1580 .login-container form h1 {
1581 text-align: center;
1582 margin: 0;
1583 grid-column: 2;
1586 /* “Log in” form */
1588 #login-form {
1589 grid-template-columns: 5.5em 1fr;
1590 padding: 0.5em 2em 0.5em 0;
1593 /* “Create account” form */
1595 #signup-form {
1596 font-size: 0.9em;
1597 grid-template-columns: 8.5em 1fr;
1598 padding: 0.5em 1em 1em 1em;
1600 #signup-form h1 {
1601 font-size: 1.7em;
1603 #signup-form input[type='submit'] {
1604 padding: 0.4em 0.5em 0.5em 0.5em;
1607 /* Log in tip */
1609 .login-container .login-tip {
1610 padding: 0.5em 0.5em 0.5em 3em;
1611 margin: 2em 4em 0 4em;
1612 text-indent: -2em;
1613 line-height: 1.4;
1615 .login-container .login-tip span {
1616 font-weight: bold;
1619 /* Message box */
1621 #content.login-page .error-box {
1622 margin: 1.5em 0.875em -1.5em 0.875em;
1624 .error-box, .success-box {
1625 padding: 0.25em;
1626 text-align: center;
1629 /***********************/
1630 /* PASSWORD RESET PAGE */
1631 /***********************/
1633 .reset-password-container {
1634 margin-bottom: 2em;
1636 .reset-password-container input[type='submit'] {
1637 padding: 0.2em 0.5em;
1638 width: unset;
1640 .reset-password-container input {
1641 margin-left: 0.5em;
1642 width: 12em;
1644 .reset-password-container label {
1645 display: inline-block;
1646 width: 9em;
1648 .reset-password-container form > div {
1649 margin: 0.2em;
1651 .reset-password-container .action-container {
1652 padding-left: 11em;
1653 padding-top: 0.2em;
1655 .reset-password-container .error-box {
1656 margin: unset;
1659 /*********************/
1660 /* TABLE OF CONTENTS */
1661 /*********************/
1663 .contents {
1664 float: right;
1665 min-width: 6em;
1666 max-width: 40%;
1667 margin: 1.25em 0 0.75em 1.25em;
1668 padding: 7px 14px 10px 10px;
1669 position: relative;
1670 z-index: 1;
1673 .contents-head {
1674 text-align: center;
1675 margin-bottom: 0.25em;
1678 .post-body .contents ul {
1679 list-style-type: none;
1680 margin: 0 0 0 0.5em;
1681 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1682 padding-left: 1em;
1683 font-size: 0.75em;
1685 .post-body .contents li {
1686 margin: 0.15em 0 0.3em 1em;
1687 text-align: left;
1688 text-indent: -1em;
1689 line-height: 1.2;
1690 position: relative;
1692 .post-body .contents li::before {
1693 position: absolute;
1694 width: 3em;
1695 display: block;
1696 text-align: right;
1697 left: -4.5em;
1699 .contents .toc-item-1 {
1700 counter-increment: toc-item-1;
1701 counter-reset: toc-item-2 toc-item-3;
1703 .contents .toc-item-1::before {
1704 content: counter(toc-item-1);
1706 .contents .toc-item-1 ~ .toc-item-2 {
1707 margin-left: 2.9em;
1708 font-size: 0.95em;
1710 .contents .toc-item-2 {
1711 counter-increment: toc-item-2;
1712 counter-reset: toc-item-3;
1714 .contents .toc-item-1 ~ .toc-item-2::before {
1715 content: counter(toc-item-1) "." counter(toc-item-2);
1717 .contents .toc-item-2::before {
1718 content: counter(toc-item-2);
1720 .contents .toc-item-1 + .toc-item-3 {
1721 counter-increment: toc-item-2 toc-item-3;
1723 .contents .toc-item-2 ~ .toc-item-3,
1724 .contents .toc-item-1 ~ .toc-item-3 {
1725 margin-left: 2.9em;
1726 font-size: 0.95em;
1728 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1729 margin-left: 5.7em;
1730 font-size: 0.9em;
1732 .contents .toc-item-3 {
1733 counter-increment: toc-item-3;
1735 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1736 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1738 .contents .toc-item-1 ~ .toc-item-3::before {
1739 content: counter(toc-item-1) "." counter(toc-item-3);
1741 .contents .toc-item-2 ~ .toc-item-3::before {
1742 content: counter(toc-item-2) "." counter(toc-item-3);
1744 .contents .toc-item-3::before {
1745 content: counter(toc-item-3);
1747 .contents .toc-item-4,
1748 .contents .toc-item-5,
1749 .contents .toc-item-6 {
1750 display: none;
1753 /********************/
1754 /* POSTS & COMMENTS */
1755 /********************/
1757 .post-meta > *,
1758 .comment-meta > * {
1759 display: inline-block;
1760 margin-right: 1em;
1761 font-size: 1.0625em;
1763 .body-text {
1764 overflow-wrap: break-word;
1765 text-align: justify;
1767 .body-text p {
1768 margin: 1em 0;
1770 .retracted .body-text {
1771 text-decoration: line-through;
1774 .bare-url {
1775 word-break: break-all;
1776 hyphens: auto;
1778 .body-text a:not([href]),
1779 .body-text a:not([href]):hover,
1780 .body-text a:not([href])::before,
1781 .body-text a:not([href])::after {
1782 text-decoration: none;
1783 text-shadow: unset;
1784 border: unset;
1785 color: unset;
1786 content: unset;
1788 /*************/
1789 /* POST-META */
1790 /*************/
1792 .post-meta {
1793 display: flex;
1794 flex-flow: row wrap;
1795 justify-content: center;
1797 .post-meta .lw2-link {
1798 opacity: 0.5;
1799 order: 1;
1801 .post-meta > *,
1802 .post-meta .post-section::before {
1803 margin: 0 0.5em;
1805 .post-meta .post-section {
1806 order: -1;
1807 margin: 0;
1808 visibility: hidden;
1810 .post-meta .post-section::before,
1811 .comment-meta .alignment-forum {
1812 visibility: visible;
1813 font-family: "Font Awesome", "Font Awesome 5 Free";
1814 font-weight: 900;
1816 .post-section.frontpage::before {
1817 content: "\F015";
1819 .post-section.featured::before {
1820 content: "\F005";
1822 .post-section.meta::before {
1823 content: "\F077";
1825 .post-section.events::before {
1826 content: "\F5A0";
1828 .post-section.personal::before {
1829 content: "\F007";
1831 .post-section.draft::before {
1832 content: "\F15B";
1834 .post-section.alignment-forum::before,
1835 .comment-meta .alignment-forum {
1836 content: "AF";
1837 font-family: Concourse, 'Changa One';
1840 /*= Karma controls hover tooltips =*/
1842 @media only screen and (pointer: fine) {
1843 .post .voting-controls,
1844 .comment-item .voting-controls {
1845 position: relative;
1847 .post .karma.active-controls::after,
1848 .comment-item .karma.active-controls::after {
1849 content: "Double-click for strong vote";
1850 position: absolute;
1851 pointer-events: none;
1852 display: block;
1853 left: 6px;
1854 width: 100%;
1855 line-height: 1.15;
1856 white-space: normal;
1857 text-align: center;
1858 font-size: 0.875rem;
1859 opacity: 0;
1860 transition: opacity 0.2s ease;
1862 .post .voting-controls.active-controls:hover::after,
1863 .comment-item .voting-controls.active-controls:hover::after {
1864 opacity: 1.0;
1867 .post .voting-controls .karma-value::after,
1868 .comment-item .voting-controls .karma-value::after {
1869 content: attr(title);
1870 position: absolute;
1871 pointer-events: none;
1872 display: block;
1873 left: 50%;
1874 transform: translateX(-50%);
1875 white-space: nowrap;
1876 text-align: center;
1877 font-size: 0.875rem;
1878 color: #393939;
1879 opacity: 0;
1880 transition: opacity 0.2s ease;
1882 .post .voting-controls .karma-value:hover::after,
1883 .comment-item .voting-controls .karma-value:hover::after {
1884 opacity: 1.0;
1886 .comment-item .voting-controls .karma-value:hover::after {
1887 z-index: 5001;
1890 .author {
1891 position: relative;
1893 .author:not(.redacted)::before {
1894 content: attr(data-full-name);
1895 position: absolute;
1896 pointer-events: none;
1897 display: block;
1898 padding: 0 1em;
1899 left: 50%;
1900 bottom: 2em;
1901 transform: translateX(-50%);
1902 white-space: nowrap;
1903 text-align: center;
1904 font-size: 0.875rem;
1905 font-weight: normal;
1906 opacity: 0;
1907 transition: opacity 0.2s ease;
1908 z-index: 5001;
1910 .author:hover::before {
1911 opacity: 1.0;
1915 /*********/
1916 /* POSTS */
1917 /*********/
1919 .post {
1920 max-width: 100%;
1923 .post-body {
1924 min-height: 8em;
1925 padding: 0 30px;
1926 line-height: 1.5;
1927 font-size: 1.3rem;
1928 overflow: auto;
1929 margin: 0.5em 0 0 0;
1931 h1.post-title {
1932 margin: 1.1em 0 0.35em 0;
1933 padding: 0 30px;
1934 text-align: center;
1935 font-size: 2.5em;
1936 line-height: 1;
1938 .post .post-meta {
1939 text-align: center;
1940 position: relative;
1941 z-index: 2;
1943 .post .top-post-meta:last-child {
1944 margin-bottom: 40px;
1946 .post .bottom-post-meta {
1947 margin: 0;
1948 padding: 20px 0;
1950 .bottom-post-meta {
1951 border-style: solid;
1952 border-width: 1px 0;
1955 /**********/
1956 /* EVENTS */
1957 /**********/
1959 .event-info .map {
1960 position: relative;
1961 width: 100%;
1962 margin: 2em 0 1em;
1965 .event-info .map::before {
1966 content: "";
1967 display: block;
1968 padding-bottom: 50%;
1971 .event-info .map iframe {
1972 width: 100%;
1973 height: 100%;
1974 border: 1px solid #fff;
1975 position: absolute;
1976 top: 0;
1977 left: 0;
1980 .event-info ul {
1981 list-style: none;
1982 padding: 0;
1983 text-align: center;
1986 /*******************/
1987 /* POST NAVIGATION */
1988 /*******************/
1990 .post-nav-item {
1991 display: grid;
1992 grid-template: 100% / 32% 36% 32%;
1993 grid-template-areas:
1994 "prev seq next";
1996 .post-nav {
1997 display: flex;
1998 flex-flow: column;
1999 justify-content: flex-end;
2000 padding: 0.5em;
2003 .post-nav-title {
2004 font-size: 1.125em;
2005 line-height: 1.15;
2006 display: inline;
2007 border-top: 1px solid transparent;
2009 .post-nav.prev .post-nav-title,
2010 .post-nav.next .post-nav-title {
2011 border-bottom: 1px solid transparent;
2014 .sequence-title {
2015 align-items: center;
2016 text-align: center;
2017 grid-area: seq;
2019 .sequence-title .post-nav-title {
2020 font-size: 1.5em;
2023 .post-nav.prev {
2024 grid-area: prev;
2025 align-items: flex-start;
2027 .post-nav.prev .post-nav-title::before {
2028 content: "\F0D9\2005";
2030 .post-nav.next {
2031 grid-area: next;
2032 text-align: right;
2033 align-items: flex-end;
2035 .post-nav.prev .post-nav-label,
2036 .post-nav.next .post-nav-label {
2037 display: none;
2039 .post-nav.next .post-nav-title::after {
2040 content: "\2004\F0DA";
2042 .post-nav.prev .post-nav-title::before,
2043 .post-nav.next .post-nav-title::after {
2044 font-family: Font Awesome;
2045 font-weight: 900;
2046 vertical-align: text-bottom;
2047 opacity: 0.75;
2049 .post-nav-links {
2050 max-width: 100%;
2053 @media only screen and (max-width: 900px) {
2054 .post-nav-item {
2055 font-size: 0.875em;
2056 grid-template: auto auto / 50% 50%;
2057 grid-template-areas:
2058 "prev next"
2059 "seq seq";
2061 .post-nav.prev .post-nav-title,
2062 .post-nav.next .post-nav-title {
2063 border-bottom: none;
2065 .post-nav.prev {
2066 margin: 0 0 0 -1px;
2067 position: relative;
2068 left: 1px;
2070 .sequence-title {
2071 padding: 0.75em 0;
2074 @media only screen and (max-width: 520px) {
2075 .post-nav-links + .comments {
2076 padding: 1em 0 0 0;
2080 .related-posts, .related-post-group {
2081 padding-bottom: 1em;
2083 .related-post-type {
2084 font-size: 1.2em;
2085 font-weight: 600;
2086 margin-top: 0.5em;
2087 margin-bottom: -0.5em;
2088 list-style-type: disc;
2089 margin-left: -0.5em;
2090 opacity: 0.7;
2092 .related-post-type::before {
2093 content: "\269c";
2094 margin-right: 0.15em;
2096 .related-posts .post-type-prefix {
2097 display: none;
2100 /**************/
2101 /* LINK POSTS */
2102 /**************/
2104 .post.link-post > .post-body > p:first-child {
2105 text-align: center;
2106 font-size: 1.125em;
2107 margin: 0.5em 0 0 0;
2109 .post.link-post > .post-body > p:only-child {
2110 font-size: 1.5em;
2111 margin: 1em 0;
2113 .post.link-post a.link-post-link::before {
2114 content: "\F0C1";
2115 font-family: "Font Awesome", "Font Awesome 5 Free";
2116 font-weight: 900;
2117 font-size: 0.75em;
2118 position: relative;
2119 top: -2px;
2120 margin-right: 0.25em;
2123 /************/
2124 /* COMMENTS */
2125 /************/
2127 .comments {
2128 max-width: 100%;
2129 padding: 0 0 1px 0;
2130 position: relative;
2132 .comments::before {
2133 content: "";
2134 position: absolute;
2135 display: block;
2136 top: 0;
2137 left: 0;
2138 width: 100%;
2139 height: 100%;
2140 pointer-events: none;
2142 ul.comment-thread {
2143 list-style-type: none;
2144 padding: 0;
2145 max-width: 100%;
2147 .comments .comment-thread > li {
2148 position: relative;
2150 #content > #top-nav-bar + .comment-thread .comment-item {
2151 margin-top: 0;
2154 .comment-item {
2155 margin: 2em 0 0 0;
2157 .comment-item .comment-item {
2158 margin: 1em 8px 8px 16px;
2160 .comment-item .comment-item + .comment-item {
2161 margin: 2em 8px 8px 16px;
2164 .comment-body {
2165 line-height: 1.45;
2166 font-size: 1.2rem;
2167 padding: 10px;
2169 .comment-body ul {
2170 list-style-type: circle;
2172 .comment-body > *:first-child {
2173 margin-top: 0;
2175 .comment-body > *:last-child {
2176 margin-bottom: 0;
2179 .comments-empty-message {
2180 width: 100%;
2181 text-align: center;
2182 padding: 0.75em 0 0.9em 0;
2183 font-size: 1.375em;
2186 /**********************************/
2187 /* DEEP COMMENT THREAD COLLAPSING */
2188 /**********************************/
2190 .comment-item > input[id^="expand"] {
2191 display: none;
2193 .comment-item > input[id^="expand"] + label {
2194 display: block;
2195 visibility: hidden;
2196 position: relative;
2197 margin: 8px 9px;
2199 .comment-item > input[id^="expand"] + label::after {
2200 content: "(Expand " attr(data-child-count) " below)";
2201 visibility: visible;
2202 position: absolute;
2203 left: 0;
2204 white-space: nowrap;
2205 cursor: pointer;
2207 .comment-item > input[id^="expand"]:checked + label::after {
2208 content: "(Collapse " attr(data-child-count) " below)";
2210 .comment-item > input[id^="expand"] ~ .comment-thread {
2211 max-height: 34px;
2212 overflow: hidden;
2214 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2215 margin-top: 0;
2217 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2218 max-height: 1000000px;
2221 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2222 margin: 0;
2224 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2225 display: none;
2228 /*************/
2229 /* BACKLINKS */
2230 /*************/
2232 .backlinks > input {
2233 display: none;
2236 .backlinks > label {
2237 margin-left: 10px;
2238 display: block;
2239 color: #00c200;
2240 cursor: pointer;
2243 .backlinks > label::before {
2244 content: " ";
2245 border-left: 5px solid currentColor;
2246 border-top: 5px solid transparent;
2247 border-bottom: 5px solid transparent;
2248 transition: transform 0.25s ease-out;
2249 transform-origin: 29% 55%;
2250 display: inline-block;
2251 padding-right: 0.5em;
2254 .backlinks > input:checked + label::before {
2255 transform: rotate(90deg);
2258 .backlinks li {
2259 margin-top: 0;
2262 .backlinks > ul {
2263 height: 0;
2264 perspective-origin: top;
2265 transform: perspective(100em) rotateX(-90deg);
2266 transform-origin: center top;
2267 opacity: 0;
2268 margin-top: 0.5em;
2269 margin-bottom: 0.5em;
2272 .backlinks > input:checked ~ ul {
2273 height: auto;
2274 transform: perspective(100em) rotateX(0deg);
2275 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2276 opacity: 1;
2279 /****************/
2280 /* COMMENT-META */
2281 /****************/
2283 .comment-meta {
2284 padding: 2px 24px 2px 10px;
2285 margin: 0 -1px;
2286 border: none;
2287 display: flex;
2288 flex-flow: row wrap;
2289 align-items: baseline;
2291 .user-page .comment-meta,
2292 .conversation-page .comment-meta {
2293 padding-right: 10px;
2295 .comment-meta .comment-post-title {
2296 flex-basis: 100%;
2297 overflow: hidden;
2298 text-overflow: ellipsis;
2299 line-height: 1.3;
2301 .conversation-page .comment-meta .comment-post-title {
2302 margin: 0;
2303 flex-basis: unset;
2304 flex: 1 0 auto;
2305 text-align: right;
2306 display: none; /* Not sure if we need to display this... */
2308 .comment-item .author:not(.redacted).original-poster::after {
2309 content: "\2004(OP)";
2310 font-size: 0.75em;
2313 /*****************************/
2314 /* COMMENT THREAD NAVIGATION */
2315 /*****************************/
2317 a.comment-parent-link:not(.inline-author),
2318 a.comment-parent-link.inline-author::before {
2319 opacity: 0.5;
2321 a.comment-parent-link:hover {
2322 opacity: 1.0;
2324 a.comment-parent-link::before {
2325 content: "\F062";
2326 font-family: "Font Awesome", "Font Awesome 5 Free";
2327 font-weight: 900;
2328 font-size: 0.75rem;
2329 line-height: 1;
2330 position: absolute;
2331 z-index: 1;
2332 display: block;
2333 padding: 3px 3px 0 3px;
2334 width: 16px;
2335 height: calc(100% + 2px);
2336 top: -1px;
2337 left: -17px;
2339 a.comment-parent-link::after {
2340 content: "";
2341 position: absolute;
2342 z-index: 0;
2343 display: block;
2344 width: calc(100% + 26px);
2345 height: calc(100% + 38px);
2346 top: -29px;
2347 left: -17px;
2348 pointer-events: none;
2349 overflow: hidden;
2350 visibility: hidden;
2352 a.comment-parent-link:hover::after {
2353 visibility: visible;
2356 .comment-child-links {
2357 flex-basis: 100%;
2359 .comment-child-link {
2360 margin: 0 0.25em;
2361 display: inline-block;
2363 .comment-child-link::before {
2364 content: ">";
2365 display: inline-block;
2366 margin: 0 2px 0 0;
2369 .comment-popup {
2370 position: fixed;
2371 top: 10%;
2372 right: 10%;
2373 max-width: 700px;
2374 z-index: 10001;
2375 font-size: 1rem;
2376 white-space: unset;
2377 pointer-events: none;
2379 .comment-popup .comment-parent-link {
2380 display: none;
2382 .comment-popup .comment-body {
2383 font-size: 1.0625rem;
2386 .comment-item.depth-odd {
2387 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2388 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2390 .comment-item.depth-even {
2391 --GW-comment-background-color: var(--GW-comment-background-color-even);
2392 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2395 .comment-item:target {
2396 --GW-comment-background-color: var(--GW-comment-background-color-target);
2398 .comment-item:target > .comment-thread > .comment-item {
2399 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2402 /**********************/
2403 /* COMMENT PERMALINKS */
2404 /**********************/
2405 /********************/
2406 /* COMMENT LW LINKS */
2407 /********************/
2409 .comment-meta .permalink::before,
2410 .comment-meta .lw2-link::before,
2411 .individual-thread-page a.comment-parent-link:empty::before {
2412 content: "";
2413 display: inline-block;
2414 width: 1rem;
2415 height: 1rem;
2416 border-radius: 3px;
2417 box-shadow:
2418 0 0 0 1px #000,
2419 0 0 0 2px #0cc800,
2420 0 0 0 3px transparent;
2421 padding: 0 0 0 2px;
2422 background-size: 100%;
2423 position: relative;
2424 top: 2px;
2425 opacity: 0.5;
2427 .comment-meta .permalink::before {
2428 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BxG6SZO6ipS6zJY6zhd7Dtf7Elr7k1u7lZ171178GJ/8GOA8GWC8GmF8WyH8XON8nWP8naP8oOa84Wc84ac9Ied9Iyh9I6j9JCl9ZGl9ZSo9ZWp9Zms9Zut9qKz9qi4962897G/+LPB+LTC+LjF+L3J+cLN+cTP+sXQ+srU+svU+s7X+9DZ+9HZ+9La+9Xd+9bd+9ng/Nrh/Nvh/Obq/ent/e7x/vHz/vL0/vP1/vT2/vj5//n6//r7//v7//z8//39//7+/////wAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAMDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84AAgoOEhYaHiImKi4yNjo+QhgEODQGRiiVDRERDIpeHJ5uiRCWfhAdAo5tCCaaCFZtDHyCxEK4AsERCCxG1twhBqrqttzPCNLeCDTqjOQzJGMKctq4e0kMPkQUbgxSaqtiCAR0DiwbMMoMEACybyJYAATREOQWJBjui6YMr7oPyouodEsBsFAx+/gTFUCWwkIJgo3iUA9CPCLJ4OMBlOyThWwtCFS8KchErgqIAN0SFQGhxkAhRNhhFE3XjAgAVm14AyJBSlIVGJlT5GNVDVSlHHCBKEyVEg7YUP5b2QDHx04QRL2rUaEHCZLKvYMOKHXspEAA7');
2430 .comment-meta .lw2-link::before {
2431 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BZB6RxG6SJL6iZO6ipS6zJY6zhd7D1h7EBk7UJl7Ulr7kts7lFx7mB+8GJ/8GmF8WyH8XON8naP8niR8n+X84GY84+k9JOn9ZSo9ZWp9Zut9qS196W296e396q6962896+++LTC+LzI+b3J+cDM+cXQ+sjS+srU+s7X+9La+9bd+9jf/Nng/Nvh/Nzi/N7k/OXq/efr/ent/eru/e3w/vDz/vHz/vL0/vT2/vb3//f4//r7//z8//39//7+/////wAAt4pHif9/AAAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH5YAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5EHBwoBgwuaB56hgpqciAE3QUE6BQAIPao9BgAmqiAADT6qNac2qjuzAC2qQBQBNaovABqqQSi9v60AHM0iCbpBsifEFtBBO9IM2CwYzUAVNL/BhgG+39IAMqo4w80qPKorie3RgyHNAANu2OcO3CAIPwIG/IGAoCodAwbxawZjBsAYiiYC8dDhQwYAJQB6IAGwQ0Z3AIFEmACE2IMLzX44OKkQiAQBOVTdGEAAVhAanRwGVAkghaoUglyoGoGpqdOnUKNKnUq1qlVEgQAAOw==');
2433 .individual-thread-page a.comment-parent-link:empty::before {
2434 left: unset;
2435 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wAw9QAw9gBj9gB39gB99i8w5y+R9y+R+T8w51eq+V8w51+R9Jeq85eq9ZfY/s/E89fL+dfl/N/E8N/L9N/L9d/4/+fL9OfY9+f4/u/R9e/4/u////fY9ffe9ffe9vfr+/f//////P////9/AAABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAABAuwlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGi0CAcEgsGo/IpHLJbDqf0Kh0Ci1IIFRkgTMaXbLFbbf7BQPEYzIYnVZP2W13lRtvl53wSKgLsqTvSwR0XRMCeyMeAYNeTQ9pFAAEhx+RgyILTAhjGkIDk0IFn00KGxVDnl2UQgcZGAZUqCOqZp2itACxs7S5t7Wpvbi2u4cdwAAMDg0JxszNzs/QZkEAOw==');
2437 .comment-meta .permalink:hover::before {
2438 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6QBW5wBd6wBq6gBq6y8w5y+E7UdW508w509D50996k+k718w51+q71+x71+x8F+38G8w549W55dW55d355ed6pfL9Z++75/L86dd56eq6qex66fR86fY9a9q57+R57/L77/e9b/r+seR58fl+c+d58+k58+36s/L7c/y/8/4/9eq59fl9tf4/9+x59/E6t/e8+e36Oe+6ufL6ufe8Ofy9uf4+ef//+/R6u/e7u////fY6vfe7ffr8ffy9vf////e6//l6//l7P/r7f/y8P/47//48P//8P//8v//8///9f//9v//+f//+v///1X/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84BQgoOEhYaHiImKi4yNjo+Qhk5AQJGLMQcAmh6WhzOaoAAYnYRJE6GaATmkgkSgIzqgLKxQQ6kvRbK0SA6oAAKrrE8lvg20gkYVoQU4x0K+mrOsPdAAL5FMMoNEmb7XUE42QYtKyg+DT1AtmsaDTiEABTyJShSg54PrAO3g8Jryh5YoCwUhHztBT06gMjCv0BEFqAiMU3cQSpMN3hAV6SaBkD5+UFCAWqHICQhQHwzuG1QDFAJGz0AxcAEFhqYIUHZYCEWiEQ1UA0IlQKXhkQ+I1UAFMBGpSYoF1QZkmGjpyQ8VHC5c6CDixrGvYMOKHdspEAA7');
2440 .comment-meta .lw2-link:hover::before {
2441 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6gBD6gBW6gBd6wBq6gBq6wB97S8w5y997Ucw50ed70ek708w50+k7U+q8F8w51+x8G+38Xcw53dD53e38Ye37JdW55fL9ZfR9p/Y9p/e9qdW56dd56dq56d356fe9rdq57ed57fl+b9357/Y8L/y/8eR58+R58/R78/y9s/y/8/4/9eq59fR79fe9df4/9+x59///+e36O/L6u////fY6vfe6vfe6/f////l7P/r7f/y7v/47//48P/4+f/4+v//7///8f//9f//9v//+v///wAAAAAAAAAAwMyACwEAAAAPAAAAAAAAALDBCVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAJDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH2YBHgoOEhYaHiImKi4yNjo+QkZKTlJWWl5FGRkGDRkCaRoOfnZuJRR0AAAU6R0MUqQOsNKkbRz4RqQiIRR6pBKxHKakALEUfqQ1HOcMWu70Av4I3wxpCDrA6MsMnzr7AP7gAEDjDACsi3t3QwEYlqQYj5RcVqRKmz9GCNeX8wyT36QT1WNCvnAAbAFUR4lXuAYhyDBQxTGXihQoYR2YN46AxVQiJz/jF4JFgWIwdwwLMAFmwBREMqQ60egVAwaKJIo+4SDXhiBEUqTJgGkq0qNGjSJMqXcoUUSAAOw==');
2443 .individual-thread-page a.comment-parent-link:empty:hover::before {
2444 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wBD5wBD6i8w50cw50+E6k+k70+q8F8w51+x8G8w529d53cw53e38Idq54ex7oe+8Y9d54/E8Ze+8JfL9aeR6qe+7K/L8t+359/e8N/e8vfe7ffr8ff////r7f/r7v/y7//y8P/47///8P///wABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAAAQwAlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGjECScEgsGo/IpHLJbDqf0Kh0Cg1VLlQkSAEAQLLFbbf7BZPEYzIYnVZP2ePAuAyFt+d17tiC6BYiaXRLInpdFCN9AAcjDIFNGGkSJCKJBpOFAh1MHgNdDUKUXZZnlU4bCxNDoQCjJB8OD1mrrWaTpbWgt7izuLmivba/vSIEXQnAJBwZGsjNzs/Q0bVBADs=');
2446 .comment-meta .permalink:hover::before,
2447 .comment-meta .lw2-link:hover::before,
2448 .individual-thread-page a.comment-parent-link:empty:hover::before {
2449 box-shadow:
2450 0 0 0 2px #0cc800,
2451 0 0 0 3px transparent;
2452 opacity: 1.0;
2453 filter: unset;
2455 .comment-meta .permalink:active::before,
2456 .comment-meta .lw2-link:active::before,
2457 .individual-thread-page a.comment-parent-link:empty:active::before {
2458 transform: scale(0.9);
2461 .comment-meta .permalink,
2462 .comment-meta .lw2-link,
2463 .individual-thread-page .comment-parent-link:empty {
2464 position: relative;
2465 opacity: 1.0;
2467 .comment-meta .permalink::after,
2468 .comment-meta .lw2-link::after,
2469 .individual-thread-page .comment-parent-link:empty::after {
2470 content: "";
2471 width: 30px;
2472 height: 30px;
2473 display: block;
2474 position: absolute;
2475 top: -2px;
2476 left: -7px;
2477 box-shadow: none;
2478 pointer-events: auto;
2479 visibility: visible;
2482 /*************************/
2483 /* COMMENTS COMPACT VIEW */
2484 /*************************/
2486 #comments-list-mode-selector,
2487 #content.index-page #comments-list-mode-selector,
2488 #content.user-page #comments-list-mode-selector {
2489 padding-top: 6px;
2490 grid-column: 1;
2491 position: unset;
2492 z-index: 1;
2493 justify-self: start;
2494 align-self: start;
2496 #comments-list-mode-selector button {
2497 color: transparent;
2498 width: 32px;
2499 height: 32px;
2500 padding: 6px;
2501 margin: 1px;
2502 overflow: hidden;
2503 background-repeat: no-repeat;
2504 background-size: 100%;
2505 background-origin: content-box;
2507 #comments-list-mode-selector button:disabled {
2508 cursor: auto;
2510 #comments-list-mode-selector button.expanded {
2511 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2513 #comments-list-mode-selector button.compact {
2514 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2516 @media only screen and (max-resolution: 1dppx) {
2517 #comments-list-mode-selector button.expanded {
2518 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2520 #comments-list-mode-selector button.compact {
2521 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2525 #content > ul.comment-thread > li.comment-item,
2526 #content.compact > ul.comment-thread > li.comment-item {
2527 margin: 0;
2530 #content > .comment-thread {
2531 margin: 1em 0;
2533 #content.compact > .comment-thread {
2534 font-size: 0.9375rem;
2535 margin: 0.5em 0;
2537 #content.compact > .comment-thread:hover {
2538 z-index: 1;
2540 #content.compact > .comment-thread .comment-body {
2541 font-size: 1.0625rem;
2543 #content.compact > .comment-thread .comment-item,
2544 #content.index-page .comment-item.ignored,
2545 #content.inbox-user-page .comment-item.ignored {
2546 max-height: 61px;
2547 margin-top: 1em;
2548 overflow: hidden;
2549 position: relative;
2551 #content.compact > .comment-thread .comment-item {
2552 pointer-events: none;
2554 #content.compact > .comment-thread .comment-item::after {
2555 content: "…";
2556 position: absolute;
2557 right: 0;
2558 bottom: 0;
2559 font-size: 2rem;
2560 line-height: 1;
2561 padding: 0 16px 10px 64px;
2562 pointer-events: auto;
2564 @media only screen and (hover: hover) {
2565 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2566 #content.compact > .comment-thread .comment-item.expanded {
2567 overflow: visible;
2568 pointer-events: auto;
2569 z-index: 10;
2572 @media only screen and (hover: none) {
2573 #content.compact > .comment-thread.expanded .comment-item {
2574 overflow: visible;
2575 pointer-events: auto;
2576 z-index: 10;
2579 #content.compact > .comment-thread .comment-item .comment-meta {
2580 white-space: nowrap;
2581 overflow: hidden;
2582 text-overflow: ellipsis;
2583 padding: 2px 10px;
2585 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2586 white-space: unset;
2588 #content.compact > .comment-thread .comment-item .comment-meta a {
2589 pointer-events: auto;
2591 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2592 display: inline;
2594 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2595 margin-left: 0.75em;
2597 @media only screen and (hover: hover) {
2598 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2599 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2600 max-height: unset;
2602 #content.compact > .comment-thread .comment-item:hover .comment,
2603 #content.compact > .comment-thread .comment-item.expanded .comment {
2604 position: relative;
2605 z-index: 1;
2606 margin-bottom: 2em;
2607 bottom: 0;
2609 #content.compact > .comment-thread .comment-item:hover .comment::before,
2610 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2611 content: "";
2612 position: absolute;
2613 display: block;
2614 width: calc(100% + 20px);
2615 height: calc(100% + 20px);
2616 z-index: -1;
2617 top: -10px;
2618 left: -10px;
2620 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2621 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2622 margin: 0;
2625 @media only screen and (hover: none) {
2626 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2627 max-height: unset;
2629 #content.compact > .comment-thread.expanded .comment-item .comment {
2630 position: relative;
2631 z-index: 1;
2632 margin-bottom: 2em;
2633 bottom: 0;
2635 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2636 content: "";
2637 position: absolute;
2638 display: block;
2639 width: calc(100% + 14px);
2640 height: calc(100% + 20px);
2641 z-index: -1;
2642 top: -10px;
2643 left: -10px;
2645 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2646 margin: 0;
2648 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2649 content: "";
2650 display: block;
2651 position: fixed;
2652 top: 0;
2653 left: 0;
2654 width: 100%;
2655 height: 100%;
2656 z-index: -2;
2657 background-color: rgba(255, 255, 255, 0.5);
2661 /*****************************/
2662 /* HIGHLIGHTING NEW COMMENTS */
2663 /*****************************/
2665 .new-comment::before {
2666 content: "";
2667 position: absolute;
2668 width: 100%;
2669 height: 100%;
2670 z-index: 5000;
2671 pointer-events: none;
2674 /***********************************/
2675 /* COMMENT THREAD MINIMIZE BUTTONS */
2676 /***********************************/
2678 .comment-minimize-button {
2679 font-family: "Font Awesome", "Font Awesome 5 Free";
2680 font-weight: 900;
2681 font-size: 1.25rem;
2682 line-height: 1;
2683 position: absolute;
2684 right: 1px;
2685 top: 1px;
2686 width: 18px;
2687 margin: 0;
2688 cursor: pointer;
2690 .comment-minimize-button:active {
2691 transform: scale(0.9);
2693 .comment-minimize-button::after {
2694 content: attr(data-child-count);
2695 font-weight: normal;
2696 font-size: 0.8125rem;
2697 position: absolute;
2698 left: 0;
2699 width: 100%;
2700 text-align: center;
2701 top: 21px;
2703 #content.individual-thread-page .comment-minimize-button {
2704 display: none;
2707 /*****************/
2708 /* IGNORE SYSTEM */
2709 /*****************/
2711 #content.comment-thread-page .comment-item.ignored {
2712 height: 38px;
2713 overflow: hidden;
2715 .comment-item.ignored > .comment > .comment-meta > .author {
2716 text-decoration: line-through;
2719 /***********************************/
2720 /* INDIVIDUAL COMMENT THREAD PAGES */
2721 /***********************************/
2723 .individual-thread-page > h1 {
2724 line-height: 1;
2725 margin: 0.75em 0 3px 0;
2727 .individual-thread-page .comments {
2728 border: none;
2731 /*************/
2732 /* SHORTFORM */
2733 /*************/
2735 .shortform-index-page .comments::before {
2736 border: none;
2737 box-shadow: none;
2740 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2741 margin-top: 0;
2744 /****************/
2745 /* VOTE BUTTONS */
2746 /****************/
2748 .vote {
2749 margin: 0;
2751 .vote {
2752 font-family: "Font Awesome", "Font Awesome 5 Free";
2753 font-weight: 900;
2754 border: none;
2757 .vote:disabled {
2758 visibility: hidden;
2759 cursor: default;
2762 .voting-controls.waiting {
2763 opacity: 0.5;
2765 .voting-controls.waiting button {
2766 pointer-events: none;
2769 /* Replicated karma controls at bottom of comments. */
2770 .comment-controls .voting-controls {
2771 float: left;
2772 font-size: 0.9375em;
2775 .comment-controls .voting-controls:first-of-type {
2776 margin-left: -14px;
2779 /*****************************/
2780 /* COMMENTING AND POSTING UI */
2781 /*****************************/
2783 .comment-controls {
2784 text-align: right;
2785 margin: 0 8px 8px 16px;
2786 position: relative;
2787 z-index: 9999;
2789 .comment-thread .comment-controls + .comment-thread > li:first-child {
2790 margin-top: 8px;
2792 .comments > .comment-controls {
2793 margin: 8px 0 0 0;
2795 .comments > .comment-controls:last-child {
2796 margin: 8px 0 16px 0;
2799 .posting-controls input[type='submit'] {
2800 margin: 6px;
2801 padding: 4px 10px;
2802 font-size: 1.125rem;
2805 .comment-controls .cancel-comment-button {
2806 position: absolute;
2807 right: 0;
2808 margin: 0;
2809 height: 27px;
2810 font-size: inherit;
2811 padding: 4px 8px 2px 4px;
2812 z-index: 1;
2814 .comment-controls .cancel-comment-button::before {
2815 font-family: "Font Awesome", "Font Awesome 5 Free";
2816 margin-right: 3px;
2817 content: '\F00D';
2818 font-weight: 900;
2819 font-size: 0.9em;
2820 opacity: 0.7;
2823 .comment + .comment-controls .action-button {
2824 font-weight: normal;
2825 font-size: 1.0625em;
2826 padding: 1px 6px;
2828 .comment-controls .action-button::before {
2829 font-family: "Font Awesome", "Font Awesome 5 Free";
2830 margin-right: 3px;
2832 .new-comment-button {
2833 font-size: 1.5rem;
2834 margin: 0 0.25em;
2836 .comment-controls .reply-button::before {
2837 content: '\F3E5';
2838 font-weight: 900;
2839 font-size: 0.9em;
2840 opacity: 0.6;
2842 .comment-meta .replied::before {
2843 content: '\F3E5';
2844 font-family: "Font Awesome", "Font Awesome 5 Free";
2845 color: #9740cb;
2846 font-weight: 900;
2847 font-size: 0.9em;
2848 opacity: 0.6;
2851 .post-controls {
2852 text-align: right;
2853 margin: 0.75em 0 0 0;
2854 align-self: start;
2855 justify-self: end;
2857 .edit-post-link {
2858 display: inline-block;
2859 margin-bottom: 0.25em;
2860 font-size: 1.125rem;
2862 .edit-post-link::before {
2863 margin-right: 0.3em;
2865 .comment-controls .edit-button::before,
2866 .edit-post-link::before {
2867 content: '\F303';
2868 font-family: "Font Awesome", "Font Awesome 5 Free";
2869 font-weight: 900;
2870 font-size: 0.75em;
2871 position: relative;
2872 top: -1px;
2875 .comment-controls .delete-button {
2876 margin-right: 0.25em;
2878 .comment-controls .edit-button,
2879 .comment-controls .retract-button,
2880 .comment-controls .unretract-button {
2881 margin-right: 1em;
2883 .comment-controls .retract-button::before {
2884 content: '\F4B3';
2885 opacity: 0.6;
2887 .comment-controls .unretract-button::before {
2888 content: '\F075';
2889 opacity: 0.9;
2891 .comment-controls .delete-button::before {
2892 content: '\F05E';
2893 opacity: 0.7;
2895 .comment-controls .retract-button::before,
2896 .comment-controls .unretract-button::before,
2897 .comment-controls .delete-button::before {
2898 font-weight: 900;
2899 font-size: 0.9em;
2902 .comment-controls form {
2903 position: relative;
2905 .textarea-container {
2906 position: relative;
2908 .posting-controls textarea {
2909 display: block;
2910 width: 100%;
2911 height: 15em;
2912 min-height: 15em;
2913 max-height: calc(100vh - 6em);
2914 margin: 2px 0 0 0;
2915 padding: 4px 5px;
2916 font-size: 1.2rem;
2917 border-style: solid;
2918 border-width: 29px 1px 1px 1px;
2919 resize: none;
2922 /* GUIEdit buttons */
2924 .guiedit-buttons-container {
2925 position: absolute;
2926 left: 1px;
2927 top: 1px;
2928 width: calc(100% - 2px);
2929 height: 28px;
2930 text-align: left;
2931 padding: 1px 4px 0 4px;
2932 overflow: hidden;
2934 .comment-thread-page .guiedit-buttons-container {
2935 padding-right: 60px;
2937 .guiedit-buttons-container button {
2938 height: 26px;
2939 padding: 0 7px;
2940 font-weight: 900;
2941 font-size: 0.875rem;
2942 line-height: 1;
2943 position: static;
2945 .guiedit-buttons-container button:active {
2946 transform: none;
2948 .guiedit-buttons-container button:active div {
2949 transform: scale(0.9);
2951 .guiedit-buttons-container button sup {
2952 font-weight: bold;
2954 .guiedit::after {
2955 content: attr(data-tooltip);
2956 position: absolute;
2957 font-weight: normal;
2958 font-size: 1rem;
2959 top: 2px;
2960 left: 464px;
2961 height: 25px;
2962 padding: 4px 0;
2963 white-space: nowrap;
2964 visibility: hidden;
2966 .guiedit:hover::after {
2967 visibility: visible;
2970 /* Markdown hints */
2972 .posting-controls .markdown-reference-link {
2973 float: left;
2974 padding: 1px 0 0 6px;
2976 .posting-controls .markdown-reference-link a {
2977 padding-right: 1.5em;
2978 margin-right: 0.15em;
2979 background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAQAAABNTyozAAAEDklEQVR4Ae3cY3QDjRaG0V1e27Zt27Zt27Ztf7Zt27Zt10jOdZtZzbSN2q41533+tsFO4zRi0TKRJVACJdDiJVACJVACJVACZQmUQAmUQAmUQAmUQFkCJVACJVACJVACJVDWuD7P8icnGRcVbdyJ/uRZ+jTZYxwq/lN2qMcozvtMibmySe/TsPeqi0JZ3XsAHm1SZAua9CjgoMQo6UB4uiim5gbXV7Ab1EQxT+P3RRw/dHtV3e39UL3g8XuOEw39QNX3g4LHcYwU/n5uo+q7beGKNqLwJ3U1cteKuepEQ1cid03BJIESKIESKIESKIESaIkl0I3dv7Q7a293c//ShrWym7l/abdbGaCnidJGPFzre6opUdqDtLJXitJ+svpA4Uy30dru6hJRHaCws37L37CDRbWAwvctf38S1QOqe43l7f2iikDheg+x9J5ksqpA4TS3svju5CJRXaCwvX7lG3KAqDZQ+Jby/U4kUM0rNN+7hAQSrvNAC/c4Ewn0/052C8Xd0fkigebbRp/5DdpHJFCxr5nfr4QEUqzmJYC3iQRq1jXuj8cYT6CyTnAv54oEKm9EJFBnJVAC7eoS0XJn2r8qQP/wNFOipUY8wvbVAeIjooXq3ki1gPhHC0A/oWWgQZ/37ZI2FaUdVPpb33LHlQS6scPFstrDQBtAvEpNdLEfsZJA3N3lYsnOcTvaAuKzomttqW+lgXimabFoYx5N20D8SXSlw9yElQfiE0J5dW+lI6BBu4uOO8+dWB0g1hel/YIOgbiVE0VHXefhrB7QTRwtmra3gS4AcW+Xibab8SJWE4h7uaLpn/Ud6AoQTzIu2uzDrDYQzzUjCo17HF0D4g3qoo1+yWoCld8hv5OuAvFl0XLb6V8rQGws5votXQfqs45oqaPdjLUDdNO5f7Xa32APgBhu6b2SC92VtQTEfVwlXOhO9ASI2zhNLKsRj2atAfFCo55Iz4C4nyvFks16OWsRiPvQUyCeblIs0adYq0B6DsTb1EV5fk+1gfiWKG0XAwnUZyPRtOPdggTiRg4UC7rEPUkg4PbOFIXGPIEEmt+DCmeu5rUkUHHPaXj76Qsk0MK9R/ynv5FAzfdDYS9Da+n/xe6ovd2lS/8vVlyfH7o1vQLKJVACJVACJVACJVACIYGW/A6z/A6zG8RcNbdT9d1eTcx1A8eKhn6s6vtxweNYfisaqvupu+jXV8H63cXP1Asev+Wpopi6aVMVbFpdFPMUlP6jdrY/8AgTYkHZhEcAvFNdFMpq3qFh78y/okIT3qk4j8zborn290hN91S/c6zrzapVsFnXO9bvPFXjYtEykSVQAnVUAiVQAiVQAiVQAiVQlkAJlEAJlEAJlEAJlCVQAiVQAiVQAiVQAmX/BMHb3CdNrgcrAAAAAElFTkSuQmCC');
2980 background-size: 1.25em;
2981 background-repeat: no-repeat;
2982 background-position: right center;
2985 #markdown-hints-checkbox + label {
2986 float: left;
2987 margin: 2px 0 0 1em;
2988 line-height: 1.3;
2989 cursor: pointer;
2991 #edit-post-form #markdown-hints-checkbox + label {
2992 padding: 0;
2994 #markdown-hints-checkbox {
2995 visibility: hidden;
2996 float: left;
2998 #markdown-hints-checkbox + label::after {
2999 content: "(Show Markdown help)";
3001 #markdown-hints-checkbox:checked + label::after {
3002 content: "(Hide Markdown help)";
3004 #markdown-hints-checkbox + label::before {
3005 content: '\F059';
3006 font-family: "Font Awesome", "Font Awesome 5 Free";
3007 font-weight: 900;
3008 margin-right: 3px;
3010 #markdown-hints-checkbox:checked + label::before {
3011 font-weight: normal;
3013 #markdown-hints {
3014 margin: 4px 0 0 4px;
3015 padding: 4px 8px;
3016 position: absolute;
3017 text-align: left;
3018 top: calc(100% - 1em);
3019 z-index: 1;
3020 display: none;
3022 .comment-controls #markdown-hints {
3023 top: calc(100% + 1.75em);
3025 #markdown-hints-checkbox:checked ~ #markdown-hints {
3026 display: table;
3028 .markdown-hints-row {
3029 display: table-row;
3031 #markdown-hints .markdown-hints-row span,
3032 #markdown-hints .markdown-hints-row code {
3033 float: none;
3034 display: table-cell;
3035 border: none;
3036 background-color: inherit;
3037 padding: 0 12px 0 0;
3040 /******************/
3041 /* EDIT POST FORM */
3042 /******************/
3044 #edit-post-form {
3045 padding: 1em 1em 4em 1em;
3047 #edit-post-form .post-meta-fields {
3048 display: grid;
3049 grid-template-columns: 5em auto auto auto 1fr auto;
3050 margin-bottom: 0.625em;
3053 #edit-post-form label[for='title'],
3054 #edit-post-form label[for='url'],
3055 #edit-post-form label[for='section'] {
3056 grid-column: 1;
3058 #edit-post-form input[type='text'] {
3059 padding: 0.25em;
3060 grid-column: 2 / span 4;
3061 margin-bottom: 0.5em;
3064 #edit-post-form .link-post-checkbox,
3065 #edit-post-form .link-post-checkbox + label {
3066 grid-row: 1;
3067 grid-column: 6;
3069 #edit-post-form .question-checkbox,
3070 #edit-post-form .question-checkbox + label {
3071 grid-row: 3;
3072 grid-column: 5;
3073 justify-self: start;
3074 margin-left: 1.5em;
3077 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3078 grid-row: 4;
3079 grid-column: 2 / span 4;
3080 text-align: left;
3081 margin-top: 8px;
3084 #edit-post-form .post-meta-fields input[type='checkbox'] {
3085 height: 0;
3086 opacity: 0;
3087 pointer-events: none;
3089 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3090 white-space: nowrap;
3091 position: relative;
3092 cursor: pointer;
3093 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3094 align-self: start;
3096 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3097 content: "";
3098 font-family: "Font Awesome", "Font Awesome 5 Free";
3099 font-size: 1.375rem;
3100 line-height: 0.7;
3101 text-indent: 1px;
3102 font-weight: 900;
3103 position: absolute;
3104 width: 20px;
3105 height: 20px;
3106 left: 5px;
3108 #edit-post-form label[for='url'],
3109 #edit-post-form input[name='url'] {
3110 display: none;
3112 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3113 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3114 display: initial;
3116 #edit-post-form label {
3117 line-height: normal;
3118 border: 1px solid transparent;
3119 text-align: right;
3120 padding: 0.25em 0.5em;
3121 white-space: nowrap;
3123 #edit-post-form input[type='radio'] {
3124 width: 0;
3125 margin: 0;
3126 opacity: 0;
3127 pointer-events: none;
3129 #edit-post-form input[type='radio'] + label {
3130 padding: 4px 12px;
3131 text-align: center;
3132 border-style: solid;
3133 border-width: 1px 1px 1px 0;
3134 cursor: pointer;
3136 #edit-post-form input[type='radio']:checked + label {
3137 cursor: default;
3140 #edit-post-form label[for='section'] {
3141 grid-row: 3;
3143 #edit-post-form input[type='radio'] + label {
3144 grid-row: 3;
3146 @supports (width: -moz-fit-content) {
3147 #edit-post-form input[type='radio'] + label {
3148 width: -moz-fit-content;
3151 @supports (width: fit-content) {
3152 #edit-post-form input[type='radio'] + label {
3153 width: fit-content;
3157 #edit-post-form textarea {
3158 min-height: 24em;
3161 #edit-post-form input[type='submit'] {
3162 padding: 6px 12px;
3163 float: right;
3165 #edit-post-form #markdown-hints {
3166 top: calc(100% + 2em);
3169 #edit-post-form button.guiedit div {
3170 overflow: visible;
3172 .guiedit-mobile-auxiliary-button {
3173 display: none;
3176 /***********/
3177 /* BUTTONS */
3178 /***********/
3180 button,
3181 input[type='submit'] {
3182 font-family: inherit;
3183 font-size: inherit;
3184 background-color: inherit;
3185 cursor: pointer;
3186 border: none;
3187 border-radius: 0;
3190 /************/
3191 /* HEADINGS */
3192 /************/
3194 .body-text h1,
3195 .body-text h2,
3196 .body-text h3,
3197 .body-text h4,
3198 .body-text h5,
3199 .body-text h6 {
3200 line-height: 1.1;
3201 margin: 1em 0 0.75em 0;
3202 text-align: left;
3205 .post-body h5,
3206 .post-body h6 {
3207 font-size: 1em;
3209 .post-body h4 {
3210 font-size: 1.2em;
3212 .post-body h3 {
3213 font-size: 1.4em;
3215 .post-body h2 {
3216 font-size: 1.75em;
3218 .post-body h1 {
3219 font-size: 2.1em;
3222 .comment-body h5,
3223 .comment-body h6 {
3224 font-size: 1em;
3226 .comment-body h4 {
3227 font-size: 1.15em;
3229 .comment-body h3 {
3230 font-size: 1.3em;
3232 .comment-body h2 {
3233 font-size: 1.5em;
3235 .comment-body h1 {
3236 font-size: 1.75em;
3239 /**********/
3240 /* QUOTES */
3241 /**********/
3243 blockquote,
3244 .post-body .comment-box .comment-body {
3245 font-size: 0.9em;
3246 margin: 1em 0;
3247 padding-left: 0.5em;
3248 margin-left: 1px;
3249 padding-bottom: 3px;
3251 blockquote *:first-child {
3252 margin-top: 0;
3254 blockquote *:last-child {
3255 margin-bottom: 0;
3257 blockquote blockquote {
3258 font-size: 0.95em;
3261 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3263 .post-body .comment-box .user-name {
3264 font-style: italic;
3266 .post-body .comment-box .user-name::after {
3267 content: ":";
3269 .post-body .comment-box {
3270 zoom: 1.25;
3273 /**********/
3274 /* IMAGES */
3275 /**********/
3277 #content img, #content figure {
3278 max-width: 100%;
3281 .prediction-poll > svg {
3282 width: 700px;
3283 max-width: 100%;
3286 img.inline-latex {
3287 position: relative;
3288 top: 2.5px;
3289 margin: 0 2px;
3292 #content figure {
3293 text-align: center;
3294 margin: 1.5em auto;
3297 p.imgonly,
3298 div.imgonly,
3299 figure {
3300 text-align: center;
3301 margin: auto;
3302 clear: both;
3305 .imgonly iframe {
3306 display: block;
3307 width: 100%;
3308 height: 250px;
3309 border: 0;
3312 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3314 [style*="--aspect-ratio"] > * {
3315 width: 100%;
3317 [style*="--aspect-ratio"] > img {
3318 height: auto;
3320 @supports (--custom:property) {
3321 [style*="--aspect-ratio"] {
3322 position: relative;
3324 [style*="--aspect-ratio"]::before {
3325 content: "";
3326 display: block;
3327 padding-bottom: calc(100% / (var(--aspect-ratio)));
3329 [style*="--aspect-ratio"] > * {
3330 position: absolute;
3331 top: 0;
3332 left: 0;
3333 height: 100%;
3337 /**********/
3338 /* TABLES */
3339 /**********/
3341 .body-text table {
3342 border-collapse: collapse;
3343 font-size: 0.875em;
3345 .body-text table th,
3346 .body-text table td {
3347 text-align: left;
3348 padding: 4px 6px;
3349 line-height: 1.3;
3351 .body-text table .numeric {
3352 text-align: right;
3353 font-family: Inconsolata, Menlo, monospace;
3355 .body-text table caption {
3356 margin: 0 0 0.25em 0;
3357 font-weight: bold;
3358 font-size: 1.125em;
3361 /********/
3362 /* MISC */
3363 /********/
3365 /*= Superscripts & subscripts =*/
3367 /* Make sure superscripts and subscripts do not affect line spacing. */
3368 sup, sub {
3369 vertical-align: baseline;
3370 position: relative;
3371 top: -0.5em;
3372 left: 0.05em;
3373 font-size: 0.8em;
3375 sub {
3376 top: 0.3em;
3379 /*= Code blocks & other "unstyled" text. =*/
3381 pre,
3382 code {
3383 font-family: Inconsolata, Menlo, monospace;
3385 pre {
3386 white-space: pre-wrap;
3388 .body-text pre {
3389 text-align: left;
3391 code {
3392 font-size: 0.95em;
3393 display: inline-block;
3394 padding: 0 4px 1px 5px;
3396 pre > code {
3397 display: block;
3398 border-radius: 0;
3399 padding: 3px 4px 5px 8px;
3402 /*= Fractions =*/
3404 .frac::after {
3405 content: "\200B";
3408 /*= Removing browser default styling of various elements =*/
3410 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3411 :focus {
3412 outline: none;
3415 /* Remove "embossed" appearance of horizontal rules. */
3416 hr {
3417 border: none;
3420 input,
3421 button,
3422 textarea {
3423 -webkit-appearance: none;
3424 -moz-appearance: none;
3425 appearance: none;
3428 input {
3429 font-family: inherit;
3430 font-size: inherit;
3431 font-weight: inherit;
3434 /*************/
3435 /* FOOTNOTES */
3436 /*************/
3438 ol {
3439 counter-reset: ordered-list;
3441 .footnote-definition {
3442 font-size: 0.9em;
3443 list-style-type: none;
3444 counter-increment: ordered-list;
3445 position: relative;
3447 .footnote-definition p {
3448 font-size: inherit !important;
3450 .footnote-definition::before {
3451 content: counter(ordered-list) ".";
3452 position: absolute;
3453 left: -2.5em;
3454 font-weight: bold;
3455 text-align: right;
3456 width: 2em;
3459 /*= LW Docs footnotes =*/
3461 .footnote-item {
3462 display: flex;
3465 .footnote-item > :not(.nothing) {
3466 margin: 0 0.2em;
3469 .footnote-item > :first-child {
3470 margin-left: -0.2em;
3471 margin-right: 0;
3474 .footnote-back-link a:not(.nothing) {
3475 font-size: 0;
3476 text-decoration: none;
3477 border: none;
3480 .footnote-back-link a:not(.nothing):hover {
3481 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #0cc800;
3482 border: none;
3483 text-decoration: none;
3486 .footnote-back-link a::after {
3487 content: '\F106';
3488 font-family: Font Awesome;
3489 font-size: 1rem;
3490 padding: 0.2em;
3491 text-decoration: none;
3492 font-weight: bold;
3495 .footnote-content > :first-child {
3496 margin-top: 0;
3499 /*********/
3500 /* LISTS */
3501 /*********/
3503 li {
3504 margin-bottom: 0.5em;
3507 .body-text ol p,
3508 .body-text ul p {
3509 margin: 0.5em 0;
3512 .body-text ol {
3513 list-style: none;
3514 padding: 0;
3515 counter-reset: ol;
3517 .body-text ol > li {
3518 position: relative;
3519 counter-increment: ol;
3520 padding: 0 0 0 2.5em;
3521 margin: 0.25em 0 0 0;
3523 .body-text ol > li::before {
3524 content: counter(ol) ".";
3525 position: absolute;
3526 width: 2em;
3527 text-align: right;
3528 left: 0;
3530 .body-text ul {
3531 list-style: none;
3532 padding: 0;
3534 .body-text ul:not(.contents-list) > li:empty {
3535 padding-bottom: 1.25em;
3537 .body-text ul:not(.contents-list) > li {
3538 position: relative;
3539 padding: 0 0 0 1.75em;
3540 margin: 0.25em 0 0 0;
3542 .body-text ul:not(.contents-list) > li ul > li {
3543 padding: 0 0 0 2em;
3545 .body-text ul:not(.contents-list) > li::before {
3546 content: "•";
3547 position: absolute;
3548 width: 1.25em;
3549 text-align: right;
3550 left: 0;
3552 .body-text ul:not(.contents-list) > li ul > li::before {
3553 width: 1.5em;
3555 .body-text li > ul:first-child > li {
3556 padding-left: 0;
3558 .body-text li > ul:first-child > li::before {
3559 content: none;
3562 /**************/
3563 /* ERROR PAGE */
3564 /**************/
3566 .error-retry-form {
3567 margin: 0.5em 0;
3570 .error-retry-form input[type="submit"] {
3571 border: 1px solid #484848;
3572 font-weight: bold;
3573 font-size: 1.125rem;
3574 padding: 0.5em 1.25em;
3577 /**************/
3578 /* ABOUT PAGE */
3579 /**************/
3581 #content.about-page .contents {
3582 margin-top: 0.25em;
3584 #content.about-page .accesskey-table {
3585 border-collapse: collapse;
3586 margin: auto;
3588 #content.about-page .accesskey-table th,
3589 #content.about-page .accesskey-table td {
3590 padding: 2px 6px;
3592 #content.about-page .accesskey-table td:first-child {
3593 padding-right: 1.5em;
3595 #content.about-page .accesskey-table td:last-child {
3596 text-align: center;
3597 font-family: Inconsolata, Menlo, monospace;
3599 #content.about-page h3:nth-of-type(n+2) {
3600 clear: both;
3603 /******************/
3604 /* IMAGES OVERLAY */
3605 /******************/
3607 #images-overlay + #content .post-body img {
3608 visibility: hidden;
3611 #images-overlay div {
3612 position: absolute;
3614 #images-overlay div::after {
3615 content: "Click to enlarge";
3616 display: block;
3617 position: absolute;
3618 margin: auto;
3619 left: 0;
3620 right: 0;
3621 bottom: 10px;
3622 padding: 6px 10px;
3623 font-size: 1.25rem;
3624 background-color: rgba(255, 255, 255, 0.6);
3625 color: #000;
3626 border-radius: 5px;
3627 opacity: 0.0;
3628 transition: opacity 0.15s ease;
3629 pointer-events: none;
3631 @supports (width: -moz-fit-content) {
3632 #images-overlay div::after {
3633 width: -moz-fit-content;
3636 @supports (width: fit-content) {
3637 #images-overlay div::after {
3638 width: fit-content;
3641 #images-overlay div:hover::after {
3642 opacity: 1.0;
3645 #images-overlay img {
3646 width: 100%;
3649 /***************/
3650 /* IMAGE FOCUS */
3651 /***************/
3653 /*=--------------=*/
3654 /*= Hover styles =*/
3655 /*=--------------=*/
3657 #content img:hover,
3658 #images-overlay img:hover {
3659 filter: drop-shadow(0 0 3px #777);
3660 cursor: zoom-in;
3662 #content img:active,
3663 #images-overlay img:active {
3664 transform: scale(0.975);
3667 /*=---------=*/
3668 /*= Overlay =*/
3669 /*=---------=*/
3671 #image-focus-overlay {
3672 position: fixed;
3673 top: 0;
3674 right: 0;
3675 bottom: 0;
3676 left: 0;
3677 z-index: 2;
3678 display: none;
3679 cursor: zoom-out;
3681 #image-focus-overlay::before {
3682 content: "";
3683 display: block;
3684 position: absolute;
3685 top: 0;
3686 right: 0;
3687 bottom: 0;
3688 left: 0;
3689 background-color: #fff;
3690 opacity: 0.5;
3691 z-index: -1;
3693 #image-focus-overlay.engaged {
3694 display: initial;
3697 #image-focus-overlay img {
3698 margin: auto;
3699 position: absolute;
3700 left: 50%;
3701 top: 50%;
3702 transform: translateX(-50%) translateY(-50%);
3705 /*=-------------------=*/
3706 /*= Single-image mode =*/
3707 /*=-------------------=*/
3709 #image-focus-overlay:not(.slideshow) .image-number,
3710 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3711 visibility: hidden;
3714 /*=---------=*/
3715 /*= Caption =*/
3716 /*=---------=*/
3718 #image-focus-overlay .caption {
3719 position: absolute;
3720 bottom: 0.75em;
3721 background-color: rgba(255, 255, 255, 0.7);
3722 left: 9em;
3723 right: 9em;
3724 margin: auto;
3725 max-width: calc(100% - 18em);
3726 text-align: center;
3727 font-size: 1.375em;
3728 border-radius: 8px;
3729 z-index: 1;
3730 transition:
3731 bottom 0.2s ease;
3733 @supports (width: -moz-fit-content) {
3734 #image-focus-overlay .caption {
3735 width: -moz-fit-content;
3738 @supports (width: fit-content) {
3739 #image-focus-overlay .caption {
3740 width: fit-content;
3743 #image-focus-overlay .caption.hidden {
3744 bottom: -5em;
3745 transition:
3746 bottom 0.5s ease;
3749 #image-focus-overlay .caption p {
3750 margin: 1em 1.25em;
3751 color: #000;
3754 #image-focus-overlay .caption:not(:empty)::before {
3755 content: "";
3756 display: block;
3757 position: absolute;
3758 width: 100vw;
3759 height: calc(100% + 1.5em);
3760 z-index: -1;
3761 top: -0.75em;
3762 left: calc(-50vw + 50%);
3766 /*=--------------=*/
3767 /*= Help overlay =*/
3768 /*=--------------=*/
3770 #image-focus-overlay .help-overlay {
3771 position: absolute;
3772 display: flex;
3773 flex-flow: column;
3774 z-index: 2;
3775 font-size: 1.5rem;
3776 padding: 1em;
3777 border-radius: 10px;
3778 bottom: 1em;
3779 right: 1em;
3780 overflow: hidden;
3781 white-space: nowrap;
3782 color: transparent;
3783 cursor: default;
3784 visibility: hidden;
3785 transition:
3786 visibility 1s ease,
3787 color 1s ease,
3788 background-color 1s ease,
3789 bottom 0.3s ease;
3791 #image-focus-overlay .help-overlay:hover {
3792 max-width: 24em;
3793 max-height: 14em;
3794 background-color: rgba(255, 255, 255, 0.85);
3795 color: #000;
3796 visibility: visible;
3797 transition:
3798 visibility 0.2s ease 0.3s,
3799 color 0.2s ease 0.3s,
3800 background-color 0.2s ease 0.3s;
3803 #image-focus-overlay .help-overlay::after {
3804 content: "\F128";
3805 font-family: "Font Awesome", "Font Awesome 5 Free";
3806 font-weight: 900;
3807 font-size: 2rem;
3808 position: absolute;
3809 right: 0;
3810 bottom: 0;
3811 padding: 10px;
3812 color: #fff;
3813 filter: drop-shadow(0 0 6px #fff);
3814 visibility: visible;
3815 opacity: 0.85;
3816 transition:
3817 visibility 1s ease;
3819 #image-focus-overlay .help-overlay:hover::after {
3820 visibility: hidden;
3821 transition:
3822 visibility 0.2s ease 0.3s;
3825 #image-focus-overlay .help-overlay p {
3826 margin: 0;
3827 text-indent: -2em;
3828 padding-left: 2em;
3829 max-width: 100%;
3830 overflow: hidden;
3832 #image-focus-overlay .help-overlay p + p {
3833 margin: 0.75em 0 0 0;
3835 #image-focus-overlay .help-overlay.hidden {
3836 bottom: -2em;
3839 /*=--------------=*/
3840 /*= Slide number =*/
3841 /*=--------------=*/
3843 #image-focus-overlay .image-number {
3844 position: absolute;
3845 z-index: 2;
3846 font-size: 1.75rem;
3847 left: 1em;
3848 bottom: 1em;
3849 font-weight: 600;
3850 text-shadow:
3851 0 0 3px #000,
3852 0 0 5px #000,
3853 0 0 8px #000,
3854 0 0 13px #000;
3855 width: 1.5em;
3856 text-align: right;
3857 white-space: nowrap;
3858 transition: bottom 0.3s ease;
3860 #image-focus-overlay .image-number::before {
3861 content: "#";
3862 opacity: 0.3;
3864 #image-focus-overlay .image-number::after {
3865 content: " of " attr(data-number-of-images);
3866 opacity: 0.3;
3868 #image-focus-overlay .image-number:hover::before,
3869 #image-focus-overlay .image-number:hover::after {
3870 opacity: 1.0;
3872 #image-focus-overlay .image-number.hidden {
3873 bottom: -1.25em;
3876 /*=-------------------=*/
3877 /*= Slideshow buttons =*/
3878 /*=-------------------=*/
3880 #image-focus-overlay .slideshow-buttons {
3881 position: absolute;
3882 top: 0;
3883 left: 0;
3884 width: 100%;
3885 height: 100%;
3886 z-index: 1;
3887 display: flex;
3888 justify-content: space-between;
3889 pointer-events: none;
3891 #image-focus-overlay .slideshow-buttons button {
3892 font-family: "Font Awesome", "Font Awesome 5 Free";
3893 font-weight: 900;
3894 font-size: 3rem;
3895 padding: 0.5em;
3896 color: #1f1f1f;
3897 position: relative;
3898 left: 0;
3899 transition:
3900 left 0.3s ease;
3901 pointer-events: auto;
3903 #image-focus-overlay .slideshow-buttons button::selection {
3904 background-color: transparent;
3906 @media only screen and (hover: hover) {
3907 #image-focus-overlay .slideshow-buttons button:hover {
3908 background-color: rgba(255, 255, 255, 0.1);
3909 color: #777;
3912 #image-focus-overlay .slideshow-buttons button:active {
3913 transform: none;
3914 color: #666;
3916 #image-focus-overlay .slideshow-buttons button:disabled {
3917 text-shadow: none;
3918 background-color: transparent;
3919 color: #1f1f1f;
3920 cursor: default;
3921 opacity: 0.4;
3923 #image-focus-overlay .slideshow-button.previous.hidden {
3924 left: -1.75em;
3926 #image-focus-overlay .slideshow-button.next.hidden {
3927 left: 1.75em;
3930 /*=-----------------=*/
3931 /*= Background blur =*/
3932 /*=-----------------=*/
3934 .blurred {
3935 filter: blur(3px);
3938 /**************************/
3939 /* QUALIFIED HYPERLINKING */
3940 /**************************/
3942 #content.no-nav-bars {
3943 margin: 8px auto;
3945 #content.no-nav-bars + #ui-elements-container > * {
3946 padding-top: 8px;
3949 #aux-about-link {
3950 position: fixed;
3951 top: 40px;
3952 left: calc((100% - 900px) / 2 - 69px);
3953 width: 1.5em;
3954 height: 1.5em;
3955 text-align: center;
3956 display: table;
3958 #aux-about-link a {
3959 display: table-cell;
3960 width: 100%;
3961 vertical-align: middle;
3962 font-family: "Font Awesome", "Font Awesome 5 Free";
3963 font-weight: 900;
3964 font-size: 1.25rem;
3965 opacity: 0.4;
3966 z-index: 1;
3969 .qualified-linking {
3970 margin: 0;
3971 position: relative;
3973 .qualified-linking input[type='checkbox'] {
3974 visibility: hidden;
3975 width: 0;
3976 height: 0;
3977 margin: 0;
3979 .qualified-linking label {
3980 font-family: "Font Awesome", "Font Awesome 5 Free";
3981 font-weight: 900;
3982 font-size: 1rem;
3983 padding: 0 0.5em;
3984 display: inline-block;
3985 margin-left: 0.25em;
3987 .qualified-linking label:hover {
3988 cursor: pointer;
3990 .qualified-linking label:active span {
3991 display: inline-block;
3992 transform: scale(0.9);
3994 .qualified-linking label::selection {
3995 background-color: transparent;
3998 .qualified-linking label::after {
3999 content: "";
4000 width: 100vw;
4001 height: 0;
4002 left: 0;
4003 top: 0;
4004 position: fixed;
4005 z-index: 1;
4006 cursor: default;
4008 .qualified-linking input[type='checkbox']:checked + label::after {
4009 height: 100vh;
4012 .qualified-linking-toolbar {
4013 position: absolute;
4014 right: 0.25em;
4015 top: 110%;
4016 z-index: 1;
4018 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4019 display: none;
4021 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4022 display: block;
4024 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4025 top: unset;
4026 bottom: 125%;
4029 .qualified-linking-toolbar a {
4030 display: block;
4031 padding: 0 6px;
4032 margin: 4px;
4034 .qualified-linking-toolbar a::selection {
4035 background-color: transparent;
4038 /*****************/
4039 /* HOVER PREVIEW */
4040 /*****************/
4042 #preview-popup-toggle {
4043 position: absolute;
4044 right: -67px;
4045 bottom: 285px;
4046 cursor: pointer;
4047 color: var(--GW-toggle-widget-color, #888);
4049 #preview-popup-toggle:hover {
4050 color: var(--GW-toggle-widget-hover-color, #444);
4053 #content.preview:not(not) {
4054 padding: 0;
4056 #content.preview > .comment-thread {
4057 margin: 2px;
4059 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4060 border: none;
4062 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4063 padding: 0 8px;
4065 #content.preview.user-page .page-main-heading {
4066 margin-left: 8px;
4068 #content.preview.not(not) .body-text {
4069 margin-left: 8px;
4070 margin-right: 8px;
4072 #content.preview.user-page .user-stats {
4073 margin-right: 32px;
4075 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4076 display: none;
4078 #content.preview button.vote {
4079 display: none;
4081 #content.preview > h1.listing {
4082 max-height: unset;
4084 #content.preview.user-page > .comment-thread {
4085 margin: 0.5em 0;
4087 #content.preview > .post {
4088 margin: 0 18px;
4090 #content.preview .post-title {
4091 margin-top: 0.5em;
4093 #content.preview .post-meta {
4094 line-height: 1.0;
4096 #content.preview .body-text {
4097 font-size: 1em;
4099 #content.preview nav.contents,
4100 #content.preview .lw2-link {
4101 display: none;
4104 .preview-popup {
4105 position: fixed;
4106 transform-origin: top;
4107 top: 10%;
4108 right: 10%;
4109 max-width: 700px;
4110 z-index: 10001;
4111 background-color: #131313;
4112 border: 1px solid #2c2c2c;
4113 box-shadow: 2px 6px 20px -4px #fff;
4114 transition: height 0.2s ease, top 0.2s ease;
4116 .popup-hide-button {
4117 position: fixed;
4118 top: 4px;
4119 right: 4px;
4120 color: #fff;
4121 background-color: #000;
4122 width: 28px;
4123 height: 28px;
4124 display: flex;
4125 font-family: "Font Awesome";
4126 font-size: 14px;
4127 line-height: 1;
4128 border: 1px solid #393939;
4129 border-radius: 28px;
4130 align-items: center;
4131 justify-content: center;
4132 //padding-bottom: 2px;
4133 padding-left: 1.5px;
4134 font-family: "Font Awesome", "Font Awesome 5 Free";
4135 cursor: pointer;
4137 .popup-hide-button:hover::before {
4138 content: "Turn off preview popups";
4139 display: block;
4140 position: absolute;
4141 width: max-content;
4142 right: 32px;
4143 color #fff;
4144 background-color: #000;
4145 border: 1px solid #131313;
4146 border-radius: 2px;
4147 padding: 4px;
4150 /********/
4151 /* MATH */
4152 /********/
4154 .mathjax-block-container {
4155 display: block;
4156 overflow-y: hidden;
4157 border-radius: 6px;
4158 margin: 1em 0 1.5em 0;
4160 .mathjax-inline-container {
4161 max-width: 100%;
4162 display: inline-block;
4163 overflow-x: auto;
4164 overflow-y: hidden;
4165 position: relative;
4166 vertical-align: text-top;
4167 padding: 0 1px;
4169 .post .mathjax-inline-container {
4170 line-height: 1.1;
4171 top: 2px;
4173 .comment .mathjax-inline-container {
4174 top: 3px;
4175 line-height: 1;
4177 .mathjax-inline-container .mjx-chtml {
4178 padding: 0;
4181 /************/
4182 /* SPOILERS */
4183 /************/
4185 .spoiler {
4186 color: #fff;
4187 background-color: currentColor;
4188 transition: none;
4189 text-shadow: none;
4190 margin: 1em 0;
4191 box-shadow: 0 0 0 1px currentColor inset;
4192 overflow: auto;
4194 .spoiler:not(:last-child) {
4195 margin-bottom: 0;
4197 #content .spoiler * {
4198 color: inherit;
4199 border: none;
4201 .spoiler:hover {
4202 color: unset;
4203 background-color: unset;
4204 text-shadow: unset;
4205 transition:
4206 color 0.1s ease-out 0.1s,
4207 background-color 0.1s ease-out 0.1s,
4208 text-shadow 0.1s ease-out 0.1s;
4210 .spoiler::selection,
4211 .spoiler ::selection {
4212 color: #000;
4213 background-color: #fff;
4215 .spoiler:not(:hover)::selection,
4216 .spoiler:not(:hover) ::selection {
4217 background-color: transparent;
4220 /*= Fix for LessWrong being weird =*/
4222 .spoiler > p {
4223 padding: 0 7px;
4225 .spoiler > p:first-child {
4226 margin-top: 0.25em;
4228 .spoiler > p:last-child {
4229 margin-bottom: 0;
4230 padding-bottom: 0.25em;
4232 .spoiler > p:hover ~ p {
4233 background-color: currentColor;
4235 .spoiler > p + p {
4236 margin-top: -1em;
4238 .spoiler > p:not(:first-child) {
4239 padding-top: 0.5em;
4241 .spoiler > p:not(:last-child) {
4242 padding-bottom: 0.5em;
4245 .spoiler:not(:hover) pre,
4246 .spoiler:not(:hover) code {
4247 background-color: inherit;
4248 box-shadow: none;
4250 #content .spoiler pre {
4251 border-color: currentColor;
4252 border-style: solid;
4253 border-width: 0 1px;
4254 border-radius: 0;
4257 /*******************/
4258 /* PAGE LIST INDEX */
4259 /*******************/
4261 .page-list-index {
4262 margin: 1em 30px;
4263 line-height: 1.2;
4266 .page-list-index > p {
4267 font-weight: bold;
4268 font-size: 1.2em;
4271 .page-list-index > ul * {
4272 margin: 0;
4275 .page-list-index ul {
4276 padding-left: 1.5em;
4279 .page-list-index li {
4280 margin-top: 0.67em;
4283 .page-list-index li > a {
4284 display: block;
4285 font-size: 1.1em;
4286 font-weight: bold;
4287 margin: 0.33em 0;
4290 .page-list-index li > a:last-child {
4291 margin-bottom: 1em;
4294 /*******************/
4295 /* ALIGNMENT FORUM */
4296 /*******************/
4298 #content.alignment-forum-index-page::after {
4299 content: "Alignment Forum";
4300 font-size: 1.5rem;
4301 margin: 0.375em 0 0 -0.375em;
4302 order: -1;
4305 /**********************/
4306 /* FOR NARROW SCREENS */
4307 /**********************/
4309 @media only screen and (max-width: 1440px) {
4310 #hns-date-picker {
4311 right: -81px;
4312 padding: 8px 10px 10px 10px;
4313 bottom: 62px;
4314 display: none;
4316 #hns-date-picker::before {
4317 content: "";
4318 position: absolute;
4319 display: block;
4320 z-index: -1;
4321 height: calc(100% + 2px);
4322 top: -1px;
4323 left: -1px;
4324 width: 50%;
4327 @media only screen and (max-width: 1160px) {
4328 #new-comment-nav-ui {
4329 bottom: 180px;
4330 right: -68px;
4332 #hns-date-picker {
4333 bottom: 200px;
4334 right: -36px;
4336 #hns-date-picker::before {
4337 width: calc(100% - 35px);
4339 #theme-selector button::before {
4340 right: unset;
4341 left: 100%;
4343 #theme-selector:hover::after {
4344 content: "";
4345 display: block;
4346 position: absolute;
4347 width: calc(6em - 7px);
4348 height: calc(100% + 2px);
4349 top: 0;
4350 left: calc(100% + 1px);
4352 #anti-kibitzer-toggle {
4353 bottom: 330px;
4356 @media only screen and (max-width: 1080px) {
4357 #width-selector {
4358 right: -30px;
4360 #width-selector button {
4361 display: block;
4363 #text-size-adjustment-ui {
4364 top: 90px;
4365 right: -30px;
4367 #text-size-adjustment-ui button {
4368 display: block;
4369 position: relative;
4371 #text-size-adjustment-ui button.increase {
4372 bottom: 48px;
4374 #text-size-adjustment-ui button.decrease {
4375 top: 50px;
4377 #theme-selector {
4378 top: 46px;
4379 left: -44px;
4381 #theme-tweaker-toggle {
4382 left: -44px;
4383 top: 2px;
4385 #theme-tweaker-toggle button {
4386 height: 2em;
4387 width: 2em;
4388 padding: 7px;
4390 #quick-nav-ui {
4391 right: -54px;
4393 #new-comment-nav-ui {
4394 right: -55px;
4396 #hns-date-picker {
4397 right: -23px;
4399 #hns-date-picker::before {
4400 width: calc(100% - 22px);
4402 #anti-kibitzer-toggle {
4403 right: -54px;
4406 @media only screen and (max-width: 1040px) {
4407 #quick-nav-ui {
4408 right: -49px;
4410 #new-comment-nav-ui {
4411 right: -50px;
4413 #hns-date-picker {
4414 right: -18px;
4416 #hns-date-picker::before {
4417 width: calc(100% - 17px);
4419 #anti-kibitzer-toggle {
4420 right: -50px;
4423 @media only screen and (max-width: 1020px) {
4424 #quick-nav-ui {
4425 right: -20px;
4427 #new-comment-nav-ui {
4428 right: -21px;
4430 #new-comment-nav-ui .new-comments-count::before {
4431 content: "";
4432 position: absolute;
4433 width: 100%;
4434 height: calc(100% + 45px);
4435 z-index: -1;
4436 left: 0;
4437 top: -22px;
4439 #hns-date-picker {
4440 right: 19px;
4442 #hns-date-picker::before {
4443 width: 100%;
4445 #anti-kibitzer-toggle {
4446 right: -20px;
4449 @media only screen and (max-width: 1000px) {
4450 #theme-selector {
4451 left: -17px;
4452 top: 120px;
4453 padding: 3px 0;
4454 max-width: 32px;
4456 #theme-selector button {
4457 margin: 1px 4px;
4459 #text-size-adjustment-ui {
4460 top: 100px;
4461 right: -12px;
4463 @media not screen and (hover: none) {
4464 #quick-nav-ui,
4465 #new-comment-nav-ui,
4466 #new-comment-nav-ui + #hns-date-picker,
4467 #anti-kibitzer-toggle {
4468 opacity: 0.4;
4470 #quick-nav-ui:hover,
4471 #new-comment-nav-ui:hover,
4472 #new-comment-nav-ui + #hns-date-picker:hover,
4473 #new-comment-nav-ui + #hns-date-picker:focus-within,
4474 #new-comment-nav-ui:hover + #hns-date-picker,
4475 #anti-kibitzer-toggle:hover {
4476 opacity: 1.0;
4479 #theme-tweaker-toggle {
4480 top: 70px;
4481 left: -21px;
4485 /**************/
4486 /* PRINT VIEW */
4487 /**************/
4489 @media only print {
4490 .nav-bar {
4491 visibility: hidden;
4492 max-height: 0;
4493 overflow: hidden;
4495 #ui-elements-container {
4496 display: none;
4498 #images-overlay {
4499 display: none;
4501 #images-overlay + #content .post-body img {
4502 visibility: visible;
4504 .comment-controls {
4505 display: none;
4507 #comments-sort-mode-selector {
4508 display: none;
4510 .comment-minimize-button {
4511 display: none;
4513 .post-meta .qualified-linking,
4514 .post-meta .lw2-link {
4515 display: none;
4517 .comment-meta .permalink,
4518 .comment-meta .lw2-link,
4519 .comment-meta .comment-parent-link {
4520 display: none;
4522 .new-comment::before {
4523 display: none;
4525 #content::before {
4526 box-shadow: none;
4530 /*****************/
4531 /* MOBILE LAYOUT */
4532 /*****************/
4534 /* Hide the mobile elements on desktop screens: */
4536 @media only screen and (max-width: 1160px) {
4537 #post-nav-ui-toggle,
4538 #appearance-adjust-ui-toggle {
4539 display: none;
4543 @media only screen and (max-width: 1160px) {
4545 /*====================*/
4546 /* MOBILE UI ELEMENTS */
4547 /*====================*/
4549 #ui-elements-container {
4550 height: unset !important;
4551 position: unset;
4553 #ui-elements-container > * {
4554 position: fixed;
4555 visibility: hidden;
4556 opacity: 1.0;
4557 z-index: 10000;
4560 #ui-elements-container > div[id$='-ui-toggle'] {
4561 visibility: visible;
4562 display: inline-block;
4563 border-radius: 50%;
4564 z-index: 10000;
4566 #ui-elements-container > div[id$='-ui-toggle'] button,
4567 #theme-selector .theme-selector-close-button {
4568 font-family: Font Awesome;
4569 font-weight: 900;
4570 font-size: 32px;
4571 padding: 10px;
4572 opacity: 0.8;
4573 -webkit-tap-highlight-color: transparent;
4574 transition: transform 0.2s ease;
4576 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4577 #theme-selector .theme-selector-close-button::selection {
4578 background-color: transparent;
4580 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4581 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4582 border: none;
4584 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4585 transform: rotate(-90deg);
4586 opacity: 1.0;
4589 #appearance-adjust-ui-toggle {
4590 bottom: 10px;
4591 left: 10px;
4594 #post-nav-ui-toggle {
4595 bottom: 10px;
4596 right: 10px;
4599 #theme-selector.engaged,
4600 #quick-nav-ui.engaged,
4601 #new-comment-nav-ui.engaged,
4602 #hns-date-picker.engaged {
4603 visibility: visible;
4606 #image-focus-overlay.engaged {
4607 visibility: visible;
4609 #image-focus-overlay .help-overlay {
4610 display: none;
4613 /*=========*/
4614 /* GENERAL */
4615 /*=========*/
4617 @media only screen and (max-width: 900px) {
4618 #content,
4619 #images-overlay,
4620 #ui-elements-container {
4621 min-width: unset;
4622 width: unset;
4624 #content {
4625 padding: 0 4px;
4629 /*================*/
4630 /* THEME SELECTOR */
4631 /*================*/
4633 #theme-selector {
4634 display: flex;
4635 flex-flow: column;
4636 background-color: #000;
4637 width: calc(100vw - 20px);
4638 max-width: 360px;
4639 padding: 0 0 3px 0;
4640 overflow: hidden;
4641 max-height: 0;
4642 transition:
4643 top 0.2s ease,
4644 max-height 0.2s ease,
4645 visibility 0.2s ease;
4646 top: calc(100% + 10px);
4647 left: 0;
4648 right: 0;
4649 margin: auto;
4651 #theme-selector.engaged {
4652 max-height: 1000px;
4653 top: 10px;
4654 z-index: 10001;
4656 #theme-selector::before {
4657 content: "Select theme";
4658 white-space: nowrap;
4659 display: block;
4660 font-weight: 600;
4661 font-size: 2rem;
4662 margin: 0.375em 1em 0.5em 1em;
4663 text-align: center;
4665 #theme-selector button {
4666 width: calc(100% - 0.5em);
4667 background-repeat: no-repeat;
4668 padding: 1em 0.875em;
4669 margin: 1px 4px;
4670 line-height: 1;
4671 height: unset;
4672 position: relative;
4674 #theme-selector button::after {
4675 content: attr(data-theme-description);
4676 color: #fff;
4677 white-space: nowrap;
4678 position: absolute;
4679 text-align: left;
4680 left: 2.5em;
4681 top: 1em;
4683 @media only screen and (max-height: 675px) {
4684 #theme-selector button {
4685 padding: 0.875em;
4687 #theme-selector button::after {
4688 top: 0.875em;
4691 #theme-selector .theme-selector-close-button {
4692 position: absolute;
4693 width: unset;
4694 background-color: transparent;
4695 top: 0;
4696 right: -3px;
4698 #theme-selector .theme-selector-close-button,
4699 #theme-selector .theme-selector-close-button:focus,
4700 #theme-selector .theme-selector-close-button:active,
4701 #theme-selector .theme-selector-close-button:hover {
4702 box-shadow: none;
4705 /*===============*/
4706 /* THEME TWEAKER */
4707 /*===============*/
4709 #theme-selector {
4710 padding: 0 0 64px 0;
4712 #theme-selector ~ #theme-tweaker-toggle {
4713 top: 100%;
4715 #theme-selector ~ #theme-tweaker-toggle::after {
4716 content: "Open theme tweaker";
4717 position: absolute;
4718 font-size: 0.625em;
4719 white-space: nowrap;
4720 left: -50%;
4721 top: 100%;
4723 #theme-selector.engaged ~ #theme-tweaker-toggle {
4724 visibility: visible;
4725 top: 530px;
4726 left: 0;
4727 right: 0;
4728 margin: auto;
4729 z-index: 11111;
4730 transition:
4731 top 0.2s ease,
4732 visibility 0.2s ease;
4734 @media only screen and (max-height: 675px) {
4735 #theme-selector.engaged ~ #theme-tweaker-toggle {
4736 top: 492px;
4739 @supports (width: -moz-fit-content) {
4740 #theme-selector.engaged ~ #theme-tweaker-toggle {
4741 width: -moz-fit-content;
4744 @supports (width: fit-content) {
4745 #theme-selector.engaged ~ #theme-tweaker-toggle {
4746 width: fit-content;
4749 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4750 opacity: 1.0;
4753 #theme-tweaker-ui {
4754 visibility: visible;
4757 /*======================*/
4758 /* ANTI-KIBITZER TOGGLE */
4759 /*======================*/
4761 #theme-selector ~ #anti-kibitzer-toggle {
4762 top: 100%;
4763 bottom: unset;
4764 left: 0;
4765 right: 0;
4766 margin: auto;
4767 box-shadow: none;
4768 width: calc(100vw - 44px);
4769 max-width: 330px;
4770 text-align: right;
4771 pointer-events: none;
4773 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4774 visibility: visible;
4775 z-index: 11110;
4776 top: 530px;
4777 transition:
4778 top 0.2s ease,
4779 visibility 0.2s ease;
4781 @media only screen and (max-height: 675px) {
4782 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4783 top: 492px;
4786 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4787 pointer-events: auto;
4788 display: inline-block;
4791 /*=================*/
4792 /* QUICKNAV WIDGET */
4793 /*=================*/
4795 #quick-nav-ui {
4796 max-width: 0px;
4797 transition:
4798 max-width 0.2s ease,
4799 visibility 0.2s ease;
4800 display: flex;
4801 right: 72px;
4802 bottom: 14px;
4804 #quick-nav-ui.engaged {
4805 max-width: 1000px;
4807 #quick-nav-ui a {
4808 position: relative;
4809 margin: 2px;
4811 #quick-nav-ui a + a {
4812 margin-left: 5px;
4814 #quick-nav-ui a::after {
4815 position: absolute;
4816 top: calc(100% + 2px);
4817 font-size: 0.375rem;
4818 left: 0;
4819 right: 0;
4820 margin: auto;
4821 line-height: 1;
4822 padding: 2px;
4823 text-transform: uppercase;
4824 z-index: -1;
4826 @supports (width: -moz-fit-content) {
4827 #quick-nav-ui a::after {
4828 width: -moz-fit-content;
4831 @supports (width: fit-content) {
4832 #quick-nav-ui a::after {
4833 width: fit-content;
4836 #quick-nav-ui a[href='#top']::after {
4837 content: "Top";
4838 left: -1px;
4840 #quick-nav-ui a[href='#comments']::after {
4841 content: "Comments";
4843 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4844 visibility: hidden;
4845 transition: visibility 0.2s ease;
4847 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4848 visibility: visible;
4850 #quick-nav-ui a[href='#bottom-bar']::after {
4851 content: "Bottom";
4854 /*======================*/
4855 /* NEW COMMENT QUICKNAV */
4856 /*======================*/
4858 #new-comment-nav-ui {
4859 max-width: 0px;
4860 max-height: 0px;
4861 transition:
4862 max-width 0.2s ease,
4863 max-height 0.2s ease,
4864 visibility 0.2s ease;
4865 display: flex;
4866 right: 78px;
4867 bottom: 70px;
4869 #new-comment-nav-ui::before {
4870 content: "New Comments";
4871 position: absolute;
4872 bottom: 100%;
4873 font-size: 0.5625rem;
4874 left: 0;
4875 right: 0;
4876 margin: auto;
4877 padding: 2px 3px;
4878 text-transform: uppercase;
4879 z-index: -1;
4881 @supports (width: -moz-fit-content) {
4882 #new-comment-nav-ui::before {
4883 width: -moz-fit-content;
4886 @supports (width: fit-content) {
4887 #new-comment-nav-ui::before {
4888 width: fit-content;
4891 #new-comment-nav-ui.engaged {
4892 max-width: 1000px;
4893 max-height: 1000px;
4895 #new-comment-nav-ui .new-comment-sequential-nav-button {
4896 top: unset;
4897 bottom: unset;
4898 padding: 2px 7px;
4900 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4901 padding: 2px 7px 3px 7px;
4903 #new-comment-nav-ui .new-comments-count {
4904 padding: 4px 0 5px 0;
4906 #new-comment-nav-ui .new-comments-count::before {
4907 display: none;
4909 #new-comment-nav-ui button::after {
4910 position: absolute;
4911 font-size: 0.375rem;
4912 left: 0;
4913 right: 0;
4914 margin: auto;
4915 line-height: 1;
4916 text-transform: uppercase;
4917 pointer-events: none;
4919 #new-comment-nav-ui button.new-comment-previous::after {
4920 content: "Previous";
4921 bottom: 5px;
4923 #new-comment-nav-ui button.new-comment-next::after {
4924 content: "Next";
4925 top: 7px;
4928 /*=================*/
4929 /* HNS DATE PICKER */
4930 /*=================*/
4932 #hns-date-picker {
4933 max-height: 0px;
4934 bottom: 132px;
4935 right: 62px;
4936 transition:
4937 max-height 0.2s ease,
4938 visibility 0.2s ease;
4940 #hns-date-picker.engaged {
4941 max-height: 1000px;
4943 #hns-date-picker::before {
4944 width: calc(100% + 2px);
4945 border-width: 1px !important;
4948 /*=========*/
4949 /* NAV BAR */
4950 /*=========*/
4952 #bottom-bar {
4953 margin-left: auto;
4954 margin-right: auto;
4955 width: calc(100% - 9rem + 8px);
4956 background: rgba(0, 0, 0, 0.85);
4957 backdrop-filter: blur(1px);
4959 #content.index-page #bottom-bar {
4960 z-index: 10001;
4962 #bottom-bar .nav-item {
4963 box-shadow: none;
4964 position: relative;
4966 #bottom-bar .nav-inner {
4967 font-size: 2rem;
4968 padding: 1rem 0 1.25rem 0;
4969 visibility: hidden;
4970 position: static;
4971 width: 0;
4973 #content #bottom-bar .nav-item .nav-inner::before {
4974 margin: 0;
4975 visibility: visible;
4976 position: absolute;
4977 width: 100%;
4978 height: 100%;
4979 left: 0;
4980 top: 0;
4981 padding: 1rem 0;
4983 #bottom-bar .nav-inner::after {
4984 display: block;
4985 visibility: visible;
4986 text-transform: uppercase;
4987 color: unset;
4988 font-size: 0.75rem;
4989 top: unset;
4990 left: 0;
4991 bottom: 1rem;
4992 width: 100%;
4994 #bottom-bar #nav-item-first .nav-inner::after {
4995 content: "First Page";
4997 #bottom-bar #nav-item-prev .nav-inner::after {
4998 content: "Prev. Page";
5000 #bottom-bar #nav-item-top .nav-inner::after {
5001 content: "Top";
5003 #bottom-bar #nav-item-next .nav-inner::after {
5004 content: "Next Page";
5006 #bottom-bar #nav-item-last .nav-inner::after {
5007 content: "Last Page";
5010 @media only screen and (max-width: 900px) {
5011 .nav-bar-top {
5012 font-size: 0.75rem;
5014 .nav-bar {
5015 width: calc(100% + 8px);
5016 margin: 0 -4px;
5018 .nav-bar .nav-inner::after {
5019 display: none;
5022 #primary-bar .nav-item {
5023 flex: 1 1 100%;
5025 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5026 flex: 1 1 60px;
5028 .nav-bar-top:not(#anything) .nav-inner {
5029 text-transform: uppercase;
5030 padding: 6px;
5032 .nav-bar-top .nav-inner::before {
5033 display: block;
5034 font-family: "Font Awesome";
5035 font-size: 2em;
5036 font-weight: 900;
5039 #nav-item-home .nav-inner::before {
5040 content: "\F015";
5042 #nav-item-featured .nav-inner::before {
5043 content: "\F005";
5045 #nav-item-all .nav-inner::before {
5046 content: "\F069";
5048 #nav-item-meta .nav-inner::before {
5049 content: "\F077";
5051 #nav-item-tags .nav-inner::before {
5052 content: "\F02C";
5054 #nav-item-recent-comments > * > span {
5055 display: none;
5057 #nav-item-recent-comments .nav-inner::before,
5058 #nav-item-alignment-forum-comments .nav-inner::before {
5059 content: "\F036";
5061 #nav-item-alignment-forum .nav-inner::before {
5062 content: "AF";
5063 font-family: Concourse, 'Changa One';
5065 #nav-item-questions .nav-inner::before {
5066 content: "?";
5067 font-family: Concourse, 'Changa One';
5069 #nav-item-events .nav-inner::before {
5070 content: "\F5A0";
5072 #nav-item-shortform .nav-inner::before {
5073 content: "\F2F2";
5075 #nav-item-archive .nav-inner::before {
5076 content: "\F187";
5078 #nav-item-about .nav-inner::before {
5079 content: "\F129";
5081 #nav-item-search {
5082 font-size: 2em;
5083 padding: 10px;
5085 #nav-item-search .nav-inner::before {
5086 content: none;
5088 #nav-item-search .nav-inner {
5089 height: 100%;
5090 display: flex;
5092 #nav-item-search input {
5093 width: 100%;
5094 height: 100%;
5096 #nav-item-search button {
5097 height: 100%;
5098 padding: 5px 5px 5px 10px;
5099 width: 40px;
5100 overflow: visible;
5101 visibility: hidden;
5103 #nav-item-search button::before {
5104 content: "\F002";
5105 font-family: Font Awesome;
5106 font-weight: 900;
5107 visibility: visible;
5109 #nav-item-login {
5110 padding: 0;
5112 #nav-item-login .nav-inner::before {
5113 content: "\F007";
5116 @media only screen and (max-width: 520px) {
5117 .nav-bar-top {
5118 font-size: 0.5rem;
5121 #nav-item-search,
5122 #nav-item-search .nav-inner {
5123 padding: 0;
5125 #nav-item-search button {
5126 width: 31px;
5129 #bottom-bar #nav-item-first .nav-inner::after {
5130 content: "First";
5132 #bottom-bar #nav-item-prev .nav-inner::after {
5133 content: "Prev";
5135 #bottom-bar #nav-item-next .nav-inner::after {
5136 content: "Next";
5138 #bottom-bar #nav-item-last .nav-inner::after {
5139 content: "Last";
5143 /*=================*/
5144 /* INBOX INDICATOR */
5145 /*=================*/
5147 @media only screen and (max-width: 900px) {
5148 #inbox-indicator {
5149 width: 100%;
5150 top: 0;
5151 pointer-events: none;
5153 #inbox-indicator::before {
5154 width: 100%;
5155 font-size: 1rem;
5156 text-align: right;
5157 padding: 1px 6px;
5159 #inbox-indicator.new-messages {
5160 pointer-events: auto;
5162 #inbox-indicator.new-messages::before {
5163 box-shadow: 0 0 8px 1px #0090e0 inset;
5166 @media only screen and (max-width: 520px) {
5167 #inbox-indicator::before {
5168 font-size: 0.75rem;
5169 padding: 2px 5px;
5172 @media only screen and (max-width: 374px) {
5173 #inbox-indicator::before {
5174 font-size: 0.625rem;
5178 /*===================*/
5179 /* TOP PAGINATION UI */
5180 /*===================*/
5182 #top-nav-bar {
5183 font-size: 1.75rem;
5186 /*==============*/
5187 /* PAGE TOOLBAR */
5188 /*==============*/
5190 @media only screen and (max-width: 900px) {
5191 #content > .page-toolbar {
5192 font-size: 1rem;
5193 margin-right: 0;
5195 #content.user-page > .page-toolbar {
5196 grid-column: 2 / span 2;
5197 margin: 0 0 6px 0;
5200 @media only screen and (max-width: 520px) {
5201 #content:not(.user-page) .page-toolbar {
5202 display: flex;
5203 flex-direction: column-reverse;
5204 text-align: right;
5205 align-self: start;
5206 padding: 4px 0 0 0;
5208 #content.user-page .page-toolbar {
5209 display: flex;
5210 flex-flow: row;
5211 justify-content: flex-end;
5212 padding: 2px 0 0 0;
5214 #content.user-page .page-toolbar > form,
5215 #content.user-page .page-toolbar > .button {
5216 text-align: center;
5217 flex-basis: 25%;
5218 margin-left: 1.5em;
5220 #content.user-page .page-toolbar .button {
5221 text-transform: uppercase;
5222 font-size: 0.625rem;
5224 #content.user-page .page-toolbar .button::before {
5225 font-size: 1.375rem;
5226 display: block;
5227 padding: 0;
5229 #content.user-page .page-toolbar .rss {
5230 white-space: nowrap;
5231 margin: 0 0 0 1.5em;
5233 .page-toolbar > * {
5234 line-height: 1.15;
5235 padding: 6px 0;
5236 margin: 0;
5240 /*==============*/
5241 /* SUBLEVEL NAV */
5242 /*==============*/
5244 @media only screen and (max-width: 900px) {
5245 .sublevel-nav:not(.sort) {
5246 flex-wrap: wrap;
5247 width: calc(100vw - 200px);
5249 .sublevel-nav:not(.sort) .sublevel-item {
5250 margin: 1px;
5251 flex-basis: 7em;
5254 @media only screen and (max-width: 520px) {
5255 .sublevel-nav:not(.sort) .sublevel-item {
5256 font-size: 1rem;
5260 /*=====================*/
5261 /* SORT ORDER SELECTOR */
5262 /*=====================*/
5264 @media only screen and (max-width: 720px) {
5265 #content.index-page > .sublevel-nav.sort {
5266 flex-flow: column;
5267 margin-left: 4px;
5271 /*==========*/
5272 /* ARCHIVES */
5273 /*==========*/
5275 @media only screen and (max-width: 900px) {
5276 div[class^='archive-nav-'] {
5277 flex-wrap: wrap;
5278 justify-content: flex-start;
5280 .archive-nav *[class^='archive-nav-item'],
5281 .archive-nav *[class^='archive-nav-item']:first-child {
5282 padding: 10px;
5283 margin: 2px;
5284 max-width: unset;
5285 flex: 0 1 calc((100% / 8) - 4px);
5287 .archive-nav .archive-nav-item-day,
5288 .archive-nav .archive-nav-item-day:first-child {
5289 flex-basis: calc((100% / 16) - 4px);
5291 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5292 margin-top: 8px;
5293 position: relative;
5295 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5296 content: "";
5297 display: block;
5298 position: absolute;
5299 height: 1px;
5300 width: calc(100% + 8px);
5301 left: -4px;
5302 top: -4px;
5305 @media only screen and (max-width: 720px) {
5306 .archive-nav .archive-nav-item-day,
5307 .archive-nav .archive-nav-item-day:first-child {
5308 flex-basis: calc((100% / 12) - 4px);
5311 @media only screen and (max-width: 520px) {
5312 .archive-nav *[class^='archive-nav-item'],
5313 .archive-nav *[class^='archive-nav-item']:first-child {
5314 flex-basis: calc((100% / 5) - 4px);
5316 .archive-nav .archive-nav-item-day,
5317 .archive-nav .archive-nav-item-day:first-child {
5318 flex-basis: calc((100% / 8) - 4px);
5322 /*==========*/
5323 /* LISTINGS */
5324 /*==========*/
5326 h1.listing {
5327 max-height: unset;
5330 /*============*/
5331 /* USER PAGES */
5332 /*============*/
5334 #content.user-page h1.page-main-heading {
5335 align-self: end;
5337 @media only screen and (max-width: 520px) {
5338 #content.user-page h1.page-main-heading {
5339 overflow: hidden;
5340 text-overflow: ellipsis;
5342 #content.user-page .user-stats .karma-type {
5343 display: block;
5347 /*============*/
5348 /* LOGIN PAGE */
5349 /*============*/
5351 @media only screen and (max-width: 640px) {
5352 .login-container {
5353 flex-flow: column;
5354 margin: 0 auto 3em auto;
5355 max-width: 400px;
5357 .login-container #login-form,
5358 .login-container #signup-form {
5359 padding: 0 1em 1.25em 1em;
5360 grid-row-gap: 0;
5362 .login-container #signup-form {
5363 padding-top: 1em;
5365 .login-container #login-form > *,
5366 .login-container #signup-form > * {
5367 grid-column: 1 / span 2;
5369 .login-container form label {
5370 text-align: left;
5371 padding: 0;
5372 line-height: 1;
5374 .login-container form input {
5375 margin: 0.25em 0 0.75em 0;
5376 padding: 0.5em;
5378 .login-container form h1 {
5379 grid-column: 1 / span 2;
5380 margin: 0 0 0.25em 0;
5382 .login-container form a {
5383 margin: 0.75em 0 0 0;
5385 .login-container .login-tip {
5386 margin: 1.5em 1em 0 1em;
5390 /*==================*/
5391 /* POSTS & COMMENTS */
5392 /*==================*/
5394 @media only screen and (max-width: 720px) {
5395 .body-text ol > li {
5396 padding: 0 0 0 2.25em;
5398 .body-text ol > li::before {
5399 width: 1.75em;
5401 .body-text ul:not(.contents-list) > li,
5402 .body-text ul:not(.contents-list) > li ul > li {
5403 padding: 0 0 0 0.75em;
5405 .body-text ul:not(.contents-list) > li::before,
5406 .body-text ul:not(.contents-list) > li ul > li::before {
5407 width: 0.125em;
5408 margin-left: -0.06em;
5412 /*===========*/
5413 /* POST-META */
5414 /*===========*/
5416 .post-meta {
5417 line-height: 1.9;
5419 @media only screen and (max-width: 720px) {
5420 .post-meta .lw2-link span,
5421 .post-meta .karma-value span,
5422 .post-meta .comment-count span {
5423 display: none;
5425 .post-meta .comment-count::before {
5426 content: "\F086";
5427 font-family: Font Awesome;
5428 font-size: 0.875em;
5429 margin: 0 0.25em 0 0;
5430 font-weight: 400;
5434 /*===================*/
5435 /* POSTS & BODY TEXT */
5436 /*===================*/
5438 @media only screen and (max-width: 900px) {
5439 .post-body,
5440 h1.post-title,
5441 .tag-description,
5442 .sequence-text {
5443 padding: 0 6px;
5446 @media only screen and (max-width: 520px) {
5447 .post-body {
5448 font-size: 1.2rem;
5449 line-height: 1.45;
5451 h1.post-title {
5452 font-size: 2em;
5456 /*==============*/
5457 /* COMMENT-META */
5458 /*==============*/
5460 a.comment-parent-link::after {
5461 display: none;
5463 @media only screen and (max-width: 900px) {
5464 .comment-meta {
5465 padding: 2px 40px 2px 10px;
5468 @media only screen and (max-width: 720px) {
5469 .comment .karma-value span {
5470 display: none;
5472 .comment-meta .comment-parent-link {
5473 opacity: 1.0;
5476 @media only screen and (max-width: 520px) {
5477 .comment-meta {
5478 padding: 2px 10px;
5479 position: relative;
5481 .comment-meta .author {
5482 flex-basis: 100%;
5484 .comment-post-title2 {
5485 display: block;
5486 text-overflow: ellipsis;
5487 overflow: hidden;
5489 .comment-meta .lw2-link {
5490 display: none;
5494 /*=======================*/
5495 /* COMMENTS COMPACT VIEW */
5496 /*=======================*/
5498 /*===========================*/
5499 /* COMMENT THREAD NAVIGATION */
5500 /*===========================*/
5502 @media only screen and (max-width: 900px) {
5503 a.comment-parent-link {
5504 width: 0;
5505 visibility: hidden;
5506 position: relative;
5508 a.comment-parent-link::before {
5509 padding: 0;
5510 font-size: 1em;
5511 left: 0;
5512 top: 0;
5513 line-height: inherit;
5514 visibility: visible;
5515 content: "\F3BF";
5516 transform: scaleX(-1);
5517 width: 2em;
5518 text-align: center;
5521 @media only screen and (max-width: 520px) {
5522 a.comment-parent-link {
5523 position: static;
5525 a.comment-parent-link::before {
5526 padding: 6px;
5527 left: unset;
5528 right: 0;
5529 top: unset;
5530 bottom: 0;
5531 height: 2em;
5535 /*=================================*/
5536 /* COMMENT THREAD MINIMIZE BUTTONS */
5537 /*=================================*/
5539 @media only screen and (max-width: 520px) {
5540 .comment-minimize-button{
5541 right: 2px;
5545 /*===========================*/
5546 /* COMMENTING AND POSTING UI */
5547 /*===========================*/
5549 @media only screen and (max-width: 900px) {
5550 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5551 font-size: 0;
5553 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5554 font-size: 0.9rem;
5556 .comment-controls .cancel-comment-button {
5557 max-width: 1.3em;
5558 overflow: hidden;
5559 margin-right: 0.125em;
5561 .comment-controls .edit-button::before {
5562 font-size: 0.9375rem;
5564 .comments > .comment-controls .cancel-comment-button {
5565 right: 8px;
5567 .comment-controls .cancel-comment-button::before {
5568 font-size: 1.25rem;
5571 @media only screen and (max-width: 520px) {
5572 .comment-controls {
5573 position: static;
5575 .comment-controls:focus-within {
5576 z-index: 10001;
5578 .comment-controls .cancel-comment-button {
5579 right: 10px;
5581 .textarea-container:focus-within textarea {
5582 position: fixed;
5583 top: 0;
5584 left: 2px;
5585 width: calc(100vw - 4px);
5586 height: calc(100% - 100px);
5587 min-height: unset;
5588 max-height: unset;
5589 border-width: 1px;
5590 z-index: 11001;
5592 #content.conversation-page .textarea-container:focus-within textarea {
5593 height: calc(100% - 54px);
5595 #content.conversation-page .textarea-container:focus-within::after {
5596 content: "";
5597 display: block;
5598 width: 100%;
5599 height: 50px;
5600 position: fixed;
5601 left: 0;
5602 bottom: 0;
5603 z-index: 11000;
5605 .textarea-container:focus-within .guiedit-buttons-container {
5606 position: fixed;
5607 z-index: 11002;
5608 left: 0;
5609 width: 100vw;
5610 height: auto;
5611 background-image: none;
5612 padding: 3px 4px 4px 4px;
5613 margin: 0;
5614 text-align: center;
5615 top: auto;
5616 bottom: 0;
5618 .textarea-container:focus-within button.guiedit {
5619 font-size: 0.9375rem;
5620 line-height: 1.5;
5621 height: auto;
5622 width: calc((100% / 10) - 2px);
5623 padding: 10px 1px 8px 0;
5624 position: relative;
5625 margin: 1px;
5627 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5628 z-index: 11011;
5629 position: fixed;
5630 bottom: 7px;
5631 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5632 font-size: 1.25rem;
5633 padding: 5px 5px 6px 5px;
5634 display: block;
5636 .textarea-container:focus-within button.guiedit sup {
5637 position: absolute;
5638 left: calc(50% + 0.65em);
5639 top: calc(50% - 1.3em);
5641 .textarea-container:focus-within .guiedit-mobile-help-button {
5642 left: 8px;
5644 .textarea-container:focus-within .guiedit-mobile-exit-button {
5645 right: 8px;
5647 .guiedit::after {
5648 display: none;
5651 #markdown-hints,
5652 #edit-post-form #markdown-hints {
5653 z-index: 11111;
5654 position: fixed;
5655 top: 40px;
5656 left: 0;
5657 right: 0;
5658 margin: auto;
5659 padding: 4px 0 4px 8px;
5660 width: 310px;
5661 border-width: 3px;
5662 border-style: double;
5663 pointer-events: none;
5665 #markdown-hints::after {
5666 content: "(Type to hide this help box.)";
5667 color: #9740cb;
5668 display: block;
5669 margin: 12px 18px 13px 10px;
5670 padding: 5px;
5671 font-size: 0.9em;
5672 text-align: center;
5676 /*================*/
5677 /* EDIT POST FORM */
5678 /*================*/
5680 @media only screen and (max-width: 520px) {
5681 #edit-post-form {
5682 padding-bottom: 0;
5684 #edit-post-form .post-meta-fields {
5685 grid-template-columns: 4.5em auto auto auto 1fr auto;
5687 #edit-post-form label[for='url'],
5688 #edit-post-form label[for='section'],
5689 #edit-post-form label[for='title'] {
5690 padding-left: 0;
5692 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5693 white-space: normal;
5694 line-height: 0.9;
5695 top: -1px;
5696 font-family: Font Awesome;
5697 font-weight: 900;
5698 justify-self: start;
5700 #edit-post-form .post-meta-fields .question-checkbox,
5701 #edit-post-form .post-meta-fields .question-checkbox + label {
5702 grid-column: 6;
5703 margin-left: unset;
5705 #edit-post-form .post-meta-fields input[type='radio'] + label {
5706 align-self: start;
5708 #edit-post-form .textarea-container:focus-within textarea {
5709 height: calc(100% - 101px);
5710 min-height: unset;
5713 #markdown-hints-checkbox,
5714 #markdown-hints-checkbox + label {
5715 display: none;
5718 #edit-post-form div:last-child {
5719 clear: both;
5720 overflow: auto;
5722 #edit-post-form input[type='submit'] {
5723 float: none;
5724 display: block;
5725 font-size: 1.5rem;
5726 margin: 1rem auto 1.5rem auto;
5727 padding: 6px 12px 8px 12px;
5731 /*===================*/
5732 /* TABLE OF CONTENTS */
5733 /*===================*/
5735 @media only screen and (max-width: 900px) {
5736 .contents {
5737 float: none;
5738 display: table;
5739 max-width: none;
5740 margin-left: auto;
5741 margin-right: auto;
5744 @media only screen and (max-width: 520px) {
5745 .contents {
5746 max-width: 100%;
5747 margin: 1em auto 0 auto;
5748 display: table;
5750 .contents-head {
5751 font-size: 1.2em;
5753 div.post-body .contents ul {
5754 font-size: unset;
5758 /*========================*/
5759 /* QUALIFIED HYPERLINKING */
5760 /*========================*/
5762 @media only screen and (max-width: 520px) {
5763 .qualified-linking-toolbar {
5764 right: -5em;
5768 } /* END MOBILE LAYOUT */
5771 /*****************/
5772 /* DEFAULT THEME */
5773 /*****************/
5775 /*===========*/
5776 /* VARIABLES */
5777 /*===========*/
5779 /* Color scheme.
5781 :root {
5782 --GW-comment-background-color-odd: #131313;
5783 --GW-comment-background-color-even: #000;
5784 --GW-comment-background-color-target: #00001e;
5786 --GW-toggle-widget-color: #666;
5787 --GW-toggle-widget-hover-color: #aeaeae;
5788 --GW-toggle-widget-shadow-color: rgba(0, 0, 0, 0.5);
5791 /*======*/
5792 /* BASE */
5793 /*======*/
5795 body {
5796 color: #fff;
5797 background-color: #232323;
5798 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
5799 font-feature-settings: 'ss07';
5801 #content {
5802 line-height: 1.55;
5804 #content::before {
5805 background-color: #000;
5806 box-shadow: 0px 0px 10px #9b9b9b;
5809 /*=========*/
5810 /* NAV BAR */
5811 /*=========*/
5813 .nav-inner {
5814 font-size: 1.375em;
5815 font-weight: 600;
5817 .nav-bar-top:not(#primary-bar) .nav-inner {
5818 font-size: 1em;
5821 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5822 #bottom-bar a:hover,
5823 #nav-item-search:not(.nav-current):focus-within {
5824 background-color: #1f1f1f;
5826 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5827 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5828 background-color: #232323;
5831 .nav-bar a:visited {
5832 color: #0cc800;
5834 .nav-bar a:hover,
5835 .nav-bar a:focus {
5836 text-decoration: none;
5837 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5840 #bottom-bar.decorative::before,
5841 #bottom-bar.decorative::after {
5842 content: "GW";
5843 display: block;
5844 text-align: center;
5845 padding: 0.25em 0 1em 0;
5847 #bottom-bar.decorative::before {
5848 width: 100%;
5849 color: transparent;
5850 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5851 background-repeat: repeat-x;
5852 background-position: center 35%;
5853 margin: 0 30px;
5855 #bottom-bar.decorative::after {
5856 color: #232323;
5857 position: absolute;
5858 left: 0;
5859 right: 0;
5860 margin: auto;
5861 background-color: #000;
5862 padding-right: 4px;
5863 padding-left: 4px;
5865 @supports (width: -moz-fit-content) {
5866 #bottom-bar.decorative::after {
5867 width: -moz-fit-content;
5870 @supports (width: fit-content) {
5871 #bottom-bar.decorative::after {
5872 width: fit-content;
5876 /* Accesskey hints */
5878 .nav-inner::after {
5879 display: block;
5880 position: absolute;
5881 left: 5px;
5882 top: -2px;
5883 font-weight: 400;
5884 font-size: 0.7em;
5885 color: #232323;
5887 .inactive-bar .nav-inner::after {
5888 color: #2c2c2c;
5890 .nav-inner:hover::after {
5891 color: #393939;
5894 /* This makes the navbar items look like tabs: */
5896 .nav-inactive {
5897 box-shadow:
5898 0 -1px #232323 inset,
5899 1px 0 #000 inset;
5901 .nav-inactive:first-child {
5902 box-shadow: 0 -1px #232323 inset;
5904 .inactive-bar .nav-inactive {
5905 background-color: #1a1a1a;
5907 .active-bar .nav-inactive {
5908 background-color: #131313;
5910 .nav-bar + .nav-bar {
5911 position: relative;
5914 /* For Webkit: */
5915 .nav-bar:not(#bottom-bar) {
5916 box-shadow: 0 -3px 8px -2px #2c2c2c;
5918 .active-bar .nav-inactive {
5919 box-shadow:
5920 0 -4px 8px -4px #393939 inset,
5921 1px 0 #000 inset;
5923 .active-bar .nav-inactive:first-child {
5924 box-shadow:
5925 0 -4px 8px -4px #393939 inset;
5927 .active-bar .nav-current + .nav-inactive {
5928 box-shadow:
5929 5px -4px 8px -4px #393939 inset;
5931 .active-bar .nav-item-last-before-current {
5932 box-shadow:
5933 -5px -4px 8px -4px #393939 inset,
5934 1px 0 #000 inset;
5936 .active-bar .nav-item-last-before-current:first-child {
5937 box-shadow:
5938 -5px -4px 8px -4px #393939 inset;
5940 /* And for Gecko: */
5941 @-moz-document url-prefix() {
5942 .nav-bar:not(#bottom-bar) {
5943 box-shadow: 0 -3px 4px -2px #2c2c2c;
5946 .active-bar .nav-inactive {
5947 box-shadow:
5948 0 -4px 4px -4px #393939 inset,
5949 1px 0 #000 inset;
5951 .active-bar .nav-inactive:first-child {
5952 box-shadow:
5953 0 -4px 4px -4px #393939 inset;
5955 .active-bar .nav-current + .nav-inactive {
5956 box-shadow:
5957 5px -4px 4px -4px #393939 inset;
5959 .active-bar .nav-item-last-before-current {
5960 box-shadow:
5961 -5px -4px 4px -4px #393939 inset,
5962 1px 0 #000 inset;
5964 .active-bar .nav-item-last-before-current:first-child {
5965 box-shadow:
5966 -5px -4px 4px -4px #393939 inset;
5970 /* Search tab */
5972 #nav-item-search button {
5973 border: none;
5974 font-weight: inherit;
5976 #nav-item-search input::placeholder {
5977 color: #00a1e8;
5978 font-weight: normal;
5981 /*= Top pagination UI hover tooltips =*/
5983 #top-nav-bar a::after,
5984 #bottom-bar a::after {
5985 color: #fff;
5988 /*==============*/
5989 /* PAGE TOOLBAR */
5990 /*==============*/
5992 .button.new-post:not(:hover),
5993 .button.new-private-message:not(:hover),
5994 .button.unignore-button:not(:hover){
5995 color: #9740cb;
5997 .button.logout-button, .button.ignore-button {
5998 color: #0094be;
6001 /*==============*/
6002 /* SUBLEVEL NAV */
6003 /*==============*/
6005 .sublevel-nav .sublevel-item {
6006 color: #777;
6007 background-color: #000;
6009 .sublevel-nav .sublevel-item:not(.selected):hover {
6010 background-color: #1f1f1f;
6011 color: #fff;
6012 text-decoration: none;
6013 text-shadow: none;
6015 .sublevel-nav .sublevel-item:not(.selected):active,
6016 .sublevel-nav .sublevel-item.selected {
6017 background-color: #1f1f1f;
6018 color: #fff;
6019 text-shadow:
6020 0 -1px 0 #000,
6021 0 0.5px 0.5px #fff;
6024 .sublevel-nav:not(.sort) .sublevel-item {
6025 border-style: solid;
6026 border-color: #1f1f1f;
6027 border-width: 1px 0 1px 1px;
6029 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6030 border-radius: 8px 0 0 8px;
6032 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6033 border-width: 1px;
6034 border-radius: 0 8px 8px 0;
6037 /*=====================*/
6038 /* SORT ORDER SELECTOR */
6039 /*=====================*/
6041 .sublevel-nav.sort .sublevel-item {
6042 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6043 letter-spacing: 0.5px;
6044 padding: 7px 7px 5px 7px;
6045 text-transform: uppercase;
6046 pointer-events: auto;
6047 box-shadow: 1px 1px 0 0 #484848 inset;
6049 .sublevel-nav.sort {
6050 border: 2px solid transparent;
6051 padding: 18px 0 0 0;
6052 border-radius: 8px;
6053 pointer-events: none;
6054 background-color: #393939;
6056 .sublevel-nav.sort::before {
6057 text-transform: uppercase;
6058 font-weight: 600;
6059 color: #aeaeae;
6060 text-shadow: 0.5px 0.5px 0 #000;
6061 z-index: 1;
6063 .sublevel-nav.sort::after {
6064 content: "";
6065 position: absolute;
6066 display: block;
6067 top: 0;
6068 left: 0;
6069 width: 100%;
6070 height: 100%;
6071 border-radius: 6px;
6072 box-shadow:
6073 0 18px 0 0 #393939 inset,
6074 0 0 0 1px #484848 inset,
6075 0 18px 0 1px #484848 inset,
6076 0 0 0 2px #393939;
6079 /*================*/
6080 /* WIDTH SELECTOR */
6081 /*================*/
6082 /* THEME SELECTOR */
6083 /*================*/
6085 #width-selector button,
6086 #theme-selector button {
6087 box-shadow:
6088 0 0 0 4px #232323 inset,
6089 0 0 0 5px #393939 inset;
6091 #width-selector button:hover,
6092 #width-selector button.selected,
6093 #theme-selector button:hover,
6094 #theme-selector button.selected {
6095 box-shadow:
6096 0 0 0 5px #393939 inset;
6099 #theme-selector button::before {
6100 color: #575756;
6101 background-color: #232323;
6103 #theme-selector button:hover::before,
6104 #theme-selector button.selected::before {
6105 color: #888;
6107 #width-selector button::after {
6108 color: #575756;
6111 /*======================*/
6112 /* THEME TWEAKER TOGGLE */
6113 /*======================*/
6115 #theme-tweaker-toggle button {
6116 color: #777;
6119 /*=================*/
6120 /* QUICKNAV WIDGET */
6121 /*=================*/
6123 #quick-nav-ui a {
6124 color: #575756;
6125 background-color: #1a1a1a;
6126 border-radius: 4px;
6127 text-decoration: none;
6129 #quick-nav-ui a[href='#bottom-bar'] {
6130 line-height: 1.8;
6132 #quick-nav-ui a:active {
6133 transform: scale(0.9);
6135 #quick-nav-ui a[href='#comments'].no-comments {
6136 opacity: 0.4;
6137 color: #393939;
6139 @media only screen and (hover:hover) {
6140 #quick-nav-ui a:hover {
6141 color: #fff;
6142 background-color: #131313;
6144 #quick-nav-ui a:focus:not(:hover) {
6145 transform: none;
6146 text-shadow: none;
6150 /*======================*/
6151 /* NEW COMMENT QUICKNAV */
6152 /*======================*/
6154 #new-comment-nav-ui .new-comments-count {
6155 font-weight: 600;
6156 color: #888;
6157 text-shadow: 0.5px 0.5px 0 #000;
6159 #new-comment-nav-ui .new-comments-count::after {
6160 font-weight: 600;
6161 color: #777;
6163 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6164 color: #393939;
6165 text-shadow: none;
6167 @media only screen and (hover:hover) {
6168 #new-comment-nav-ui .new-comments-count:hover {
6169 text-shadow:
6170 0 0 1px #000,
6171 0 0 3px #000,
6172 0 0 5px #000,
6173 0 0 8px #000,
6174 0.5px 0.5px 0 #000;
6176 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6177 color: #00a1e8;
6178 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6182 /*=================*/
6183 /* HNS DATE PICKER */
6184 /*=================*/
6186 #hns-date-picker span {
6187 color: #777;
6188 text-shadow: 0.5px 0.5px 0 #000;
6189 font-weight: 600;
6191 #hns-date-picker input {
6192 border: 1px solid #777;
6193 background-color: transparent;
6194 color: #888;
6195 box-shadow: 0 0 0 1px transparent;
6197 #hns-date-picker input:focus {
6198 color: #fff;
6201 /*======================*/
6202 /* ANTI-KIBITZER TOGGLE */
6203 /*======================*/
6205 #anti-kibitzer-toggle button::before,
6206 #anti-kibitzer-toggle button::after {
6207 background-color: var(--GW-toggle-widget-color);
6208 -webkit-background-clip: text;
6209 color: transparent;
6210 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
6212 #anti-kibitzer-toggle button:hover::before,
6213 #anti-kibitzer-toggle button:hover::after {
6214 background-color: var(--GW-toggle-widget-hover-color);
6217 /*======================*/
6218 /* TEXT SIZE ADJUSTMENT */
6219 /*======================*/
6221 #text-size-adjustment-ui button {
6222 color: #777;
6224 #text-size-adjustment-ui button.default {
6225 font-weight: 600;
6227 #text-size-adjustment-ui button:disabled:hover {
6228 text-shadow: none;
6230 #text-size-adjustment-ui::after {
6231 color: #575756;
6234 /*=============================*/
6235 /* COMMENTS VIEW MODE SELECTOR */
6236 /*=============================*/
6238 #comments-view-mode-selector a {
6239 color: #777;
6242 /*==========*/
6243 /* ARCHIVES */
6244 /*==========*/
6246 .archive-nav {
6247 border: 1px solid #484848;
6249 .archive-nav *[class^='archive-nav-item'] {
6250 border-style: solid;
6251 border-color: #1f1f1f;
6252 border-width: 1px 0 1px 1px;
6253 background-color: #131313;
6255 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6256 border-top-width: 0;
6257 border-bottom-width: 0;
6259 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6260 border-bottom-width: 1px;
6262 .archive-nav *[class^='archive-nav-item']:last-child {
6263 border-right-width: 1px;
6265 .archive-nav span[class^='archive-nav-item'] {
6266 font-weight: bold;
6267 background-color: #1f1f1f;
6270 .archive-nav a:link,
6271 .archive-nav a:visited {
6272 color: rgba(12, 200, 0, 0.7);
6274 .archive-nav a:hover {
6275 text-decoration: none;
6276 color: #00a9ed;
6277 background-color: #1d1d1d;
6278 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6280 .archive-nav a:active {
6281 transform: scale(0.9);
6283 .archive-nav a:focus:not(:hover) {
6284 transform: none;
6286 .archive-nav a.archive-nav-item-day:hover {
6287 background-color: #1f1f1f;
6290 /*==========*/
6291 /* LISTINGS */
6292 /*==========*/
6294 h1.listing {
6295 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
6296 font-weight: 700;
6297 margin: 0.7em 20px 0 20px;
6298 max-width: calc(100% - 40px);
6299 top: 0; ;
6302 h1.listing .post-title-link {
6303 color: #fff;
6305 h1.listing .link-post-link {
6306 color: #54d400;
6309 @media only screen and (hover: hover) {
6310 h1.listing a:hover,
6311 h1.listing a:focus {
6312 color: #777;
6313 background-color: rgba(0, 0, 0, 0.85);
6315 h1.listing:focus-within::before {
6316 color: #00c200;
6317 left: -0.625em;
6319 h1.listing .link-post-link:hover {
6320 color: #670;
6321 text-shadow:
6322 0.5px 0.5px 0 #000,
6323 -0.5px -0.5px 0 #000,
6324 0 0 2px #000,
6325 0 0 3px #54d400;
6329 h1.listing .edit-post-link {
6330 padding: 5px 3px 12px 0.5em;
6331 top: 0;
6332 right: 0;
6334 h1.listing .edit-post-link:hover {
6335 text-decoration: none;
6337 #content.user-page h1.listing .edit-post-link {
6338 background-color: #131313;
6341 /*======*/
6342 /* SPAM */
6343 /*======*/
6345 h1.listing.spam {
6346 opacity: 0.15;
6348 h1.listing.spam + .post-meta {
6349 opacity: 0.4;
6351 h1.listing.spam:hover,
6352 h1.listing.spam + .post-meta:hover,
6353 h1.listing.spam:hover + .post-meta {
6354 opacity: 1.0;
6357 /*===================*/
6358 /* LISTING POST-META */
6359 /*===================*/
6361 h1.listing + .post-meta {
6362 padding-right: 330px;
6364 h1.listing + .post-meta .karma-value,
6365 h1.listing + .post-meta .comment-count,
6366 h1.listing + .post-meta .lw2-link,
6367 h1.listing + .post-meta .read-time {
6368 border-radius: 4px;
6369 padding: 0 4px 0 2px;
6370 text-shadow: 0.5px 0.5px 0.5px #575756;
6371 margin: 0 0.25em 0 0.5em;
6372 position: absolute;
6373 line-height: 1.15;
6374 bottom: -6px;
6376 h1.listing + .post-meta .karma-value span,
6377 h1.listing + .post-meta .comment-count span,
6378 h1.listing + .post-meta .lw2-link span,
6379 h1.listing + .post-meta .read-time span {
6380 display: none;
6382 h1.listing + .post-meta .karma-value::before,
6383 h1.listing + .post-meta .comment-count::before,
6384 h1.listing + .post-meta .lw2-link::before,
6385 h1.listing + .post-meta .read-time::before {
6386 color: #000;
6387 font-family: 'Font Awesome', 'Font Awesome 5 Free';
6388 font-weight: 900;
6389 margin: 0 8px 0 0;
6390 box-shadow: 0 0 0 2px #1f1f1f;
6392 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
6393 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
6394 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
6395 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
6396 text-shadow: 0 0 3px #575756;
6399 h1.listing + .post-meta .karma {
6400 margin: 0;
6402 h1.listing + .post-meta .karma-value {
6403 box-shadow:
6404 22px 0 0 0 #1f1f1f inset,
6405 0 0 0 3px #1f1f1f;
6406 cursor: default;
6407 color: #00a9ed;
6408 right: 264px;
6410 h1.listing + .post-meta .karma-value::before {
6411 content: "\F139";
6412 text-shadow: none;
6413 font-size: 0.9375em;
6414 line-height: 1.3;
6417 h1.listing + .post-meta .comment-count::before {
6418 content: "\F086";
6420 h1.listing + .post-meta .comment-count {
6421 box-shadow:
6422 25px 0 0 0 #1f1f1f inset,
6423 0 0 0 3px #1f1f1f;
6424 color: #9e4acf;
6425 right: 176px;
6427 h1.listing + .post-meta .comment-count:hover {
6428 text-decoration: none;
6429 color: #000;
6430 background-color: #9e4acf;
6432 h1.listing + .post-meta .comment-count:hover::before {
6433 color: #9e4acf;
6435 h1.listing + .post-meta .comment-count.new-comments::before {
6436 color: #9e4acf;
6437 text-shadow: 0.5px 0.5px 0.5px #000;
6439 h1.listing + .post-meta .comment-count.new-comments:hover::before {
6440 text-shadow: 0.5px 0.5px 0.5px #575756;
6444 h1.listing + .post-meta .lw2-link {
6445 box-shadow:
6446 23px 0 0 0 #1f1f1f inset,
6447 0 0 0 3px #1f1f1f;
6448 right: 0;
6450 h1.listing + .post-meta .lw2-link::before {
6451 content: "\F0C1";
6453 h1.listing + .post-meta .lw2-link:hover {
6454 text-decoration: none;
6455 color: #000;
6456 background-color: #00c200;
6458 h1.listing + .post-meta .lw2-link:hover::before {
6459 color: #00c200;
6462 h1.listing + .post-meta .read-time {
6463 box-shadow:
6464 21px 0 0 0 #1f1f1f inset,
6465 0 0 0 3px #1f1f1f;
6466 right: 80px;
6468 h1.listing + .post-meta .read-time::before {
6469 content: "\F2F2";
6470 cursor: pointer;
6472 h1.listing + .post-meta .read-time::after {
6473 content: " min";
6475 h1.listing + .post-meta .read-time:hover::before {
6476 color: #777;
6479 h1.listing + .post-meta .word-count {
6480 box-shadow:
6481 22px 0 0 0 #1f1f1f inset,
6482 0 0 0 3px #1f1f1f;
6483 padding: 0 4px 0 4px;
6485 h1.listing + .post-meta .word-count::before {
6486 content: "\F15C";
6487 margin: 0 10px 0 0;
6489 h1.listing + .post-meta .read-time.word-count::after {
6490 content: none;
6493 h1.listing + .post-meta .link-post-domain {
6494 margin: 0 0 0 0.5em;
6497 h1.listing + .post-meta::after {
6498 content: "";
6499 display: block;
6500 height: 1px;
6501 width: 100%;
6502 background-color: #1f1f1f;
6503 position: absolute;
6504 bottom: -14px;
6507 /*============*/
6508 /* USER PAGES */
6509 /*============*/
6511 #content.user-page h1.page-main-heading,
6512 #content.user-page .user-stats {
6513 border-bottom: 1px solid #2c2c2c;
6516 #content.user-page h1.listing,
6517 #content.user-page h1.listing + .post-meta {
6518 background-color: #131313;
6519 border-style: solid;
6520 border-color: #2c2c2c;
6522 #content.user-page h1.listing {
6523 padding: 0 6px;
6524 padding-top: 0.125em;
6525 border-width: 1px 1px 0 1px;
6526 margin: 1rem 0 0 0;
6527 max-width: 100%;
6529 #content.own-user-page h1.listing,
6530 h1.listing.own-post-listing {
6531 padding-right: 36px;
6533 @media only screen and (hover: hover) {
6534 #content.user-page h1.listing a:hover,
6535 #content.user-page h1.listing a:focus {
6536 background-color: #131313;
6538 #content.user-page h1.listing:focus-within::before {
6539 left: -0.625em;
6542 #content.user-page h1.listing + .post-meta {
6543 padding: 0.125em 6px 1em 36px;
6544 border-width: 0 1px 1px 1px;
6545 margin: 0 0 1rem 0;
6547 #content.user-page h1.listing + .post-meta::after {
6548 display: none;
6550 @media only screen and (min-width: 521px) {
6551 #content.user-page h1.listing + .post-meta .karma-value,
6552 #content.user-page h1.listing + .post-meta .comment-count,
6553 #content.user-page h1.listing + .post-meta .lw2-link,
6554 #content.user-page h1.listing + .post-meta .read-time {
6555 bottom: 10px;
6558 #content.user-page h1.listing + .post-meta .post-section::before {
6559 left: -1px;
6562 #content.conversations-user-page h1.listing {
6563 padding: 4px 6px;
6564 font-size: 1.75rem;
6566 #content.conversations-user-page h1.listing + .post-meta {
6567 padding: 6px 4px;
6568 margin: 0 0 0.25rem 0;
6571 .user-stats .karma-total {
6572 font-weight: bold;
6575 /*===============*/
6576 /* CONVERSATIONS */
6577 /*===============*/
6579 /*============*/
6580 /* LOGIN PAGE */
6581 /*============*/
6583 .login-container form input[type='submit'] {
6584 font-weight: bold;
6585 background-color: #131313;
6586 border: 1px solid #2c2c2c;
6588 .login-container form input[type='submit']:hover,
6589 .login-container form input[type='submit']:focus {
6590 background-color: #1f1f1f;
6591 border: 1px solid #484848;
6594 /* “Create account” form */
6596 #signup-form {
6597 background-color: #0f0f0f;
6598 border: 1px solid #1f1f1f;
6600 #signup-form input[type='submit'] {
6601 background-color: #1a1a1a;
6602 border: 1px solid #2c2c2c;
6604 #signup-form input[type='submit']:hover {
6605 background-color: #232323;
6606 border: 1px solid #484848;
6609 /* Log in tip */
6611 .login-container .login-tip {
6612 border: 1px solid #131313;
6615 /* Message box */
6617 .error-box {
6618 border: 1px solid red;
6619 background-color: #004147;
6621 .success-box {
6622 border: 1px solid green;
6623 background-color: #320042;
6626 /*=====================*/
6627 /* PASSWORD RESET PAGE */
6628 /*=====================*/
6630 .reset-password-container input[type='submit'] {
6631 background-color: #1a1a1a;
6632 border: 1px solid #2c2c2c;
6633 font-weight: bold;
6636 /*===================*/
6637 /* TABLE OF CONTENTS */
6638 /*===================*/
6640 .contents {
6641 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6642 border: 1px solid #1f1f1f;
6643 background-color: #131313;
6645 .contents-head {
6646 font-weight: bold;
6648 .post-body .contents li::before {
6649 color: #575756;
6650 font-feature-settings: "tnum";
6652 .post-body .contents a,
6653 .post-body .contents a:hover {
6654 border: none;
6656 .post-body .contents a:hover {
6657 text-decoration: underline;
6660 /*==================*/
6661 /* POSTS & COMMENTS */
6662 /*==================*/
6664 .body-text {
6665 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6668 .body-text a {
6669 border-bottom: 1px dotted #393939;
6671 .body-text a:hover {
6672 text-decoration: none;
6673 border-bottom: 1px solid currentColor;
6676 /*=======*/
6677 /* POSTS */
6678 /*=======*/
6680 h1.post-title {
6681 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6682 font-weight: 700;
6685 /*=================*/
6686 /* POST NAVIGATION */
6687 /*=================*/
6689 .post-nav-links a,
6690 .post-nav-links a:visited {
6691 color: #fff;
6693 .post-nav-links a:hover {
6694 text-decoration: none;
6696 .post-nav-title {
6697 font-weight: 600;
6700 .post-nav-label {
6701 color: #777;
6703 .post-nav-links a:hover .post-nav-label {
6704 font-weight: 600;
6705 color: #666;
6707 .post-nav-links a:hover .post-nav-title {
6708 color: #777;
6711 @media only screen and (max-width: 900px) {
6712 .sequence-title {
6713 border-top: 1px dotted #777;
6715 .post-nav.prev {
6716 border-right: 1px dotted #777;
6718 .post-nav.next {
6719 border-left: 1px dotted #777;
6723 /*===========*/
6724 /* POST-META */
6725 /*===========*/
6727 .post-meta .post-section::before,
6728 .comment-meta .alignment-forum {
6729 color: #000;
6730 text-shadow:
6731 1px 1px 0 #9740cb,
6732 0 1px 0 #9740cb,
6733 0 0 5px #9740cb;
6735 a.post-section:hover {
6736 text-decoration: none;
6738 a.post-section:hover::before {
6739 color: #2e0062;
6741 .post-meta .post-section.alignment-forum::before,
6742 .comment-meta .alignment-forum {
6743 text-shadow:
6744 1px 1px 0 #658100,
6745 0 1px 0 #658100,
6746 0 0 5px #658100;
6748 a.post-section.alignment-forum:hover::before {
6749 color: #181a00;
6751 .post-meta .date {
6752 color: #666;
6754 .post-meta .author {
6755 color: #9740cb;
6757 .bottom-post-meta {
6758 border-color: #1f1f1f;
6761 /*============*/
6762 /* LINK POSTS */
6763 /*============*/
6765 .post.link-post a.link-post-link {
6766 text-decoration: none;
6767 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6768 font-weight: 600;
6770 .post.link-post a.link-post-link:hover {
6771 color: #00a9ed;
6773 .post.link-post a.link-post-link:hover::before {
6774 color: #670;
6775 text-shadow:
6776 0.5px 0.5px 0 #000,
6777 -0.5px -0.5px 0 #000,
6778 0 0 2px #000,
6779 0 0 3px #54d400;
6781 .post.link-post a.link-post-link:focus {
6782 color: #777;
6783 border-bottom: 2px dotted #777;
6786 /*==========*/
6787 /* COMMENTS */
6788 /*==========*/
6790 .comments::before {
6791 border-top: 1px solid #fff;
6792 box-shadow: 0 3px 4px -4px #fff inset;
6794 @-moz-document url-prefix() {
6795 .comments::before {
6796 box-shadow: 0 3px 3px -4px #fff inset;
6799 #content > .comment-thread .comment-meta a.date:focus,
6800 #content > .comment-thread .comment-meta a.permalink:focus {
6801 color: #666;
6802 outline: 2px dotted #575756;
6803 position: relative;
6804 background-color: #000;
6806 #content > .comment-thread .comment-meta a.date:focus {
6807 padding: 0 4px;
6808 left: -4px;
6810 #content > .comment-thread .comment-meta a.date:focus + * {
6811 margin-left: -8px;
6813 #content > .comment-thread .comment-meta a.permalink:focus {
6814 padding: 0 5px;
6815 left: -5px;
6817 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6818 margin-left: -10px;
6820 .comment-item {
6821 border: 1px solid #2c2c2c;
6822 background-color: var(--GW-comment-background-color);
6824 .comment-parent-link::after {
6825 box-shadow:
6826 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6827 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6828 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6831 /*================================*/
6832 /* DEEP COMMENT THREAD COLLAPSING */
6833 /*================================*/
6835 .comment-item input[id^="expand"] + label::after {
6836 color: #0cc800;
6837 font-weight: 600;
6839 .comment-item input[id^="expand"] + label:hover::after {
6840 color: #00a9ed;
6842 .comment-item input[id^="expand"] + label:active::after,
6843 .comment-item input[id^="expand"] + label:focus::after{
6844 color: #00a9ed;
6846 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6847 border-width: 1px 0 0 0;
6850 /*==============*/
6851 /* COMMENT-META */
6852 /*==============*/
6854 .comment-meta .author {
6855 font-weight: bold;
6856 font-size: 1.25em;
6857 color: #fff;
6859 .comment-meta .author:hover {
6860 text-decoration: none;
6861 color: #9740cb;
6863 .comment-item .author:not(.redacted).original-poster::after {
6864 opacity: 0.5;
6867 .comment-item .voting-controls.active-controls::after,
6868 .comment-item .voting-controls .karma-value::after,
6869 .post .voting-controls.active-controls::after,
6870 .post .voting-controls .karma-value::after,
6871 .author::before {
6872 background-color: #000;
6873 color: #575756;
6874 border-radius: 4px;
6875 box-shadow: 0 0 0 1px #1f1f1f inset;
6877 .comment-item .voting-controls.active-controls::after,
6878 .post .voting-controls.active-controls::after {
6879 padding: 6px 4px 4px 4px;
6880 bottom: -44px;
6882 .comment-item .voting-controls .karma-value::after,
6883 .post .voting-controls .karma-value::after {
6884 padding: 2px 8px 1px 8px;
6885 top: -25px;
6886 min-width: 56px;
6889 /*====================*/
6890 /* ANTI-KIBITZER MODE */
6891 /*====================*/
6893 .author.redacted,
6894 .inline-author.redacted {
6895 opacity: 0.6;
6896 font-weight: 400;
6899 .karma-value.redacted {
6900 opacity: 0.4;
6903 .link-post-domain.redacted {
6904 opacity: 0.4;
6907 /*===========================*/
6908 /* COMMENT THREAD NAVIGATION */
6909 /*===========================*/
6911 div.comment-parent-link {
6912 font-weight: 600;
6914 a.comment-parent-link {
6915 font-weight: 400;
6917 a.comment-parent-link::before {
6918 color: #393939;
6920 a.comment-parent-link:hover::before {
6921 background-color: #00001e;
6922 color: #575756;
6925 div.comment-child-links {
6926 font-weight: 600;
6928 div.comment-child-links a {
6929 font-weight: 400;
6931 .comment-child-link::before {
6932 color: #484848;
6935 .comment-item-highlight {
6936 box-shadow:
6937 0 0 2px #0047b5,
6938 0 0 3px #0047b5,
6939 0 0 5px #0047b5,
6940 0 0 7px #0047b5,
6941 0 0 10px #0047b5;
6942 border: 1px solid #0047b5;
6944 .comment-item-highlight-faint {
6945 box-shadow:
6946 0 0 2px #00193b,
6947 0 0 3px #00193b,
6948 0 0 5px #00193b,
6949 0 0 7px #00193b,
6950 0 0 10px #00193b;
6951 border: 1px solid #00193b;
6954 .comment-popup {
6955 background-color: #000;
6958 /*=======================*/
6959 /* COMMENTS COMPACT VIEW */
6960 /*=======================*/
6962 #comments-list-mode-selector button {
6963 box-shadow:
6964 0 0 0 4px #000 inset,
6965 0 0 0 5px #393939 inset;
6967 #comments-list-mode-selector button:hover,
6968 #comments-list-mode-selector button.selected {
6969 box-shadow:
6970 0 0 0 5px #393939 inset;
6972 #content.compact > .comment-thread .comment-item::after {
6973 color: #0cc800;
6974 background: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
6977 @media only screen and (hover: hover) {
6978 #content.compact > .comment-thread .comment-item:hover .comment,
6979 #content.compact > .comment-thread .comment-item.expanded .comment {
6980 background-color: #000;
6981 outline: 3px solid #54d400;
6983 #content.compact > .comment-thread .comment-item:hover .comment::before,
6984 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6985 background-color: #000;
6986 box-shadow:
6987 0 0 3px #000,
6988 0 0 5px #000,
6989 0 0 7px #000,
6990 0 0 10px #000,
6991 0 0 20px #000,
6992 0 0 30px #000,
6993 0 0 40px #000;
6996 @media only screen and (hover: none) {
6997 #content.compact > .comment-thread.expanded .comment-item .comment {
6998 background-color: #000;
6999 outline: 3px solid #54d400;
7001 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7002 background-color: #000;
7003 box-shadow:
7004 0 0 3px #000,
7005 0 0 5px #000,
7006 0 0 7px #000,
7007 0 0 10px #000,
7008 0 0 20px #000,
7009 0 0 30px #000,
7010 0 0 40px #000;
7014 #content.user-page.compact > h1.listing {
7015 margin-top: 0.5rem;
7017 #content.user-page.compact > h1.listing + .post-meta {
7018 margin-bottom: 0.5rem;
7021 /*===========================*/
7022 /* HIGHLIGHTING NEW COMMENTS */
7023 /*===========================*/
7025 .new-comment::before {
7026 outline: 2px solid #7f3b92;
7027 box-shadow:
7028 0 0 6px -2px #7f3b92 inset,
7029 0 0 4px #7f3b92,
7030 0 0 6px #7f3b92;
7033 /*=================================*/
7034 /* COMMENT THREAD MINIMIZE BUTTONS */
7035 /*=================================*/
7037 .comment-minimize-button {
7038 color: #2c2c2c;
7040 .comment-minimize-button:hover {
7041 color: #484848;
7042 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7044 .comment-minimize-button::after {
7045 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7046 color: #777;
7048 .comment-minimize-button.maximized::after {
7049 color: #2c2c2c;
7052 /*==============*/
7053 /* VOTE BUTTONS */
7054 /*==============*/
7056 .vote::before {
7057 content: "";
7058 border-radius: 50%;
7059 background-size: 17px 17px;
7060 width: 17px;
7061 height: 17px;
7062 display: inline-block;
7063 position: relative;
7064 top: 2.5px;
7067 .vote:disabled {
7068 visibility: unset;
7070 .voting-controls button.downvote:disabled::before {
7071 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7072 filter: brightness(50%);
7074 .voting-controls button.upvote:disabled::before {
7075 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTE0NCAyNzZjMCA2LjYtNS40IDEyLTEyIDEyaC05MnY5MmMwIDYuNi01LjQgMTItMTIgMTJoLTU2Yy02LjYgMC0xMi01LjQtMTItMTJ2LTkyaC05MmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoOTJ2LTkyYzAtNi42IDUuNC0xMiAxMi0xMmg1NmM2LjYgMCAxMiA1LjQgMTIgMTJ2OTJoOTJjNi42IDAgMTIgNS40IDEyIDEydjU2eiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7076 filter: brightness(50%);
7079 .vote:active {
7080 transform: none;
7082 .vote.selected::before,
7083 .vote.clicked-once::before,
7084 .vote.clicked-twice::before {
7085 filter: drop-shadow(0 0 1px #fff);
7088 .upvote::before,
7089 .waiting .upvote.big-vote.clicked-twice::before {
7090 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7091 filter: grayscale(100%) brightness(128%);
7093 .downvote::before,
7094 .waiting .downvote.big-vote.clicked-twice::before {
7095 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7096 filter: grayscale(100%) brightness(188%);
7099 .vote.clicked-once::before,
7100 .vote.big-vote.clicked-once::before {
7101 box-shadow:
7102 0 0 0 1px #000,
7103 0 0 0 4px #2f2f2f,
7104 0 0 0 5px transparent;
7107 .vote.big-vote.clicked-twice::before,
7108 .waiting .vote.big-vote:not(.clicked-twice)::before,
7109 .waiting .vote:not(.big-vote).clicked-once::before {
7110 box-shadow: none;
7113 .upvote.clicked-twice::before,
7114 .upvote.big-vote::before {
7115 box-shadow:
7116 0 0 0 1px #000,
7117 0 0 0 4px #6200ad,
7118 0 0 0 5px transparent;
7121 .downvote.clicked-twice::before,
7122 .downvote.big-vote::before {
7123 box-shadow:
7124 0 0 0 1px #000,
7125 0 0 0 4px #0084c2,
7126 0 0 0 5px transparent;
7129 /*===========================*/
7130 /* COMMENTING AND POSTING UI */
7131 /*===========================*/
7133 .posting-controls input[type='submit'] {
7134 background-color: #000;
7135 border: 1px solid #484848;
7136 font-weight: bold;
7138 .posting-controls input[type='submit']:hover,
7139 .posting-controls input[type='submit']:focus {
7140 background-color: #1f1f1f;
7141 border: 1px solid #575756;
7144 .comment-controls .cancel-comment-button {
7145 font-weight: 600;
7146 color: #00a9ed;
7147 text-shadow:
7148 0 0 1px #000,
7149 0 0 2px #000;
7151 .comment-controls .cancel-comment-button:hover {
7152 color: #0090e0;
7153 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7156 .new-comment-button {
7157 font-weight: 600;
7160 .comment-controls .delete-button,
7161 .comment-controls .retract-button {
7162 color: #00bbf5;
7163 opacity: 0.85;
7165 .comment-controls .edit-button,
7166 .comment-controls .unretract-button {
7167 color: #9740cb;
7169 .comment-controls .action-button:hover {
7170 color: #0090e0;
7171 opacity: 1.0;
7174 .button.edit-post-link:not(:hover) {
7175 color: #9740cb;
7178 .posting-controls textarea {
7179 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
7180 color: #fff;
7181 background-color: #000;
7182 border-color: #484848;
7183 box-shadow:
7184 0 0 0 1px #131313 inset;
7186 .posting-controls textarea:focus {
7187 background-color: #00001e;
7188 border-color: #0cc800;
7189 box-shadow:
7190 0 0 0 1px #1d1f00 inset,
7191 0 0 0 1px #000,
7192 0 0 0 2px #0cc800;
7194 .posting-controls.edit-existing-post textarea:focus,
7195 .posting-controls form.edit-existing-comment textarea:focus {
7196 border-color: #9740cb;
7197 box-shadow:
7198 0 0 0 1px #3d0061 inset,
7199 0 0 0 1px #000,
7200 0 0 0 2px #9740cb;
7203 /*= Scroll bars =*/
7205 .posting-controls textarea::-webkit-scrollbar {
7206 width: 16px;
7207 background-color: transparent;
7209 .posting-controls textarea::-webkit-scrollbar-track {
7210 background-color: #131313;
7211 border-left: 1px solid #484848;
7212 border-top: 1px solid #131313;
7214 .posting-controls textarea:focus::-webkit-scrollbar-track {
7215 border-left: 1px solid #0cc800;
7216 border-top: 1px solid #1d1f00;
7218 .posting-controls textarea::-webkit-scrollbar-thumb {
7219 background-color: #484848;
7220 box-shadow: 0 0 0 1px #131313 inset;
7221 border-left: 1px solid #484848;
7223 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7224 border-left: 1px solid #0cc800;
7225 background-color: #40a800;
7226 box-shadow:
7227 0 1px 0 0 #1d1f00 inset,
7228 0 0 0 1px #131313 inset;
7231 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7232 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7233 border-left: 1px solid #9740cb;
7235 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7236 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7237 border-left: 1px solid #9740cb;
7238 background-color: #8533c2;
7241 /* GUIEdit buttons */
7243 .guiedit-buttons-container {
7244 background-image: linear-gradient(to bottom, #000 0%, #1d1f00 50%, #252c00 75%, #344700 100%);
7247 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7248 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7249 color: #ce92ee;
7251 .guiedit-buttons-container button {
7252 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
7255 .guiedit::after {
7256 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7257 color: #777;
7258 text-shadow: none;
7261 /* Markdown hints */
7263 #markdown-hints-checkbox + label {
7264 color: #0cc800;
7266 #markdown-hints-checkbox + label:hover {
7267 color: #0098e4;
7268 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7270 #markdown-hints {
7271 border: 1px solid #00a9ed;
7272 background-color: #000340;
7275 /*================*/
7276 /* EDIT POST FORM */
7277 /*================*/
7279 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7280 top: -1px;
7282 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7283 border-radius: 3px;
7284 border: 1px solid #1f1f1f;
7285 color: #777;
7287 @media only screen and (hover:hover) {
7288 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7289 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7290 text-shadow:
7291 0 0 1px #000,
7292 0 0 2px #000,
7293 0 0 2.5px #484848;
7295 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7296 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7297 border-color: #484848;
7300 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7301 content: "\F00C";
7303 #edit-post-form input[type='radio'] + label {
7304 color: #777;
7305 border-color: #1f1f1f;
7306 padding: 4px 12px 5px 12px;
7308 #edit-post-form input[type='radio'][value='all'] + label {
7309 border-radius: 8px 0 0 8px;
7310 border-width: 1px;
7312 #edit-post-form input[type='radio'][value='drafts'] + label {
7313 border-radius: 0 8px 8px 0;
7315 @media only screen and (hover:hover) {
7316 #edit-post-form input[type='radio'] + label:hover,
7317 #edit-post-form input[type='radio']:focus + label {
7318 background-color: #1f1f1f;
7319 color: #fff;
7322 #edit-post-form input[type='radio']:focus + label {
7323 color: #fff;
7324 box-shadow:
7325 0 0 0 1px #484848;
7327 #edit-post-form input[type='radio']:checked + label {
7328 background-color: #1f1f1f;
7329 border-color: #1f1f1f;
7330 color: #fff;
7331 text-shadow:
7332 0 -1px 0 #000,
7333 0 0.5px 0.5px #fff;
7336 /*=======*/
7337 /* LINKS */
7338 /*=======*/
7341 text-decoration: none;
7342 color: #0cc800;
7344 a:visited {
7345 color: #76cc54;
7347 a:hover {
7348 text-decoration: underline;
7351 /*=========*/
7352 /* BUTTONS */
7353 /*=========*/
7355 button,
7356 input[type='submit'] {
7357 color: #0cc800;
7360 button:active,
7361 input[type='submit']:active {
7362 color: #0090e0;
7363 transform: scale(0.9);
7365 .button:visited {
7366 color: #0cc800;
7368 .button:active {
7369 transform: scale(0.9);
7371 @-moz-document url-prefix() {
7372 .button:active {
7373 transform: none;
7377 @media only screen and (hover:hover) {
7378 button:hover,
7379 input[type='submit']:hover,
7380 button:focus,
7381 input[type='submit']:focus {
7382 color: #0090e0;
7383 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7386 .button:hover {
7387 color: #0090e0;
7388 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7389 text-decoration: none;
7391 .button:focus:not(:hover) {
7392 transform: none;
7396 /*==========*/
7397 /* HEADINGS */
7398 /*==========*/
7400 .body-text h1,
7401 .body-text h2,
7402 .body-text h4 {
7403 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7405 .body-text h3,
7406 .body-text h5,
7407 .body-text h6 {
7408 font-weight: 600;
7409 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7411 .body-text h6 {
7412 color: #9b9b9b;
7414 .body-text h1 {
7415 border-bottom: 1px solid #484848;
7418 /*========*/
7419 /* QUOTES */
7420 /*========*/
7422 blockquote {
7423 border-left: 5px solid #2c2c2c;
7426 /*========*/
7427 /* IMAGES */
7428 /*========*/
7430 #content img,
7431 #content figure.image img {
7432 border: 1px solid #2c2c2c;
7434 #content figure img {
7435 border: 1px solid #fff;
7437 #content img[src$='.svg'],
7438 #content figure img[src$='.svg'] {
7439 border: none;
7441 #content img[style^='float'] {
7442 border: 1px solid transparent;
7445 /*========*/
7446 /* TABLES */
7447 /*========*/
7449 #content:not(.tag-index-page) .body-text table,
7450 #content:not(.tag-index-page) .body-text table th,
7451 #content:not(.tag-index-page) .body-text table td {
7452 border: 1px solid #2c2c2c;
7455 /*======*/
7456 /* MISC */
7457 /*======*/
7459 hr {
7460 border-bottom: 1px solid #575756;
7463 code {
7464 background-color: #0b0b00;
7465 border: 1px solid #1d1f00;
7466 border-radius: 4px;
7469 input[type='text'],
7470 input[type='search'],
7471 input[type='password'] {
7472 background-color: #000;
7473 border: 1px solid #1f1f1f;
7474 color: #fff;
7476 input[type='text']:focus,
7477 input[type='search']:focus,
7478 input[type='password']:focus {
7479 background-color: #00001e;
7480 border: 1px solid #393939;
7481 box-shadow: 0 0 1px #393939;
7484 select {
7485 color: #fff;
7489 /*============*/
7490 /* ABOUT PAGE */
7491 /*============*/
7493 .about-page mark {
7494 background-color: #191919;
7495 text-decoration: none;
7496 box-shadow:
7497 0 -1px 0 0 #fff inset,
7498 0 -3px 1px -2px #fff inset;
7499 padding: 0 1px;
7502 #content.about-page .accesskey-table {
7503 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7504 border-color: #1f1f1f;
7507 #content.about-page img {
7508 border: 1px solid #fff;
7511 /*========================*/
7512 /* QUALIFIED HYPERLINKING */
7513 /*========================*/
7515 #aux-about-link a {
7516 color: #777;
7518 #aux-about-link a:hover {
7519 opacity: 1.0;
7520 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7523 .qualified-linking label {
7524 color: #0cc800;
7526 .qualified-linking label:hover {
7527 text-shadow:
7528 0 0 1px #000,
7529 0 0 3px #000,
7530 0 0 5px #0cc800;
7533 .qualified-linking-toolbar {
7534 border: 1px solid #fff;
7535 background-color: #000;
7537 .qualified-linking-toolbar a {
7538 background-color: #131313;
7539 border: 1px solid #2c2c2c;
7540 border-radius: 4px;
7542 .qualified-linking-toolbar a:visited {
7543 color: #0cc800;
7545 .qualified-linking-toolbar a:hover {
7546 text-decoration: none;
7547 background-color: #1f1f1f;
7548 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7550 .qualified-linking label::after {
7551 background-color: #232323;
7552 opacity: 0.8;
7555 /*======*/
7556 /* MATH */
7557 /*======*/
7559 .mathjax-block-container::-webkit-scrollbar {
7560 height: 12px;
7561 background-color: #0b0b00;
7562 border-radius: 6px;
7563 border: 1px solid #1d1f00;
7565 .mathjax-block-container::-webkit-scrollbar-thumb {
7566 background-color: #1e1f13;
7567 border-radius: 6px;
7568 border: 1px solid #282c11;
7570 .mathjax-inline-container::-webkit-scrollbar {
7571 height: 8px;
7572 background-color: #0b0b00;
7573 border-radius: 4px;
7574 border: 1px solid #1d1f00;
7576 .mathjax-inline-container::-webkit-scrollbar-thumb {
7577 background-color: #1e1f13;
7578 border-radius: 4px;
7579 border: 1px solid #282c11;
7582 /*=================*/
7583 /* ALIGNMENT FORUM */
7584 /*=================*/
7586 #content.alignment-forum-index-page::before {
7587 background-color: #131100;
7589 #content.alignment-forum-index-page::after {
7590 font-family: "Concourse SmallCaps";
7591 font-weight: bold;
7592 background-color: #658100;
7593 -webkit-background-clip: text;
7594 color: transparent;
7595 text-shadow:
7596 rgba(0, 0, 0, 0.5) 0px 3px 3px;;
7598 @media only screen and (hover: hover) {
7599 #content.alignment-forum-index-page h1.listing a:hover,
7600 #content.alignment-forum-index-page h1.listing a:focus {
7601 background-color: rgba(19, 17, 0, 0.85);
7605 /*====================*/
7606 /* FOR NARROW SCREENS */
7607 /*====================*/
7609 @media only screen and (max-width: 1440px) {
7610 #hns-date-picker {
7611 background-color: #232323;
7612 opacity: 1.0;
7614 #hns-date-picker::before {
7615 border: 1px solid #575756;
7616 border-width: 1px 0 1px 1px;
7619 @media only screen and (max-width: 1160px) {
7620 #theme-selector:hover::after {
7621 background-color: #575756;
7624 @media only screen and (max-width: 1080px) {
7625 #text-size-adjustment-ui button {
7626 border: 1px solid #575756;
7627 padding: 0 0 0 1px;
7628 border-radius: 50%;
7629 box-shadow:
7630 0 0 6px #575756 inset,
7631 0 0 0 1px transparent;
7633 #theme-tweaker-toggle button {
7634 border: 1px solid #575756;
7635 box-shadow:
7636 0 0 10px #575756 inset,
7637 0 0 0 1px transparent;
7638 border-radius: 50%;
7639 transform: scale(0.8);
7642 @media only screen and (max-width: 1020px) {
7643 #quick-nav-ui a {
7644 box-shadow:
7645 0 0 0 1px #575756,
7646 0 0 0 2px transparent;
7648 #new-comment-nav-ui .new-comments-count::before {
7649 background-color: #232323;
7650 box-shadow:
7651 0 0 0 1px #575756,
7652 0 0 0 2px transparent;
7653 border-radius: 8px;
7655 #anti-kibitzer-toggle {
7656 box-shadow:
7657 0 0 0 1px #575756,
7658 0 0 0 2px transparent;
7659 background-color: #232323;
7660 border-radius: 6px;
7661 overflow: hidden;
7664 @media only screen and (max-width: 1000px) {
7665 #theme-selector {
7666 background-color: #232323;
7667 box-shadow:
7668 0 0 0 1px #575756,
7669 0 0 0 2px transparent;
7671 #theme-selector:hover::after {
7672 width: calc(6em - 3px);
7673 height: calc(100% - 5px);
7674 top: 3px;
7675 left: 100%;
7677 #text-size-adjustment-ui button {
7678 background-color: #1f1f1f;
7680 #text-size-adjustment-ui button:hover {
7681 background-color: #131313;
7683 #theme-tweaker-toggle button {
7684 background-color: #1f1f1f;
7688 /*========*/
7689 /* MOBILE */
7690 /*========*/
7692 /**************************************************************************/
7693 @media only screen and (max-width: 1160px) {
7694 /**************************************************************************/
7696 #ui-elements-container > div[id$='-ui-toggle'] button {
7697 color: #666;
7698 text-shadow:
7699 0 0 1px #000,
7700 0 0 3px #000,
7701 0 0 5px #000,
7702 0 0 10px #000,
7703 0 0 20px #000,
7704 0 0 30px #000;
7707 #theme-selector {
7708 background-color: #232323;
7709 box-shadow:
7710 0 0 0 1px #575756,
7711 0 0 1px 3px #000,
7712 0 0 3px 3px #000,
7713 0 0 5px 3px #000,
7714 0 0 10px 3px #000,
7715 0 0 20px 3px #000;
7716 border-radius: 12px;
7718 #theme-selector::before,
7719 #theme-selector .theme-selector-close-button {
7720 color: #888;
7721 text-shadow: 0.5px 0.5px 0 #000;
7723 #theme-selector button {
7724 background-color: #191919;
7725 border-radius: 10px;
7727 #theme-selector button::after {
7728 color: #fff;
7729 padding-bottom: 2px;
7730 max-width: calc(100% - 3.25em);
7731 overflow: hidden;
7732 text-overflow: ellipsis;
7734 #theme-selector button.selected::after {
7735 text-shadow:
7736 0 -1px 0 #000,
7737 0 0.5px 0.5px #fff;
7740 #quick-nav-ui {
7741 background-color: #000;
7743 #quick-nav-ui,
7744 #new-comment-nav-ui,
7745 #hns-date-picker {
7746 box-shadow:
7747 0 0 1px 3px #000,
7748 0 0 3px 3px #000,
7749 0 0 5px 3px #000,
7750 0 0 10px 3px #000,
7751 0 0 20px 3px #000;
7753 #quick-nav-ui a::after,
7754 #new-comment-nav-ui::before {
7755 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7756 font-weight: 600;
7757 box-shadow:
7758 0 0 1px 0 #000,
7759 0 0 3px 0 #000,
7760 0 0 5px 0 #000;
7761 background-color: #000;
7762 border-radius: 4px;
7764 #quick-nav-ui,
7765 #new-comment-nav-ui {
7766 border-radius: 8px;
7768 #new-comment-nav-ui {
7769 background-color: #232323;
7770 border: 1px solid #575756;
7772 #new-comment-nav-ui::before {
7773 color: #777;
7775 #new-comment-nav-ui .new-comment-sequential-nav-button {
7776 box-shadow: 0 0 0 1px #575756;
7777 color: #777;
7779 #new-comment-nav-ui .new-comments-count {
7780 background-color: inherit;
7781 box-shadow: 0 -1px 0 0 #575756;
7783 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7784 color: #393939;
7786 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7787 border-radius: 7px 0 0 7px;
7789 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7790 border-radius: 0 7px 7px 0;
7792 #new-comment-nav-ui button::after {
7793 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7796 /*****************************************/
7797 @media only screen and (max-width: 900px) {
7798 /*****************************************/
7799 h1.listing {
7800 font-size: 1.75rem;
7801 line-height: 1;
7803 h1.listing .link-post-link {
7804 top: 2px;
7806 h1.listing + .post-meta .karma-value,
7807 h1.listing + .post-meta .comment-count,
7808 h1.listing + .post-meta .lw2-link,
7809 h1.listing + .post-meta .read-time {
7810 bottom: 0;
7812 h1.listing + .post-meta .post-section::before {
7813 position: unset;
7815 h1.listing + .post-meta .post-section {
7816 overflow: visible;
7817 order: 1;
7819 h1.listing + .post-meta .link-post-domain {
7820 order: 2;
7821 line-height: 1;
7822 flex-basis: 100%;
7824 h1.listing + .post-meta::after {
7825 bottom: -10px;
7827 #content.user-page h1.listing + .post-meta {
7828 margin-bottom: 1em;
7830 #content.user-page h1.link-post-listing::after {
7831 height: calc(100% + 2em);
7834 #nav-item-search button::before {
7835 color: #0cc800;
7838 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7839 background-color: #484848;
7842 .comment-item .comment-item {
7843 margin: 0.75em 2px 4px 6px;
7844 box-shadow:
7845 0 0 2px #2c2c2c,
7846 0 0 4px #2c2c2c,
7847 0 0 7px #2c2c2c;
7849 .comment-item .comment-item + .comment-item {
7850 margin: 1.5em 2px 4px 6px;
7852 .comment-body {
7853 font-size: 1.125rem;
7856 a.comment-parent-link:hover::before {
7857 background-color: unset;
7860 .sublevel-nav:not(.sort) .sublevel-item,
7861 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7862 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7863 border-radius: 8px;
7864 border-width: 1px;
7865 margin: 2px;
7867 /*******************************************/
7868 } @media only screen and (max-width: 720px) {
7869 /*******************************************/
7870 h1.listing {
7871 margin: 10px 6px 6px 6px;
7872 max-width: calc(100% - 12px);
7873 font-size: 1.5rem;
7874 padding-right: 35px;
7876 #content.conversations-user-page h1.listing {
7877 font-size: 1.5rem;
7879 h1.listing + .post-meta {
7880 margin: 0 6px 0 7px;
7881 clear: both;
7883 h1.listing + .post-meta {
7884 padding: .25em 254px 0 0;
7886 h1.listing + .post-meta::after {
7887 bottom: -2px;
7889 h1.listing + .post-meta > * {
7890 line-height: 1;
7891 display: block;
7893 #content.conversations-user-page h1.listing + .post-meta > * {
7894 line-height: 1.5;
7896 h1.listing + .post-meta .date,
7897 h1.listing + .post-meta .author {
7898 line-height: 1.3;
7900 h1.listing + .post-meta .karma-value,
7901 h1.listing + .post-meta .comment-count,
7902 h1.listing + .post-meta .lw2-link,
7903 h1.listing + .post-meta .read-time {
7904 top: unset;
7905 font-size: 1rem;
7906 box-shadow: none;
7908 h1.listing + .post-meta .karma-value::before,
7909 h1.listing + .post-meta .comment-count::before,
7910 h1.listing + .post-meta .lw2-link::before,
7911 h1.listing + .post-meta .read-time::before {
7912 box-shadow: none;
7914 h1.listing + .post-meta .karma-value,
7915 h1.listing + .post-meta .comment-count,
7916 h1.listing + .post-meta .read-time,
7917 h1.listing + .post-meta .lw2-link {
7918 bottom: 4px;
7921 h1.listing + .post-meta .karma-value {
7922 right: 192px;
7924 h1.listing + .post-meta .karma-value::before {
7925 text-shadow: 0.5px 0.5px 0.5px #575756;
7927 h1.listing + .post-meta .comment-count {
7928 right: 132px;
7930 h1.listing + .post-meta .read-time {
7931 right: 56px;
7933 h1.listing + .post-meta .lw2-link {
7934 opacity: 1;
7935 right: 0;
7937 h1.listing + .post-meta .link-post-domain {
7938 margin: 0;
7939 line-height: 1.3;
7940 overflow: hidden;
7941 text-overflow: ellipsis;
7943 h1.listing + .post-meta .post-section::before {
7944 position: absolute;
7945 left: unset;
7946 right: 0;
7947 bottom: 30px;
7948 top: unset;
7950 h1.listing a {
7951 display: inline;
7953 /*******************************************/
7954 } @media only screen and (max-width: 520px) {
7955 /*******************************************/
7956 h1.listing + .post-meta {
7957 padding: .25em 144px 0 0;
7958 flex-flow: column;
7960 #content.conversations-user-page h1.listing + .post-meta {
7961 flex-flow: row wrap;
7963 h1.listing + .post-meta .date {
7964 margin: 0.375em 0 0.25em 0;
7965 line-height: 1;
7967 #content.user-page h1.listing::after {
7968 height: calc(100% + 2.125em);
7970 #content.user-page h1.link-post-listing::after {
7971 height: calc(100% + 3.125em);
7973 #content.user-page:not(.conversations-user-page) h1.listing + .post-meta {
7974 padding: 0.25em 144px 0.5em 36px;
7976 #content.conversations-user-page h1.listing + .post-meta .date {
7977 margin: 0 0 0 1em;
7980 h1.listing + .post-meta .karma-value {
7981 bottom: 28px;
7982 right: 56px;
7984 h1.listing + .post-meta .comment-count {
7985 bottom: 28px;
7986 right: 0;
7988 h1.listing + .post-meta .read-time {
7989 right: 56px;
7990 bottom: 4px;
7992 h1.listing + .post-meta .lw2-link {
7993 right: 0;
7994 bottom: 4px;
7996 h1.listing + .post-meta .link-post-domain {
7997 max-width: 100%;
7999 h1.listing + .post-meta .post-section::before {
8000 right: 120px;
8003 #content.compact > .comment-thread .comment-item {
8004 max-height: 110px;
8007 .textarea-container:focus-within button:active {
8008 background-color: #2c2c2c;
8010 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8011 background-color: #131313;
8012 border: 1px solid #1f1f1f;
8013 border-radius: 6px;
8015 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8016 border-color: #00a9ed;
8017 box-shadow:
8018 0 0 0 1px #000,
8019 0 0 0 2px #00a9ed;
8020 color: #00a9ed;
8021 font-weight: 600;
8023 #content.conversation-page .textarea-container:focus-within::after {
8024 background-color: #000;
8026 .textarea-container:focus-within .guiedit-buttons-container {
8027 background-color: white;
8028 border-top: 1px solid #1d1f00;
8030 .textarea-container:focus-within button.guiedit {
8031 background-color: #131313;
8032 border: 1px solid #1f1f1f;
8033 border-radius: 6px;
8035 #markdown-hints::after {
8036 color: #9740cb;
8039 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8040 top: 2px;
8042 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8043 top: 1px;
8045 /*******************************************/
8046 } @media only screen and (max-width: 320px) {
8047 /*******************************************/
8048 h1.listing {
8049 font-size: 1.25rem;
8051 #content.user-page h1.listing::after {
8052 height: calc(100% + 2.625em);
8054 #content.user-page h1.link-post-listing::after {
8055 height: calc(100% + 3.75em);
8061 /*************/
8062 /* ACCORDIUS */
8063 /*************/
8065 /*======*/
8066 /* TAGS */
8067 /*======*/
8069 #tags {
8070 order: 12;
8071 display: flex;
8072 flex-basis: 100%;
8073 justify-content: center;
8074 margin: 0;
8075 flex-flow: row wrap;
8076 align-items: flex-start;
8079 /*===============*/
8080 /* DEFAULT THEME */
8081 /*===============*/
8083 /*++++++*/
8084 /* TAGS */
8085 /*++++++*/
8087 #tags {
8088 padding: 0.5em;
8090 #tags::before {
8091 content: "Tags:";
8092 margin: 0 0.25em 0 0;
8093 opacity: 0.5;
8094 line-height: 1;
8095 align-self: center;
8097 #tags a {
8098 border-radius: 8px;
8099 background-color: #110c06;
8100 border: 1px solid #2e2416;
8101 padding: 4px 8px 5px 8px;
8102 line-height: 1;
8103 margin: 0.25em;
8104 font-size: 0.9375em;
8106 #tags a:hover {
8107 text-decoration: none;
8108 background-color: #221806;
8110 #tags a:active {
8111 color: #00a1e8;