User mentions list styling, final touches
[lw2-viewer.git] / www / css / style-dark.linux.css
blob02f69b497e47aa3ff1746ca510f5bd34b644d8ed
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;
155 line-height: inherit;
156 width: 100%;
157 background: unset;
159 .nav-bar-top:not(#primary-bar) .nav-inner {
160 padding: 4px 0;
163 #nav-item-sequences .nav-inner::before {
164 font-family: "Font Awesome", "Font Awesome 5 Free";
165 content: "\F5DB";
167 @media only screen and (min-width: 901px) {
168 #nav-item-about .nav-inner {
169 margin-right: 0.5em;
171 #nav-item-sequences .nav-inner::before {
172 font-size: 1rem;
173 display: block;
175 #secondary-bar #nav-item-sequences .nav-inner {
176 font-size: 0;
177 line-height: 1.4;
181 /*=------------=*/
182 /*= Bottom bar =*/
183 /*=------------=*/
185 #bottom-bar {
186 order: 11;
188 h1.listing ~ #bottom-bar {
189 margin-top: 1.25em;
191 #bottom-bar .nav-item {
192 flex: 1 1 0;
195 /*=-----------------=*/
196 /*= Accesskey hints =*/
197 /*=-----------------=*/
199 .nav-inner::after {
200 content: attr(accesskey);
201 display: none;
204 /*=---------------=*/
205 /*= Pagination UI =*/
206 /*=---------------=*/
208 #bottom-bar .nav-item a::before,
209 #top-nav-bar a::before {
210 font-family: "Font Awesome", "Font Awesome 5 Free";
211 font-weight: 900;
212 font-size: 0.8em;
213 position: relative;
214 bottom: 1px;
215 margin-right: 0.5em;
217 #bottom-bar #nav-item-first a::before,
218 #top-nav-bar a.nav-item-first::before {
219 content: "\F33e";
221 #bottom-bar #nav-item-top a::before {
222 content: "\F062";
224 #bottom-bar #nav-item-prev a::before,
225 #top-nav-bar a.nav-item-prev::before {
226 content: "\F060";
228 #bottom-bar #nav-item-next a::before,
229 #top-nav-bar a.nav-item-next::before {
230 content: "\F061";
232 #bottom-bar #nav-item-last a::before,
233 #top-nav-bar a.nav-item-last::before {
234 content: "\F340";
236 #bottom-bar #nav-item-next a::before {
237 margin-left: -2em;
238 margin-right: 0;
239 left: 3.8em;
241 #bottom-bar #nav-item-last a::before {
242 margin-left: -1.8em;
243 margin-right: 0;
244 left: 3.4em;
247 /*= Hover tooltips =*/
249 #top-nav-bar a {
250 position: relative;
252 #top-nav-bar a::after {
253 bottom: calc(100% - 3px);
254 content: attr(data-target-page);
256 #top-nav-bar a::after {
257 display: block;
258 position: absolute;
259 font-size: 0.75rem;
260 width: 100%;
261 line-height: 1;
262 visibility: hidden;
264 #top-nav-bar a:hover::after,
265 #bottom-bar a:hover::after {
266 visibility: visible;
269 /*=-----------------------=*/
270 /*= Decorative bottom bar =*/
271 /*=-----------------------=*/
272 /* (On short pages with no pagination) */
274 #bottom-bar.decorative {
275 position: relative;
277 #bottom-bar.decorative .nav-item {
278 display: none;
281 /*=------------=*/
282 /*= Search tab =*/
283 /*=------------=*/
285 #nav-item-search {
286 flex: 4 1 auto;
288 #nav-item-search form::before {
289 content: "\F002";
290 font-family: "Font Awesome", "Font Awesome 5 Free";
291 font-weight: 900;
292 display: inline-block;
293 vertical-align: top;
294 height: 23px;
295 width: 23px;
297 #nav-item-search input {
298 height: 23px;
299 width: calc(95% - 80px);
300 padding: 1px 4px;
302 #nav-item-search button {
303 height: 21px;
306 /*=-----------=*/
307 /*= Login tab =*/
308 /*=-----------=*/
310 #nav-item-login {
311 position: relative;
312 padding-right: 0.5em;
315 /*******************/
316 /* INBOX INDICATOR */
317 /*******************/
319 #inbox-indicator {
320 position: absolute;
321 top: 1px;
322 right: 0;
323 height: 100%;
324 visibility: hidden;
326 #inbox-indicator::before {
327 content: "\F0E0";
328 font-family: "Font Awesome", "Font Awesome 5 Free";
329 color: #393939;
330 font-size: 1.1875rem;
331 position: absolute;
332 height: 100%;
333 right: 0;
334 top: 0;
335 padding: 0 0.45em;
336 visibility: visible;
337 font-weight: 900;
339 #inbox-indicator.new-messages::before {
340 color: #0090e0;
341 text-shadow:
342 0 0 1px #777,
343 0.5px 0.5px 1px #777;
345 a#inbox-indicator:hover::before {
346 color: #000;
347 text-shadow:
348 0 0 1px #fff,
349 0 0 2px #fff,
350 0 0 4px #fff,
351 0 0 1px #777,
352 0.5px 0.5px 1px #777;
354 a#inbox-indicator.new-messages:hover::before {
355 text-shadow:
356 0 0 1px #0090e0,
357 0 0 2px #0090e0,
358 0 0 4px #0090e0,
359 0 0 1px #777,
360 0.5px 0.5px 1px #777;
363 /****************/
364 /* PAGE TOOLBAR */
365 /****************/
367 .page-toolbar {
368 font-size: 0.9em;
369 line-height: 1.8;
370 text-align: right;
371 margin-right: -20px;
373 #content > .page-toolbar {
374 grid-column: 3;
375 grid-row: span 3;
377 #content.user-page > .page-toolbar {
378 grid-column: 2 / span 2;
379 order: -4;
382 /*=--------------------------=*/
383 /*= Page toolbar items (all) =*/
384 /*=--------------------------=*/
386 .page-toolbar > * {
387 display: inline-block;
388 margin-left: 1.5em;
390 .page-toolbar > form button {
391 padding: 0;
392 text-align: right;
393 white-space: unset;
395 .page-toolbar > form button::before {
396 text-align: center;
398 .page-toolbar .button::before {
399 font-family: "Font Awesome", "Font Awesome 5 Free";
400 font-size: 0.9em;
401 padding-right: 0.3em;
404 /*=-------------------------------=*/
405 /*= Page toolbar items (specific) =*/
406 /*=-------------------------------=*/
408 .new-post::before {
409 content: '\F067';
410 font-weight: 900;
412 .new-private-message::before {
413 content: '\F075';
414 font-weight: 400;
416 .logout-button::before {
417 content: '\F2F5';
418 font-weight: 900;
420 #enable-push-notifications::before {
421 content: '\F0F3';
422 font-weight: 400;
424 .ignore-button::before {
425 content: "\F070";
426 font-weight: 400;
428 .unignore-button::before {
429 content: "\F06E";
430 font-weight: 400;
432 .rss::before {
433 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
434 display: inline-block;
435 width: 1em;
436 padding-right: 0.2em;
437 position: relative;
438 top: 1px;
441 /*********************/
442 /* TOP PAGINATION UI */
443 /*********************/
445 #top-nav-bar {
446 grid-column: 2;
447 margin: 0.25em 0 0 0;
448 padding: 0.75em 0 0 0;
449 text-align: center;
450 font-size: 1.25em;
451 display: flex;
452 justify-content: center;
454 #top-nav-bar a {
455 line-height: 1;
457 #top-nav-bar a.disabled {
458 pointer-events: none;
459 visibility: hidden;
461 #top-nav-bar .page-number {
462 position: relative;
463 display: inline-block;
464 width: 1.5em;
466 #top-nav-bar .page-number-label {
467 position: absolute;
468 font-size: 0.5em;
469 text-transform: uppercase;
470 width: 100%;
471 bottom: 90%;
472 left: 0;
474 #top-nav-bar a::before {
475 margin: 0.5em;
476 display: inline-block;
479 /****************/
480 /* SUBLEVEL NAV */
481 /****************/
483 .sublevel-nav {
484 text-align: center;
485 display: flex;
486 justify-content: center;
487 margin: 1em 0 0 0;
489 #content > .sublevel-nav:not(.sort) {
490 grid-column: 2;
491 align-self: start;
493 .sublevel-nav .sublevel-item {
494 flex: 0 0 6em;
495 padding: 0.125em 0.5em;
496 font-size: 1.125rem;
498 .sublevel-nav .sublevel-item:active {
499 transform: none;
501 .sublevel-nav .sublevel-item.selected {
502 cursor: default;
505 /***********************/
506 /* SORT ORDER SELECTOR */
507 /***********************/
509 .sublevel-nav.sort {
510 position: relative;
511 margin-top: 8px;
512 font-size: 0.75em;
514 #content > .sublevel-nav.sort {
515 grid-column: 3;
516 grid-row: span 2;
517 justify-self: end;
518 align-self: start;
519 flex-flow: column;
521 #content.index-page > .sublevel-nav.sort {
522 grid-column: 1;
523 justify-self: start;
524 flex-flow: row;
527 .sublevel-nav.sort::before {
528 content: "Sort";
529 font-size: 0.75rem;
530 position: absolute;
531 top: 0;
532 left: 0;
533 width: 100%;
535 .sublevel-nav.sort .sublevel-item {
536 line-height: 1;
537 font-size: 0.875rem;
538 flex-basis: unset;
541 /*******************************/
542 /* COMMENTS SORT MODE SELECTOR */
543 /*******************************/
545 .comments > .sublevel-nav.sort {
546 margin: 1em auto 0 auto;
548 @supports (width: -moz-fit-content) {
549 .comments > .sublevel-nav.sort {
550 width: -moz-fit-content;
553 @supports (width: fit-content) {
554 .comments > .sublevel-nav.sort {
555 width: fit-content;
559 /******************/
560 /* WIDTH SELECTOR */
561 /******************/
563 #width-selector {
564 position: absolute;
565 top: 4px;
566 right: -78px;
568 #width-selector button {
569 width: 22px;
570 height: 22px;
571 padding: 6px;
572 margin: 1px;
573 overflow: hidden;
574 background-repeat: no-repeat;
575 background-size: 100%;
576 background-origin: content-box;
578 #width-selector button,
579 #width-selector button:active,
580 #width-selector button:focus {
581 text-shadow: none;
582 color: transparent;
584 #width-selector button:disabled {
585 cursor: auto;
587 #width-selector button.select-width-normal {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
590 #width-selector button.select-width-wide {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
593 #width-selector button.select-width-fluid {
594 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
597 /*=----------------=*/
598 /*= Hover tooltips =*/
599 /*=----------------=*/
601 #width-selector button::after {
602 content: attr(data-name);
603 position: absolute;
604 display: block;
605 left: 0;
606 width: 100%;
607 text-align: center;
608 top: 56px;
609 visibility: hidden;
611 #width-selector button.selected::after {
612 content: attr(data-name) " (selected)";
614 #width-selector button:hover:not(:active)::after {
615 visibility: visible;
618 head.content-width-normal + body > * {
619 max-width: 900px;
621 head.content-width-wide + body > * {
622 max-width: 1150px;
624 head.content-width-fluid + body > * {
625 max-width: calc(100% - 300px);
628 /******************/
629 /* THEME SELECTOR */
630 /******************/
632 #theme-selector {
633 position: absolute;
634 top: 3px;
635 left: -41px;
636 opacity: 0.4;
637 display: table;
638 max-width: 40px;
640 #theme-selector:hover {
641 opacity: 1.0;
644 /*=----------------------=*/
645 /*= Theme select buttons =*/
646 /*=----------------------=*/
648 .theme-selector button {
649 display: table-cell;
650 width: 26px;
651 height: 26px;
652 padding: 5px;
653 margin: 1px 7px 0 7px;
654 color: transparent;
655 background-size: 16px 16px;
656 background-origin: content-box;
658 .theme-selector button,
659 .theme-selector button:hover,
660 .theme-selector button:active,
661 .theme-selector button:focus {
662 text-shadow: none;
663 color: transparent;
665 .theme-selector button:disabled {
666 cursor: auto;
669 /*=----------------------------=*/
670 /*= Pre-rendered button images =*/
671 /*=----------------------------=*/
672 /* (Each is just a capital letter A through whatever) */
674 .theme-selector button:nth-of-type(1) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
677 .theme-selector button:nth-of-type(2) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
680 .theme-selector button:nth-of-type(3) {
681 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=');
683 .theme-selector button:nth-of-type(4) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
686 .theme-selector button:nth-of-type(5) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
689 .theme-selector button:nth-of-type(6) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
692 .theme-selector button:nth-of-type(7) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
695 .theme-selector button:nth-of-type(8) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
698 .theme-selector button:nth-of-type(9) {
699 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
702 /*=------------------------------=*/
703 /*= Theme select button tooltips =*/
704 /*=------------------------------=*/
705 /* (with the name & description of the theme that each button selects) */
707 #theme-selector button {
708 position: relative;
709 z-index: 1;
711 #theme-selector button::before {
712 content: attr(data-theme-name);
713 position: absolute;
714 top: 0;
715 right: 100%;
716 padding: 5px 6px 6px 6px;
717 line-height: 1;
718 width: 6em;
719 text-align: right;
720 z-index: 1;
721 visibility: hidden;
723 #theme-selector:hover button::before {
724 visibility: visible;
726 #theme-selector:hover ~ #theme-tweaker-toggle,
727 #theme-selector:active ~ #theme-tweaker-toggle {
728 z-index: -1;
731 /************************/
732 /* THEME TWEAKER TOGGLE */
733 /************************/
735 #theme-tweaker-toggle {
736 position: absolute;
737 top: 7px;
738 left: -75px;
740 #theme-tweaker-toggle button {
741 font-family: "Font Awesome", "Font Awesome 5 Free";
742 font-weight: 900;
743 font-size: 1.25rem;
744 opacity: 0.4;
745 z-index: 1;
747 #theme-tweaker-toggle button:hover {
748 opacity: 1.0;
751 /*******************/
752 /* QUICKNAV WIDGET */
753 /*******************/
755 #quick-nav-ui {
756 position: absolute;
757 right: -67px;
758 bottom: 20px;
760 #quick-nav-ui a {
761 font-family: "Font Awesome", "Font Awesome 5 Free";
762 font-weight: 900;
763 font-size: 1.5rem;
764 line-height: 1.7;
765 text-align: center;
766 display: block;
767 width: 40px;
768 height: 40px;
769 margin: 10px 0 0 0;
771 #quick-nav-ui a[href='#comments'].no-comments {
772 pointer-events: none;
774 #quick-nav-ui a {
775 visibility: hidden;
777 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
778 visibility: visible;
781 /************************/
782 /* NEW COMMENT QUICKNAV */
783 /************************/
785 #new-comment-nav-ui {
786 position: absolute;
787 right: -112px;
788 bottom: 42px;
790 #new-comment-nav-ui > * {
791 display: block;
792 position: relative;
794 #new-comment-nav-ui.no-comments {
795 display: none;
798 /*=--------------------=*/
799 /*= New comments count =*/
800 /*=--------------------=*/
802 #new-comment-nav-ui .new-comments-count {
803 width: 2em;
804 font-size: 1.25rem;
805 line-height: 1.1;
806 text-align: center;
807 left: 1px;
808 cursor: pointer;
810 #new-comment-nav-ui .new-comments-count::selection {
811 background-color: transparent;
813 #new-comment-nav-ui .new-comments-count::after {
814 content: "NEW";
815 display: block;
816 font-size: 0.625rem;
819 /*=-----------------------------------=*/
820 /*= Next/previous new comment buttons =*/
821 /*=-----------------------------------=*/
823 #new-comment-nav-ui .new-comment-sequential-nav-button {
824 font-size: 1.75rem;
825 font-family: "Font Awesome", "Font Awesome 5 Free";
826 font-weight: 900;
827 width: 1.5em;
828 z-index: 5001;
830 #new-comment-nav-ui .new-comment-previous {
831 top: 8px;
833 #new-comment-nav-ui .new-comment-next {
834 bottom: 6px;
836 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
837 cursor: auto;
838 pointer-events: none;
841 /*******************/
842 /* HNS DATE PICKER */
843 /*******************/
845 #hns-date-picker {
846 position: absolute;
847 bottom: 72px;
848 right: -253px;
849 opacity: 0.6;
851 #hns-date-picker:hover,
852 #hns-date-picker:focus-within {
853 opacity: 1.0;
855 #hns-date-picker.no-comments {
856 display: none;
859 /*=---------------=*/
860 /*= "Since" label =*/
861 /*=---------------=*/
863 #hns-date-picker span {
864 display: block;
865 font-size: 0.75rem;
866 text-transform: uppercase;
869 /*=--------------------=*/
870 /*= "Since" text field =*/
871 /*=--------------------=*/
873 #hns-date-picker input {
874 margin-top: 1px;
875 padding: 1px 3px;
876 width: 140px;
877 text-align: center;
878 box-shadow: 0 0 0 1px transparent;
881 /************************/
882 /* ANTI-KIBITZER TOGGLE */
883 /************************/
885 #anti-kibitzer-toggle {
886 position: absolute;
887 right: -67px;
888 bottom: 225px;
890 #anti-kibitzer-toggle button {
891 display: block;
892 width: 40px;
893 height: 54px;
894 padding: 0;
896 #anti-kibitzer-toggle button::before,
897 #anti-kibitzer-toggle button::after {
898 font-family: "Font Awesome", "Font Awesome 5 Free";
900 #anti-kibitzer-toggle button::before {
901 content: "\F06E";
902 display: block;
903 font-size: 1.75em;
904 font-weight: 400;
906 #anti-kibitzer-toggle button::after {
907 content: "\F007\2004\F164";
908 font-size: 0.875em;
909 font-weight: 900;
911 #anti-kibitzer-toggle.engaged button::before {
912 content: "\F070";
915 /************************/
916 /* TEXT SIZE ADJUSTMENT */
917 /************************/
919 #text-size-adjustment-ui {
920 position: absolute;
921 top: 30px;
922 right: -78px;
923 opacity: 0.4;
925 #text-size-adjustment-ui:hover {
926 opacity: 1.0;
929 /* This doesn't work in Mozilla browsers, so hide it */
930 @-moz-document url-prefix() {
931 #text-size-adjustment-ui {
932 display: none;
936 /*=---------=*/
937 /*= Buttons =*/
938 /*=---------=*/
940 #text-size-adjustment-ui button {
941 font-weight: 900;
942 font-family: "Font Awesome", "Font Awesome 5 Free";
943 font-size: 0.75rem;
944 width: 24px;
945 height: 24px;
946 padding: 0;
948 #text-size-adjustment-ui button.default {
949 font-family: inherit;
950 font-size: 1.125rem;
951 position: relative;
952 top: 1px;
954 #text-size-adjustment-ui button:disabled {
955 opacity: 0.5;
957 #text-size-adjustment-ui button:disabled:hover {
958 cursor: default;
961 /*=----------------=*/
962 /*= Hover tooltips =*/
963 /*=----------------=*/
965 #text-size-adjustment-ui::after {
966 content: "Adjust text size";
967 position: absolute;
968 display: block;
969 left: 0;
970 width: 100%;
971 text-align: center;
972 top: 32px;
973 visibility: hidden;
974 font-size: 0.9em;
976 #text-size-adjustment-ui:hover::after {
977 visibility: visible;
980 /*******************************/
981 /* COMMENTS VIEW MODE SELECTOR */
982 /*******************************/
984 #comments-view-mode-selector {
985 position: absolute;
986 bottom: 30px;
987 left: -40px;
988 opacity: 0.6;
990 #comments-view-mode-selector:hover {
991 opacity: 1.0;
994 /*=---------=*/
995 /*= Buttons =*/
996 /*=---------=*/
998 #comments-view-mode-selector a {
999 display: block;
1000 font-family: "Font Awesome", "Font Awesome 5 Free";
1001 font-size: 1.25rem;
1002 text-align: center;
1003 opacity: 0.4;
1004 padding: 0.25em;
1005 z-index: 1;
1007 #comments-view-mode-selector a.threaded {
1008 transform: scaleY(-1);
1009 font-weight: 900;
1011 #comments-view-mode-selector a.chrono {
1012 font-weight: normal;
1014 #comments-view-mode-selector a.selected,
1015 #comments-view-mode-selector a:hover {
1016 opacity: 1.0;
1017 text-decoration: none;
1019 #comments-view-mode-selector a.selected {
1020 cursor: default;
1023 /*****************/
1024 /* KEYBOARD HELP */
1025 /*****************/
1027 #keyboard-help-overlay {
1028 width: 100vw;
1029 height: 100vh;
1030 background-color: rgba(255, 255, 255, 0.7);
1031 position: fixed;
1032 left: 0;
1033 top: 0;
1034 z-index: 5001;
1036 display: flex;
1037 justify-content: center;
1038 align-items: center;
1039 padding: 20px 30px 30px 20px;
1041 visibility: hidden;
1044 #keyboard-help-overlay .keyboard-help-container {
1045 background-color: #000;
1046 filter: drop-shadow(4px 4px 2px #fff);
1047 flex: 1 1 auto;
1048 max-width: 1500px;
1049 max-height: 100%;
1050 overflow-y: auto;
1051 position: relative;
1053 #keyboard-help-overlay .keyboard-help-container h1 {
1054 text-align: center;
1055 border-bottom: 1px solid #1f1f1f;
1056 margin: 0;
1057 padding: 10px 20px;
1059 #keyboard-help-overlay .keyboard-help-container .note {
1060 margin: 0.5em auto;
1061 padding: 0 1em;
1062 width: fit-content;
1064 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1065 column-width: 21em;
1066 column-count: auto;
1067 column-gap: 1.5em;
1068 border-top: 1px solid #1f1f1f;
1069 padding: 15px 20px;
1071 #keyboard-help-overlay .keyboard-help-container ul {
1072 list-style-type: none;
1073 margin: 0;
1074 padding: 0;
1075 break-inside: avoid;
1076 white-space: nowrap;
1078 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1079 margin: 20px 0 0 0;
1081 #keyboard-help-overlay .keyboard-help-container ul li.section {
1082 font-weight: bold;
1083 font-size: 1.125rem;
1084 break-after: avoid;
1086 #keyboard-help-overlay .keyboard-help-container .keys {
1087 margin: 0 0.5em 0 0;
1088 min-width: 4.5em;
1089 display: inline-block;
1091 #keyboard-help-overlay .keyboard-help-container .keys code {
1092 margin: 0 6px 0 0;
1094 #keyboard-help-overlay .keyboard-help-container code {
1095 display: inline-block;
1096 background-color: #131313;
1097 border: 1px solid #2c2c2c;
1098 padding: 3px 8px 4px 8px;
1099 margin: 0 1px;
1101 #keyboard-help-overlay .keyboard-help-container code.ak {
1102 background-color: #001b5f;
1103 border-color: #0052bc;
1105 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1106 content: "ak+";
1107 opacity: 0.3;
1110 #nav-item-about button.open-keyboard-help {
1111 display: none;
1113 @media only screen and (hover:hover) and (pointer:fine) {
1114 #nav-item-about {
1115 position: relative;
1116 padding-right: 0.25em;
1118 #nav-item-about button.open-keyboard-help {
1119 font-family: "Font Awesome", "Font Awesome 5 Free";
1120 font-weight: 900;
1121 position: absolute;
1122 top: 0;
1123 right: 0;
1124 height: 100%;
1125 padding: 8px;
1126 display: initial;
1127 line-height: 1;
1128 background-color: transparent;
1132 #keyboard-help-overlay button.close-keyboard-help {
1133 position: absolute;
1134 right: 0;
1135 top: 0;
1136 font-family: "Font Awesome", "Font Awesome 5 Free";
1137 font-size: 1.5rem;
1138 padding: 10px 12px;
1141 /************/
1142 /* ARCHIVES */
1143 /************/
1145 .archive-nav {
1146 margin: 1.25em 0.5em 0 0.5em;
1147 padding: 0.25em;
1149 .archive-nav > * {
1150 display: flex;
1152 .archive-nav *[class^='archive-nav-item'] {
1153 line-height: 1;
1154 flex: 1 1 5%;
1155 text-align: center;
1156 padding: 6px 4px 4px 4px;
1157 max-width: 8%;
1159 @-moz-document url-prefix() {
1160 .archive-nav *[class^='archive-nav-item'] {
1161 padding: 5px 4px;
1164 .archive-nav-days .archive-nav-item-day {
1165 font-size: 0.8em;
1166 padding: 7px 0 5px 0;
1167 max-width: 4%;
1169 .archive-nav-days .archive-nav-item-day:first-child {
1170 flex-basis: 10%;
1173 /************/
1174 /* ARCHIVES */
1175 /************/
1177 .archive-nav {
1178 margin: 1.25em 0.5em 0 0.5em;
1179 padding: 0.25em;
1181 .archive-nav > * {
1182 display: flex;
1184 .archive-nav *[class^='archive-nav-item'] {
1185 line-height: 1;
1186 flex: 1 1 5%;
1187 text-align: center;
1188 padding: 6px 4px 4px 4px;
1189 max-width: 8%;
1191 @-moz-document url-prefix() {
1192 .archive-nav *[class^='archive-nav-item'] {
1193 padding: 5px 4px;
1196 .archive-nav-days .archive-nav-item-day {
1197 font-size: 0.8em;
1198 padding: 7px 0 5px 0;
1199 max-width: 4%;
1201 .archive-nav-days .archive-nav-item-day:first-child {
1202 flex-basis: 10%;
1205 /************/
1206 /* LISTINGS */
1207 /************/
1209 h1.listing {
1210 font-size: 1.875rem;
1211 line-height: 1.15;
1212 max-height: 1.15em;
1213 position: relative;
1216 h1.listing a {
1217 position: relative;
1220 /* Links to link-posts (not the link-post links themselves; that's below) */
1221 h1.listing .link-post-link + a {
1222 margin-left: 0.25em;
1225 h1.listing .link-post-link {
1226 font-size: 0.8em;
1227 display: inline;
1228 vertical-align: top;
1229 position: relative;
1230 top: 4px;
1233 /*=----------------------=*/
1234 /*= Listing hover reveal =*/
1235 /*=----------------------=*/
1236 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1238 @media only screen and (min-width: 1160px) {
1239 h1.listing a {
1240 max-width: 100%;
1241 display: inline-block;
1242 white-space: nowrap;
1243 text-overflow: ellipsis;
1244 overflow: hidden;
1245 border-bottom: 1px solid transparent;
1246 -webkit-hyphens: auto;
1247 -moz-hyphens: auto;
1248 -ms-hyphens: auto;
1249 hyphens: auto;
1250 z-index: 1;
1251 padding: 0 0 1px 1px;
1253 h1.listing .link-post-link + a {
1254 max-width: calc(100% - 40px);
1256 h1.listing a:hover,
1257 h1.listing a:focus {
1258 text-decoration: dotted underline;
1259 white-space: initial;
1260 overflow: visible;
1261 z-index: 2;
1263 h1.listing:focus-within::before {
1264 content: "\F105";
1265 font-family: "Font Awesome", "Font Awesome 5 Free";
1266 display: block;
1267 position: absolute;
1268 left: -0.75em;
1271 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1272 mouse movements) */
1274 h1.listing a:not(.edit-post-link):hover::before {
1275 content: "";
1276 position: absolute;
1277 top: -10px;
1278 right: -10px;
1279 bottom: -10px;
1280 left: -10px;
1281 z-index: -1;
1283 h1.listing .link-post-link:hover {
1284 text-decoration: none;
1288 /*=-----------------------=*/
1289 /*= In-listing edit links =*/
1290 /*=-----------------------=*/
1292 h1.listing .edit-post-link {
1293 position: absolute;
1294 margin: 0;
1297 /*=---------------------------------=*/
1298 /*= Error messages on listing pages =*/
1299 /*=---------------------------------=*/
1301 .listing-message {
1302 width: 100%;
1303 text-align: center;
1304 padding: 1.25em 0 1.25em 0;
1305 font-size: 1.375em;
1308 /*********************/
1309 /* LISTING POST-META */
1310 /*********************/
1312 h1.listing + .post-meta {
1313 position: relative;
1314 justify-content: flex-start;
1315 margin: 0 20px 0 21px;
1318 h1.listing + .post-meta > * {
1319 margin: 0 1em 0 0;
1322 h1.listing + .post-meta .post-section {
1323 width: 0;
1324 margin: 0;
1325 overflow: hidden;
1327 h1.listing + .post-meta .post-section::before {
1328 position: absolute;
1329 left: -36px;
1332 h1.listing + .post-meta .read-time {
1333 cursor: default;
1336 /********************/
1337 /* SEQUENCES & TAGS */
1338 /********************/
1340 .sequence-text, .tag-description {
1341 font-size: 1.2rem;
1342 padding: 0 22px;
1345 #content.tag-index-page .tag-description {
1346 margin: 1em 0 0;
1349 section {
1350 margin-top: 2em;
1351 margin-bottom: 4em;
1354 h1.sequence-chapter {
1355 font-size: 2.3rem;
1358 article {
1359 max-width: 100%;
1362 .post-meta + .comments {
1363 margin-top: 3em;
1366 .tag-list {
1367 column-count: auto;
1368 column-width: 15em;
1369 margin-top: 0;
1370 border-bottom: 1px solid #575756;
1371 padding-bottom: 1em;
1372 margin-bottom: 0;
1375 /**************/
1376 /* USER PAGES */
1377 /**************/
1379 /*=---------------------=*/
1380 /*= User's display name =*/
1381 /*=---------------------=*/
1383 #content.user-page h1.page-main-heading {
1384 margin: 0.25em 0 0 0;
1385 line-height: 1.1;
1386 grid-column: 1 / span 2;
1387 order: -2;
1390 #content.user-page h1.page-main-heading .user-full-name {
1391 font-size: 1rem;
1392 font-weight: normal;
1393 padding-left: 0.5em;
1396 /*=--------------------=*/
1397 /*= User's karma total =*/
1398 /*=--------------------=*/
1400 #content.user-page .user-stats {
1401 grid-column: 3;
1402 order: -2;
1403 text-align: right;
1404 align-self: end;
1407 #content.user-page .user-stats .karma-type {
1408 white-space: nowrap;
1411 /*=----------------------=*/
1412 /*= Expanded vs. compact =*/
1413 /*=----------------------=*/
1415 #content.user-page #comments-list-mode-selector {
1416 grid-row: span 2;
1418 #content.user-page #comments-list-mode-selector button {
1419 display: block;
1422 /*=----------------------------------------------------=*/
1423 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1424 /*=----------------------------------------------------=*/
1426 #content.user-page .sublevel-nav {
1427 margin-bottom: 0.5em;
1430 /*=--------------=*/
1431 /*= User's posts =*/
1432 /*=--------------=*/
1434 #content.user-page h1.listing {
1435 margin: 0.5em 0 0 0;
1438 #content.user-page .user-bio :first-child {
1439 margin-top: 0.5em;
1442 /*****************/
1443 /* CONVERSATIONS */
1444 /*****************/
1446 /*=----------------------=*/
1447 /*= List of participants =*/
1448 /*=----------------------=*/
1450 #content.conversation-page .conversation-participants {
1451 grid-column: 2 / span 2;
1452 text-align: right;
1453 margin: 0.5em 0 0 0;
1455 .post-meta > .conversation-participants {
1456 white-space: normal;
1458 .conversation-participants ul,
1459 .conversation-participants li {
1460 list-style-type: none;
1461 display: inline-block;
1462 margin: 0;
1463 padding: 0;
1465 .conversation-participants li {
1466 margin-left: 0.375em;
1468 .conversation-participants li:not(:last-of-type)::after {
1469 content: ",";
1472 /*=-------------------------=*/
1473 /*= Posting controls (form) =*/
1474 /*=-------------------------=*/
1476 #content.conversation-page .posting-controls {
1477 padding: 0 0 1em 0;
1479 #content.conversation-page .post-meta-fields {
1480 overflow: auto;
1481 display: flex;
1482 flex-flow: row wrap;
1484 .posting-controls.standalone textarea {
1485 margin-top: 0.375em;
1487 .posting-controls.standalone form {
1488 padding: 0 1em;
1490 #content.conversation-page .posting-controls.standalone form {
1491 padding: 0 1em 3em 1em;
1493 .posting-controls.standalone input[type='text'],
1494 .posting-controls.standalone label {
1495 margin: 0.25em 0;
1497 .posting-controls.standalone label {
1498 width: 4em;
1499 text-align: right;
1500 padding: 2px 6px;
1501 border: 1px solid transparent;
1503 .posting-controls.standalone input[type='text'] {
1504 width: calc(100% - 4em);
1505 padding: 0.25em;
1507 .posting-controls.standalone input[type='submit'] {
1508 float: right;
1510 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1511 white-space: nowrap;
1513 .posting-controls.standalone #markdown-hints {
1514 top: calc(100% + 2em);
1517 /*=--------------------=*/
1518 /*= Conversation title =*/
1519 /*=--------------------=*/
1521 #content.conversation-page h1.page-main-heading {
1522 text-align: center;
1523 margin: 0.5em 0;
1524 line-height: 1.15;
1527 /*=----------=*/
1528 /*= Messages =*/
1529 /*=----------=*/
1531 #content.conversation-page > ul.comment-thread:last-of-type {
1532 margin-bottom: 2em;
1535 /******************/
1536 /* SEARCH RESULTS */
1537 /******************/
1539 #content.search-results-page h1.listing,
1540 #content.sequence-page h1.listing,
1541 #content.post-page h1.listing {
1542 font-size: 1.625em;
1545 /**************/
1546 /* LOGIN PAGE */
1547 /**************/
1549 .login-container {
1550 margin: 2em 0;
1551 padding: 1em;
1552 display: flex;
1553 flex-flow: row wrap;
1556 .login-container form {
1557 flex-basis: 50%;
1558 display: grid;
1559 grid-row-gap: 0.5em;
1560 align-content: start;
1562 .login-container form label {
1563 text-align: right;
1564 padding: 0.25em 0.5em;
1565 white-space: nowrap;
1566 grid-column: 1;
1568 .login-container form input {
1569 grid-column: 2;
1570 padding: 0.25em;
1572 .login-container form input[type='submit'],
1573 .login-container form a {
1574 grid-column: 2;
1575 justify-self: center;
1577 .login-container form input[type='submit'] {
1578 width: 10em;
1579 padding: 0.35em;
1580 line-height: 1;
1581 margin: 0.5em 0 0 0;
1583 .login-container form h1 {
1584 text-align: center;
1585 margin: 0;
1586 grid-column: 2;
1589 /* “Log in” form */
1591 #login-form {
1592 grid-template-columns: 5.5em 1fr;
1593 padding: 0.5em 2em 0.5em 0;
1596 /* “Create account” form */
1598 #signup-form {
1599 font-size: 0.9em;
1600 grid-template-columns: 8.5em 1fr;
1601 padding: 0.5em 1em 1em 1em;
1603 #signup-form h1 {
1604 font-size: 1.7em;
1606 #signup-form input[type='submit'] {
1607 padding: 0.4em 0.5em 0.5em 0.5em;
1610 /* Log in tip */
1612 .login-container .login-tip {
1613 padding: 0.5em 0.5em 0.5em 3em;
1614 margin: 2em 4em 0 4em;
1615 text-indent: -2em;
1616 line-height: 1.4;
1618 .login-container .login-tip span {
1619 font-weight: bold;
1622 /* Message box */
1624 #content.login-page .error-box {
1625 margin: 1.5em 0.875em -1.5em 0.875em;
1627 .error-box, .success-box {
1628 padding: 0.25em;
1629 text-align: center;
1632 /***********************/
1633 /* PASSWORD RESET PAGE */
1634 /***********************/
1636 .reset-password-container {
1637 margin-bottom: 2em;
1639 .reset-password-container input[type='submit'] {
1640 padding: 0.2em 0.5em;
1641 width: unset;
1643 .reset-password-container input {
1644 margin-left: 0.5em;
1645 width: 12em;
1647 .reset-password-container label {
1648 display: inline-block;
1649 width: 9em;
1651 .reset-password-container form > div {
1652 margin: 0.2em;
1654 .reset-password-container .action-container {
1655 padding-left: 11em;
1656 padding-top: 0.2em;
1658 .reset-password-container .error-box {
1659 margin: unset;
1662 /*********************/
1663 /* TABLE OF CONTENTS */
1664 /*********************/
1666 .contents {
1667 float: right;
1668 min-width: 6em;
1669 max-width: 40%;
1670 margin: 1.25em 0 0.75em 1.25em;
1671 padding: 7px 14px 10px 10px;
1672 position: relative;
1673 z-index: 1;
1676 .contents-head {
1677 text-align: center;
1678 margin-bottom: 0.25em;
1681 .post-body .contents ul {
1682 list-style-type: none;
1683 margin: 0 0 0 0.5em;
1684 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1685 padding-left: 1em;
1686 font-size: 0.75em;
1688 .post-body .contents li {
1689 margin: 0.15em 0 0.3em 1em;
1690 text-align: left;
1691 text-indent: -1em;
1692 line-height: 1.2;
1693 position: relative;
1695 .post-body .contents li::before {
1696 position: absolute;
1697 width: 3em;
1698 display: block;
1699 text-align: right;
1700 left: -4.5em;
1702 .contents .toc-item-1 {
1703 counter-increment: toc-item-1;
1704 counter-reset: toc-item-2 toc-item-3;
1706 .contents .toc-item-1::before {
1707 content: counter(toc-item-1);
1709 .contents .toc-item-1 ~ .toc-item-2 {
1710 margin-left: 2.9em;
1711 font-size: 0.95em;
1713 .contents .toc-item-2 {
1714 counter-increment: toc-item-2;
1715 counter-reset: toc-item-3;
1717 .contents .toc-item-1 ~ .toc-item-2::before {
1718 content: counter(toc-item-1) "." counter(toc-item-2);
1720 .contents .toc-item-2::before {
1721 content: counter(toc-item-2);
1723 .contents .toc-item-1 + .toc-item-3 {
1724 counter-increment: toc-item-2 toc-item-3;
1726 .contents .toc-item-2 ~ .toc-item-3,
1727 .contents .toc-item-1 ~ .toc-item-3 {
1728 margin-left: 2.9em;
1729 font-size: 0.95em;
1731 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1732 margin-left: 5.7em;
1733 font-size: 0.9em;
1735 .contents .toc-item-3 {
1736 counter-increment: toc-item-3;
1738 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1739 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1741 .contents .toc-item-1 ~ .toc-item-3::before {
1742 content: counter(toc-item-1) "." counter(toc-item-3);
1744 .contents .toc-item-2 ~ .toc-item-3::before {
1745 content: counter(toc-item-2) "." counter(toc-item-3);
1747 .contents .toc-item-3::before {
1748 content: counter(toc-item-3);
1750 .contents .toc-item-4,
1751 .contents .toc-item-5,
1752 .contents .toc-item-6 {
1753 display: none;
1756 /********************/
1757 /* POSTS & COMMENTS */
1758 /********************/
1760 .post-meta > *,
1761 .comment-meta > * {
1762 display: inline-block;
1763 margin-right: 1em;
1764 font-size: 1.0625em;
1766 .body-text {
1767 overflow-wrap: break-word;
1768 text-align: justify;
1770 .body-text p {
1771 margin: 1em 0;
1773 .retracted .body-text {
1774 text-decoration: line-through;
1777 .bare-url {
1778 word-break: break-all;
1779 hyphens: auto;
1781 .body-text a:not([href]),
1782 .body-text a:not([href]):hover,
1783 .body-text a:not([href])::before,
1784 .body-text a:not([href])::after {
1785 text-decoration: none;
1786 text-shadow: unset;
1787 border: unset;
1788 color: unset;
1789 content: unset;
1791 /*************/
1792 /* POST-META */
1793 /*************/
1795 .post-meta {
1796 display: flex;
1797 flex-flow: row wrap;
1798 justify-content: center;
1800 .post-meta .lw2-link {
1801 opacity: 0.5;
1802 order: 1;
1804 .post-meta > *,
1805 .post-meta .post-section::before {
1806 margin: 0 0.5em;
1808 .post-meta .post-section {
1809 order: -1;
1810 margin: 0;
1811 visibility: hidden;
1813 .post-meta .post-section::before,
1814 .comment-meta .alignment-forum {
1815 visibility: visible;
1816 font-family: "Font Awesome", "Font Awesome 5 Free";
1817 font-weight: 900;
1819 .post-section.frontpage::before {
1820 content: "\F015";
1822 .post-section.featured::before {
1823 content: "\F005";
1825 .post-section.meta::before {
1826 content: "\F077";
1828 .post-section.events::before {
1829 content: "\F5A0";
1831 .post-section.personal::before {
1832 content: "\F007";
1834 .post-section.draft::before {
1835 content: "\F15B";
1837 .post-section.alignment-forum::before,
1838 .comment-meta .alignment-forum {
1839 content: "AF";
1840 font-family: Concourse, 'Changa One';
1843 /*= Karma controls hover tooltips =*/
1845 @media only screen and (pointer: fine) {
1846 .post .voting-controls,
1847 .comment-item .voting-controls {
1848 position: relative;
1850 .post .karma.active-controls::after,
1851 .comment-item .karma.active-controls::after {
1852 content: "Double-click for strong vote";
1853 position: absolute;
1854 pointer-events: none;
1855 display: block;
1856 left: 6px;
1857 width: 100%;
1858 line-height: 1.15;
1859 white-space: normal;
1860 text-align: center;
1861 font-size: 0.875rem;
1862 opacity: 0;
1863 transition: opacity 0.2s ease;
1865 .post .voting-controls.active-controls:hover::after,
1866 .comment-item .voting-controls.active-controls:hover::after {
1867 opacity: 1.0;
1870 .post .voting-controls .karma-value::after,
1871 .comment-item .voting-controls .karma-value::after {
1872 content: attr(title);
1873 position: absolute;
1874 pointer-events: none;
1875 display: block;
1876 left: 50%;
1877 transform: translateX(-50%);
1878 white-space: pre-wrap;
1879 width: max-content;
1880 text-align: center;
1881 font-size: 0.875rem;
1882 color: #393939;
1883 opacity: 0;
1884 transition: opacity 0.2s ease;
1886 .post .voting-controls.agreement .karma-value:hover::after,
1887 .comment-item .voting-controls.agreement .karma-value:hover::after {
1888 top: unset;
1889 bottom: 100%;
1891 .post .voting-controls .karma-value:hover::after,
1892 .comment-item .voting-controls .karma-value:hover::after {
1893 opacity: 1.0;
1895 .post .voting-controls.waiting .karma-value:hover::after,
1896 .comment-item .voting-controls.waiting .karma-value:hover::after {
1897 display: none;
1899 .comment-item .voting-controls .karma-value:hover::after {
1900 z-index: 5001;
1903 .author {
1904 position: relative;
1906 .author:not(.redacted)::before {
1907 content: attr(data-full-name);
1908 position: absolute;
1909 pointer-events: none;
1910 display: block;
1911 padding: 0 1em;
1912 left: 50%;
1913 bottom: 2em;
1914 transform: translateX(-50%);
1915 white-space: nowrap;
1916 text-align: center;
1917 font-size: 0.875rem;
1918 font-weight: normal;
1919 opacity: 0;
1920 transition: opacity 0.2s ease;
1921 z-index: 5001;
1923 .author:hover::before {
1924 opacity: 1.0;
1928 /*********/
1929 /* POSTS */
1930 /*********/
1932 .post {
1933 max-width: 100%;
1936 .post-body {
1937 min-height: 8em;
1938 padding: 0 30px;
1939 line-height: 1.5;
1940 font-size: 1.3rem;
1941 overflow: auto;
1942 margin: 0.5em 0 0 0;
1944 h1.post-title {
1945 margin: 1.1em 0 0.35em 0;
1946 padding: 0 30px;
1947 text-align: center;
1948 font-size: 2.5em;
1949 line-height: 1;
1951 .post .post-meta {
1952 text-align: center;
1953 position: relative;
1954 z-index: 2;
1956 .post .top-post-meta:last-child {
1957 margin-bottom: 40px;
1959 .post .bottom-post-meta {
1960 margin: 0;
1961 padding: 20px 0;
1963 .bottom-post-meta {
1964 border-style: solid;
1965 border-width: 1px 0;
1968 /**********/
1969 /* EVENTS */
1970 /**********/
1972 .event-info .map {
1973 position: relative;
1974 width: 100%;
1975 margin: 2em 0 1em;
1978 .event-info .map::before {
1979 content: "";
1980 display: block;
1981 padding-bottom: 50%;
1984 .event-info .map iframe {
1985 width: 100%;
1986 height: 100%;
1987 border: 1px solid #fff;
1988 position: absolute;
1989 top: 0;
1990 left: 0;
1993 .event-info ul {
1994 list-style: none;
1995 padding: 0;
1996 text-align: center;
1999 /*******************/
2000 /* POST NAVIGATION */
2001 /*******************/
2003 .post-nav-item {
2004 display: grid;
2005 grid-template: 100% / 32% 36% 32%;
2006 grid-template-areas:
2007 "prev seq next";
2009 .post-nav {
2010 display: flex;
2011 flex-flow: column;
2012 justify-content: flex-end;
2013 padding: 0.5em;
2016 .post-nav-title {
2017 font-size: 1.125em;
2018 line-height: 1.15;
2019 display: inline;
2020 border-top: 1px solid transparent;
2022 .post-nav.prev .post-nav-title,
2023 .post-nav.next .post-nav-title {
2024 border-bottom: 1px solid transparent;
2027 .sequence-title {
2028 align-items: center;
2029 text-align: center;
2030 grid-area: seq;
2032 .sequence-title .post-nav-title {
2033 font-size: 1.5em;
2036 .post-nav.prev {
2037 grid-area: prev;
2038 align-items: flex-start;
2040 .post-nav.prev .post-nav-title::before {
2041 content: "\F0D9\2005";
2043 .post-nav.next {
2044 grid-area: next;
2045 text-align: right;
2046 align-items: flex-end;
2048 .post-nav.prev .post-nav-label,
2049 .post-nav.next .post-nav-label {
2050 display: none;
2052 .post-nav.next .post-nav-title::after {
2053 content: "\2004\F0DA";
2055 .post-nav.prev .post-nav-title::before,
2056 .post-nav.next .post-nav-title::after {
2057 font-family: Font Awesome;
2058 font-weight: 900;
2059 vertical-align: text-bottom;
2060 opacity: 0.75;
2062 .post-nav-links {
2063 max-width: 100%;
2066 @media only screen and (max-width: 900px) {
2067 .post-nav-item {
2068 font-size: 0.875em;
2069 grid-template: auto auto / 50% 50%;
2070 grid-template-areas:
2071 "prev next"
2072 "seq seq";
2074 .post-nav.prev .post-nav-title,
2075 .post-nav.next .post-nav-title {
2076 border-bottom: none;
2078 .post-nav.prev {
2079 margin: 0 0 0 -1px;
2080 position: relative;
2081 left: 1px;
2083 .sequence-title {
2084 padding: 0.75em 0;
2087 @media only screen and (max-width: 520px) {
2088 .post-nav-links + .comments {
2089 padding: 1em 0 0 0;
2093 .related-posts, .related-post-group {
2094 padding-bottom: 1em;
2096 .related-post-type {
2097 font-size: 1.2em;
2098 font-weight: 600;
2099 margin-top: 0.5em;
2100 margin-bottom: -0.5em;
2101 list-style-type: disc;
2102 margin-left: -0.5em;
2103 opacity: 0.7;
2105 .related-post-type::before {
2106 content: "\269c";
2107 font-size: 1.375em;
2108 font-weight: normal;
2109 margin-right: 0.15em;
2110 position: relative;
2111 vertical-align: baseline;
2112 top: 0.05em;
2114 .related-posts .post-type-prefix {
2115 display: none;
2118 .crosspost {
2119 padding: 0.1em 1em;
2120 margin: 1em auto;
2123 /**************/
2124 /* LINK POSTS */
2125 /**************/
2127 .post.link-post > .post-body > p:first-child {
2128 text-align: center;
2129 font-size: 1.125em;
2130 margin: 0.5em 0 0 0;
2132 .post.link-post > .post-body > p:only-child {
2133 font-size: 1.5em;
2134 margin: 1em 0;
2136 .post.link-post a.link-post-link::before {
2137 content: "\F0C1";
2138 font-family: "Font Awesome", "Font Awesome 5 Free";
2139 font-weight: 900;
2140 font-size: 0.75em;
2141 position: relative;
2142 top: -2px;
2143 margin-right: 0.25em;
2146 /************/
2147 /* COMMENTS */
2148 /************/
2150 .comments {
2151 max-width: 100%;
2152 padding: 0 0 1px 0;
2153 position: relative;
2155 .comments::before {
2156 content: "";
2157 position: absolute;
2158 display: block;
2159 top: 0;
2160 left: 0;
2161 width: 100%;
2162 height: 100%;
2163 pointer-events: none;
2165 ul.comment-thread {
2166 list-style-type: none;
2167 padding: 0;
2168 max-width: 100%;
2170 .comments .comment-thread > li {
2171 position: relative;
2173 #content > #top-nav-bar + .comment-thread .comment-item {
2174 margin-top: 0;
2177 .comment-item {
2178 margin: 2em 0 0 0;
2180 .comment-item .comment-item {
2181 margin: 1em 8px 8px 16px;
2183 .comment-item .comment-item + .comment-item {
2184 margin: 2em 8px 8px 16px;
2187 .comment-body {
2188 line-height: 1.45;
2189 font-size: 1.2rem;
2190 padding: 10px;
2192 .comment-body ul {
2193 list-style-type: circle;
2195 .comment-body > *:first-child {
2196 margin-top: 0;
2198 .comment-body > *:last-child {
2199 margin-bottom: 0;
2202 .comments-empty-message {
2203 width: 100%;
2204 text-align: center;
2205 padding: 0.75em 0 0.9em 0;
2206 font-size: 1.375em;
2209 /**********************************/
2210 /* DEEP COMMENT THREAD COLLAPSING */
2211 /**********************************/
2213 .comment-item > input[id^="expand"] {
2214 display: none;
2216 .comment-item > input[id^="expand"] + label {
2217 display: block;
2218 visibility: hidden;
2219 position: relative;
2220 margin: 8px 9px;
2222 .comment-item > input[id^="expand"] + label::after {
2223 content: "(Expand " attr(data-child-count) " below)";
2224 visibility: visible;
2225 position: absolute;
2226 left: 0;
2227 white-space: nowrap;
2228 cursor: pointer;
2230 .comment-item > input[id^="expand"]:checked + label::after {
2231 content: "(Collapse " attr(data-child-count) " below)";
2233 .comment-item > input[id^="expand"] ~ .comment-thread {
2234 max-height: 34px;
2235 overflow: hidden;
2237 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2238 margin-top: 0;
2240 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2241 max-height: 1000000px;
2244 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2245 margin: 0;
2247 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2248 display: none;
2251 /*************/
2252 /* BACKLINKS */
2253 /*************/
2255 .backlinks > input {
2256 display: none;
2259 .backlinks > label {
2260 margin-left: 10px;
2261 display: block;
2262 color: #00c200;
2263 cursor: pointer;
2266 .backlinks > label::before {
2267 content: " ";
2268 border-left: 5px solid currentColor;
2269 border-top: 5px solid transparent;
2270 border-bottom: 5px solid transparent;
2271 transition: transform 0.25s ease-out;
2272 transform-origin: 29% 55%;
2273 display: inline-block;
2274 padding-right: 0.5em;
2277 .backlinks > input:checked + label::before {
2278 transform: rotate(90deg);
2281 .backlinks li {
2282 margin-top: 0;
2285 .backlinks > ul {
2286 height: 0;
2287 perspective-origin: top;
2288 transform: perspective(100em) rotateX(-90deg);
2289 transform-origin: center top;
2290 opacity: 0;
2291 margin-top: 0.5em;
2292 margin-bottom: 0.5em;
2295 .backlinks > input:checked ~ ul {
2296 height: auto;
2297 transform: perspective(100em) rotateX(0deg);
2298 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2299 opacity: 1;
2302 /****************/
2303 /* COMMENT-META */
2304 /****************/
2306 .comment-meta {
2307 padding: 2px 24px 2px 10px;
2308 margin: 0 -1px;
2309 border: none;
2310 display: flex;
2311 flex-flow: row wrap;
2312 align-items: baseline;
2314 .user-page .comment-meta,
2315 .conversation-page .comment-meta {
2316 padding-right: 10px;
2318 .comment-meta .comment-post-title {
2319 flex-basis: 100%;
2320 overflow: hidden;
2321 text-overflow: ellipsis;
2322 white-space: nowrap;
2323 line-height: 1.3;
2325 .conversation-page .comment-meta .comment-post-title {
2326 margin: 0;
2327 flex-basis: unset;
2328 flex: 1 0 auto;
2329 text-align: right;
2330 display: none; /* Not sure if we need to display this... */
2332 .comment-item .author:not(.redacted).original-poster::after {
2333 content: "\2004(OP)";
2334 font-size: 0.75em;
2337 /*****************************/
2338 /* COMMENT THREAD NAVIGATION */
2339 /*****************************/
2341 a.comment-parent-link:not(.inline-author),
2342 a.comment-parent-link.inline-author::before {
2343 opacity: 0.5;
2345 a.comment-parent-link:hover {
2346 opacity: 1.0;
2348 a.comment-parent-link::before {
2349 content: "\F062";
2350 font-family: "Font Awesome", "Font Awesome 5 Free";
2351 font-weight: 900;
2352 font-size: 0.75rem;
2353 line-height: 1;
2354 position: absolute;
2355 z-index: 1;
2356 display: block;
2357 padding: 3px 3px 0 3px;
2358 width: 16px;
2359 height: calc(100% + 2px);
2360 top: -1px;
2361 left: -17px;
2363 a.comment-parent-link::after {
2364 content: "";
2365 position: absolute;
2366 z-index: 0;
2367 display: block;
2368 width: calc(100% + 26px);
2369 height: calc(100% + 38px);
2370 top: -29px;
2371 left: -17px;
2372 pointer-events: none;
2373 overflow: hidden;
2374 visibility: hidden;
2376 a.comment-parent-link:hover::after {
2377 visibility: visible;
2380 .comment-child-links {
2381 flex-basis: 100%;
2383 .comment-child-link {
2384 margin: 0 0.25em;
2385 display: inline-block;
2387 .comment-child-link::before {
2388 content: ">";
2389 display: inline-block;
2390 margin: 0 2px 0 0;
2393 .comment-popup {
2394 position: fixed;
2395 top: 10%;
2396 right: 10%;
2397 max-width: 700px;
2398 z-index: 10001;
2399 font-size: 1rem;
2400 white-space: unset;
2401 pointer-events: none;
2403 .comment-popup .comment-parent-link {
2404 display: none;
2406 .comment-popup .comment-body {
2407 font-size: 1.0625rem;
2410 .comment-item.depth-odd {
2411 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2412 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2414 .comment-item.depth-even {
2415 --GW-comment-background-color: var(--GW-comment-background-color-even);
2416 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2419 .comment-item:target {
2420 --GW-comment-background-color: var(--GW-comment-background-color-target);
2422 .comment-item:target > .comment-thread > .comment-item {
2423 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2426 /**********************/
2427 /* COMMENT PERMALINKS */
2428 /**********************/
2429 /********************/
2430 /* COMMENT LW LINKS */
2431 /********************/
2433 .comment-meta .permalink::before,
2434 .comment-meta .lw2-link::before,
2435 .individual-thread-page a.comment-parent-link:empty::before {
2436 content: "";
2437 display: inline-block;
2438 width: 1rem;
2439 height: 1rem;
2440 border-radius: 3px;
2441 box-shadow:
2442 0 0 0 1px #000,
2443 0 0 0 2px #0cc800,
2444 0 0 0 3px transparent;
2445 padding: 0 0 0 2px;
2446 background-size: 100%;
2447 position: relative;
2448 top: 2px;
2449 opacity: 0.5;
2451 .comment-meta .permalink::before {
2452 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');
2454 .comment-meta .lw2-link::before {
2455 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==');
2457 .individual-thread-page a.comment-parent-link:empty::before {
2458 left: unset;
2459 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==');
2461 .comment-meta .permalink:hover::before {
2462 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');
2464 .comment-meta .lw2-link:hover::before {
2465 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==');
2467 .individual-thread-page a.comment-parent-link:empty:hover::before {
2468 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=');
2470 .comment-meta .permalink:hover::before,
2471 .comment-meta .lw2-link:hover::before,
2472 .individual-thread-page a.comment-parent-link:empty:hover::before {
2473 box-shadow:
2474 0 0 0 2px #0cc800,
2475 0 0 0 3px transparent;
2476 opacity: 1.0;
2477 filter: unset;
2479 .comment-meta .permalink:active::before,
2480 .comment-meta .lw2-link:active::before,
2481 .individual-thread-page a.comment-parent-link:empty:active::before {
2482 transform: scale(0.9);
2485 .comment-meta .permalink,
2486 .comment-meta .lw2-link,
2487 .individual-thread-page .comment-parent-link:empty {
2488 position: relative;
2489 opacity: 1.0;
2491 .comment-meta .permalink::after,
2492 .comment-meta .lw2-link::after,
2493 .individual-thread-page .comment-parent-link:empty::after {
2494 content: "";
2495 width: 30px;
2496 height: 30px;
2497 display: block;
2498 position: absolute;
2499 top: -2px;
2500 left: -7px;
2501 box-shadow: none;
2502 pointer-events: auto;
2503 visibility: visible;
2506 /*************************/
2507 /* COMMENTS COMPACT VIEW */
2508 /*************************/
2510 #comments-list-mode-selector,
2511 #content.index-page #comments-list-mode-selector,
2512 #content.user-page #comments-list-mode-selector {
2513 padding-top: 6px;
2514 grid-column: 1;
2515 position: unset;
2516 z-index: 1;
2517 justify-self: start;
2518 align-self: start;
2520 #comments-list-mode-selector button {
2521 color: transparent;
2522 width: 32px;
2523 height: 32px;
2524 padding: 6px;
2525 margin: 1px;
2526 overflow: hidden;
2527 background-repeat: no-repeat;
2528 background-size: 100%;
2529 background-origin: content-box;
2531 #comments-list-mode-selector button:disabled {
2532 cursor: auto;
2534 #comments-list-mode-selector button.expanded {
2535 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2537 #comments-list-mode-selector button.compact {
2538 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2540 @media only screen and (max-resolution: 1dppx) {
2541 #comments-list-mode-selector button.expanded {
2542 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2544 #comments-list-mode-selector button.compact {
2545 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2549 #content > ul.comment-thread > li.comment-item,
2550 #content.compact > ul.comment-thread > li.comment-item {
2551 margin: 0;
2554 #content > .comment-thread {
2555 margin: 1em 0;
2557 #content.compact > .comment-thread {
2558 font-size: 0.9375rem;
2559 margin: 0.5em 0;
2561 #content.compact > .comment-thread:hover {
2562 z-index: 1;
2564 #content.compact > .comment-thread .comment-body {
2565 font-size: 1.0625rem;
2567 #content.compact > .comment-thread .comment-item,
2568 #content.index-page .comment-item.ignored,
2569 #content.inbox-user-page .comment-item.ignored {
2570 max-height: 61px;
2571 margin-top: 1em;
2572 overflow: hidden;
2573 position: relative;
2575 #content.compact > .comment-thread .comment-item {
2576 pointer-events: none;
2578 #content.compact > .comment-thread .comment-item::after {
2579 content: "…";
2580 position: absolute;
2581 right: 0;
2582 bottom: 0;
2583 font-size: 2rem;
2584 line-height: 1;
2585 padding: 0 16px 10px 64px;
2586 pointer-events: auto;
2588 @media only screen and (hover: hover) {
2589 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2590 #content.compact > .comment-thread .comment-item.expanded {
2591 overflow: visible;
2592 pointer-events: auto;
2593 z-index: 10;
2596 @media only screen and (hover: none) {
2597 #content.compact > .comment-thread.expanded .comment-item {
2598 overflow: visible;
2599 pointer-events: auto;
2600 z-index: 10;
2603 #content.compact > .comment-thread .comment-item .comment-meta {
2604 white-space: nowrap;
2605 overflow: hidden;
2606 text-overflow: ellipsis;
2607 padding: 2px 10px;
2609 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2610 white-space: unset;
2612 #content.compact > .comment-thread .comment-item .comment-meta a {
2613 pointer-events: auto;
2615 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2616 display: inline;
2618 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2619 margin-left: 0.75em;
2621 @media only screen and (hover: hover) {
2622 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2623 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2624 max-height: unset;
2626 #content.compact > .comment-thread .comment-item:hover .comment,
2627 #content.compact > .comment-thread .comment-item.expanded .comment {
2628 position: relative;
2629 z-index: 1;
2630 margin-bottom: 2em;
2631 bottom: 0;
2633 #content.compact > .comment-thread .comment-item:hover .comment::before,
2634 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2635 content: "";
2636 position: absolute;
2637 display: block;
2638 width: calc(100% + 20px);
2639 height: calc(100% + 20px);
2640 z-index: -1;
2641 top: -10px;
2642 left: -10px;
2644 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2645 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2646 margin: 0;
2649 @media only screen and (hover: none) {
2650 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2651 max-height: unset;
2653 #content.compact > .comment-thread.expanded .comment-item .comment {
2654 position: relative;
2655 z-index: 1;
2656 margin-bottom: 2em;
2657 bottom: 0;
2659 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2660 content: "";
2661 position: absolute;
2662 display: block;
2663 width: calc(100% + 14px);
2664 height: calc(100% + 20px);
2665 z-index: -1;
2666 top: -10px;
2667 left: -10px;
2669 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2670 margin: 0;
2672 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2673 content: "";
2674 display: block;
2675 position: fixed;
2676 top: 0;
2677 left: 0;
2678 width: 100%;
2679 height: 100%;
2680 z-index: -2;
2681 background-color: rgba(255, 255, 255, 0.5);
2685 /*****************************/
2686 /* HIGHLIGHTING NEW COMMENTS */
2687 /*****************************/
2689 .new-comment::before {
2690 content: "";
2691 position: absolute;
2692 width: 100%;
2693 height: 100%;
2694 z-index: 5000;
2695 pointer-events: none;
2698 /***********************************/
2699 /* COMMENT THREAD MINIMIZE BUTTONS */
2700 /***********************************/
2702 .comment-minimize-button {
2703 font-family: "Font Awesome", "Font Awesome 5 Free";
2704 font-weight: 900;
2705 font-size: 1.25rem;
2706 line-height: 1;
2707 position: absolute;
2708 right: 1px;
2709 top: 1px;
2710 width: 18px;
2711 margin: 0;
2712 cursor: pointer;
2714 .comment-minimize-button:active {
2715 transform: scale(0.9);
2717 .comment-minimize-button::after {
2718 content: attr(data-child-count);
2719 font-weight: normal;
2720 font-size: 0.8125rem;
2721 position: absolute;
2722 left: 0;
2723 width: 100%;
2724 text-align: center;
2725 top: 21px;
2727 #content.individual-thread-page .comment-minimize-button {
2728 display: none;
2731 /*****************/
2732 /* IGNORE SYSTEM */
2733 /*****************/
2735 #content.comment-thread-page .comment-item.ignored {
2736 height: 38px;
2737 overflow: hidden;
2739 .comment-item.ignored > .comment > .comment-meta > .author {
2740 text-decoration: line-through;
2743 /***********************************/
2744 /* INDIVIDUAL COMMENT THREAD PAGES */
2745 /***********************************/
2747 .individual-thread-page > h1 {
2748 line-height: 1;
2749 margin: 0.75em 0 3px 0;
2751 .individual-thread-page .comments {
2752 border: none;
2755 /*************/
2756 /* SHORTFORM */
2757 /*************/
2759 .shortform-index-page .comments::before {
2760 border: none;
2761 box-shadow: none;
2764 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2765 margin-top: 0;
2768 /****************/
2769 /* VOTE BUTTONS */
2770 /****************/
2772 .vote {
2773 margin: 0;
2775 .vote {
2776 font-family: "Font Awesome", "Font Awesome 5 Free";
2777 font-weight: 900;
2778 border: none;
2781 .vote:disabled {
2782 visibility: hidden;
2783 cursor: default;
2786 @keyframes waiting {
2787 0% {background-position: 200% 0%}
2788 100% {background-position: 0% 0%}
2791 .voting-controls .karma-value {
2792 opacity: 1;
2793 transition: opacity 0.5s linear;
2796 .voting-controls.waiting .karma-value {
2797 opacity: 0.5;
2798 background: repeat-x linear-gradient(70deg, #fff 50%, #000 75%, #fff);
2799 background-clip: text;
2800 -webkit-background-clip: text;
2801 color: transparent;
2802 background-position: 200% 0%;
2803 background-size: 200% 100%;
2804 animation: waiting 1s linear infinite;
2807 /* Replicated karma controls at bottom of comments. */
2808 .comment-controls .voting-controls {
2809 float: left;
2810 font-size: 0.9375em;
2813 .comment-controls .voting-controls:first-of-type {
2814 margin-left: -14px;
2817 /*****************************/
2818 /* COMMENTING AND POSTING UI */
2819 /*****************************/
2821 .comment-controls {
2822 text-align: right;
2823 margin: 0 8px 8px 16px;
2824 position: relative;
2825 z-index: 9999;
2827 .comment-thread .comment-controls + .comment-thread > li:first-child {
2828 margin-top: 8px;
2830 .comments > .comment-controls {
2831 margin: 8px 0 0 0;
2833 .comments > .comment-controls:last-child {
2834 margin: 8px 0 16px 0;
2837 .posting-controls input[type='submit'] {
2838 margin: 6px;
2839 padding: 4px 10px;
2840 font-size: 1.125rem;
2843 .comment-controls .cancel-comment-button {
2844 position: absolute;
2845 right: 0;
2846 margin: 0;
2847 height: 27px;
2848 font-size: inherit;
2849 padding: 4px 8px 2px 4px;
2850 z-index: 1;
2852 .comment-controls .cancel-comment-button::before {
2853 font-family: "Font Awesome", "Font Awesome 5 Free";
2854 margin-right: 3px;
2855 content: '\F00D';
2856 font-weight: 900;
2857 font-size: 0.9em;
2858 opacity: 0.7;
2861 .comment + .comment-controls .action-button {
2862 font-weight: normal;
2863 font-size: 1.0625em;
2864 padding: 1px 6px;
2866 .comment-controls .action-button::before {
2867 font-family: "Font Awesome", "Font Awesome 5 Free";
2868 margin-right: 3px;
2870 .new-comment-button {
2871 font-size: 1.5rem;
2872 margin: 0 0.25em;
2874 .comment-controls .reply-button::before {
2875 content: '\F3E5';
2876 font-weight: 900;
2877 font-size: 0.9em;
2878 opacity: 0.6;
2880 .comment-meta .replied::before {
2881 content: '\F3E5';
2882 font-family: "Font Awesome", "Font Awesome 5 Free";
2883 color: #9740cb;
2884 font-weight: 900;
2885 font-size: 0.9em;
2886 opacity: 0.6;
2889 .post-controls {
2890 text-align: right;
2891 margin: 0.75em 0 0 0;
2892 align-self: start;
2893 justify-self: end;
2895 .edit-post-link {
2896 display: inline-block;
2897 margin-bottom: 0.25em;
2898 font-size: 1.125rem;
2900 .edit-post-link::before {
2901 margin-right: 0.3em;
2903 .comment-controls .edit-button::before,
2904 .edit-post-link::before {
2905 content: '\F303';
2906 font-family: "Font Awesome", "Font Awesome 5 Free";
2907 font-weight: 900;
2908 font-size: 0.75em;
2909 position: relative;
2910 top: -1px;
2913 .comment-controls .delete-button {
2914 margin-right: 0.25em;
2916 .comment-controls .edit-button,
2917 .comment-controls .retract-button,
2918 .comment-controls .unretract-button {
2919 margin-right: 1em;
2921 .comment-controls .retract-button::before {
2922 content: '\F4B3';
2923 opacity: 0.6;
2925 .comment-controls .unretract-button::before {
2926 content: '\F075';
2927 opacity: 0.9;
2929 .comment-controls .delete-button::before {
2930 content: '\F05E';
2931 opacity: 0.7;
2933 .comment-controls .retract-button::before,
2934 .comment-controls .unretract-button::before,
2935 .comment-controls .delete-button::before {
2936 font-weight: 900;
2937 font-size: 0.9em;
2940 .comment-controls form {
2941 position: relative;
2943 .textarea-container {
2944 position: relative;
2946 .posting-controls textarea {
2947 display: block;
2948 width: 100%;
2949 height: 15em;
2950 min-height: 15em;
2951 max-height: calc(100vh - 6em);
2952 margin: 2px 0 0 0;
2953 padding: 4px 5px;
2954 font-size: 1.2rem;
2955 border-style: solid;
2956 border-width: 29px 1px 1px 1px;
2957 resize: none;
2960 /* GUIEdit buttons */
2962 .guiedit-buttons-container {
2963 position: absolute;
2964 left: 1px;
2965 top: 1px;
2966 width: calc(100% - 2px);
2967 height: 28px;
2968 text-align: left;
2969 padding: 1px 4px 0 4px;
2970 overflow: hidden;
2972 .comment-thread-page .guiedit-buttons-container {
2973 padding-right: 60px;
2975 .guiedit-buttons-container button {
2976 height: 26px;
2977 padding: 0 7px;
2978 font-weight: 900;
2979 font-size: 0.875rem;
2980 line-height: 1;
2981 position: static;
2983 .guiedit-buttons-container button:active {
2984 transform: none;
2986 .guiedit-buttons-container button:active div {
2987 transform: scale(0.9);
2989 .guiedit-buttons-container button sup {
2990 font-weight: bold;
2992 .guiedit::after {
2993 content: attr(data-tooltip);
2994 position: absolute;
2995 font-weight: normal;
2996 font-size: 1rem;
2997 top: 2px;
2998 left: 464px;
2999 height: 25px;
3000 padding: 4px 0;
3001 white-space: nowrap;
3002 visibility: hidden;
3004 .guiedit:hover::after {
3005 visibility: visible;
3008 /* Markdown hints */
3010 .posting-controls .markdown-reference-link {
3011 float: left;
3012 padding: 1px 0 0 6px;
3014 .posting-controls .markdown-reference-link a {
3015 padding-right: 1.5em;
3016 margin-right: 0.15em;
3017 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');
3018 background-size: 1.25em;
3019 background-repeat: no-repeat;
3020 background-position: right center;
3023 #markdown-hints-checkbox + label {
3024 float: left;
3025 margin: 2px 0 0 1em;
3026 line-height: 1.3;
3027 cursor: pointer;
3029 #edit-post-form #markdown-hints-checkbox + label {
3030 padding: 0;
3032 #markdown-hints-checkbox {
3033 visibility: hidden;
3034 float: left;
3036 #markdown-hints-checkbox + label::after {
3037 content: "(Show Markdown help)";
3039 #markdown-hints-checkbox:checked + label::after {
3040 content: "(Hide Markdown help)";
3042 #markdown-hints-checkbox + label::before {
3043 content: '\F059';
3044 font-family: "Font Awesome", "Font Awesome 5 Free";
3045 font-weight: 900;
3046 margin-right: 3px;
3048 #markdown-hints-checkbox:checked + label::before {
3049 font-weight: normal;
3051 #markdown-hints {
3052 margin: 4px 0 0 4px;
3053 padding: 4px 8px;
3054 position: absolute;
3055 text-align: left;
3056 top: calc(100% - 1em);
3057 z-index: 1;
3058 display: none;
3060 .comment-controls #markdown-hints {
3061 top: calc(100% + 1.75em);
3063 #markdown-hints-checkbox:checked ~ #markdown-hints {
3064 display: table;
3066 .markdown-hints-row {
3067 display: table-row;
3069 #markdown-hints .markdown-hints-row span,
3070 #markdown-hints .markdown-hints-row code {
3071 float: none;
3072 display: table-cell;
3073 border: none;
3074 background-color: inherit;
3075 padding: 0 12px 0 0;
3078 /******************/
3079 /* EDIT POST FORM */
3080 /******************/
3082 #edit-post-form {
3083 padding: 1em 1em 4em 1em;
3085 #edit-post-form .post-meta-fields {
3086 display: grid;
3087 grid-template-columns: 5em auto auto auto 1fr auto;
3088 margin-bottom: 0.625em;
3091 #edit-post-form label[for='title'],
3092 #edit-post-form label[for='url'],
3093 #edit-post-form label[for='section'] {
3094 grid-column: 1;
3096 #edit-post-form input[type='text'] {
3097 padding: 0.25em;
3098 grid-column: 2 / span 4;
3099 margin-bottom: 0.5em;
3102 #edit-post-form .link-post-checkbox,
3103 #edit-post-form .link-post-checkbox + label {
3104 grid-row: 1;
3105 grid-column: 6;
3107 #edit-post-form .question-checkbox,
3108 #edit-post-form .question-checkbox + label {
3109 grid-row: 3;
3110 grid-column: 5;
3111 justify-self: start;
3112 margin-left: 1.5em;
3115 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3116 grid-row: 4;
3117 grid-column: 2 / span 4;
3118 text-align: left;
3119 margin-top: 8px;
3122 #edit-post-form .post-meta-fields input[type='checkbox'] {
3123 height: 0;
3124 opacity: 0;
3125 pointer-events: none;
3127 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3128 white-space: nowrap;
3129 position: relative;
3130 cursor: pointer;
3131 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3132 align-self: start;
3134 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3135 content: "";
3136 font-family: "Font Awesome", "Font Awesome 5 Free";
3137 font-size: 1.375rem;
3138 line-height: 0.7;
3139 text-indent: 1px;
3140 font-weight: 900;
3141 position: absolute;
3142 width: 20px;
3143 height: 20px;
3144 left: 5px;
3146 #edit-post-form label[for='url'],
3147 #edit-post-form input[name='url'] {
3148 display: none;
3150 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3151 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3152 display: initial;
3154 #edit-post-form label {
3155 line-height: normal;
3156 border: 1px solid transparent;
3157 text-align: right;
3158 padding: 0.25em 0.5em;
3159 white-space: nowrap;
3161 #edit-post-form input[type='radio'] {
3162 width: 0;
3163 margin: 0;
3164 opacity: 0;
3165 pointer-events: none;
3167 #edit-post-form input[type='radio'] + label {
3168 padding: 4px 12px;
3169 text-align: center;
3170 border-style: solid;
3171 border-width: 1px 1px 1px 0;
3172 cursor: pointer;
3174 #edit-post-form input[type='radio']:checked + label {
3175 cursor: default;
3178 #edit-post-form label[for='section'] {
3179 grid-row: 3;
3181 #edit-post-form input[type='radio'] + label {
3182 grid-row: 3;
3184 @supports (width: -moz-fit-content) {
3185 #edit-post-form input[type='radio'] + label {
3186 width: -moz-fit-content;
3189 @supports (width: fit-content) {
3190 #edit-post-form input[type='radio'] + label {
3191 width: fit-content;
3195 #edit-post-form textarea {
3196 min-height: 24em;
3199 #edit-post-form input[type='submit'] {
3200 padding: 6px 12px;
3201 float: right;
3203 #edit-post-form #markdown-hints {
3204 top: calc(100% + 2em);
3207 #edit-post-form button.guiedit div {
3208 overflow: visible;
3210 .guiedit-mobile-auxiliary-button {
3211 display: none;
3214 /***********/
3215 /* BUTTONS */
3216 /***********/
3218 button,
3219 input[type='submit'] {
3220 font-family: inherit;
3221 font-size: inherit;
3222 background-color: inherit;
3223 cursor: pointer;
3224 border: none;
3225 border-radius: 0;
3228 /************/
3229 /* HEADINGS */
3230 /************/
3232 .body-text h1,
3233 .body-text h2,
3234 .body-text h3,
3235 .body-text h4,
3236 .body-text h5,
3237 .body-text h6 {
3238 line-height: 1.1;
3239 margin: 1em 0 0.75em 0;
3240 text-align: left;
3243 .post-body h5,
3244 .post-body h6 {
3245 font-size: 1em;
3247 .post-body h4 {
3248 font-size: 1.2em;
3250 .post-body h3 {
3251 font-size: 1.4em;
3253 .post-body h2 {
3254 font-size: 1.75em;
3256 .post-body h1 {
3257 font-size: 2.1em;
3260 .comment-body h5,
3261 .comment-body h6 {
3262 font-size: 1em;
3264 .comment-body h4 {
3265 font-size: 1.15em;
3267 .comment-body h3 {
3268 font-size: 1.3em;
3270 .comment-body h2 {
3271 font-size: 1.5em;
3273 .comment-body h1 {
3274 font-size: 1.75em;
3277 /**********/
3278 /* QUOTES */
3279 /**********/
3281 blockquote,
3282 .post-body .comment-box .comment-body {
3283 font-size: 0.9em;
3284 margin: 1em 0;
3285 padding-left: 0.5em;
3286 margin-left: 1px;
3287 padding-bottom: 3px;
3289 blockquote *:first-child {
3290 margin-top: 0;
3292 blockquote *:last-child {
3293 margin-bottom: 0;
3295 blockquote blockquote {
3296 font-size: 0.95em;
3299 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3301 .post-body .comment-box .user-name {
3302 font-style: italic;
3304 .post-body .comment-box .user-name::after {
3305 content: ":";
3307 .post-body .comment-box {
3308 zoom: 1.25;
3311 /**********/
3312 /* IMAGES */
3313 /**********/
3315 #content img, #content figure {
3316 max-width: 100%;
3319 .prediction-poll > svg {
3320 width: 700px;
3321 max-width: 100%;
3324 img.inline-latex {
3325 position: relative;
3326 top: 2.5px;
3327 margin: 0 2px;
3330 #content figure {
3331 text-align: center;
3332 margin: 1.5em auto;
3335 p.imgonly,
3336 div.imgonly,
3337 figure {
3338 text-align: center;
3339 margin: auto;
3340 clear: both;
3343 .imgonly iframe {
3344 display: block;
3345 width: 100%;
3346 height: 250px;
3347 border: 0;
3350 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3352 [style*="--aspect-ratio"] > * {
3353 width: 100%;
3355 [style*="--aspect-ratio"] > img {
3356 height: auto;
3358 @supports (--custom:property) {
3359 [style*="--aspect-ratio"] {
3360 position: relative;
3362 [style*="--aspect-ratio"]::before {
3363 content: "";
3364 display: block;
3365 padding-bottom: calc(100% / (var(--aspect-ratio)));
3367 [style*="--aspect-ratio"] > * {
3368 position: absolute;
3369 top: 0;
3370 left: 0;
3371 height: 100%;
3375 /**********/
3376 /* TABLES */
3377 /**********/
3379 .body-text table {
3380 border-collapse: collapse;
3381 font-size: 0.875em;
3383 .body-text table th,
3384 .body-text table td {
3385 text-align: left;
3386 padding: 4px 6px;
3387 line-height: 1.3;
3389 .body-text table .numeric {
3390 text-align: right;
3391 font-family: Inconsolata, Menlo, monospace;
3393 .body-text table caption {
3394 margin: 0 0 0.25em 0;
3395 font-weight: bold;
3396 font-size: 1.125em;
3399 /********/
3400 /* MISC */
3401 /********/
3403 /*= Superscripts & subscripts =*/
3405 /* Make sure superscripts and subscripts do not affect line spacing. */
3406 sup, sub {
3407 vertical-align: baseline;
3408 position: relative;
3409 top: -0.5em;
3410 left: 0.05em;
3411 font-size: 0.8em;
3413 sub {
3414 top: 0.3em;
3417 /*= Code blocks & other "unstyled" text. =*/
3419 pre,
3420 code {
3421 font-family: Inconsolata, Menlo, monospace;
3423 pre {
3424 white-space: pre-wrap;
3426 .body-text pre {
3427 text-align: left;
3429 code {
3430 font-size: 0.95em;
3431 display: inline-block;
3432 padding: 0 4px 1px 5px;
3434 pre > code {
3435 display: block;
3436 border-radius: 0;
3437 padding: 3px 4px 5px 8px;
3438 tab-size: 4;
3441 /*= Fractions =*/
3443 .frac::after {
3444 content: "\200B";
3447 /*= Removing browser default styling of various elements =*/
3449 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3450 :focus {
3451 outline: none;
3454 /* Remove "embossed" appearance of horizontal rules. */
3455 hr {
3456 border: none;
3459 input,
3460 button,
3461 textarea {
3462 -webkit-appearance: none;
3463 -moz-appearance: none;
3464 appearance: none;
3467 input {
3468 font-family: inherit;
3469 font-size: inherit;
3470 font-weight: inherit;
3473 /*************/
3474 /* FOOTNOTES */
3475 /*************/
3477 ol {
3478 counter-reset: ordered-list;
3480 .footnote-definition {
3481 font-size: 0.9em;
3482 list-style-type: none;
3483 counter-increment: ordered-list;
3484 position: relative;
3486 .footnote-definition p {
3487 font-size: inherit !important;
3489 .footnote-definition::before {
3490 content: counter(ordered-list) ".";
3491 position: absolute;
3492 left: -2.5em;
3493 font-weight: bold;
3494 text-align: right;
3495 width: 2em;
3498 /*= LW Docs footnotes =*/
3500 .footnote-item {
3501 display: flex;
3504 .footnote-item > :not(.nothing) {
3505 margin: 0 0.2em;
3508 .footnote-item > :first-child {
3509 margin-left: -0.2em;
3510 margin-right: 0;
3513 .footnote-back-link a:not(.nothing) {
3514 font-size: 0;
3515 text-decoration: none;
3516 border: none;
3519 .footnote-back-link a:not(.nothing):hover {
3520 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #0cc800;
3521 border: none;
3522 text-decoration: none;
3525 .footnote-back-link a::after {
3526 content: '\F106';
3527 font-family: Font Awesome;
3528 font-size: 1rem;
3529 padding: 0.2em;
3530 text-decoration: none;
3531 font-weight: bold;
3534 .footnote-content > :first-child {
3535 margin-top: 0;
3538 /*********/
3539 /* LISTS */
3540 /*********/
3542 li {
3543 margin-bottom: 0.5em;
3546 .body-text ol p,
3547 .body-text ul p {
3548 margin: 0.5em 0;
3551 .body-text ol {
3552 list-style: none;
3553 padding: 0;
3554 counter-reset: ol;
3556 .body-text ol > li {
3557 position: relative;
3558 counter-increment: ol;
3559 padding: 0 0 0 2.5em;
3560 margin: 0.25em 0 0 0;
3562 .body-text ol > li::before {
3563 content: counter(ol) ".";
3564 position: absolute;
3565 width: 2em;
3566 text-align: right;
3567 left: 0;
3569 .body-text ul {
3570 list-style: none;
3571 padding: 0;
3573 .body-text ul:not(.contents-list) > li:empty {
3574 padding-bottom: 1.25em;
3576 .body-text ul:not(.contents-list) > li {
3577 position: relative;
3578 padding: 0 0 0 1.75em;
3579 margin: 0.25em 0 0 0;
3581 .body-text ul:not(.contents-list) > li ul > li {
3582 padding: 0 0 0 2em;
3584 .body-text ul:not(.contents-list) > li::before {
3585 content: "•";
3586 position: absolute;
3587 width: 1.25em;
3588 text-align: right;
3589 left: 0;
3591 .body-text ul:not(.contents-list) > li ul > li::before {
3592 width: 1.5em;
3594 .body-text li > ul:first-child > li {
3595 padding-left: 0;
3597 .body-text li > ul:first-child > li::before {
3598 content: none;
3601 /**************/
3602 /* ERROR PAGE */
3603 /**************/
3605 .error-retry-form {
3606 margin: 0.5em 0;
3609 .error-retry-form input[type="submit"] {
3610 border: 1px solid #484848;
3611 font-weight: bold;
3612 font-size: 1.125rem;
3613 padding: 0.5em 1.25em;
3616 /**************/
3617 /* ABOUT PAGE */
3618 /**************/
3620 #content.about-page .contents {
3621 margin-top: 0.25em;
3623 #content.about-page .accesskey-table {
3624 border-collapse: collapse;
3625 margin: auto;
3627 #content.about-page .accesskey-table th,
3628 #content.about-page .accesskey-table td {
3629 padding: 2px 6px;
3631 #content.about-page .accesskey-table td:first-child {
3632 padding-right: 1.5em;
3634 #content.about-page .accesskey-table td:last-child {
3635 text-align: center;
3636 font-family: Inconsolata, Menlo, monospace;
3638 #content.about-page h3:nth-of-type(n+2) {
3639 clear: both;
3642 /******************/
3643 /* IMAGES OVERLAY */
3644 /******************/
3646 #images-overlay + #content .post-body img {
3647 visibility: hidden;
3650 #images-overlay div {
3651 position: absolute;
3653 #images-overlay div::after {
3654 content: "Click to enlarge";
3655 display: block;
3656 position: absolute;
3657 margin: auto;
3658 left: 0;
3659 right: 0;
3660 bottom: 10px;
3661 padding: 6px 10px;
3662 font-size: 1.25rem;
3663 background-color: rgba(255, 255, 255, 0.6);
3664 color: #000;
3665 border-radius: 5px;
3666 opacity: 0.0;
3667 transition: opacity 0.15s ease;
3668 pointer-events: none;
3670 @supports (width: -moz-fit-content) {
3671 #images-overlay div::after {
3672 width: -moz-fit-content;
3675 @supports (width: fit-content) {
3676 #images-overlay div::after {
3677 width: fit-content;
3680 #images-overlay div:hover::after {
3681 opacity: 1.0;
3684 #images-overlay img {
3685 width: 100%;
3688 /***************/
3689 /* IMAGE FOCUS */
3690 /***************/
3692 /*=--------------=*/
3693 /*= Hover styles =*/
3694 /*=--------------=*/
3696 #content img:hover,
3697 #images-overlay img:hover {
3698 filter: drop-shadow(0 0 3px #777);
3699 cursor: zoom-in;
3701 #content img:active,
3702 #images-overlay img:active {
3703 transform: scale(0.975);
3706 /*=---------=*/
3707 /*= Overlay =*/
3708 /*=---------=*/
3710 #image-focus-overlay {
3711 position: fixed;
3712 top: 0;
3713 right: 0;
3714 bottom: 0;
3715 left: 0;
3716 z-index: 2;
3717 display: none;
3718 cursor: zoom-out;
3720 #image-focus-overlay::before {
3721 content: "";
3722 display: block;
3723 position: absolute;
3724 top: 0;
3725 right: 0;
3726 bottom: 0;
3727 left: 0;
3728 background-color: #fff;
3729 opacity: 0.5;
3730 z-index: -1;
3732 #image-focus-overlay.engaged {
3733 display: initial;
3736 #image-focus-overlay img {
3737 margin: auto;
3738 position: absolute;
3739 left: 50%;
3740 top: 50%;
3741 transform: translateX(-50%) translateY(-50%);
3744 /*=-------------------=*/
3745 /*= Single-image mode =*/
3746 /*=-------------------=*/
3748 #image-focus-overlay:not(.slideshow) .image-number,
3749 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3750 visibility: hidden;
3753 /*=---------=*/
3754 /*= Caption =*/
3755 /*=---------=*/
3757 #image-focus-overlay .caption {
3758 position: absolute;
3759 bottom: 0.75em;
3760 background-color: rgba(255, 255, 255, 0.7);
3761 left: 9em;
3762 right: 9em;
3763 margin: auto;
3764 max-width: calc(100% - 18em);
3765 text-align: center;
3766 font-size: 1.375em;
3767 border-radius: 8px;
3768 z-index: 1;
3769 transition:
3770 bottom 0.2s ease;
3772 @supports (width: -moz-fit-content) {
3773 #image-focus-overlay .caption {
3774 width: -moz-fit-content;
3777 @supports (width: fit-content) {
3778 #image-focus-overlay .caption {
3779 width: fit-content;
3782 #image-focus-overlay .caption.hidden {
3783 bottom: -5em;
3784 transition:
3785 bottom 0.5s ease;
3788 #image-focus-overlay .caption p {
3789 margin: 1em 1.25em;
3790 color: #000;
3793 #image-focus-overlay .caption:not(:empty)::before {
3794 content: "";
3795 display: block;
3796 position: absolute;
3797 width: 100vw;
3798 height: calc(100% + 1.5em);
3799 z-index: -1;
3800 top: -0.75em;
3801 left: calc(-50vw + 50%);
3805 /*=--------------=*/
3806 /*= Help overlay =*/
3807 /*=--------------=*/
3809 #image-focus-overlay .help-overlay {
3810 position: absolute;
3811 display: flex;
3812 flex-flow: column;
3813 z-index: 2;
3814 font-size: 1.5rem;
3815 padding: 1em;
3816 border-radius: 10px;
3817 bottom: 1em;
3818 right: 1em;
3819 overflow: hidden;
3820 white-space: nowrap;
3821 color: transparent;
3822 cursor: default;
3823 visibility: hidden;
3824 transition:
3825 visibility 1s ease,
3826 color 1s ease,
3827 background-color 1s ease,
3828 bottom 0.3s ease;
3830 #image-focus-overlay .help-overlay:hover {
3831 max-width: 24em;
3832 max-height: 14em;
3833 background-color: rgba(255, 255, 255, 0.85);
3834 color: #000;
3835 visibility: visible;
3836 transition:
3837 visibility 0.2s ease 0.3s,
3838 color 0.2s ease 0.3s,
3839 background-color 0.2s ease 0.3s;
3842 #image-focus-overlay .help-overlay::after {
3843 content: "\F128";
3844 font-family: "Font Awesome", "Font Awesome 5 Free";
3845 font-weight: 900;
3846 font-size: 2rem;
3847 position: absolute;
3848 right: 0;
3849 bottom: 0;
3850 padding: 10px;
3851 color: #fff;
3852 filter: drop-shadow(0 0 6px #000);
3853 visibility: visible;
3854 opacity: 0.85;
3855 transition:
3856 visibility 1s ease;
3858 #image-focus-overlay .help-overlay:hover::after {
3859 visibility: hidden;
3860 transition:
3861 visibility 0.2s ease 0.3s;
3864 #image-focus-overlay .help-overlay p {
3865 margin: 0;
3866 text-indent: -2em;
3867 padding-left: 2em;
3868 max-width: 100%;
3869 overflow: hidden;
3871 #image-focus-overlay .help-overlay p + p {
3872 margin: 0.75em 0 0 0;
3874 #image-focus-overlay .help-overlay.hidden {
3875 bottom: -2em;
3878 /*=--------------=*/
3879 /*= Slide number =*/
3880 /*=--------------=*/
3882 #image-focus-overlay .image-number {
3883 position: absolute;
3884 z-index: 2;
3885 font-size: 1.75rem;
3886 left: 1em;
3887 bottom: 1em;
3888 font-weight: 600;
3889 text-shadow:
3890 0 0 3px #000,
3891 0 0 5px #000,
3892 0 0 8px #000,
3893 0 0 13px #000;
3894 width: 1.5em;
3895 text-align: right;
3896 white-space: nowrap;
3897 transition: bottom 0.3s ease;
3899 #image-focus-overlay .image-number::before {
3900 content: "#";
3901 opacity: 0.3;
3903 #image-focus-overlay .image-number::after {
3904 content: " of " attr(data-number-of-images);
3905 opacity: 0.3;
3907 #image-focus-overlay .image-number:hover::before,
3908 #image-focus-overlay .image-number:hover::after {
3909 opacity: 1.0;
3911 #image-focus-overlay .image-number.hidden {
3912 bottom: -1.25em;
3915 /*=-------------------=*/
3916 /*= Slideshow buttons =*/
3917 /*=-------------------=*/
3919 #image-focus-overlay .slideshow-buttons {
3920 position: absolute;
3921 top: 0;
3922 left: 0;
3923 width: 100%;
3924 height: 100%;
3925 z-index: 1;
3926 display: flex;
3927 justify-content: space-between;
3928 pointer-events: none;
3930 #image-focus-overlay .slideshow-buttons button {
3931 font-family: "Font Awesome", "Font Awesome 5 Free";
3932 font-weight: 900;
3933 font-size: 3rem;
3934 padding: 0.5em;
3935 color: #1f1f1f;
3936 position: relative;
3937 left: 0;
3938 transition:
3939 left 0.3s ease;
3940 pointer-events: auto;
3942 #image-focus-overlay .slideshow-buttons button::selection {
3943 background-color: transparent;
3945 @media only screen and (hover: hover) {
3946 #image-focus-overlay .slideshow-buttons button:hover {
3947 background-color: rgba(255, 255, 255, 0.1);
3948 color: #777;
3951 #image-focus-overlay .slideshow-buttons button:active {
3952 transform: none;
3953 color: #666;
3955 #image-focus-overlay .slideshow-buttons button:disabled {
3956 text-shadow: none;
3957 background-color: transparent;
3958 color: #1f1f1f;
3959 cursor: default;
3960 opacity: 0.4;
3962 #image-focus-overlay .slideshow-button.previous.hidden {
3963 left: -1.75em;
3965 #image-focus-overlay .slideshow-button.next.hidden {
3966 left: 1.75em;
3969 /*=-----------------=*/
3970 /*= Background blur =*/
3971 /*=-----------------=*/
3973 .blurred {
3974 filter: blur(3px);
3977 /**************************/
3978 /* QUALIFIED HYPERLINKING */
3979 /**************************/
3981 #content.no-nav-bars {
3982 margin: 8px auto;
3984 #content.no-nav-bars + #ui-elements-container > * {
3985 padding-top: 8px;
3988 #aux-about-link {
3989 position: fixed;
3990 top: 40px;
3991 left: calc((100% - 900px) / 2 - 69px);
3992 width: 1.5em;
3993 height: 1.5em;
3994 text-align: center;
3995 display: table;
3997 #aux-about-link a {
3998 display: table-cell;
3999 width: 100%;
4000 vertical-align: middle;
4001 font-family: "Font Awesome", "Font Awesome 5 Free";
4002 font-weight: 900;
4003 font-size: 1.25rem;
4004 opacity: 0.4;
4005 z-index: 1;
4008 .qualified-linking {
4009 margin: 0;
4010 position: relative;
4012 .qualified-linking input[type='checkbox'] {
4013 visibility: hidden;
4014 width: 0;
4015 height: 0;
4016 margin: 0;
4018 .qualified-linking label {
4019 font-family: "Font Awesome", "Font Awesome 5 Free";
4020 font-weight: 900;
4021 font-size: 1rem;
4022 padding: 0 0.5em;
4023 display: inline-block;
4024 margin-left: 0.25em;
4026 .qualified-linking label:hover {
4027 cursor: pointer;
4029 .qualified-linking label:active span {
4030 display: inline-block;
4031 transform: scale(0.9);
4033 .qualified-linking label::selection {
4034 background-color: transparent;
4037 .qualified-linking label::after {
4038 content: "";
4039 width: 100vw;
4040 height: 0;
4041 left: 0;
4042 top: 0;
4043 position: fixed;
4044 z-index: 1;
4045 cursor: default;
4047 .qualified-linking input[type='checkbox']:checked + label::after {
4048 height: 100vh;
4051 .qualified-linking-toolbar {
4052 position: absolute;
4053 right: 0.25em;
4054 top: 110%;
4055 z-index: 1;
4057 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4058 display: none;
4060 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4061 display: block;
4063 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4064 top: unset;
4065 bottom: 125%;
4068 .qualified-linking-toolbar a {
4069 display: block;
4070 padding: 0 6px;
4071 margin: 4px;
4073 .qualified-linking-toolbar a::selection {
4074 background-color: transparent;
4077 /*****************/
4078 /* HOVER PREVIEW */
4079 /*****************/
4081 #preview-popup-toggle {
4082 position: absolute;
4083 right: -67px;
4084 bottom: 285px;
4085 cursor: pointer;
4086 color: var(--GW-toggle-widget-color, #666);
4088 #preview-popup-toggle:hover {
4089 color: var(--GW-toggle-widget-hover-color, #aeaeae);
4092 #content.preview:not(not) {
4093 padding: 0;
4095 #content.preview > .comment-thread {
4096 margin: 2px;
4098 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4099 border: none;
4101 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4102 padding: 0 8px;
4104 #content.preview.user-page .page-main-heading {
4105 margin-left: 8px;
4107 #content.preview.not(not) .body-text {
4108 margin-left: 8px;
4109 margin-right: 8px;
4111 #content.preview.user-page .user-stats {
4112 margin-right: 32px;
4114 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4115 display: none;
4117 #content.preview button.vote {
4118 display: none;
4120 #content.preview > h1.listing {
4121 max-height: unset;
4123 #content.preview.user-page > .comment-thread {
4124 margin: 0.5em 0;
4126 #content.preview > .post {
4127 margin: 0 18px;
4129 #content.preview .post-title {
4130 margin-top: 0.5em;
4132 #content.preview .post-meta {
4133 line-height: 1.0;
4135 #content.preview .body-text {
4136 font-size: 1em;
4138 #content.preview nav.contents,
4139 #content.preview .lw2-link {
4140 display: none;
4143 .preview-popup {
4144 position: fixed;
4145 transform-origin: top;
4146 top: 10%;
4147 right: 10%;
4148 max-width: 700px;
4149 z-index: 10001;
4150 background-color: #131313;
4151 border: 1px solid #2c2c2c;
4152 box-shadow: 2px 6px 20px -4px #fff;
4153 transition: height 0.2s ease, top 0.2s ease;
4155 .popup-hide-button {
4156 position: fixed;
4157 top: 4px;
4158 right: 4px;
4159 color: #fff;
4160 background-color: #000;
4161 width: 28px;
4162 height: 28px;
4163 display: flex;
4164 font-family: "Font Awesome";
4165 font-size: 14px;
4166 line-height: 1;
4167 border: 1px solid #393939;
4168 border-radius: 28px;
4169 align-items: center;
4170 justify-content: center;
4171 //padding-bottom: 2px;
4172 padding-left: 1.5px;
4173 font-family: "Font Awesome", "Font Awesome 5 Free";
4174 cursor: pointer;
4176 .popup-hide-button:hover::before {
4177 content: "Turn off preview popups";
4178 display: block;
4179 position: absolute;
4180 width: max-content;
4181 right: 32px;
4182 color #fff;
4183 background-color: #000;
4184 border: 1px solid #131313;
4185 border-radius: 2px;
4186 padding: 4px;
4189 /********/
4190 /* MATH */
4191 /********/
4193 .mathjax-block-container {
4194 display: block;
4195 overflow-y: hidden;
4196 border-radius: 6px;
4197 margin: 1em 0 1.5em 0;
4199 .mathjax-inline-container {
4200 max-width: 100%;
4201 overflow-x: auto;
4202 overflow-y: hidden;
4203 position: relative;
4204 padding: 0 1px;
4206 #content .mathjax-inline-container,
4207 #content .mathjax-inline-container .mjpage,
4208 #content .mathjax-inline-container .mjx-chtml,
4209 #content .mathjax-inline-container .mjx-math,
4210 #content .mathjax-inline-container .mjx-mrow {
4211 display: inline;
4212 white-space: normal;
4214 .post .mathjax-inline-container {
4215 line-height: 1;
4217 .comment .mathjax-inline-container {
4218 line-height: 1;
4220 .mathjax-inline-container .mjx-chtml {
4221 padding: 0;
4224 /************/
4225 /* SPOILERS */
4226 /************/
4228 .spoiler {
4229 color: #fff;
4230 background-color: currentColor;
4231 transition: none;
4232 text-shadow: none;
4233 margin: 1em 0;
4234 box-shadow: 0 0 0 1px currentColor inset;
4235 overflow: auto;
4237 .spoiler:not(:last-child) {
4238 margin-bottom: 0;
4240 #content .spoiler * {
4241 color: inherit;
4242 border: none;
4244 .spoiler:hover {
4245 color: unset;
4246 background-color: unset;
4247 text-shadow: unset;
4248 transition:
4249 color 0.1s ease-out 0.1s,
4250 background-color 0.1s ease-out 0.1s,
4251 text-shadow 0.1s ease-out 0.1s;
4253 .spoiler::selection,
4254 .spoiler ::selection {
4255 color: #000;
4256 background-color: #fff;
4258 .spoiler:not(:hover)::selection,
4259 .spoiler:not(:hover) ::selection {
4260 background-color: transparent;
4263 /*= Fix for LessWrong being weird =*/
4265 .spoiler > p {
4266 padding: 0 7px;
4268 .spoiler > p:first-child {
4269 margin-top: 0.25em;
4271 .spoiler > p:last-child {
4272 margin-bottom: 0;
4273 padding-bottom: 0.25em;
4275 .spoiler > p:hover ~ p {
4276 background-color: currentColor;
4278 .spoiler > p + p {
4279 margin-top: -1em;
4281 .spoiler > p:not(:first-child) {
4282 padding-top: 0.5em;
4284 .spoiler > p:not(:last-child) {
4285 padding-bottom: 0.5em;
4288 .spoiler:not(:hover) pre,
4289 .spoiler:not(:hover) code {
4290 background-color: inherit;
4291 box-shadow: none;
4293 #content .spoiler pre {
4294 border-color: currentColor;
4295 border-style: solid;
4296 border-width: 0 1px;
4297 border-radius: 0;
4300 /*******************/
4301 /* PAGE LIST INDEX */
4302 /*******************/
4304 .page-list-index {
4305 margin: 1em 30px;
4306 line-height: 1.2;
4309 .page-list-index > p {
4310 font-weight: bold;
4311 font-size: 1.2em;
4314 .page-list-index > ul * {
4315 margin: 0;
4318 .page-list-index ul {
4319 padding-left: 1.5em;
4322 .page-list-index li {
4323 margin-top: 0.67em;
4326 .page-list-index li > a {
4327 display: block;
4328 font-size: 1.1em;
4329 font-weight: bold;
4330 margin: 0.33em 0;
4333 .page-list-index li > a:last-child {
4334 margin-bottom: 1em;
4338 /*****************/
4339 /* USER MENTIONS */
4340 /*****************/
4342 .textarea-container .autocomplete-container {
4343 position: absolute;
4344 overflow-y: auto;
4345 font-size: 1.125rem;
4346 cursor: default;
4347 backdrop-filter: blur(2px);
4348 width: 360px;
4350 .textarea-container .autocomplete-container:empty {
4351 display: none;
4354 @media only screen and (min-width: 521px) {
4355 .textarea-container .autocomplete-container.inside {
4356 max-height: calc(100% - 36px);
4357 top: 32px;
4359 .textarea-container .autocomplete-container.outside {
4360 max-height: calc(100% - 28px);
4361 top: 28px;
4362 z-index: 10001;
4365 .textarea-container .autocomplete-container.inside.right {
4366 right: 18px;
4368 .textarea-container .autocomplete-container.inside.left {
4369 left: 18px;
4371 .textarea-container .autocomplete-container.outside.right {
4372 left: calc(100% + 3px);
4374 .textarea-container .autocomplete-container.outside.left {
4375 right: calc(100% + 3px);
4378 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4379 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4381 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4382 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4384 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4385 max-width: calc((300px + 40px * 2) / 2);
4389 .textarea-container .autocomplete-container div {
4390 padding: 2px 8px 0 8px;
4391 white-space: nowrap;
4392 display: flex;
4393 justify-content: flex-end;
4396 .textarea-container .autocomplete-container div span.name {
4397 flex: 1 1 auto;
4398 width: calc(100% - 9em);
4399 overflow: hidden;
4400 text-overflow: ellipsis;
4402 .textarea-container .autocomplete-container div span.name:hover {
4403 overflow: visible;
4404 z-index: 1;
4406 .textarea-container .autocomplete-container div span.age,
4407 .textarea-container .autocomplete-container div span.karma {
4408 font-size: 0.9em;
4409 text-align: right;
4411 .textarea-container .autocomplete-container div span.age {
4412 flex: 0 0 3em;
4414 .textarea-container .autocomplete-container div span.karma {
4415 flex: 0 0 6em;
4419 /*******************/
4420 /* ALIGNMENT FORUM */
4421 /*******************/
4423 #content.alignment-forum-index-page::after {
4424 content: "Alignment Forum";
4425 font-size: 1.5rem;
4426 margin: 0.375em 0 0 -0.375em;
4427 order: -1;
4430 /**********************/
4431 /* FOR NARROW SCREENS */
4432 /**********************/
4434 @media only screen and (max-width: 1440px) {
4435 #hns-date-picker {
4436 right: -81px;
4437 padding: 8px 10px 10px 10px;
4438 bottom: 62px;
4439 display: none;
4441 #hns-date-picker::before {
4442 content: "";
4443 position: absolute;
4444 display: block;
4445 z-index: -1;
4446 height: calc(100% + 2px);
4447 top: -1px;
4448 left: -1px;
4449 width: 50%;
4452 @media only screen and (max-width: 1160px) {
4453 #new-comment-nav-ui {
4454 bottom: 180px;
4455 right: -68px;
4457 #hns-date-picker {
4458 bottom: 200px;
4459 right: -36px;
4461 #hns-date-picker::before {
4462 width: calc(100% - 35px);
4464 #theme-selector button::before {
4465 right: unset;
4466 left: 100%;
4468 #theme-selector:hover::after {
4469 content: "";
4470 display: block;
4471 position: absolute;
4472 width: calc(6em - 7px);
4473 height: calc(100% + 2px);
4474 top: 0;
4475 left: calc(100% + 1px);
4477 #anti-kibitzer-toggle {
4478 bottom: 330px;
4481 @media only screen and (max-width: 1080px) {
4482 #width-selector {
4483 right: -30px;
4485 #width-selector button {
4486 display: block;
4488 #text-size-adjustment-ui {
4489 top: 90px;
4490 right: -30px;
4492 #text-size-adjustment-ui button {
4493 display: block;
4494 position: relative;
4496 #text-size-adjustment-ui button.increase {
4497 bottom: 48px;
4499 #text-size-adjustment-ui button.decrease {
4500 top: 50px;
4502 #theme-selector {
4503 top: 46px;
4504 left: -44px;
4506 #theme-tweaker-toggle {
4507 left: -44px;
4508 top: 2px;
4510 #theme-tweaker-toggle button {
4511 height: 2em;
4512 width: 2em;
4513 padding: 7px;
4515 #quick-nav-ui {
4516 right: -54px;
4518 #new-comment-nav-ui {
4519 right: -55px;
4521 #hns-date-picker {
4522 right: -23px;
4524 #hns-date-picker::before {
4525 width: calc(100% - 22px);
4527 #anti-kibitzer-toggle {
4528 right: -54px;
4531 @media only screen and (max-width: 1040px) {
4532 #quick-nav-ui {
4533 right: -49px;
4535 #new-comment-nav-ui {
4536 right: -50px;
4538 #hns-date-picker {
4539 right: -18px;
4541 #hns-date-picker::before {
4542 width: calc(100% - 17px);
4544 #anti-kibitzer-toggle {
4545 right: -50px;
4548 @media only screen and (max-width: 1020px) {
4549 #quick-nav-ui {
4550 right: -20px;
4552 #new-comment-nav-ui {
4553 right: -21px;
4555 #new-comment-nav-ui .new-comments-count::before {
4556 content: "";
4557 position: absolute;
4558 width: 100%;
4559 height: calc(100% + 45px);
4560 z-index: -1;
4561 left: 0;
4562 top: -22px;
4564 #hns-date-picker {
4565 right: 19px;
4567 #hns-date-picker::before {
4568 width: 100%;
4570 #anti-kibitzer-toggle {
4571 right: -20px;
4574 @media only screen and (max-width: 1000px) {
4575 #theme-selector {
4576 left: -17px;
4577 top: 120px;
4578 padding: 3px 0;
4579 max-width: 32px;
4581 #theme-selector button {
4582 margin: 1px 4px;
4584 #text-size-adjustment-ui {
4585 top: 100px;
4586 right: -12px;
4588 @media not screen and (hover: none) {
4589 #quick-nav-ui,
4590 #new-comment-nav-ui,
4591 #new-comment-nav-ui + #hns-date-picker,
4592 #anti-kibitzer-toggle {
4593 opacity: 0.4;
4595 #quick-nav-ui:hover,
4596 #new-comment-nav-ui:hover,
4597 #new-comment-nav-ui + #hns-date-picker:hover,
4598 #new-comment-nav-ui + #hns-date-picker:focus-within,
4599 #new-comment-nav-ui:hover + #hns-date-picker,
4600 #anti-kibitzer-toggle:hover {
4601 opacity: 1.0;
4604 #theme-tweaker-toggle {
4605 top: 70px;
4606 left: -21px;
4610 /**************/
4611 /* PRINT VIEW */
4612 /**************/
4614 @media only print {
4615 .nav-bar {
4616 visibility: hidden;
4617 max-height: 0;
4618 overflow: hidden;
4620 #ui-elements-container {
4621 display: none;
4623 #images-overlay {
4624 display: none;
4626 #images-overlay + #content .post-body img {
4627 visibility: visible;
4629 .comment-controls {
4630 display: none;
4632 #comments-sort-mode-selector {
4633 display: none;
4635 .comment-minimize-button {
4636 display: none;
4638 .post-meta .qualified-linking,
4639 .post-meta .lw2-link {
4640 display: none;
4642 .comment-meta .permalink,
4643 .comment-meta .lw2-link,
4644 .comment-meta .comment-parent-link {
4645 display: none;
4647 .new-comment::before {
4648 display: none;
4650 #content::before {
4651 box-shadow: none;
4655 /*****************/
4656 /* MOBILE LAYOUT */
4657 /*****************/
4659 /* Hide the mobile elements on desktop screens: */
4661 @media only screen and (max-width: 1160px) {
4662 #post-nav-ui-toggle,
4663 #appearance-adjust-ui-toggle {
4664 display: none;
4668 @media only screen and (max-width: 1160px) {
4670 /*====================*/
4671 /* MOBILE UI ELEMENTS */
4672 /*====================*/
4674 #ui-elements-container {
4675 height: unset !important;
4676 position: unset;
4678 #ui-elements-container > * {
4679 position: fixed;
4680 visibility: hidden;
4681 opacity: 1.0;
4682 z-index: 10000;
4685 #ui-elements-container > div[id$='-ui-toggle'] {
4686 visibility: visible;
4687 display: inline-block;
4688 border-radius: 50%;
4689 z-index: 10000;
4691 #ui-elements-container > div[id$='-ui-toggle'] button,
4692 #theme-selector .theme-selector-close-button {
4693 font-family: Font Awesome;
4694 font-weight: 900;
4695 font-size: 32px;
4696 padding: 10px;
4697 opacity: 0.8;
4698 -webkit-tap-highlight-color: transparent;
4699 transition: transform 0.2s ease;
4701 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4702 #theme-selector .theme-selector-close-button::selection {
4703 background-color: transparent;
4705 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4706 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4707 border: none;
4709 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4710 transform: rotate(-90deg);
4711 opacity: 1.0;
4714 #appearance-adjust-ui-toggle {
4715 bottom: 10px;
4716 left: 10px;
4719 #post-nav-ui-toggle {
4720 bottom: 10px;
4721 right: 10px;
4724 #theme-selector.engaged,
4725 #quick-nav-ui.engaged,
4726 #new-comment-nav-ui.engaged,
4727 #hns-date-picker.engaged {
4728 visibility: visible;
4731 #image-focus-overlay.engaged {
4732 visibility: visible;
4734 #image-focus-overlay .help-overlay {
4735 display: none;
4738 /*=========*/
4739 /* GENERAL */
4740 /*=========*/
4742 @media only screen and (max-width: 900px) {
4743 #content,
4744 #images-overlay,
4745 #ui-elements-container {
4746 min-width: unset;
4747 width: unset;
4749 #content {
4750 padding: 0 4px;
4754 /*================*/
4755 /* THEME SELECTOR */
4756 /*================*/
4758 #theme-selector {
4759 display: flex;
4760 flex-flow: column;
4761 background-color: #000;
4762 width: calc(100vw - 20px);
4763 max-width: 360px;
4764 padding: 0 0 3px 0;
4765 overflow: hidden;
4766 max-height: 0;
4767 transition:
4768 top 0.2s ease,
4769 max-height 0.2s ease,
4770 visibility 0.2s ease;
4771 top: calc(100% + 10px);
4772 left: 0;
4773 right: 0;
4774 margin: auto;
4776 #theme-selector.engaged {
4777 max-height: 1000px;
4778 top: 10px;
4779 z-index: 10001;
4781 #theme-selector::before {
4782 content: "Select theme";
4783 white-space: nowrap;
4784 display: block;
4785 font-weight: 600;
4786 font-size: 2rem;
4787 margin: 0.375em 1em 0.5em 1em;
4788 text-align: center;
4790 #theme-selector button {
4791 width: calc(100% - 0.5em);
4792 background-repeat: no-repeat;
4793 padding: 1em 0.875em;
4794 margin: 1px 4px;
4795 line-height: 1;
4796 height: unset;
4797 position: relative;
4799 #theme-selector button::after {
4800 content: attr(data-theme-description);
4801 color: #fff;
4802 white-space: nowrap;
4803 position: absolute;
4804 text-align: left;
4805 left: 2.5em;
4806 top: 1em;
4808 @media only screen and (max-height: 675px) {
4809 #theme-selector button {
4810 padding: 0.875em;
4812 #theme-selector button::after {
4813 top: 0.875em;
4816 #theme-selector .theme-selector-close-button {
4817 position: absolute;
4818 width: unset;
4819 background-color: transparent;
4820 top: 0;
4821 right: -3px;
4823 #theme-selector .theme-selector-close-button,
4824 #theme-selector .theme-selector-close-button:focus,
4825 #theme-selector .theme-selector-close-button:active,
4826 #theme-selector .theme-selector-close-button:hover {
4827 box-shadow: none;
4830 /*===============*/
4831 /* THEME TWEAKER */
4832 /*===============*/
4834 #theme-selector {
4835 padding: 0 0 64px 0;
4837 #theme-selector ~ #theme-tweaker-toggle {
4838 top: 100%;
4840 #theme-selector ~ #theme-tweaker-toggle::after {
4841 content: "Open theme tweaker";
4842 position: absolute;
4843 font-size: 0.625em;
4844 white-space: nowrap;
4845 left: -50%;
4846 top: 100%;
4848 #theme-selector.engaged ~ #theme-tweaker-toggle {
4849 visibility: visible;
4850 top: 530px;
4851 left: 0;
4852 right: 0;
4853 margin: auto;
4854 z-index: 11111;
4855 transition:
4856 top 0.2s ease,
4857 visibility 0.2s ease;
4859 @media only screen and (max-height: 675px) {
4860 #theme-selector.engaged ~ #theme-tweaker-toggle {
4861 top: 492px;
4864 @supports (width: -moz-fit-content) {
4865 #theme-selector.engaged ~ #theme-tweaker-toggle {
4866 width: -moz-fit-content;
4869 @supports (width: fit-content) {
4870 #theme-selector.engaged ~ #theme-tweaker-toggle {
4871 width: fit-content;
4874 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4875 opacity: 1.0;
4878 #theme-tweaker-ui {
4879 visibility: visible;
4882 /*======================*/
4883 /* ANTI-KIBITZER TOGGLE */
4884 /*======================*/
4886 #theme-selector ~ #anti-kibitzer-toggle {
4887 top: 100%;
4888 bottom: unset;
4889 left: 0;
4890 right: 0;
4891 margin: auto;
4892 box-shadow: none;
4893 width: calc(100vw - 44px);
4894 max-width: 330px;
4895 text-align: right;
4896 pointer-events: none;
4898 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4899 visibility: visible;
4900 z-index: 11110;
4901 top: 530px;
4902 transition:
4903 top 0.2s ease,
4904 visibility 0.2s ease;
4906 @media only screen and (max-height: 675px) {
4907 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4908 top: 492px;
4911 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4912 pointer-events: auto;
4913 display: inline-block;
4916 /*=================*/
4917 /* QUICKNAV WIDGET */
4918 /*=================*/
4920 #quick-nav-ui {
4921 max-width: 0px;
4922 transition:
4923 max-width 0.2s ease,
4924 visibility 0.2s ease;
4925 display: flex;
4926 right: 72px;
4927 bottom: 14px;
4929 #quick-nav-ui.engaged {
4930 max-width: 1000px;
4932 #quick-nav-ui a {
4933 position: relative;
4934 margin: 2px;
4936 #quick-nav-ui a + a {
4937 margin-left: 5px;
4939 #quick-nav-ui a::after {
4940 position: absolute;
4941 top: calc(100% + 2px);
4942 font-size: 0.375rem;
4943 left: 0;
4944 right: 0;
4945 margin: auto;
4946 line-height: 1;
4947 padding: 2px;
4948 text-transform: uppercase;
4949 z-index: -1;
4951 @supports (width: -moz-fit-content) {
4952 #quick-nav-ui a::after {
4953 width: -moz-fit-content;
4956 @supports (width: fit-content) {
4957 #quick-nav-ui a::after {
4958 width: fit-content;
4961 #quick-nav-ui a[href='#top']::after {
4962 content: "Top";
4963 left: -1px;
4965 #quick-nav-ui a[href='#comments']::after {
4966 content: "Comments";
4968 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4969 visibility: hidden;
4970 transition: visibility 0.2s ease;
4972 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4973 visibility: visible;
4975 #quick-nav-ui a[href='#bottom-bar']::after {
4976 content: "Bottom";
4979 /*======================*/
4980 /* NEW COMMENT QUICKNAV */
4981 /*======================*/
4983 #new-comment-nav-ui {
4984 max-width: 0px;
4985 max-height: 0px;
4986 transition:
4987 max-width 0.2s ease,
4988 max-height 0.2s ease,
4989 visibility 0.2s ease;
4990 display: flex;
4991 right: 78px;
4992 bottom: 70px;
4994 #new-comment-nav-ui::before {
4995 content: "New Comments";
4996 position: absolute;
4997 bottom: 100%;
4998 font-size: 0.5625rem;
4999 left: 0;
5000 right: 0;
5001 margin: auto;
5002 padding: 2px 3px;
5003 text-transform: uppercase;
5004 z-index: -1;
5006 @supports (width: -moz-fit-content) {
5007 #new-comment-nav-ui::before {
5008 width: -moz-fit-content;
5011 @supports (width: fit-content) {
5012 #new-comment-nav-ui::before {
5013 width: fit-content;
5016 #new-comment-nav-ui.engaged {
5017 max-width: 1000px;
5018 max-height: 1000px;
5020 #new-comment-nav-ui .new-comment-sequential-nav-button {
5021 top: unset;
5022 bottom: unset;
5023 padding: 2px 7px;
5025 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5026 padding: 2px 7px 3px 7px;
5028 #new-comment-nav-ui .new-comments-count {
5029 padding: 4px 0 5px 0;
5031 #new-comment-nav-ui .new-comments-count::before {
5032 display: none;
5034 #new-comment-nav-ui button::after {
5035 position: absolute;
5036 font-size: 0.375rem;
5037 left: 0;
5038 right: 0;
5039 margin: auto;
5040 line-height: 1;
5041 text-transform: uppercase;
5042 pointer-events: none;
5044 #new-comment-nav-ui button.new-comment-previous::after {
5045 content: "Previous";
5046 bottom: 5px;
5048 #new-comment-nav-ui button.new-comment-next::after {
5049 content: "Next";
5050 top: 7px;
5053 /*=================*/
5054 /* HNS DATE PICKER */
5055 /*=================*/
5057 #hns-date-picker {
5058 max-height: 0px;
5059 bottom: 132px;
5060 right: 62px;
5061 transition:
5062 max-height 0.2s ease,
5063 visibility 0.2s ease;
5065 #hns-date-picker.engaged {
5066 max-height: 1000px;
5068 #hns-date-picker::before {
5069 width: calc(100% + 2px);
5070 border-width: 1px !important;
5073 /*=========*/
5074 /* NAV BAR */
5075 /*=========*/
5077 #bottom-bar {
5078 margin-left: auto;
5079 margin-right: auto;
5080 width: calc(100% - 9rem + 8px);
5081 background: rgba(0, 0, 0, 0.85);
5082 backdrop-filter: blur(1px);
5084 #content.index-page #bottom-bar {
5085 z-index: 10001;
5087 #bottom-bar .nav-item {
5088 box-shadow: none;
5089 position: relative;
5091 #bottom-bar .nav-inner {
5092 font-size: 2rem;
5093 padding: 1rem 0 1.25rem 0;
5094 visibility: hidden;
5095 position: static;
5096 width: 0;
5098 #content #bottom-bar .nav-item .nav-inner::before {
5099 margin: 0;
5100 visibility: visible;
5101 position: absolute;
5102 width: 100%;
5103 height: 100%;
5104 left: 0;
5105 top: 0;
5106 padding: 1rem 0;
5108 #bottom-bar .nav-inner::after {
5109 display: block;
5110 visibility: visible;
5111 text-transform: uppercase;
5112 color: unset;
5113 font-size: 0.75rem;
5114 top: unset;
5115 left: 0;
5116 bottom: 1rem;
5117 width: 100%;
5119 #bottom-bar #nav-item-first .nav-inner::after {
5120 content: "First Page";
5122 #bottom-bar #nav-item-prev .nav-inner::after {
5123 content: "Prev. Page";
5125 #bottom-bar #nav-item-top .nav-inner::after {
5126 content: "Top";
5128 #bottom-bar #nav-item-next .nav-inner::after {
5129 content: "Next Page";
5131 #bottom-bar #nav-item-last .nav-inner::after {
5132 content: "Last Page";
5135 @media only screen and (max-width: 900px) {
5136 .nav-bar-top {
5137 font-size: 0.75rem;
5139 .nav-bar {
5140 width: calc(100% + 8px);
5141 margin: 0 -4px;
5143 .nav-bar .nav-inner::after {
5144 display: none;
5147 #primary-bar .nav-item {
5148 flex: 1 1 100%;
5150 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5151 flex: 1 1 60px;
5153 .nav-bar-top:not(#anything) .nav-inner {
5154 text-transform: uppercase;
5155 padding: 6px;
5157 .nav-bar-top .nav-inner::before {
5158 display: block;
5159 font-family: "Font Awesome";
5160 font-size: 2em;
5161 font-weight: 900;
5164 #nav-item-home .nav-inner::before {
5165 content: "\F015";
5167 #nav-item-featured .nav-inner::before {
5168 content: "\F005";
5170 #nav-item-all .nav-inner::before {
5171 content: "\F069";
5173 #nav-item-meta .nav-inner::before {
5174 content: "\F077";
5176 #nav-item-tags .nav-inner::before {
5177 content: "\F02C";
5179 #nav-item-recent-comments > * > span {
5180 display: none;
5182 #nav-item-recent-comments .nav-inner::before,
5183 #nav-item-alignment-forum-comments .nav-inner::before {
5184 content: "\F036";
5186 #nav-item-alignment-forum .nav-inner::before {
5187 content: "AF";
5188 font-family: Concourse, 'Changa One';
5190 #nav-item-questions .nav-inner::before {
5191 content: "?";
5192 font-family: Concourse, 'Changa One';
5194 #nav-item-events .nav-inner::before {
5195 content: "\F5A0";
5197 #nav-item-shortform .nav-inner::before {
5198 content: "\F2F2";
5200 #nav-item-archive .nav-inner::before {
5201 content: "\F187";
5203 #nav-item-about .nav-inner::before {
5204 content: "\F129";
5206 #nav-item-search {
5207 font-size: 2em;
5208 padding: 10px;
5210 #nav-item-search .nav-inner::before {
5211 content: none;
5213 #nav-item-search .nav-inner {
5214 height: 100%;
5215 display: flex;
5217 #nav-item-search input {
5218 width: 100%;
5219 height: 100%;
5221 #nav-item-search button {
5222 height: 100%;
5223 padding: 5px 5px 5px 10px;
5224 width: 40px;
5225 overflow: visible;
5226 visibility: hidden;
5228 #nav-item-search button::before {
5229 content: "\F002";
5230 font-family: Font Awesome;
5231 font-weight: 900;
5232 visibility: visible;
5234 #nav-item-login {
5235 padding: 0;
5237 #nav-item-login .nav-inner::before {
5238 content: "\F007";
5241 @media only screen and (max-width: 520px) {
5242 .nav-bar-top {
5243 font-size: 0.5rem;
5246 #nav-item-search,
5247 #nav-item-search .nav-inner {
5248 padding: 0;
5250 #nav-item-search button {
5251 width: 31px;
5254 #bottom-bar #nav-item-first .nav-inner::after {
5255 content: "First";
5257 #bottom-bar #nav-item-prev .nav-inner::after {
5258 content: "Prev";
5260 #bottom-bar #nav-item-next .nav-inner::after {
5261 content: "Next";
5263 #bottom-bar #nav-item-last .nav-inner::after {
5264 content: "Last";
5268 /*=================*/
5269 /* INBOX INDICATOR */
5270 /*=================*/
5272 @media only screen and (max-width: 900px) {
5273 #inbox-indicator {
5274 width: 100%;
5275 top: 0;
5276 pointer-events: none;
5278 #inbox-indicator::before {
5279 width: 100%;
5280 font-size: 1rem;
5281 text-align: right;
5282 padding: 1px 6px;
5284 #inbox-indicator.new-messages {
5285 pointer-events: auto;
5287 #inbox-indicator.new-messages::before {
5288 box-shadow: 0 0 8px 1px #0090e0 inset;
5291 @media only screen and (max-width: 520px) {
5292 #inbox-indicator::before {
5293 font-size: 0.75rem;
5294 padding: 2px 5px;
5297 @media only screen and (max-width: 374px) {
5298 #inbox-indicator::before {
5299 font-size: 0.625rem;
5303 /*===================*/
5304 /* TOP PAGINATION UI */
5305 /*===================*/
5307 #top-nav-bar {
5308 font-size: 1.75rem;
5311 /*==============*/
5312 /* PAGE TOOLBAR */
5313 /*==============*/
5315 @media only screen and (max-width: 900px) {
5316 #content > .page-toolbar {
5317 font-size: 1rem;
5318 margin-right: 0;
5320 #content.user-page > .page-toolbar {
5321 grid-column: 2 / span 2;
5322 margin: 0 0 6px 0;
5325 @media only screen and (max-width: 520px) {
5326 #content:not(.user-page) .page-toolbar {
5327 display: flex;
5328 flex-direction: column-reverse;
5329 text-align: right;
5330 align-self: start;
5331 padding: 4px 0 0 0;
5333 #content.user-page .page-toolbar {
5334 display: flex;
5335 flex-flow: row;
5336 justify-content: flex-end;
5337 padding: 2px 0 0 0;
5339 #content.user-page .page-toolbar > form,
5340 #content.user-page .page-toolbar > .button {
5341 text-align: center;
5342 flex-basis: 25%;
5343 margin-left: 1.5em;
5345 #content.user-page .page-toolbar .button {
5346 text-transform: uppercase;
5347 font-size: 0.625rem;
5349 #content.user-page .page-toolbar .button::before {
5350 font-size: 1.375rem;
5351 display: block;
5352 padding: 0;
5354 #content.user-page .page-toolbar .rss {
5355 white-space: nowrap;
5356 margin: 0 0 0 1.5em;
5358 .page-toolbar > * {
5359 line-height: 1.15;
5360 padding: 6px 0;
5361 margin: 0;
5365 /*==============*/
5366 /* SUBLEVEL NAV */
5367 /*==============*/
5369 @media only screen and (max-width: 900px) {
5370 .sublevel-nav:not(.sort) {
5371 flex-wrap: wrap;
5372 width: calc(100vw - 200px);
5374 .sublevel-nav:not(.sort) .sublevel-item {
5375 margin: 1px;
5376 flex-basis: 7em;
5379 @media only screen and (max-width: 520px) {
5380 .sublevel-nav:not(.sort) .sublevel-item {
5381 font-size: 1rem;
5385 /*=====================*/
5386 /* SORT ORDER SELECTOR */
5387 /*=====================*/
5389 @media only screen and (max-width: 720px) {
5390 #content.index-page > .sublevel-nav.sort {
5391 flex-flow: column;
5392 margin-left: 4px;
5396 /*==========*/
5397 /* ARCHIVES */
5398 /*==========*/
5400 @media only screen and (max-width: 900px) {
5401 div[class^='archive-nav-'] {
5402 flex-wrap: wrap;
5403 justify-content: flex-start;
5405 .archive-nav *[class^='archive-nav-item'],
5406 .archive-nav *[class^='archive-nav-item']:first-child {
5407 padding: 10px;
5408 margin: 2px;
5409 max-width: unset;
5410 flex: 0 1 calc((100% / 8) - 4px);
5412 .archive-nav .archive-nav-item-day,
5413 .archive-nav .archive-nav-item-day:first-child {
5414 flex-basis: calc((100% / 16) - 4px);
5416 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5417 margin-top: 8px;
5418 position: relative;
5420 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5421 content: "";
5422 display: block;
5423 position: absolute;
5424 height: 1px;
5425 width: calc(100% + 8px);
5426 left: -4px;
5427 top: -4px;
5430 @media only screen and (max-width: 720px) {
5431 .archive-nav .archive-nav-item-day,
5432 .archive-nav .archive-nav-item-day:first-child {
5433 flex-basis: calc((100% / 12) - 4px);
5436 @media only screen and (max-width: 520px) {
5437 .archive-nav *[class^='archive-nav-item'],
5438 .archive-nav *[class^='archive-nav-item']:first-child {
5439 flex-basis: calc((100% / 5) - 4px);
5441 .archive-nav .archive-nav-item-day,
5442 .archive-nav .archive-nav-item-day:first-child {
5443 flex-basis: calc((100% / 8) - 4px);
5447 /*==========*/
5448 /* LISTINGS */
5449 /*==========*/
5451 h1.listing {
5452 max-height: unset;
5455 /*============*/
5456 /* USER PAGES */
5457 /*============*/
5459 #content.user-page h1.page-main-heading {
5460 align-self: end;
5462 @media only screen and (max-width: 520px) {
5463 #content.user-page h1.page-main-heading {
5464 overflow: hidden;
5465 text-overflow: ellipsis;
5467 #content.user-page .user-stats .karma-type {
5468 display: block;
5472 /*============*/
5473 /* LOGIN PAGE */
5474 /*============*/
5476 @media only screen and (max-width: 640px) {
5477 .login-container {
5478 flex-flow: column;
5479 margin: 0 auto 3em auto;
5480 max-width: 400px;
5482 .login-container #login-form,
5483 .login-container #signup-form {
5484 padding: 0 1em 1.25em 1em;
5485 grid-row-gap: 0;
5487 .login-container #signup-form {
5488 padding-top: 1em;
5490 .login-container #login-form > *,
5491 .login-container #signup-form > * {
5492 grid-column: 1 / span 2;
5494 .login-container form label {
5495 text-align: left;
5496 padding: 0;
5497 line-height: 1;
5499 .login-container form input {
5500 margin: 0.25em 0 0.75em 0;
5501 padding: 0.5em;
5503 .login-container form h1 {
5504 grid-column: 1 / span 2;
5505 margin: 0 0 0.25em 0;
5507 .login-container form a {
5508 margin: 0.75em 0 0 0;
5510 .login-container .login-tip {
5511 margin: 1.5em 1em 0 1em;
5515 /*==================*/
5516 /* POSTS & COMMENTS */
5517 /*==================*/
5519 @media only screen and (max-width: 720px) {
5520 .body-text ol > li {
5521 padding: 0 0 0 2.25em;
5523 .body-text ol > li::before {
5524 width: 1.75em;
5526 .body-text ul:not(.contents-list) > li,
5527 .body-text ul:not(.contents-list) > li ul > li {
5528 padding: 0 0 0 0.75em;
5530 .body-text ul:not(.contents-list) > li::before,
5531 .body-text ul:not(.contents-list) > li ul > li::before {
5532 width: 0.125em;
5533 margin-left: -0.06em;
5537 /*===========*/
5538 /* POST-META */
5539 /*===========*/
5541 .post-meta {
5542 line-height: 1.9;
5544 @media only screen and (max-width: 720px) {
5545 .post-meta .lw2-link span,
5546 .post-meta .karma-value span,
5547 .post-meta .comment-count span {
5548 display: none;
5550 .post-meta .comment-count::before {
5551 content: "\F086";
5552 font-family: Font Awesome;
5553 font-size: 0.875em;
5554 margin: 0 0.25em 0 0;
5555 font-weight: 400;
5559 /*===================*/
5560 /* POSTS & BODY TEXT */
5561 /*===================*/
5563 @media only screen and (max-width: 900px) {
5564 .post-body,
5565 h1.post-title,
5566 .tag-description,
5567 .sequence-text {
5568 padding: 0 6px;
5571 @media only screen and (max-width: 520px) {
5572 .post-body {
5573 font-size: 1.2rem;
5574 line-height: 1.45;
5576 h1.post-title {
5577 font-size: 2em;
5581 /*==============*/
5582 /* COMMENT-META */
5583 /*==============*/
5585 a.comment-parent-link::after {
5586 display: none;
5588 @media only screen and (max-width: 900px) {
5589 .comment-meta {
5590 padding: 2px 40px 2px 10px;
5593 @media only screen and (max-width: 720px) {
5594 .comment .karma-value span {
5595 display: none;
5597 .comment-meta .comment-parent-link {
5598 opacity: 1.0;
5601 @media only screen and (max-width: 520px) {
5602 .comment-meta {
5603 padding: 2px 24px 2px 10px;
5604 position: relative;
5606 .comment-meta > * {
5607 order: 3;
5609 .comment-meta > :not(.author) {
5610 line-height: 1.8;
5612 .comment-meta .author,
5613 .comment-meta .date {
5614 order: 1;
5616 .comment-meta:before {
5617 content: "";
5618 order: 2;
5619 flex-basis: 100%;
5621 .comment-post-title2 {
5622 display: block;
5623 text-overflow: ellipsis;
5624 overflow: hidden;
5626 .comment-meta .lw2-link {
5627 display: none;
5631 /*=======================*/
5632 /* COMMENTS COMPACT VIEW */
5633 /*=======================*/
5635 /*===========================*/
5636 /* COMMENT THREAD NAVIGATION */
5637 /*===========================*/
5639 @media only screen and (max-width: 900px) {
5640 a.comment-parent-link {
5641 width: 0;
5642 visibility: hidden;
5643 position: relative;
5645 a.comment-parent-link::before {
5646 padding: 0;
5647 font-size: 1em;
5648 left: 0;
5649 top: 0;
5650 line-height: inherit;
5651 visibility: visible;
5652 content: "\F3BF";
5653 transform: scaleX(-1);
5654 width: 2em;
5655 text-align: center;
5658 @media only screen and (max-width: 520px) {
5659 a.comment-parent-link {
5660 position: static;
5662 a.comment-parent-link::before {
5663 padding: 6px;
5664 left: unset;
5665 right: 0;
5666 top: unset;
5667 bottom: 0;
5668 height: 2em;
5672 /*=================================*/
5673 /* COMMENT THREAD MINIMIZE BUTTONS */
5674 /*=================================*/
5676 @media only screen and (max-width: 520px) {
5677 .comment-minimize-button{
5678 right: 2px;
5682 /*===========================*/
5683 /* COMMENTING AND POSTING UI */
5684 /*===========================*/
5686 @media only screen and (max-width: 900px) {
5687 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5688 font-size: 0;
5690 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5691 font-size: 0.9rem;
5693 .comment-controls .cancel-comment-button {
5694 max-width: 1.3em;
5695 overflow: hidden;
5696 margin-right: 0.125em;
5698 .comment-controls .edit-button::before {
5699 font-size: 0.9375rem;
5701 .comments > .comment-controls .cancel-comment-button {
5702 right: 8px;
5704 .comment-controls .cancel-comment-button::before {
5705 font-size: 1.25rem;
5708 @media only screen and (max-width: 520px) {
5709 .comment-controls {
5710 position: static;
5712 .comment-controls:focus-within {
5713 z-index: 10001;
5715 .comment-controls .cancel-comment-button {
5716 right: 10px;
5718 .textarea-container:focus-within textarea {
5719 position: fixed;
5720 top: 0;
5721 left: 2px;
5722 width: calc(100vw - 4px);
5723 height: calc(100% - 100px);
5724 min-height: unset;
5725 max-height: unset;
5726 border-width: 1px;
5727 z-index: 11001;
5729 #content.conversation-page .textarea-container:focus-within textarea {
5730 height: calc(100% - 54px);
5732 #content.conversation-page .textarea-container:focus-within::after {
5733 content: "";
5734 display: block;
5735 width: 100%;
5736 height: 50px;
5737 position: fixed;
5738 left: 0;
5739 bottom: 0;
5740 z-index: 11000;
5742 .textarea-container:focus-within .guiedit-buttons-container {
5743 position: fixed;
5744 z-index: 11002;
5745 left: 0;
5746 width: 100vw;
5747 height: auto;
5748 background-image: none;
5749 padding: 3px 4px 4px 4px;
5750 margin: 0;
5751 text-align: center;
5752 top: auto;
5753 bottom: 0;
5755 .textarea-container:focus-within button.guiedit {
5756 font-size: 0.9375rem;
5757 line-height: 1.5;
5758 height: auto;
5759 width: calc((100% / 10) - 2px);
5760 padding: 10px 1px 8px 0;
5761 position: relative;
5762 margin: 1px;
5764 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5765 z-index: 11011;
5766 position: fixed;
5767 bottom: 7px;
5768 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5769 font-size: 1.25rem;
5770 padding: 5px 5px 6px 5px;
5771 display: block;
5773 .textarea-container:focus-within button.guiedit sup {
5774 position: absolute;
5775 left: calc(50% + 0.65em);
5776 top: calc(50% - 1.3em);
5778 .textarea-container:focus-within .guiedit-mobile-help-button {
5779 left: 8px;
5781 .textarea-container:focus-within .guiedit-mobile-exit-button {
5782 right: 8px;
5784 .guiedit::after {
5785 display: none;
5788 #markdown-hints,
5789 #edit-post-form #markdown-hints {
5790 z-index: 11111;
5791 position: fixed;
5792 top: 40px;
5793 left: 0;
5794 right: 0;
5795 margin: auto;
5796 padding: 4px 0 4px 8px;
5797 width: 310px;
5798 border-width: 3px;
5799 border-style: double;
5800 pointer-events: none;
5802 #markdown-hints::after {
5803 content: "(Type to hide this help box.)";
5804 color: #9740cb;
5805 display: block;
5806 margin: 12px 18px 13px 10px;
5807 padding: 5px;
5808 font-size: 0.9em;
5809 text-align: center;
5813 /*================*/
5814 /* EDIT POST FORM */
5815 /*================*/
5817 @media only screen and (max-width: 520px) {
5818 #edit-post-form {
5819 padding-bottom: 0;
5821 #edit-post-form .post-meta-fields {
5822 grid-template-columns: 4.5em auto auto auto 1fr auto;
5824 #edit-post-form label[for='url'],
5825 #edit-post-form label[for='section'],
5826 #edit-post-form label[for='title'] {
5827 padding-left: 0;
5829 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5830 white-space: normal;
5831 line-height: 0.9;
5832 top: -1px;
5833 font-family: Font Awesome;
5834 font-weight: 900;
5835 justify-self: start;
5837 #edit-post-form .post-meta-fields .question-checkbox,
5838 #edit-post-form .post-meta-fields .question-checkbox + label {
5839 grid-column: 6;
5840 margin-left: unset;
5842 #edit-post-form .post-meta-fields input[type='radio'] + label {
5843 align-self: start;
5845 #edit-post-form .textarea-container:focus-within textarea {
5846 height: calc(100% - 101px);
5847 min-height: unset;
5850 #markdown-hints-checkbox,
5851 #markdown-hints-checkbox + label {
5852 display: none;
5855 #edit-post-form div:last-child {
5856 clear: both;
5857 overflow: auto;
5859 #edit-post-form input[type='submit'] {
5860 float: none;
5861 display: block;
5862 font-size: 1.5rem;
5863 margin: 1rem auto 1.5rem auto;
5864 padding: 6px 12px 8px 12px;
5867 #edit-post-form .textarea-container .autocomplete-container,
5868 .comment-controls .textarea-container .autocomplete-container {
5869 max-height: calc(50vh - 101px);
5870 position: fixed;
5871 top: 50vh;
5872 left: 4px;
5873 right: 4px;
5874 width: unset;
5875 z-index: 11002;
5879 /*===================*/
5880 /* TABLE OF CONTENTS */
5881 /*===================*/
5883 @media only screen and (max-width: 900px) {
5884 .contents {
5885 float: none;
5886 display: table;
5887 max-width: none;
5888 margin-left: auto;
5889 margin-right: auto;
5892 @media only screen and (max-width: 520px) {
5893 .contents {
5894 max-width: 100%;
5895 margin: 1em auto 0 auto;
5896 display: table;
5898 .contents-head {
5899 font-size: 1.2em;
5901 div.post-body .contents ul {
5902 font-size: unset;
5906 /*========================*/
5907 /* QUALIFIED HYPERLINKING */
5908 /*========================*/
5910 @media only screen and (max-width: 520px) {
5911 .qualified-linking-toolbar {
5912 right: -5em;
5916 } /* END MOBILE LAYOUT */
5919 /*****************/
5920 /* DEFAULT THEME */
5921 /*****************/
5923 /*===========*/
5924 /* VARIABLES */
5925 /*===========*/
5927 /* Color scheme.
5929 :root {
5930 --GW-comment-background-color-odd: #131313;
5931 --GW-comment-background-color-even: #000;
5932 --GW-comment-background-color-target: #00001e;
5934 --GW-toggle-widget-color: #666;
5935 --GW-toggle-widget-hover-color: #aeaeae;
5936 --GW-toggle-widget-shadow-color: rgba(0, 0, 0, 0.5);
5939 /*======*/
5940 /* BASE */
5941 /*======*/
5943 body {
5944 color: #fff;
5945 background-color: #232323;
5946 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
5947 font-feature-settings: 'ss07';
5949 #content {
5950 line-height: 1.55;
5952 #content::before {
5953 background-color: #000;
5954 box-shadow: 0px 0px 10px #9b9b9b;
5957 /*=========*/
5958 /* NAV BAR */
5959 /*=========*/
5961 .nav-inner {
5962 font-size: 1.375em;
5963 font-weight: 600;
5965 .nav-bar-top:not(#primary-bar) .nav-inner {
5966 font-size: 1em;
5969 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5970 #bottom-bar a:hover,
5971 #nav-item-search:not(.nav-current):focus-within {
5972 background-color: #1f1f1f;
5974 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5975 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5976 background-color: #232323;
5979 .nav-bar a:visited {
5980 color: #0cc800;
5982 .nav-bar a:hover,
5983 .nav-bar a:focus {
5984 text-decoration: none;
5985 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5988 #bottom-bar.decorative::before,
5989 #bottom-bar.decorative::after {
5990 content: "GW";
5991 display: block;
5992 text-align: center;
5993 padding: 0.25em 0 1em 0;
5995 #bottom-bar.decorative::before {
5996 width: 100%;
5997 color: transparent;
5998 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5999 background-repeat: repeat-x;
6000 background-position: center 35%;
6001 margin: 0 30px;
6003 #bottom-bar.decorative::after {
6004 color: #232323;
6005 position: absolute;
6006 left: 0;
6007 right: 0;
6008 margin: auto;
6009 background-color: #000;
6010 padding-right: 4px;
6011 padding-left: 4px;
6013 @supports (width: -moz-fit-content) {
6014 #bottom-bar.decorative::after {
6015 width: -moz-fit-content;
6018 @supports (width: fit-content) {
6019 #bottom-bar.decorative::after {
6020 width: fit-content;
6024 /* Accesskey hints */
6026 .nav-inner::after {
6027 display: block;
6028 position: absolute;
6029 left: 5px;
6030 top: -2px;
6031 font-weight: 400;
6032 font-size: 0.7em;
6033 color: #232323;
6035 .inactive-bar .nav-inner::after {
6036 color: #2c2c2c;
6038 .nav-inner:hover::after {
6039 color: #393939;
6042 /* This makes the navbar items look like tabs: */
6044 .nav-inactive {
6045 box-shadow:
6046 0 -1px #232323 inset,
6047 1px 0 #000 inset;
6049 .nav-inactive:first-child {
6050 box-shadow: 0 -1px #232323 inset;
6052 .inactive-bar .nav-inactive {
6053 background-color: #1a1a1a;
6055 .active-bar .nav-inactive {
6056 background-color: #131313;
6058 .nav-bar + .nav-bar {
6059 position: relative;
6062 /* For Webkit: */
6063 .nav-bar:not(#bottom-bar) {
6064 box-shadow: 0 -3px 8px -2px #2c2c2c;
6066 .active-bar .nav-inactive {
6067 box-shadow:
6068 0 -4px 8px -4px #393939 inset,
6069 1px 0 #000 inset;
6071 .active-bar .nav-inactive:first-child {
6072 box-shadow:
6073 0 -4px 8px -4px #393939 inset;
6075 .active-bar .nav-current + .nav-inactive {
6076 box-shadow:
6077 5px -4px 8px -4px #393939 inset;
6079 .active-bar .nav-item-last-before-current {
6080 box-shadow:
6081 -5px -4px 8px -4px #393939 inset,
6082 1px 0 #000 inset;
6084 .active-bar .nav-item-last-before-current:first-child {
6085 box-shadow:
6086 -5px -4px 8px -4px #393939 inset;
6088 /* And for Gecko: */
6089 @-moz-document url-prefix() {
6090 .nav-bar:not(#bottom-bar) {
6091 box-shadow: 0 -3px 4px -2px #2c2c2c;
6094 .active-bar .nav-inactive {
6095 box-shadow:
6096 0 -4px 4px -4px #393939 inset,
6097 1px 0 #000 inset;
6099 .active-bar .nav-inactive:first-child {
6100 box-shadow:
6101 0 -4px 4px -4px #393939 inset;
6103 .active-bar .nav-current + .nav-inactive {
6104 box-shadow:
6105 5px -4px 4px -4px #393939 inset;
6107 .active-bar .nav-item-last-before-current {
6108 box-shadow:
6109 -5px -4px 4px -4px #393939 inset,
6110 1px 0 #000 inset;
6112 .active-bar .nav-item-last-before-current:first-child {
6113 box-shadow:
6114 -5px -4px 4px -4px #393939 inset;
6118 /* Search tab */
6120 #nav-item-search button {
6121 border: none;
6122 font-weight: inherit;
6124 #nav-item-search input::placeholder {
6125 color: #00a1e8;
6126 font-weight: normal;
6129 /*= Top pagination UI hover tooltips =*/
6131 #top-nav-bar a::after,
6132 #bottom-bar a::after {
6133 color: #fff;
6136 /*==============*/
6137 /* PAGE TOOLBAR */
6138 /*==============*/
6140 .button.new-post:not(:hover),
6141 .button.new-private-message:not(:hover),
6142 .button.unignore-button:not(:hover){
6143 color: #9740cb;
6145 .button.logout-button, .button.ignore-button {
6146 color: #0094be;
6149 /*==============*/
6150 /* SUBLEVEL NAV */
6151 /*==============*/
6153 .sublevel-nav .sublevel-item {
6154 color: #777;
6155 background-color: #000;
6157 .sublevel-nav .sublevel-item:not(.selected):hover {
6158 background-color: #1f1f1f;
6159 color: #fff;
6160 text-decoration: none;
6161 text-shadow: none;
6163 .sublevel-nav .sublevel-item:not(.selected):active,
6164 .sublevel-nav .sublevel-item.selected {
6165 background-color: #1f1f1f;
6166 color: #fff;
6167 text-shadow:
6168 0 -1px 0 #000,
6169 0 0.5px 0.5px #fff;
6172 .sublevel-nav:not(.sort) .sublevel-item {
6173 border-style: solid;
6174 border-color: #1f1f1f;
6175 border-width: 1px 0 1px 1px;
6177 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6178 border-radius: 8px 0 0 8px;
6180 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6181 border-width: 1px;
6182 border-radius: 0 8px 8px 0;
6185 /*=====================*/
6186 /* SORT ORDER SELECTOR */
6187 /*=====================*/
6189 .sublevel-nav.sort .sublevel-item {
6190 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6191 letter-spacing: 0.5px;
6192 padding: 6px 7px;
6193 text-transform: uppercase;
6194 pointer-events: auto;
6195 box-shadow: 1px 1px 0 0 #484848 inset;
6197 .sublevel-nav.sort {
6198 border: 2px solid transparent;
6199 padding: 18px 0 0 0;
6200 border-radius: 8px;
6201 pointer-events: none;
6202 background-color: #393939;
6204 .sublevel-nav.sort::before {
6205 text-transform: uppercase;
6206 font-weight: 600;
6207 color: #aeaeae;
6208 text-shadow: 0.5px 0.5px 0 #000;
6209 z-index: 1;
6211 .sublevel-nav.sort::after {
6212 content: "";
6213 position: absolute;
6214 display: block;
6215 top: 0;
6216 left: 0;
6217 width: 100%;
6218 height: 100%;
6219 border-radius: 6px;
6220 box-shadow:
6221 0 18px 0 0 #393939 inset,
6222 0 0 0 1px #484848 inset,
6223 0 18px 0 1px #484848 inset,
6224 0 0 0 2px #393939;
6227 /*================*/
6228 /* WIDTH SELECTOR */
6229 /*================*/
6230 /* THEME SELECTOR */
6231 /*================*/
6233 #width-selector button,
6234 #theme-selector button {
6235 box-shadow:
6236 0 0 0 4px #232323 inset,
6237 0 0 0 5px #393939 inset;
6239 #width-selector button:hover,
6240 #width-selector button.selected,
6241 #theme-selector button:hover,
6242 #theme-selector button.selected {
6243 box-shadow:
6244 0 0 0 5px #393939 inset;
6247 #theme-selector button::before {
6248 color: #575756;
6249 background-color: #232323;
6251 #theme-selector button:hover::before,
6252 #theme-selector button.selected::before {
6253 color: #888;
6255 #width-selector button::after {
6256 color: #575756;
6259 /*======================*/
6260 /* THEME TWEAKER TOGGLE */
6261 /*======================*/
6263 #theme-tweaker-toggle button {
6264 color: #777;
6267 /*=================*/
6268 /* QUICKNAV WIDGET */
6269 /*=================*/
6271 #quick-nav-ui a {
6272 color: #575756;
6273 background-color: #1a1a1a;
6274 border-radius: 4px;
6275 text-decoration: none;
6277 #quick-nav-ui a[href='#bottom-bar'] {
6278 line-height: 1.8;
6280 #quick-nav-ui a:active {
6281 transform: scale(0.9);
6283 #quick-nav-ui a[href='#comments'].no-comments {
6284 opacity: 0.4;
6285 color: #393939;
6287 @media only screen and (hover:hover) {
6288 #quick-nav-ui a:hover {
6289 color: #fff;
6290 background-color: #131313;
6292 #quick-nav-ui a:focus:not(:hover) {
6293 transform: none;
6294 text-shadow: none;
6298 /*======================*/
6299 /* NEW COMMENT QUICKNAV */
6300 /*======================*/
6302 #new-comment-nav-ui .new-comments-count {
6303 font-weight: 600;
6304 color: #888;
6305 text-shadow: 0.5px 0.5px 0 #000;
6307 #new-comment-nav-ui .new-comments-count::after {
6308 font-weight: 600;
6309 color: #777;
6311 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6312 color: #393939;
6313 text-shadow: none;
6315 @media only screen and (hover:hover) {
6316 #new-comment-nav-ui .new-comments-count:hover {
6317 text-shadow:
6318 0 0 1px #000,
6319 0 0 3px #000,
6320 0 0 5px #000,
6321 0 0 8px #000,
6322 0.5px 0.5px 0 #000;
6324 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6325 color: #00a1e8;
6326 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6330 /*=================*/
6331 /* HNS DATE PICKER */
6332 /*=================*/
6334 #hns-date-picker span {
6335 color: #777;
6336 text-shadow: 0.5px 0.5px 0 #000;
6337 font-weight: 600;
6339 #hns-date-picker input {
6340 border: 1px solid #777;
6341 background-color: transparent;
6342 color: #888;
6343 box-shadow: 0 0 0 1px transparent;
6345 #hns-date-picker input:focus {
6346 color: #fff;
6349 /*======================*/
6350 /* ANTI-KIBITZER TOGGLE */
6351 /*======================*/
6353 #anti-kibitzer-toggle button::before,
6354 #anti-kibitzer-toggle button::after {
6355 background-color: var(--GW-toggle-widget-color);
6356 -webkit-background-clip: text;
6357 color: transparent;
6358 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
6360 #anti-kibitzer-toggle button:hover::before,
6361 #anti-kibitzer-toggle button:hover::after {
6362 background-color: var(--GW-toggle-widget-hover-color);
6365 /*======================*/
6366 /* TEXT SIZE ADJUSTMENT */
6367 /*======================*/
6369 #text-size-adjustment-ui button {
6370 color: #777;
6372 #text-size-adjustment-ui button.default {
6373 font-weight: 600;
6375 #text-size-adjustment-ui button:disabled:hover {
6376 text-shadow: none;
6378 #text-size-adjustment-ui::after {
6379 color: #575756;
6382 /*=============================*/
6383 /* COMMENTS VIEW MODE SELECTOR */
6384 /*=============================*/
6386 #comments-view-mode-selector a {
6387 color: #777;
6390 /*==========*/
6391 /* ARCHIVES */
6392 /*==========*/
6394 .archive-nav {
6395 border: 1px solid #484848;
6397 .archive-nav *[class^='archive-nav-item'] {
6398 border-style: solid;
6399 border-color: #1f1f1f;
6400 border-width: 1px 0 1px 1px;
6401 background-color: #131313;
6403 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6404 border-top-width: 0;
6405 border-bottom-width: 0;
6407 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6408 border-bottom-width: 1px;
6410 .archive-nav *[class^='archive-nav-item']:last-child {
6411 border-right-width: 1px;
6413 .archive-nav span[class^='archive-nav-item'] {
6414 font-weight: bold;
6415 background-color: #1f1f1f;
6418 .archive-nav a:link,
6419 .archive-nav a:visited {
6420 color: rgba(12, 200, 0, 0.7);
6422 .archive-nav a:hover {
6423 text-decoration: none;
6424 color: #00a9ed;
6425 background-color: #1d1d1d;
6426 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6428 .archive-nav a:active {
6429 transform: scale(0.9);
6431 .archive-nav a:focus:not(:hover) {
6432 transform: none;
6434 .archive-nav a.archive-nav-item-day:hover {
6435 background-color: #1f1f1f;
6438 /*==========*/
6439 /* LISTINGS */
6440 /*==========*/
6442 h1.listing {
6443 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
6444 font-weight: 800;
6445 margin: 0.7em 20px 0 20px;
6446 max-width: calc(100% - 40px);
6447 top: 0.125em; ;
6450 h1.listing .post-title-link {
6451 color: #fff;
6453 h1.listing .link-post-link {
6454 color: #54d400;
6457 @media only screen and (hover: hover) {
6458 h1.listing a:hover,
6459 h1.listing a:focus {
6460 color: #777;
6461 background-color: rgba(0, 0, 0, 0.85);
6463 h1.listing:focus-within::before {
6464 color: #00c200;
6465 left: -0.625em;
6467 h1.listing .link-post-link:hover {
6468 color: #670;
6469 text-shadow:
6470 0.5px 0.5px 0 #000,
6471 -0.5px -0.5px 0 #000,
6472 0 0 2px #000,
6473 0 0 3px #54d400;
6477 h1.listing .edit-post-link {
6478 padding: 5px 3px 12px 0.5em;
6479 top: 0;
6480 right: 0;
6482 h1.listing .edit-post-link:hover {
6483 text-decoration: none;
6485 #content.user-page h1.listing .edit-post-link {
6486 background-color: #131313;
6489 /*======*/
6490 /* SPAM */
6491 /*======*/
6493 h1.listing.spam {
6494 opacity: 0.15;
6496 h1.listing.spam + .post-meta {
6497 opacity: 0.4;
6499 h1.listing.spam:hover,
6500 h1.listing.spam + .post-meta:hover,
6501 h1.listing.spam:hover + .post-meta {
6502 opacity: 1.0;
6505 /*===================*/
6506 /* LISTING POST-META */
6507 /*===================*/
6509 h1.listing + .post-meta {
6510 padding-right: 330px;
6512 h1.listing + .post-meta .karma-value,
6513 h1.listing + .post-meta .comment-count,
6514 h1.listing + .post-meta .lw2-link,
6515 h1.listing + .post-meta .read-time {
6516 border-radius: 4px;
6517 padding: 0 4px 0 2px;
6518 text-shadow: 0.5px 0.5px 0.5px #575756;
6519 margin: 0 0.25em 0 0.5em;
6520 position: absolute;
6521 line-height: 1.15;
6522 bottom: -6px;
6524 h1.listing + .post-meta .karma-value span,
6525 h1.listing + .post-meta .comment-count span,
6526 h1.listing + .post-meta .lw2-link span,
6527 h1.listing + .post-meta .read-time span {
6528 display: none;
6530 h1.listing + .post-meta .karma-value::before,
6531 h1.listing + .post-meta .comment-count::before,
6532 h1.listing + .post-meta .lw2-link::before,
6533 h1.listing + .post-meta .read-time::before {
6534 color: #000;
6535 font-family: 'Font Awesome', 'Font Awesome 5 Free';
6536 font-weight: 900;
6537 margin: 0 8px 0 0;
6538 box-shadow: 0 0 0 2px #1f1f1f;
6540 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
6541 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
6542 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
6543 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
6544 text-shadow: 0 0 3px #575756;
6547 h1.listing + .post-meta .karma {
6548 margin: 0;
6550 h1.listing + .post-meta .karma-value {
6551 box-shadow:
6552 22px 0 0 0 #1f1f1f inset,
6553 0 0 0 3px #1f1f1f;
6554 cursor: default;
6555 color: #00a9ed;
6556 right: 264px;
6558 h1.listing + .post-meta .karma-value::before {
6559 content: "\F139";
6560 text-shadow: none;
6561 font-size: 0.9375em;
6562 line-height: 1.3;
6565 h1.listing + .post-meta .comment-count::before {
6566 content: "\F086";
6568 h1.listing + .post-meta .comment-count {
6569 box-shadow:
6570 25px 0 0 0 #1f1f1f inset,
6571 0 0 0 3px #1f1f1f;
6572 color: #9e4acf;
6573 right: 176px;
6575 h1.listing + .post-meta .comment-count:hover {
6576 text-decoration: none;
6577 color: #000;
6578 background-color: #9e4acf;
6580 h1.listing + .post-meta .comment-count:hover::before {
6581 color: #9e4acf;
6583 h1.listing + .post-meta .comment-count.new-comments::before {
6584 color: #9e4acf;
6585 text-shadow: 0.5px 0.5px 0.5px #000;
6587 h1.listing + .post-meta .comment-count.new-comments:hover::before {
6588 text-shadow: 0.5px 0.5px 0.5px #575756;
6592 h1.listing + .post-meta .lw2-link {
6593 box-shadow:
6594 23px 0 0 0 #1f1f1f inset,
6595 0 0 0 3px #1f1f1f;
6596 right: 0;
6598 h1.listing + .post-meta .lw2-link::before {
6599 content: "\F0C1";
6601 h1.listing + .post-meta .lw2-link:hover {
6602 text-decoration: none;
6603 color: #000;
6604 background-color: #00c200;
6606 h1.listing + .post-meta .lw2-link:hover::before {
6607 color: #00c200;
6610 h1.listing + .post-meta .read-time {
6611 box-shadow:
6612 21px 0 0 0 #1f1f1f inset,
6613 0 0 0 3px #1f1f1f;
6614 right: 80px;
6616 h1.listing + .post-meta .read-time::before {
6617 content: "\F2F2";
6618 cursor: pointer;
6620 h1.listing + .post-meta .read-time::after {
6621 content: " min";
6623 h1.listing + .post-meta .read-time:hover::before {
6624 color: #777;
6627 h1.listing + .post-meta .word-count {
6628 box-shadow:
6629 22px 0 0 0 #1f1f1f inset,
6630 0 0 0 3px #1f1f1f;
6631 padding: 0 4px 0 4px;
6633 h1.listing + .post-meta .word-count::before {
6634 content: "\F15C";
6635 margin: 0 10px 0 0;
6637 h1.listing + .post-meta .read-time.word-count::after {
6638 content: none;
6641 h1.listing + .post-meta .link-post-domain {
6642 margin: 0 0 0 0.5em;
6645 h1.listing + .post-meta::after {
6646 content: "";
6647 display: block;
6648 height: 1px;
6649 width: 100%;
6650 background-color: #1f1f1f;
6651 position: absolute;
6652 bottom: -14px;
6655 /*============*/
6656 /* USER PAGES */
6657 /*============*/
6659 #content.user-page h1.page-main-heading,
6660 #content.user-page .user-stats {
6661 border-bottom: 1px solid #2c2c2c;
6664 #content.user-page h1.listing,
6665 #content.user-page h1.listing + .post-meta {
6666 background-color: #131313;
6667 border-style: solid;
6668 border-color: #2c2c2c;
6670 #content.user-page h1.listing {
6671 padding: 0 6px;
6672 padding-top: 0.25em;
6673 border-width: 1px 1px 0 1px;
6674 margin: 1rem 0 0 0;
6675 max-width: 100%;
6677 #content.own-user-page h1.listing,
6678 h1.listing.own-post-listing {
6679 padding-right: 36px;
6681 @media only screen and (hover: hover) {
6682 #content.user-page h1.listing a:hover,
6683 #content.user-page h1.listing a:focus {
6684 background-color: #131313;
6686 #content.user-page h1.listing:focus-within::before {
6687 left: -0.625em;
6690 #content.user-page h1.listing + .post-meta {
6691 padding: 0.125em 6px 1em 36px;
6692 border-width: 0 1px 1px 1px;
6693 margin: 0 0 1rem 0;
6695 #content.user-page h1.listing + .post-meta::after {
6696 display: none;
6698 @media only screen and (min-width: 521px) {
6699 #content.user-page h1.listing + .post-meta .karma-value,
6700 #content.user-page h1.listing + .post-meta .comment-count,
6701 #content.user-page h1.listing + .post-meta .lw2-link,
6702 #content.user-page h1.listing + .post-meta .read-time {
6703 bottom: 10px;
6706 #content.user-page h1.listing + .post-meta .post-section::before {
6707 left: -1px;
6710 #content.conversations-user-page h1.listing {
6711 padding: 4px 6px;
6712 font-size: 1.75rem;
6714 #content.conversations-user-page h1.listing + .post-meta {
6715 padding: 6px 4px;
6716 margin: 0 0 0.25rem 0;
6719 .user-stats .karma-total {
6720 font-weight: bold;
6723 /*===============*/
6724 /* CONVERSATIONS */
6725 /*===============*/
6727 /*============*/
6728 /* LOGIN PAGE */
6729 /*============*/
6731 .login-container form input[type='submit'] {
6732 font-weight: bold;
6733 background-color: #131313;
6734 border: 1px solid #2c2c2c;
6736 .login-container form input[type='submit']:hover,
6737 .login-container form input[type='submit']:focus {
6738 background-color: #1f1f1f;
6739 border: 1px solid #484848;
6742 /* “Create account” form */
6744 #signup-form {
6745 background-color: #0f0f0f;
6746 border: 1px solid #1f1f1f;
6748 #signup-form input[type='submit'] {
6749 background-color: #1a1a1a;
6750 border: 1px solid #2c2c2c;
6752 #signup-form input[type='submit']:hover {
6753 background-color: #232323;
6754 border: 1px solid #484848;
6757 /* Log in tip */
6759 .login-container .login-tip {
6760 border: 1px solid #131313;
6763 /* Message box */
6765 .error-box {
6766 border: 1px solid red;
6767 background-color: #004147;
6769 .success-box {
6770 border: 1px solid green;
6771 background-color: #320042;
6774 /*=====================*/
6775 /* PASSWORD RESET PAGE */
6776 /*=====================*/
6778 .reset-password-container input[type='submit'] {
6779 background-color: #1a1a1a;
6780 border: 1px solid #2c2c2c;
6781 font-weight: bold;
6784 /*===================*/
6785 /* TABLE OF CONTENTS */
6786 /*===================*/
6788 .contents {
6789 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6790 border: 1px solid #1f1f1f;
6791 background-color: #131313;
6793 .contents-head {
6794 font-weight: bold;
6796 .post-body .contents li::before {
6797 color: #575756;
6798 font-feature-settings: "tnum";
6800 .post-body .contents a,
6801 .post-body .contents a:hover {
6802 border: none;
6804 .post-body .contents a:hover {
6805 text-decoration: underline;
6808 /*==================*/
6809 /* POSTS & COMMENTS */
6810 /*==================*/
6812 .body-text {
6813 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6816 .body-text a {
6817 border-bottom: 1px dotted #393939;
6819 .body-text a:hover {
6820 text-decoration: none;
6821 border-bottom: 1px solid currentColor;
6824 /*=======*/
6825 /* POSTS */
6826 /*=======*/
6828 h1.post-title {
6829 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6830 font-weight: 800;
6833 /*=================*/
6834 /* POST NAVIGATION */
6835 /*=================*/
6837 .post-nav-links a,
6838 .post-nav-links a:visited {
6839 color: #fff;
6841 .post-nav-links a:hover {
6842 text-decoration: none;
6844 .post-nav-title {
6845 font-weight: 600;
6848 .post-nav-label {
6849 color: #777;
6851 .post-nav-links a:hover .post-nav-label {
6852 font-weight: 600;
6853 color: #666;
6855 .post-nav-links a:hover .post-nav-title {
6856 color: #777;
6859 @media only screen and (max-width: 900px) {
6860 .sequence-title {
6861 border-top: 1px dotted #777;
6863 .post-nav.prev {
6864 border-right: 1px dotted #777;
6866 .post-nav.next {
6867 border-left: 1px dotted #777;
6871 .crosspost {
6872 background-color: #131313;
6873 border: 1px solid #2c2c2c;
6876 /*===========*/
6877 /* POST-META */
6878 /*===========*/
6880 .post-meta .post-section::before,
6881 .comment-meta .alignment-forum {
6882 color: #000;
6883 text-shadow:
6884 1px 1px 0 #9740cb,
6885 0 1px 0 #9740cb,
6886 0 0 5px #9740cb;
6888 a.post-section:hover {
6889 text-decoration: none;
6891 a.post-section:hover::before {
6892 color: #2e0062;
6894 .post-meta .post-section.alignment-forum::before,
6895 .comment-meta .alignment-forum {
6896 text-shadow:
6897 1px 1px 0 #658100,
6898 0 1px 0 #658100,
6899 0 0 5px #658100;
6901 a.post-section.alignment-forum:hover::before {
6902 color: #181a00;
6904 .post-meta .date {
6905 color: #666;
6907 .post-meta .author {
6908 color: #9740cb;
6910 .bottom-post-meta {
6911 border-color: #1f1f1f;
6914 /*============*/
6915 /* LINK POSTS */
6916 /*============*/
6918 .post.link-post a.link-post-link {
6919 text-decoration: none;
6920 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6921 font-weight: 600;
6923 .post.link-post a.link-post-link:hover {
6924 color: #00a9ed;
6926 .post.link-post a.link-post-link:hover::before {
6927 color: #670;
6928 text-shadow:
6929 0.5px 0.5px 0 #000,
6930 -0.5px -0.5px 0 #000,
6931 0 0 2px #000,
6932 0 0 3px #54d400;
6934 .post.link-post a.link-post-link:focus {
6935 color: #777;
6936 border-bottom: 2px dotted #777;
6939 /*==========*/
6940 /* COMMENTS */
6941 /*==========*/
6943 .comments::before {
6944 border-top: 1px solid #fff;
6945 box-shadow: 0 3px 4px -4px #fff inset;
6947 @-moz-document url-prefix() {
6948 .comments::before {
6949 box-shadow: 0 3px 3px -4px #fff inset;
6952 #content > .comment-thread .comment-meta a.date:focus,
6953 #content > .comment-thread .comment-meta a.permalink:focus {
6954 color: #666;
6955 outline: 2px dotted #575756;
6956 position: relative;
6957 background-color: #000;
6959 #content > .comment-thread .comment-meta a.date:focus {
6960 padding: 0 4px;
6961 left: -4px;
6963 #content > .comment-thread .comment-meta a.date:focus + * {
6964 margin-left: -8px;
6966 #content > .comment-thread .comment-meta a.permalink:focus {
6967 padding: 0 5px;
6968 left: -5px;
6970 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6971 margin-left: -10px;
6973 .comment-item {
6974 border: 1px solid #2c2c2c;
6975 background-color: var(--GW-comment-background-color);
6977 .comment-parent-link::after {
6978 box-shadow:
6979 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6980 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6981 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6984 /*================================*/
6985 /* DEEP COMMENT THREAD COLLAPSING */
6986 /*================================*/
6988 .comment-item input[id^="expand"] + label::after {
6989 color: #0cc800;
6990 font-weight: 600;
6992 .comment-item input[id^="expand"] + label:hover::after {
6993 color: #00a9ed;
6995 .comment-item input[id^="expand"] + label:active::after,
6996 .comment-item input[id^="expand"] + label:focus::after{
6997 color: #00a9ed;
6999 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
7000 border-width: 1px 0 0 0;
7003 /*==============*/
7004 /* COMMENT-META */
7005 /*==============*/
7007 .comment-meta .author {
7008 font-weight: bold;
7009 font-size: 1.25em;
7010 color: #fff;
7012 .comment-meta .author:hover {
7013 text-decoration: none;
7014 color: #9740cb;
7016 .comment-item .author:not(.redacted).original-poster::after {
7017 opacity: 0.5;
7020 .comment-item .voting-controls.active-controls::after,
7021 .comment-item .voting-controls .karma-value::after,
7022 .post .voting-controls.active-controls::after,
7023 .post .voting-controls .karma-value::after,
7024 .author::before {
7025 background-color: #000;
7026 color: #575756;
7027 border-radius: 4px;
7028 box-shadow: 0 0 0 1px #1f1f1f inset;
7030 .comment-item .voting-controls.active-controls::after,
7031 .post .voting-controls.active-controls::after {
7032 padding: 6px 4px 4px 4px;
7033 bottom: -44px;
7035 .comment-item .voting-controls .karma-value::after,
7036 .post .voting-controls .karma-value::after {
7037 padding: 2px 8px 1px 8px;
7038 top: -25px;
7039 min-width: 56px;
7042 /*====================*/
7043 /* ANTI-KIBITZER MODE */
7044 /*====================*/
7046 .author.redacted,
7047 .inline-author.redacted {
7048 opacity: 0.6;
7049 font-weight: 400;
7052 .karma-value.redacted {
7053 opacity: 0.4;
7056 .link-post-domain.redacted {
7057 opacity: 0.4;
7060 /*===========================*/
7061 /* COMMENT THREAD NAVIGATION */
7062 /*===========================*/
7064 div.comment-parent-link {
7065 font-weight: 600;
7067 a.comment-parent-link {
7068 font-weight: 400;
7070 a.comment-parent-link::before {
7071 color: #393939;
7073 a.comment-parent-link:hover::before {
7074 background-color: #00001e;
7075 color: #575756;
7078 div.comment-child-links {
7079 font-weight: 600;
7081 div.comment-child-links a {
7082 font-weight: 400;
7084 .comment-child-link::before {
7085 color: #484848;
7088 .comment-item-highlight {
7089 box-shadow:
7090 0 0 2px #0047b5,
7091 0 0 3px #0047b5,
7092 0 0 5px #0047b5,
7093 0 0 7px #0047b5,
7094 0 0 10px #0047b5;
7095 border: 1px solid #0047b5;
7097 .comment-item-highlight-faint {
7098 box-shadow:
7099 0 0 2px #00193b,
7100 0 0 3px #00193b,
7101 0 0 5px #00193b,
7102 0 0 7px #00193b,
7103 0 0 10px #00193b;
7104 border: 1px solid #00193b;
7107 .comment-popup {
7108 background-color: #000;
7111 /*=======================*/
7112 /* COMMENTS COMPACT VIEW */
7113 /*=======================*/
7115 #comments-list-mode-selector button {
7116 box-shadow:
7117 0 0 0 4px #000 inset,
7118 0 0 0 5px #393939 inset;
7120 #comments-list-mode-selector button:hover,
7121 #comments-list-mode-selector button.selected {
7122 box-shadow:
7123 0 0 0 5px #393939 inset;
7125 #content.compact > .comment-thread .comment-item::after {
7126 color: #0cc800;
7127 background: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
7130 @media only screen and (hover: hover) {
7131 #content.compact > .comment-thread .comment-item:hover .comment,
7132 #content.compact > .comment-thread .comment-item.expanded .comment {
7133 background-color: #000;
7134 outline: 3px solid #54d400;
7136 #content.compact > .comment-thread .comment-item:hover .comment::before,
7137 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7138 background-color: #000;
7139 box-shadow:
7140 0 0 3px #000,
7141 0 0 5px #000,
7142 0 0 7px #000,
7143 0 0 10px #000,
7144 0 0 20px #000,
7145 0 0 30px #000,
7146 0 0 40px #000;
7149 @media only screen and (hover: none) {
7150 #content.compact > .comment-thread.expanded .comment-item .comment {
7151 background-color: #000;
7152 outline: 3px solid #54d400;
7154 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7155 background-color: #000;
7156 box-shadow:
7157 0 0 3px #000,
7158 0 0 5px #000,
7159 0 0 7px #000,
7160 0 0 10px #000,
7161 0 0 20px #000,
7162 0 0 30px #000,
7163 0 0 40px #000;
7167 #content.user-page.compact > h1.listing {
7168 margin-top: 0.5rem;
7170 #content.user-page.compact > h1.listing + .post-meta {
7171 margin-bottom: 0.5rem;
7174 /*===========================*/
7175 /* HIGHLIGHTING NEW COMMENTS */
7176 /*===========================*/
7178 .new-comment::before {
7179 outline: 2px solid #7f3b92;
7180 box-shadow:
7181 0 0 6px -2px #7f3b92 inset,
7182 0 0 4px #7f3b92,
7183 0 0 6px #7f3b92;
7186 /*=================================*/
7187 /* COMMENT THREAD MINIMIZE BUTTONS */
7188 /*=================================*/
7190 .comment-minimize-button {
7191 color: #2c2c2c;
7193 .comment-minimize-button:hover {
7194 color: #484848;
7195 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7197 .comment-minimize-button::after {
7198 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7199 color: #777;
7201 .comment-minimize-button.maximized::after {
7202 color: #2c2c2c;
7205 /*==============*/
7206 /* VOTE BUTTONS */
7207 /*==============*/
7209 .vote::before {
7210 content: "";
7211 border-radius: 50%;
7212 background-size: 17px 17px;
7213 width: 17px;
7214 height: 17px;
7215 display: inline-block;
7216 position: relative;
7217 top: 2.5px;
7219 .vote:active {
7220 transform: none;
7223 /**********/
7224 /* States.
7227 /* _ 1
7229 .upvote {
7230 filter: grayscale(100%) brightness(128%);
7232 .downvote {
7233 filter: grayscale(100%) brightness(188%);
7236 /* _ 2
7238 .vote:not(.none) {
7239 filter: drop-shadow(0 0 1px #000);
7242 /* 1 _
7244 .vote.two-temp::before {
7245 box-shadow:
7246 0 0 0 1px #000,
7247 0 0 0 4px #2f2f2f,
7248 0 0 0 5px transparent;
7251 /* 2 _
7253 .upvote.two::before {
7254 box-shadow:
7255 0 0 0 1px #000,
7256 0 0 0 4px var(--GW-upvote-button-color),
7257 0 0 0 5px transparent;
7259 .downvote.two::before {
7260 box-shadow:
7261 0 0 0 1px #000,
7262 0 0 0 4px var(--GW-downvote-button-color),
7263 0 0 0 5px transparent;
7266 /* Disabled.
7268 .vote:disabled {
7269 visibility: unset;
7270 filter: brightness(50%);
7273 /*********/
7274 /* Icons.
7277 .karma .upvote::before {
7278 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7280 .karma .downvote::before {
7281 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7284 .karma .upvote:disabled::before {
7285 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiBzdHJva2U9IiNEOEQ4RDgiIHN0cm9rZS13aWR0aD0iNCUiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
7287 .karma .downvote:disabled::before {
7288 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7291 .agreement .upvote::before {
7292 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgZmlsbD0iIzAwRDgwMCIvPjwvc3ZnPg==');
7294 .agreement .downvote::before {
7295 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIGZpbGw9IiNFQjRDMkEiLz48L3N2Zz4=');
7298 .agreement .upvote:disabled::before {
7299 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7301 .agreement .downvote:disabled::before {
7302 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7305 /*===========================*/
7306 /* COMMENTING AND POSTING UI */
7307 /*===========================*/
7309 .posting-controls input[type='submit'] {
7310 background-color: #000;
7311 border: 1px solid #484848;
7312 font-weight: bold;
7314 .posting-controls input[type='submit']:hover,
7315 .posting-controls input[type='submit']:focus {
7316 background-color: #1f1f1f;
7317 border: 1px solid #575756;
7320 .comment-controls .cancel-comment-button {
7321 font-weight: 600;
7322 color: #00a9ed;
7323 text-shadow:
7324 0 0 1px #000,
7325 0 0 2px #000;
7327 .comment-controls .cancel-comment-button:hover {
7328 color: #0090e0;
7329 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7332 .new-comment-button {
7333 font-weight: 600;
7336 .comment-controls .delete-button,
7337 .comment-controls .retract-button {
7338 color: #00bbf5;
7339 opacity: 0.85;
7341 .comment-controls .edit-button,
7342 .comment-controls .unretract-button {
7343 color: #9740cb;
7345 .comment-controls .action-button:hover {
7346 color: #0090e0;
7347 opacity: 1.0;
7350 .button.edit-post-link:not(:hover) {
7351 color: #9740cb;
7354 .posting-controls textarea {
7355 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
7356 color: #fff;
7357 background-color: #000;
7358 border-color: #484848;
7359 box-shadow:
7360 0 0 0 1px #131313 inset;
7362 .posting-controls textarea:focus {
7363 background-color: #00001e;
7364 border-color: #0cc800;
7365 box-shadow:
7366 0 0 0 1px #1d1f00 inset,
7367 0 0 0 1px #000,
7368 0 0 0 2px #0cc800;
7370 .posting-controls.edit-existing-post textarea:focus,
7371 .posting-controls form.edit-existing-comment textarea:focus {
7372 border-color: #9740cb;
7373 box-shadow:
7374 0 0 0 1px #3d0061 inset,
7375 0 0 0 1px #000,
7376 0 0 0 2px #9740cb;
7379 /*= Scroll bars =*/
7381 .posting-controls textarea::-webkit-scrollbar,
7382 .textarea-container .autocomplete-container::-webkit-scrollbar {
7383 width: 16px;
7384 background-color: transparent;
7386 .posting-controls textarea::-webkit-scrollbar-track,
7387 .textarea-container .autocomplete-container::-webkit-scrollbar-track {
7388 background-color: #131313;
7389 border-left: 1px solid #484848;
7390 border-top: 1px solid #131313;
7392 .posting-controls textarea:focus::-webkit-scrollbar-track,
7393 .textarea-container .autocomplete-container::-webkit-scrollbar-track {
7394 border-left: 1px solid #0cc800;
7395 border-top: 1px solid #1d1f00;
7397 .posting-controls textarea::-webkit-scrollbar-thumb {
7398 background-color: #484848;
7399 box-shadow: 0 0 0 1px #131313 inset;
7400 border-left: 1px solid #484848;
7402 .posting-controls textarea:focus::-webkit-scrollbar-thumb,
7403 .textarea-container .autocomplete-container::-webkit-scrollbar-thumb {
7404 border-left: 1px solid #0cc800;
7405 background-color: #40a800;
7406 box-shadow:
7407 0 1px 0 0 #1d1f00 inset,
7408 0 0 0 1px #131313 inset;
7411 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7412 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7413 border-left: 1px solid #9740cb;
7415 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7416 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7417 border-left: 1px solid #9740cb;
7418 background-color: #8533c2;
7421 /* GUIEdit buttons */
7423 .guiedit-buttons-container {
7424 background-image: linear-gradient(to bottom, #000 0%, #1d1f00 50%, #252c00 75%, #344700 100%);
7427 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7428 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7429 color: #ce92ee;
7431 .guiedit-buttons-container button {
7432 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
7435 .guiedit::after {
7436 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7437 color: #777;
7438 text-shadow: none;
7441 /* Markdown hints */
7443 #markdown-hints-checkbox + label {
7444 color: #0cc800;
7446 #markdown-hints-checkbox + label:hover {
7447 color: #0098e4;
7448 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7450 #markdown-hints {
7451 border: 1px solid #00a9ed;
7452 background-color: #000340;
7455 /*================*/
7456 /* EDIT POST FORM */
7457 /*================*/
7459 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7460 top: -1px;
7462 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7463 border-radius: 3px;
7464 border: 1px solid #1f1f1f;
7465 color: #777;
7467 @media only screen and (hover:hover) {
7468 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7469 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7470 text-shadow:
7471 0 0 1px #000,
7472 0 0 2px #000,
7473 0 0 2.5px #484848;
7475 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7476 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7477 border-color: #484848;
7480 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7481 content: "\F00C";
7483 #edit-post-form input[type='radio'] + label {
7484 color: #777;
7485 border-color: #1f1f1f;
7486 padding: 4px 12px 5px 12px;
7488 #edit-post-form input[type='radio'][value='all'] + label {
7489 border-radius: 8px 0 0 8px;
7490 border-width: 1px;
7492 #edit-post-form input[type='radio'][value='drafts'] + label {
7493 border-radius: 0 8px 8px 0;
7495 @media only screen and (hover:hover) {
7496 #edit-post-form input[type='radio'] + label:hover,
7497 #edit-post-form input[type='radio']:focus + label {
7498 background-color: #1f1f1f;
7499 color: #fff;
7502 #edit-post-form input[type='radio']:focus + label {
7503 color: #fff;
7504 box-shadow:
7505 0 0 0 1px #484848;
7507 #edit-post-form input[type='radio']:checked + label {
7508 background-color: #1f1f1f;
7509 border-color: #1f1f1f;
7510 color: #fff;
7511 text-shadow:
7512 0 -1px 0 #000,
7513 0 0.5px 0.5px #fff;
7516 /*=======*/
7517 /* LINKS */
7518 /*=======*/
7521 text-decoration: none;
7522 color: #0cc800;
7524 a:visited {
7525 color: #76cc54;
7527 a:hover {
7528 text-decoration: underline;
7531 /*=========*/
7532 /* BUTTONS */
7533 /*=========*/
7535 button,
7536 input[type='submit'] {
7537 color: #0cc800;
7540 button:active,
7541 input[type='submit']:active {
7542 color: #0090e0;
7543 transform: scale(0.9);
7545 .button:visited {
7546 color: #0cc800;
7548 .button:active {
7549 transform: scale(0.9);
7551 @-moz-document url-prefix() {
7552 .button:active {
7553 transform: none;
7557 @media only screen and (hover:hover) {
7558 button:hover,
7559 input[type='submit']:hover,
7560 button:focus,
7561 input[type='submit']:focus {
7562 color: #0090e0;
7563 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7566 .button:hover {
7567 color: #0090e0;
7568 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7569 text-decoration: none;
7571 .button:focus:not(:hover) {
7572 transform: none;
7576 /*==========*/
7577 /* HEADINGS */
7578 /*==========*/
7580 .body-text h1,
7581 .body-text h2,
7582 .body-text h4 {
7583 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7585 .body-text h3,
7586 .body-text h5,
7587 .body-text h6 {
7588 font-weight: 600;
7589 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7591 .body-text h6 {
7592 color: #9b9b9b;
7594 .body-text h1 {
7595 border-bottom: 1px solid #484848;
7598 /*========*/
7599 /* QUOTES */
7600 /*========*/
7602 blockquote {
7603 border-left: 5px solid #2c2c2c;
7606 /*========*/
7607 /* IMAGES */
7608 /*========*/
7610 #content img,
7611 #content figure.image img {
7612 border: 1px solid #2c2c2c;
7614 #content figure img {
7615 border: 1px solid #fff;
7617 #content img[src$='.svg'],
7618 #content figure img[src$='.svg'] {
7619 border: none;
7621 #content img[style^='float'] {
7622 border: 1px solid transparent;
7625 /*========*/
7626 /* TABLES */
7627 /*========*/
7629 #content:not(.tag-index-page) .body-text table,
7630 #content:not(.tag-index-page) .body-text table th,
7631 #content:not(.tag-index-page) .body-text table td {
7632 border: 1px solid #2c2c2c;
7635 /*======*/
7636 /* MISC */
7637 /*======*/
7639 hr {
7640 border-bottom: 1px solid #575756;
7643 code {
7644 background-color: #0b0b00;
7645 border: 1px solid #1d1f00;
7646 border-radius: 4px;
7649 input[type='text'],
7650 input[type='search'],
7651 input[type='password'] {
7652 background-color: #000;
7653 border: 1px solid #1f1f1f;
7654 color: #fff;
7656 input[type='text']:focus,
7657 input[type='search']:focus,
7658 input[type='password']:focus {
7659 background-color: #00001e;
7660 border: 1px solid #393939;
7661 box-shadow: 0 0 1px #393939;
7664 select {
7665 color: #fff;
7668 @-moz-document url-prefix() {
7669 h1.listing s,
7670 .post > h1:first-of-type s {
7671 position: relative;
7672 text-decoration: none;
7674 h1.listing s::after,
7675 .post > h1:first-of-type s::after {
7676 position: absolute;
7677 border-bottom: 3px solid #fff;
7678 content: "";
7679 top: 0;
7680 left: 0;
7681 width: 100%;
7682 height: 50%;
7685 /*============*/
7686 /* ABOUT PAGE */
7687 /*============*/
7689 .about-page mark {
7690 background-color: #191919;
7691 text-decoration: none;
7692 box-shadow:
7693 0 -1px 0 0 #fff inset,
7694 0 -3px 1px -2px #fff inset;
7695 padding: 0 1px;
7698 #content.about-page .accesskey-table {
7699 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7700 border-color: #1f1f1f;
7703 #content.about-page img {
7704 border: 1px solid #fff;
7707 /*========================*/
7708 /* QUALIFIED HYPERLINKING */
7709 /*========================*/
7711 #aux-about-link a {
7712 color: #777;
7714 #aux-about-link a:hover {
7715 opacity: 1.0;
7716 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7719 .qualified-linking label {
7720 color: #0cc800;
7722 .qualified-linking label:hover {
7723 text-shadow:
7724 0 0 1px #000,
7725 0 0 3px #000,
7726 0 0 5px #0cc800;
7729 .qualified-linking-toolbar {
7730 border: 1px solid #fff;
7731 background-color: #000;
7733 .qualified-linking-toolbar a {
7734 background-color: #131313;
7735 border: 1px solid #2c2c2c;
7736 border-radius: 4px;
7738 .qualified-linking-toolbar a:visited {
7739 color: #0cc800;
7741 .qualified-linking-toolbar a:hover {
7742 text-decoration: none;
7743 background-color: #1f1f1f;
7744 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7746 .qualified-linking label::after {
7747 background-color: #232323;
7748 opacity: 0.8;
7751 /*======*/
7752 /* MATH */
7753 /*======*/
7755 .mathjax-block-container::-webkit-scrollbar {
7756 height: 12px;
7757 background-color: #0b0b00;
7758 border-radius: 6px;
7759 border: 1px solid #1d1f00;
7761 .mathjax-block-container::-webkit-scrollbar-thumb {
7762 background-color: #1e1f13;
7763 border-radius: 6px;
7764 border: 1px solid #282c11;
7766 .mathjax-inline-container::-webkit-scrollbar {
7767 height: 8px;
7768 background-color: #0b0b00;
7769 border-radius: 4px;
7770 border: 1px solid #1d1f00;
7772 .mathjax-inline-container::-webkit-scrollbar-thumb {
7773 background-color: #1e1f13;
7774 border-radius: 4px;
7775 border: 1px solid #282c11;
7779 /*===============*/
7780 /* USER MENTIONS */
7781 /*===============*/
7783 .textarea-container .autocomplete-container {
7784 background-color: rgba(0, 3, 64, 0.75);
7785 border: 1px solid rgba(10, 200, 0, 0.75);
7788 .textarea-container .autocomplete-container div.highlighted {
7789 background-color: rgba(10, 200, 0, 0.75);
7790 color: #000;
7793 .textarea-container .autocomplete-container div:not(.highlighted):hover {
7794 background-color: rgba(10, 200, 0, 0.25);
7797 .textarea-container .autocomplete-container div span.age,
7798 .textarea-container .autocomplete-container div span.karma {
7799 color: #666;
7803 /*=================*/
7804 /* ALIGNMENT FORUM */
7805 /*=================*/
7807 #content.alignment-forum-index-page::before {
7808 background-color: #131100;
7810 #content.alignment-forum-index-page::after {
7811 font-family: "Concourse SmallCaps";
7812 font-weight: bold;
7813 background-color: #658100;
7814 -webkit-background-clip: text;
7815 color: transparent;
7816 text-shadow:
7817 rgba(0, 0, 0, 0.5) 0px 3px 3px;;
7819 @media only screen and (hover: hover) {
7820 #content.alignment-forum-index-page h1.listing a:hover,
7821 #content.alignment-forum-index-page h1.listing a:focus {
7822 background-color: rgba(19, 17, 0, 0.85);
7826 /*====================*/
7827 /* FOR NARROW SCREENS */
7828 /*====================*/
7830 @media only screen and (max-width: 1440px) {
7831 #hns-date-picker {
7832 background-color: #232323;
7833 opacity: 1.0;
7835 #hns-date-picker::before {
7836 border: 1px solid #575756;
7837 border-width: 1px 0 1px 1px;
7840 @media only screen and (max-width: 1160px) {
7841 #theme-selector:hover::after {
7842 background-color: #575756;
7845 @media only screen and (max-width: 1080px) {
7846 #text-size-adjustment-ui button {
7847 border: 1px solid #575756;
7848 padding: 0 0 0 1px;
7849 border-radius: 50%;
7850 box-shadow:
7851 0 0 6px #575756 inset,
7852 0 0 0 1px transparent;
7854 #theme-tweaker-toggle button {
7855 border: 1px solid #575756;
7856 box-shadow:
7857 0 0 10px #575756 inset,
7858 0 0 0 1px transparent;
7859 border-radius: 50%;
7860 transform: scale(0.8);
7863 @media only screen and (max-width: 1020px) {
7864 #quick-nav-ui a {
7865 box-shadow:
7866 0 0 0 1px #575756,
7867 0 0 0 2px transparent;
7869 #new-comment-nav-ui .new-comments-count::before {
7870 background-color: #232323;
7871 box-shadow:
7872 0 0 0 1px #575756,
7873 0 0 0 2px transparent;
7874 border-radius: 8px;
7876 #anti-kibitzer-toggle {
7877 box-shadow:
7878 0 0 0 1px #575756,
7879 0 0 0 2px transparent;
7880 background-color: #232323;
7881 border-radius: 6px;
7882 overflow: hidden;
7885 @media only screen and (max-width: 1000px) {
7886 #theme-selector {
7887 background-color: #232323;
7888 box-shadow:
7889 0 0 0 1px #575756,
7890 0 0 0 2px transparent;
7892 #theme-selector:hover::after {
7893 width: calc(6em - 3px);
7894 height: calc(100% - 5px);
7895 top: 3px;
7896 left: 100%;
7898 #text-size-adjustment-ui button {
7899 background-color: #1f1f1f;
7901 #text-size-adjustment-ui button:hover {
7902 background-color: #131313;
7904 #theme-tweaker-toggle button {
7905 background-color: #1f1f1f;
7909 /*========*/
7910 /* MOBILE */
7911 /*========*/
7913 /**************************************************************************/
7914 @media only screen and (max-width: 1160px) {
7915 /**************************************************************************/
7917 #ui-elements-container > div[id$='-ui-toggle'] button {
7918 color: #666;
7919 text-shadow:
7920 0 0 1px #000,
7921 0 0 3px #000,
7922 0 0 5px #000,
7923 0 0 10px #000,
7924 0 0 20px #000,
7925 0 0 30px #000;
7928 #theme-selector {
7929 background-color: #232323;
7930 box-shadow:
7931 0 0 0 1px #575756,
7932 0 0 1px 3px #000,
7933 0 0 3px 3px #000,
7934 0 0 5px 3px #000,
7935 0 0 10px 3px #000,
7936 0 0 20px 3px #000;
7937 border-radius: 12px;
7939 #theme-selector::before,
7940 #theme-selector .theme-selector-close-button {
7941 color: #888;
7942 text-shadow: 0.5px 0.5px 0 #000;
7944 #theme-selector button {
7945 background-color: #191919;
7946 border-radius: 10px;
7948 #theme-selector button::after {
7949 color: #fff;
7950 padding-bottom: 2px;
7951 max-width: calc(100% - 3.25em);
7952 overflow: hidden;
7953 text-overflow: ellipsis;
7955 #theme-selector button.selected::after {
7956 text-shadow:
7957 0 -1px 0 #000,
7958 0 0.5px 0.5px #fff;
7961 #quick-nav-ui {
7962 background-color: #000;
7964 #quick-nav-ui,
7965 #new-comment-nav-ui,
7966 #hns-date-picker {
7967 box-shadow:
7968 0 0 1px 3px #000,
7969 0 0 3px 3px #000,
7970 0 0 5px 3px #000,
7971 0 0 10px 3px #000,
7972 0 0 20px 3px #000;
7974 #quick-nav-ui a::after,
7975 #new-comment-nav-ui::before {
7976 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7977 font-weight: 600;
7978 box-shadow:
7979 0 0 1px 0 #000,
7980 0 0 3px 0 #000,
7981 0 0 5px 0 #000;
7982 background-color: #000;
7983 border-radius: 4px;
7985 #quick-nav-ui,
7986 #new-comment-nav-ui {
7987 border-radius: 8px;
7989 #new-comment-nav-ui {
7990 background-color: #232323;
7991 border: 1px solid #575756;
7993 #new-comment-nav-ui::before {
7994 color: #777;
7996 #new-comment-nav-ui .new-comment-sequential-nav-button {
7997 box-shadow: 0 0 0 1px #575756;
7998 color: #777;
8000 #new-comment-nav-ui .new-comments-count {
8001 background-color: inherit;
8002 box-shadow: 0 -1px 0 0 #575756;
8004 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
8005 color: #393939;
8007 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
8008 border-radius: 7px 0 0 7px;
8010 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
8011 border-radius: 0 7px 7px 0;
8013 #new-comment-nav-ui button::after {
8014 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
8017 /*****************************************/
8018 @media only screen and (max-width: 900px) {
8019 /*****************************************/
8020 h1.listing {
8021 font-size: 1.75rem;
8022 line-height: 1;
8024 h1.listing .link-post-link {
8025 top: 2px;
8027 h1.listing + .post-meta .karma-value,
8028 h1.listing + .post-meta .comment-count,
8029 h1.listing + .post-meta .lw2-link,
8030 h1.listing + .post-meta .read-time {
8031 bottom: 0;
8033 h1.listing + .post-meta .post-section::before {
8034 position: unset;
8036 h1.listing + .post-meta .post-section {
8037 overflow: visible;
8038 order: 1;
8040 h1.listing + .post-meta .link-post-domain {
8041 order: 2;
8042 line-height: 1;
8043 flex-basis: 100%;
8045 h1.listing + .post-meta::after {
8046 bottom: -10px;
8048 #content.user-page h1.listing + .post-meta {
8049 margin-bottom: 1em;
8051 #content.user-page h1.link-post-listing::after {
8052 height: calc(100% + 2em);
8055 #nav-item-search button::before {
8056 color: #0cc800;
8059 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8060 background-color: #484848;
8063 .comment-item .comment-item {
8064 margin: 0.75em 2px 4px 6px;
8065 box-shadow:
8066 0 0 2px #2c2c2c,
8067 0 0 4px #2c2c2c,
8068 0 0 7px #2c2c2c;
8070 .comment-item .comment-item + .comment-item {
8071 margin: 1.5em 2px 4px 6px;
8073 .comment-body {
8074 font-size: 1.125rem;
8077 a.comment-parent-link:hover::before {
8078 background-color: unset;
8081 .sublevel-nav:not(.sort) .sublevel-item,
8082 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8083 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8084 border-radius: 8px;
8085 border-width: 1px;
8086 margin: 2px;
8088 /*******************************************/
8089 } @media only screen and (max-width: 720px) {
8090 /*******************************************/
8091 h1.listing {
8092 margin: 10px 6px 6px 6px;
8093 max-width: calc(100% - 12px);
8094 font-size: 1.5rem;
8095 padding-right: 35px;
8097 #content.conversations-user-page h1.listing {
8098 font-size: 1.5rem;
8100 h1.listing + .post-meta {
8101 margin: 0 6px 0 7px;
8102 clear: both;
8104 h1.listing + .post-meta {
8105 padding: .25em 254px 0 0;
8107 h1.listing + .post-meta::after {
8108 bottom: -2px;
8110 h1.listing + .post-meta > * {
8111 line-height: 1;
8112 display: block;
8114 #content.conversations-user-page h1.listing + .post-meta > * {
8115 line-height: 1.5;
8117 h1.listing + .post-meta .date,
8118 h1.listing + .post-meta .author {
8119 line-height: 1.3;
8121 h1.listing + .post-meta .karma-value,
8122 h1.listing + .post-meta .comment-count,
8123 h1.listing + .post-meta .lw2-link,
8124 h1.listing + .post-meta .read-time {
8125 top: unset;
8126 font-size: 1rem;
8127 box-shadow: none;
8129 h1.listing + .post-meta .karma-value::before,
8130 h1.listing + .post-meta .comment-count::before,
8131 h1.listing + .post-meta .lw2-link::before,
8132 h1.listing + .post-meta .read-time::before {
8133 box-shadow: none;
8135 h1.listing + .post-meta .karma-value,
8136 h1.listing + .post-meta .comment-count,
8137 h1.listing + .post-meta .read-time,
8138 h1.listing + .post-meta .lw2-link {
8139 bottom: 4px;
8142 h1.listing + .post-meta .karma-value {
8143 right: 192px;
8145 h1.listing + .post-meta .karma-value::before {
8146 text-shadow: 0.5px 0.5px 0.5px #575756;
8148 h1.listing + .post-meta .comment-count {
8149 right: 132px;
8151 h1.listing + .post-meta .read-time {
8152 right: 56px;
8154 h1.listing + .post-meta .lw2-link {
8155 opacity: 1;
8156 right: 0;
8158 h1.listing + .post-meta .link-post-domain {
8159 margin: 0;
8160 line-height: 1.3;
8161 overflow: hidden;
8162 text-overflow: ellipsis;
8164 h1.listing + .post-meta .post-section::before {
8165 position: absolute;
8166 left: unset;
8167 right: 0;
8168 bottom: 30px;
8169 top: unset;
8171 h1.listing a {
8172 display: inline;
8174 /*******************************************/
8175 } @media only screen and (max-width: 520px) {
8176 /*******************************************/
8177 h1.listing + .post-meta {
8178 padding: .25em 144px 0 0;
8179 flex-flow: column;
8181 #content.conversations-user-page h1.listing + .post-meta {
8182 flex-flow: row wrap;
8184 h1.listing + .post-meta .date {
8185 margin: 0.375em 0 0.25em 0;
8186 line-height: 1;
8188 #content.user-page h1.listing::after {
8189 height: calc(100% + 2.125em);
8191 #content.user-page h1.link-post-listing::after {
8192 height: calc(100% + 3.125em);
8194 #content.user-page:not(.conversations-user-page) h1.listing + .post-meta {
8195 padding: 0.25em 144px 0.5em 36px;
8197 #content.conversations-user-page h1.listing + .post-meta .date {
8198 margin: 0 0 0 1em;
8201 h1.listing + .post-meta .karma-value {
8202 bottom: 28px;
8203 right: 56px;
8205 h1.listing + .post-meta .comment-count {
8206 bottom: 28px;
8207 right: 0;
8209 h1.listing + .post-meta .read-time {
8210 right: 56px;
8211 bottom: 4px;
8213 h1.listing + .post-meta .lw2-link {
8214 right: 0;
8215 bottom: 4px;
8217 h1.listing + .post-meta .link-post-domain {
8218 max-width: 100%;
8220 h1.listing + .post-meta .post-section::before {
8221 right: 120px;
8224 #content.compact > .comment-thread .comment-item {
8225 max-height: 110px;
8228 .textarea-container:focus-within button:active {
8229 background-color: #2c2c2c;
8231 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8232 background-color: #131313;
8233 border: 1px solid #1f1f1f;
8234 border-radius: 6px;
8236 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8237 border-color: #00a9ed;
8238 box-shadow:
8239 0 0 0 1px #000,
8240 0 0 0 2px #00a9ed;
8241 color: #00a9ed;
8242 font-weight: 600;
8244 #content.conversation-page .textarea-container:focus-within::after {
8245 background-color: #000;
8247 .textarea-container:focus-within .guiedit-buttons-container {
8248 background-color: white;
8249 border-top: 1px solid #1d1f00;
8251 .textarea-container:focus-within button.guiedit {
8252 background-color: #131313;
8253 border: 1px solid #1f1f1f;
8254 border-radius: 6px;
8256 #markdown-hints::after {
8257 color: #9740cb;
8260 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8261 top: 2px;
8263 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8264 top: 1px;
8266 /*******************************************/
8267 } @media only screen and (max-width: 320px) {
8268 /*******************************************/
8269 h1.listing {
8270 font-size: 1.25rem;
8272 #content.user-page h1.listing::after {
8273 height: calc(100% + 2.625em);
8275 #content.user-page h1.link-post-listing::after {
8276 height: calc(100% + 3.75em);
8282 /*************/
8283 /* ACCORDIUS */
8284 /*************/
8286 /*======*/
8287 /* TAGS */
8288 /*======*/
8290 #tags {
8291 order: 12;
8292 display: flex;
8293 flex-basis: 100%;
8294 justify-content: center;
8295 margin: 0;
8296 flex-flow: row wrap;
8297 align-items: flex-start;
8300 /*===============*/
8301 /* DEFAULT THEME */
8302 /*===============*/
8304 /*++++++*/
8305 /* TAGS */
8306 /*++++++*/
8308 #tags {
8309 padding: 0.5em;
8311 #tags::before {
8312 content: "Tags:";
8313 margin: 0 0.25em 0 0;
8314 opacity: 0.5;
8315 line-height: 1;
8316 align-self: center;
8318 #tags a {
8319 border-radius: 8px;
8320 background-color: #110c06;
8321 border: 1px solid #2e2416;
8322 padding: 4px 8px 5px 8px;
8323 line-height: 1;
8324 margin: 0.25em;
8325 font-size: 0.9375em;
8327 #tags a:hover {
8328 text-decoration: none;
8329 background-color: #221806;
8331 #tags a:active {
8332 color: #00a1e8;