Styling for user mention UI, part II
[lw2-viewer.git] / www / css / style-dark.linux.css
blob698f42d651841bbc4c7091caf2d6783a9f85b4a2
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);
4349 .textarea-container .autocomplete-container:empty {
4350 display: none;
4353 .textarea-container .autocomplete-container.inside {
4354 max-height: calc(100% - 36px);
4355 top: 32px;
4357 .textarea-container .autocomplete-container.outside {
4358 max-height: calc(100% - 28px);
4359 top: 28px;
4360 z-index: 10001;
4363 .textarea-container .autocomplete-container.inside.right {
4364 right: 18px;
4366 .textarea-container .autocomplete-container.inside.left {
4367 left: 18px;
4369 .textarea-container .autocomplete-container.outside.right {
4370 left: calc(100% + 3px);
4372 .textarea-container .autocomplete-container.outside.left {
4373 right: calc(100% + 3px);
4376 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4377 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4379 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4380 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4382 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4383 max-width: calc((300px + 40px * 2) / 2);
4386 .textarea-container .autocomplete-container div {
4387 padding: 2px 8px 0 8px;
4388 white-space: nowrap;
4389 overflow: hidden;
4390 text-overflow: ellipsis;
4391 display: flex;
4392 justify-content: flex-end;
4395 .textarea-container .autocomplete-container div span.name {
4396 flex: 1 0 auto;
4398 .textarea-container .autocomplete-container div span.age,
4399 .textarea-container .autocomplete-container div span.karma {
4400 font-size: 0.9em;
4401 text-align: right;
4403 .textarea-container .autocomplete-container div span.age {
4404 width: 3em;
4406 .textarea-container .autocomplete-container div span.karma {
4407 width: 6em;
4411 /*******************/
4412 /* ALIGNMENT FORUM */
4413 /*******************/
4415 #content.alignment-forum-index-page::after {
4416 content: "Alignment Forum";
4417 font-size: 1.5rem;
4418 margin: 0.375em 0 0 -0.375em;
4419 order: -1;
4422 /**********************/
4423 /* FOR NARROW SCREENS */
4424 /**********************/
4426 @media only screen and (max-width: 1440px) {
4427 #hns-date-picker {
4428 right: -81px;
4429 padding: 8px 10px 10px 10px;
4430 bottom: 62px;
4431 display: none;
4433 #hns-date-picker::before {
4434 content: "";
4435 position: absolute;
4436 display: block;
4437 z-index: -1;
4438 height: calc(100% + 2px);
4439 top: -1px;
4440 left: -1px;
4441 width: 50%;
4444 @media only screen and (max-width: 1160px) {
4445 #new-comment-nav-ui {
4446 bottom: 180px;
4447 right: -68px;
4449 #hns-date-picker {
4450 bottom: 200px;
4451 right: -36px;
4453 #hns-date-picker::before {
4454 width: calc(100% - 35px);
4456 #theme-selector button::before {
4457 right: unset;
4458 left: 100%;
4460 #theme-selector:hover::after {
4461 content: "";
4462 display: block;
4463 position: absolute;
4464 width: calc(6em - 7px);
4465 height: calc(100% + 2px);
4466 top: 0;
4467 left: calc(100% + 1px);
4469 #anti-kibitzer-toggle {
4470 bottom: 330px;
4473 @media only screen and (max-width: 1080px) {
4474 #width-selector {
4475 right: -30px;
4477 #width-selector button {
4478 display: block;
4480 #text-size-adjustment-ui {
4481 top: 90px;
4482 right: -30px;
4484 #text-size-adjustment-ui button {
4485 display: block;
4486 position: relative;
4488 #text-size-adjustment-ui button.increase {
4489 bottom: 48px;
4491 #text-size-adjustment-ui button.decrease {
4492 top: 50px;
4494 #theme-selector {
4495 top: 46px;
4496 left: -44px;
4498 #theme-tweaker-toggle {
4499 left: -44px;
4500 top: 2px;
4502 #theme-tweaker-toggle button {
4503 height: 2em;
4504 width: 2em;
4505 padding: 7px;
4507 #quick-nav-ui {
4508 right: -54px;
4510 #new-comment-nav-ui {
4511 right: -55px;
4513 #hns-date-picker {
4514 right: -23px;
4516 #hns-date-picker::before {
4517 width: calc(100% - 22px);
4519 #anti-kibitzer-toggle {
4520 right: -54px;
4523 @media only screen and (max-width: 1040px) {
4524 #quick-nav-ui {
4525 right: -49px;
4527 #new-comment-nav-ui {
4528 right: -50px;
4530 #hns-date-picker {
4531 right: -18px;
4533 #hns-date-picker::before {
4534 width: calc(100% - 17px);
4536 #anti-kibitzer-toggle {
4537 right: -50px;
4540 @media only screen and (max-width: 1020px) {
4541 #quick-nav-ui {
4542 right: -20px;
4544 #new-comment-nav-ui {
4545 right: -21px;
4547 #new-comment-nav-ui .new-comments-count::before {
4548 content: "";
4549 position: absolute;
4550 width: 100%;
4551 height: calc(100% + 45px);
4552 z-index: -1;
4553 left: 0;
4554 top: -22px;
4556 #hns-date-picker {
4557 right: 19px;
4559 #hns-date-picker::before {
4560 width: 100%;
4562 #anti-kibitzer-toggle {
4563 right: -20px;
4566 @media only screen and (max-width: 1000px) {
4567 #theme-selector {
4568 left: -17px;
4569 top: 120px;
4570 padding: 3px 0;
4571 max-width: 32px;
4573 #theme-selector button {
4574 margin: 1px 4px;
4576 #text-size-adjustment-ui {
4577 top: 100px;
4578 right: -12px;
4580 @media not screen and (hover: none) {
4581 #quick-nav-ui,
4582 #new-comment-nav-ui,
4583 #new-comment-nav-ui + #hns-date-picker,
4584 #anti-kibitzer-toggle {
4585 opacity: 0.4;
4587 #quick-nav-ui:hover,
4588 #new-comment-nav-ui:hover,
4589 #new-comment-nav-ui + #hns-date-picker:hover,
4590 #new-comment-nav-ui + #hns-date-picker:focus-within,
4591 #new-comment-nav-ui:hover + #hns-date-picker,
4592 #anti-kibitzer-toggle:hover {
4593 opacity: 1.0;
4596 #theme-tweaker-toggle {
4597 top: 70px;
4598 left: -21px;
4602 /**************/
4603 /* PRINT VIEW */
4604 /**************/
4606 @media only print {
4607 .nav-bar {
4608 visibility: hidden;
4609 max-height: 0;
4610 overflow: hidden;
4612 #ui-elements-container {
4613 display: none;
4615 #images-overlay {
4616 display: none;
4618 #images-overlay + #content .post-body img {
4619 visibility: visible;
4621 .comment-controls {
4622 display: none;
4624 #comments-sort-mode-selector {
4625 display: none;
4627 .comment-minimize-button {
4628 display: none;
4630 .post-meta .qualified-linking,
4631 .post-meta .lw2-link {
4632 display: none;
4634 .comment-meta .permalink,
4635 .comment-meta .lw2-link,
4636 .comment-meta .comment-parent-link {
4637 display: none;
4639 .new-comment::before {
4640 display: none;
4642 #content::before {
4643 box-shadow: none;
4647 /*****************/
4648 /* MOBILE LAYOUT */
4649 /*****************/
4651 /* Hide the mobile elements on desktop screens: */
4653 @media only screen and (max-width: 1160px) {
4654 #post-nav-ui-toggle,
4655 #appearance-adjust-ui-toggle {
4656 display: none;
4660 @media only screen and (max-width: 1160px) {
4662 /*====================*/
4663 /* MOBILE UI ELEMENTS */
4664 /*====================*/
4666 #ui-elements-container {
4667 height: unset !important;
4668 position: unset;
4670 #ui-elements-container > * {
4671 position: fixed;
4672 visibility: hidden;
4673 opacity: 1.0;
4674 z-index: 10000;
4677 #ui-elements-container > div[id$='-ui-toggle'] {
4678 visibility: visible;
4679 display: inline-block;
4680 border-radius: 50%;
4681 z-index: 10000;
4683 #ui-elements-container > div[id$='-ui-toggle'] button,
4684 #theme-selector .theme-selector-close-button {
4685 font-family: Font Awesome;
4686 font-weight: 900;
4687 font-size: 32px;
4688 padding: 10px;
4689 opacity: 0.8;
4690 -webkit-tap-highlight-color: transparent;
4691 transition: transform 0.2s ease;
4693 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4694 #theme-selector .theme-selector-close-button::selection {
4695 background-color: transparent;
4697 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4698 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4699 border: none;
4701 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4702 transform: rotate(-90deg);
4703 opacity: 1.0;
4706 #appearance-adjust-ui-toggle {
4707 bottom: 10px;
4708 left: 10px;
4711 #post-nav-ui-toggle {
4712 bottom: 10px;
4713 right: 10px;
4716 #theme-selector.engaged,
4717 #quick-nav-ui.engaged,
4718 #new-comment-nav-ui.engaged,
4719 #hns-date-picker.engaged {
4720 visibility: visible;
4723 #image-focus-overlay.engaged {
4724 visibility: visible;
4726 #image-focus-overlay .help-overlay {
4727 display: none;
4730 /*=========*/
4731 /* GENERAL */
4732 /*=========*/
4734 @media only screen and (max-width: 900px) {
4735 #content,
4736 #images-overlay,
4737 #ui-elements-container {
4738 min-width: unset;
4739 width: unset;
4741 #content {
4742 padding: 0 4px;
4746 /*================*/
4747 /* THEME SELECTOR */
4748 /*================*/
4750 #theme-selector {
4751 display: flex;
4752 flex-flow: column;
4753 background-color: #000;
4754 width: calc(100vw - 20px);
4755 max-width: 360px;
4756 padding: 0 0 3px 0;
4757 overflow: hidden;
4758 max-height: 0;
4759 transition:
4760 top 0.2s ease,
4761 max-height 0.2s ease,
4762 visibility 0.2s ease;
4763 top: calc(100% + 10px);
4764 left: 0;
4765 right: 0;
4766 margin: auto;
4768 #theme-selector.engaged {
4769 max-height: 1000px;
4770 top: 10px;
4771 z-index: 10001;
4773 #theme-selector::before {
4774 content: "Select theme";
4775 white-space: nowrap;
4776 display: block;
4777 font-weight: 600;
4778 font-size: 2rem;
4779 margin: 0.375em 1em 0.5em 1em;
4780 text-align: center;
4782 #theme-selector button {
4783 width: calc(100% - 0.5em);
4784 background-repeat: no-repeat;
4785 padding: 1em 0.875em;
4786 margin: 1px 4px;
4787 line-height: 1;
4788 height: unset;
4789 position: relative;
4791 #theme-selector button::after {
4792 content: attr(data-theme-description);
4793 color: #fff;
4794 white-space: nowrap;
4795 position: absolute;
4796 text-align: left;
4797 left: 2.5em;
4798 top: 1em;
4800 @media only screen and (max-height: 675px) {
4801 #theme-selector button {
4802 padding: 0.875em;
4804 #theme-selector button::after {
4805 top: 0.875em;
4808 #theme-selector .theme-selector-close-button {
4809 position: absolute;
4810 width: unset;
4811 background-color: transparent;
4812 top: 0;
4813 right: -3px;
4815 #theme-selector .theme-selector-close-button,
4816 #theme-selector .theme-selector-close-button:focus,
4817 #theme-selector .theme-selector-close-button:active,
4818 #theme-selector .theme-selector-close-button:hover {
4819 box-shadow: none;
4822 /*===============*/
4823 /* THEME TWEAKER */
4824 /*===============*/
4826 #theme-selector {
4827 padding: 0 0 64px 0;
4829 #theme-selector ~ #theme-tweaker-toggle {
4830 top: 100%;
4832 #theme-selector ~ #theme-tweaker-toggle::after {
4833 content: "Open theme tweaker";
4834 position: absolute;
4835 font-size: 0.625em;
4836 white-space: nowrap;
4837 left: -50%;
4838 top: 100%;
4840 #theme-selector.engaged ~ #theme-tweaker-toggle {
4841 visibility: visible;
4842 top: 530px;
4843 left: 0;
4844 right: 0;
4845 margin: auto;
4846 z-index: 11111;
4847 transition:
4848 top 0.2s ease,
4849 visibility 0.2s ease;
4851 @media only screen and (max-height: 675px) {
4852 #theme-selector.engaged ~ #theme-tweaker-toggle {
4853 top: 492px;
4856 @supports (width: -moz-fit-content) {
4857 #theme-selector.engaged ~ #theme-tweaker-toggle {
4858 width: -moz-fit-content;
4861 @supports (width: fit-content) {
4862 #theme-selector.engaged ~ #theme-tweaker-toggle {
4863 width: fit-content;
4866 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4867 opacity: 1.0;
4870 #theme-tweaker-ui {
4871 visibility: visible;
4874 /*======================*/
4875 /* ANTI-KIBITZER TOGGLE */
4876 /*======================*/
4878 #theme-selector ~ #anti-kibitzer-toggle {
4879 top: 100%;
4880 bottom: unset;
4881 left: 0;
4882 right: 0;
4883 margin: auto;
4884 box-shadow: none;
4885 width: calc(100vw - 44px);
4886 max-width: 330px;
4887 text-align: right;
4888 pointer-events: none;
4890 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4891 visibility: visible;
4892 z-index: 11110;
4893 top: 530px;
4894 transition:
4895 top 0.2s ease,
4896 visibility 0.2s ease;
4898 @media only screen and (max-height: 675px) {
4899 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4900 top: 492px;
4903 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4904 pointer-events: auto;
4905 display: inline-block;
4908 /*=================*/
4909 /* QUICKNAV WIDGET */
4910 /*=================*/
4912 #quick-nav-ui {
4913 max-width: 0px;
4914 transition:
4915 max-width 0.2s ease,
4916 visibility 0.2s ease;
4917 display: flex;
4918 right: 72px;
4919 bottom: 14px;
4921 #quick-nav-ui.engaged {
4922 max-width: 1000px;
4924 #quick-nav-ui a {
4925 position: relative;
4926 margin: 2px;
4928 #quick-nav-ui a + a {
4929 margin-left: 5px;
4931 #quick-nav-ui a::after {
4932 position: absolute;
4933 top: calc(100% + 2px);
4934 font-size: 0.375rem;
4935 left: 0;
4936 right: 0;
4937 margin: auto;
4938 line-height: 1;
4939 padding: 2px;
4940 text-transform: uppercase;
4941 z-index: -1;
4943 @supports (width: -moz-fit-content) {
4944 #quick-nav-ui a::after {
4945 width: -moz-fit-content;
4948 @supports (width: fit-content) {
4949 #quick-nav-ui a::after {
4950 width: fit-content;
4953 #quick-nav-ui a[href='#top']::after {
4954 content: "Top";
4955 left: -1px;
4957 #quick-nav-ui a[href='#comments']::after {
4958 content: "Comments";
4960 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4961 visibility: hidden;
4962 transition: visibility 0.2s ease;
4964 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4965 visibility: visible;
4967 #quick-nav-ui a[href='#bottom-bar']::after {
4968 content: "Bottom";
4971 /*======================*/
4972 /* NEW COMMENT QUICKNAV */
4973 /*======================*/
4975 #new-comment-nav-ui {
4976 max-width: 0px;
4977 max-height: 0px;
4978 transition:
4979 max-width 0.2s ease,
4980 max-height 0.2s ease,
4981 visibility 0.2s ease;
4982 display: flex;
4983 right: 78px;
4984 bottom: 70px;
4986 #new-comment-nav-ui::before {
4987 content: "New Comments";
4988 position: absolute;
4989 bottom: 100%;
4990 font-size: 0.5625rem;
4991 left: 0;
4992 right: 0;
4993 margin: auto;
4994 padding: 2px 3px;
4995 text-transform: uppercase;
4996 z-index: -1;
4998 @supports (width: -moz-fit-content) {
4999 #new-comment-nav-ui::before {
5000 width: -moz-fit-content;
5003 @supports (width: fit-content) {
5004 #new-comment-nav-ui::before {
5005 width: fit-content;
5008 #new-comment-nav-ui.engaged {
5009 max-width: 1000px;
5010 max-height: 1000px;
5012 #new-comment-nav-ui .new-comment-sequential-nav-button {
5013 top: unset;
5014 bottom: unset;
5015 padding: 2px 7px;
5017 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5018 padding: 2px 7px 3px 7px;
5020 #new-comment-nav-ui .new-comments-count {
5021 padding: 4px 0 5px 0;
5023 #new-comment-nav-ui .new-comments-count::before {
5024 display: none;
5026 #new-comment-nav-ui button::after {
5027 position: absolute;
5028 font-size: 0.375rem;
5029 left: 0;
5030 right: 0;
5031 margin: auto;
5032 line-height: 1;
5033 text-transform: uppercase;
5034 pointer-events: none;
5036 #new-comment-nav-ui button.new-comment-previous::after {
5037 content: "Previous";
5038 bottom: 5px;
5040 #new-comment-nav-ui button.new-comment-next::after {
5041 content: "Next";
5042 top: 7px;
5045 /*=================*/
5046 /* HNS DATE PICKER */
5047 /*=================*/
5049 #hns-date-picker {
5050 max-height: 0px;
5051 bottom: 132px;
5052 right: 62px;
5053 transition:
5054 max-height 0.2s ease,
5055 visibility 0.2s ease;
5057 #hns-date-picker.engaged {
5058 max-height: 1000px;
5060 #hns-date-picker::before {
5061 width: calc(100% + 2px);
5062 border-width: 1px !important;
5065 /*=========*/
5066 /* NAV BAR */
5067 /*=========*/
5069 #bottom-bar {
5070 margin-left: auto;
5071 margin-right: auto;
5072 width: calc(100% - 9rem + 8px);
5073 background: rgba(0, 0, 0, 0.85);
5074 backdrop-filter: blur(1px);
5076 #content.index-page #bottom-bar {
5077 z-index: 10001;
5079 #bottom-bar .nav-item {
5080 box-shadow: none;
5081 position: relative;
5083 #bottom-bar .nav-inner {
5084 font-size: 2rem;
5085 padding: 1rem 0 1.25rem 0;
5086 visibility: hidden;
5087 position: static;
5088 width: 0;
5090 #content #bottom-bar .nav-item .nav-inner::before {
5091 margin: 0;
5092 visibility: visible;
5093 position: absolute;
5094 width: 100%;
5095 height: 100%;
5096 left: 0;
5097 top: 0;
5098 padding: 1rem 0;
5100 #bottom-bar .nav-inner::after {
5101 display: block;
5102 visibility: visible;
5103 text-transform: uppercase;
5104 color: unset;
5105 font-size: 0.75rem;
5106 top: unset;
5107 left: 0;
5108 bottom: 1rem;
5109 width: 100%;
5111 #bottom-bar #nav-item-first .nav-inner::after {
5112 content: "First Page";
5114 #bottom-bar #nav-item-prev .nav-inner::after {
5115 content: "Prev. Page";
5117 #bottom-bar #nav-item-top .nav-inner::after {
5118 content: "Top";
5120 #bottom-bar #nav-item-next .nav-inner::after {
5121 content: "Next Page";
5123 #bottom-bar #nav-item-last .nav-inner::after {
5124 content: "Last Page";
5127 @media only screen and (max-width: 900px) {
5128 .nav-bar-top {
5129 font-size: 0.75rem;
5131 .nav-bar {
5132 width: calc(100% + 8px);
5133 margin: 0 -4px;
5135 .nav-bar .nav-inner::after {
5136 display: none;
5139 #primary-bar .nav-item {
5140 flex: 1 1 100%;
5142 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5143 flex: 1 1 60px;
5145 .nav-bar-top:not(#anything) .nav-inner {
5146 text-transform: uppercase;
5147 padding: 6px;
5149 .nav-bar-top .nav-inner::before {
5150 display: block;
5151 font-family: "Font Awesome";
5152 font-size: 2em;
5153 font-weight: 900;
5156 #nav-item-home .nav-inner::before {
5157 content: "\F015";
5159 #nav-item-featured .nav-inner::before {
5160 content: "\F005";
5162 #nav-item-all .nav-inner::before {
5163 content: "\F069";
5165 #nav-item-meta .nav-inner::before {
5166 content: "\F077";
5168 #nav-item-tags .nav-inner::before {
5169 content: "\F02C";
5171 #nav-item-recent-comments > * > span {
5172 display: none;
5174 #nav-item-recent-comments .nav-inner::before,
5175 #nav-item-alignment-forum-comments .nav-inner::before {
5176 content: "\F036";
5178 #nav-item-alignment-forum .nav-inner::before {
5179 content: "AF";
5180 font-family: Concourse, 'Changa One';
5182 #nav-item-questions .nav-inner::before {
5183 content: "?";
5184 font-family: Concourse, 'Changa One';
5186 #nav-item-events .nav-inner::before {
5187 content: "\F5A0";
5189 #nav-item-shortform .nav-inner::before {
5190 content: "\F2F2";
5192 #nav-item-archive .nav-inner::before {
5193 content: "\F187";
5195 #nav-item-about .nav-inner::before {
5196 content: "\F129";
5198 #nav-item-search {
5199 font-size: 2em;
5200 padding: 10px;
5202 #nav-item-search .nav-inner::before {
5203 content: none;
5205 #nav-item-search .nav-inner {
5206 height: 100%;
5207 display: flex;
5209 #nav-item-search input {
5210 width: 100%;
5211 height: 100%;
5213 #nav-item-search button {
5214 height: 100%;
5215 padding: 5px 5px 5px 10px;
5216 width: 40px;
5217 overflow: visible;
5218 visibility: hidden;
5220 #nav-item-search button::before {
5221 content: "\F002";
5222 font-family: Font Awesome;
5223 font-weight: 900;
5224 visibility: visible;
5226 #nav-item-login {
5227 padding: 0;
5229 #nav-item-login .nav-inner::before {
5230 content: "\F007";
5233 @media only screen and (max-width: 520px) {
5234 .nav-bar-top {
5235 font-size: 0.5rem;
5238 #nav-item-search,
5239 #nav-item-search .nav-inner {
5240 padding: 0;
5242 #nav-item-search button {
5243 width: 31px;
5246 #bottom-bar #nav-item-first .nav-inner::after {
5247 content: "First";
5249 #bottom-bar #nav-item-prev .nav-inner::after {
5250 content: "Prev";
5252 #bottom-bar #nav-item-next .nav-inner::after {
5253 content: "Next";
5255 #bottom-bar #nav-item-last .nav-inner::after {
5256 content: "Last";
5260 /*=================*/
5261 /* INBOX INDICATOR */
5262 /*=================*/
5264 @media only screen and (max-width: 900px) {
5265 #inbox-indicator {
5266 width: 100%;
5267 top: 0;
5268 pointer-events: none;
5270 #inbox-indicator::before {
5271 width: 100%;
5272 font-size: 1rem;
5273 text-align: right;
5274 padding: 1px 6px;
5276 #inbox-indicator.new-messages {
5277 pointer-events: auto;
5279 #inbox-indicator.new-messages::before {
5280 box-shadow: 0 0 8px 1px #0090e0 inset;
5283 @media only screen and (max-width: 520px) {
5284 #inbox-indicator::before {
5285 font-size: 0.75rem;
5286 padding: 2px 5px;
5289 @media only screen and (max-width: 374px) {
5290 #inbox-indicator::before {
5291 font-size: 0.625rem;
5295 /*===================*/
5296 /* TOP PAGINATION UI */
5297 /*===================*/
5299 #top-nav-bar {
5300 font-size: 1.75rem;
5303 /*==============*/
5304 /* PAGE TOOLBAR */
5305 /*==============*/
5307 @media only screen and (max-width: 900px) {
5308 #content > .page-toolbar {
5309 font-size: 1rem;
5310 margin-right: 0;
5312 #content.user-page > .page-toolbar {
5313 grid-column: 2 / span 2;
5314 margin: 0 0 6px 0;
5317 @media only screen and (max-width: 520px) {
5318 #content:not(.user-page) .page-toolbar {
5319 display: flex;
5320 flex-direction: column-reverse;
5321 text-align: right;
5322 align-self: start;
5323 padding: 4px 0 0 0;
5325 #content.user-page .page-toolbar {
5326 display: flex;
5327 flex-flow: row;
5328 justify-content: flex-end;
5329 padding: 2px 0 0 0;
5331 #content.user-page .page-toolbar > form,
5332 #content.user-page .page-toolbar > .button {
5333 text-align: center;
5334 flex-basis: 25%;
5335 margin-left: 1.5em;
5337 #content.user-page .page-toolbar .button {
5338 text-transform: uppercase;
5339 font-size: 0.625rem;
5341 #content.user-page .page-toolbar .button::before {
5342 font-size: 1.375rem;
5343 display: block;
5344 padding: 0;
5346 #content.user-page .page-toolbar .rss {
5347 white-space: nowrap;
5348 margin: 0 0 0 1.5em;
5350 .page-toolbar > * {
5351 line-height: 1.15;
5352 padding: 6px 0;
5353 margin: 0;
5357 /*==============*/
5358 /* SUBLEVEL NAV */
5359 /*==============*/
5361 @media only screen and (max-width: 900px) {
5362 .sublevel-nav:not(.sort) {
5363 flex-wrap: wrap;
5364 width: calc(100vw - 200px);
5366 .sublevel-nav:not(.sort) .sublevel-item {
5367 margin: 1px;
5368 flex-basis: 7em;
5371 @media only screen and (max-width: 520px) {
5372 .sublevel-nav:not(.sort) .sublevel-item {
5373 font-size: 1rem;
5377 /*=====================*/
5378 /* SORT ORDER SELECTOR */
5379 /*=====================*/
5381 @media only screen and (max-width: 720px) {
5382 #content.index-page > .sublevel-nav.sort {
5383 flex-flow: column;
5384 margin-left: 4px;
5388 /*==========*/
5389 /* ARCHIVES */
5390 /*==========*/
5392 @media only screen and (max-width: 900px) {
5393 div[class^='archive-nav-'] {
5394 flex-wrap: wrap;
5395 justify-content: flex-start;
5397 .archive-nav *[class^='archive-nav-item'],
5398 .archive-nav *[class^='archive-nav-item']:first-child {
5399 padding: 10px;
5400 margin: 2px;
5401 max-width: unset;
5402 flex: 0 1 calc((100% / 8) - 4px);
5404 .archive-nav .archive-nav-item-day,
5405 .archive-nav .archive-nav-item-day:first-child {
5406 flex-basis: calc((100% / 16) - 4px);
5408 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5409 margin-top: 8px;
5410 position: relative;
5412 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5413 content: "";
5414 display: block;
5415 position: absolute;
5416 height: 1px;
5417 width: calc(100% + 8px);
5418 left: -4px;
5419 top: -4px;
5422 @media only screen and (max-width: 720px) {
5423 .archive-nav .archive-nav-item-day,
5424 .archive-nav .archive-nav-item-day:first-child {
5425 flex-basis: calc((100% / 12) - 4px);
5428 @media only screen and (max-width: 520px) {
5429 .archive-nav *[class^='archive-nav-item'],
5430 .archive-nav *[class^='archive-nav-item']:first-child {
5431 flex-basis: calc((100% / 5) - 4px);
5433 .archive-nav .archive-nav-item-day,
5434 .archive-nav .archive-nav-item-day:first-child {
5435 flex-basis: calc((100% / 8) - 4px);
5439 /*==========*/
5440 /* LISTINGS */
5441 /*==========*/
5443 h1.listing {
5444 max-height: unset;
5447 /*============*/
5448 /* USER PAGES */
5449 /*============*/
5451 #content.user-page h1.page-main-heading {
5452 align-self: end;
5454 @media only screen and (max-width: 520px) {
5455 #content.user-page h1.page-main-heading {
5456 overflow: hidden;
5457 text-overflow: ellipsis;
5459 #content.user-page .user-stats .karma-type {
5460 display: block;
5464 /*============*/
5465 /* LOGIN PAGE */
5466 /*============*/
5468 @media only screen and (max-width: 640px) {
5469 .login-container {
5470 flex-flow: column;
5471 margin: 0 auto 3em auto;
5472 max-width: 400px;
5474 .login-container #login-form,
5475 .login-container #signup-form {
5476 padding: 0 1em 1.25em 1em;
5477 grid-row-gap: 0;
5479 .login-container #signup-form {
5480 padding-top: 1em;
5482 .login-container #login-form > *,
5483 .login-container #signup-form > * {
5484 grid-column: 1 / span 2;
5486 .login-container form label {
5487 text-align: left;
5488 padding: 0;
5489 line-height: 1;
5491 .login-container form input {
5492 margin: 0.25em 0 0.75em 0;
5493 padding: 0.5em;
5495 .login-container form h1 {
5496 grid-column: 1 / span 2;
5497 margin: 0 0 0.25em 0;
5499 .login-container form a {
5500 margin: 0.75em 0 0 0;
5502 .login-container .login-tip {
5503 margin: 1.5em 1em 0 1em;
5507 /*==================*/
5508 /* POSTS & COMMENTS */
5509 /*==================*/
5511 @media only screen and (max-width: 720px) {
5512 .body-text ol > li {
5513 padding: 0 0 0 2.25em;
5515 .body-text ol > li::before {
5516 width: 1.75em;
5518 .body-text ul:not(.contents-list) > li,
5519 .body-text ul:not(.contents-list) > li ul > li {
5520 padding: 0 0 0 0.75em;
5522 .body-text ul:not(.contents-list) > li::before,
5523 .body-text ul:not(.contents-list) > li ul > li::before {
5524 width: 0.125em;
5525 margin-left: -0.06em;
5529 /*===========*/
5530 /* POST-META */
5531 /*===========*/
5533 .post-meta {
5534 line-height: 1.9;
5536 @media only screen and (max-width: 720px) {
5537 .post-meta .lw2-link span,
5538 .post-meta .karma-value span,
5539 .post-meta .comment-count span {
5540 display: none;
5542 .post-meta .comment-count::before {
5543 content: "\F086";
5544 font-family: Font Awesome;
5545 font-size: 0.875em;
5546 margin: 0 0.25em 0 0;
5547 font-weight: 400;
5551 /*===================*/
5552 /* POSTS & BODY TEXT */
5553 /*===================*/
5555 @media only screen and (max-width: 900px) {
5556 .post-body,
5557 h1.post-title,
5558 .tag-description,
5559 .sequence-text {
5560 padding: 0 6px;
5563 @media only screen and (max-width: 520px) {
5564 .post-body {
5565 font-size: 1.2rem;
5566 line-height: 1.45;
5568 h1.post-title {
5569 font-size: 2em;
5573 /*==============*/
5574 /* COMMENT-META */
5575 /*==============*/
5577 a.comment-parent-link::after {
5578 display: none;
5580 @media only screen and (max-width: 900px) {
5581 .comment-meta {
5582 padding: 2px 40px 2px 10px;
5585 @media only screen and (max-width: 720px) {
5586 .comment .karma-value span {
5587 display: none;
5589 .comment-meta .comment-parent-link {
5590 opacity: 1.0;
5593 @media only screen and (max-width: 520px) {
5594 .comment-meta {
5595 padding: 2px 24px 2px 10px;
5596 position: relative;
5598 .comment-meta > * {
5599 order: 3;
5601 .comment-meta > :not(.author) {
5602 line-height: 1.8;
5604 .comment-meta .author,
5605 .comment-meta .date {
5606 order: 1;
5608 .comment-meta:before {
5609 content: "";
5610 order: 2;
5611 flex-basis: 100%;
5613 .comment-post-title2 {
5614 display: block;
5615 text-overflow: ellipsis;
5616 overflow: hidden;
5618 .comment-meta .lw2-link {
5619 display: none;
5623 /*=======================*/
5624 /* COMMENTS COMPACT VIEW */
5625 /*=======================*/
5627 /*===========================*/
5628 /* COMMENT THREAD NAVIGATION */
5629 /*===========================*/
5631 @media only screen and (max-width: 900px) {
5632 a.comment-parent-link {
5633 width: 0;
5634 visibility: hidden;
5635 position: relative;
5637 a.comment-parent-link::before {
5638 padding: 0;
5639 font-size: 1em;
5640 left: 0;
5641 top: 0;
5642 line-height: inherit;
5643 visibility: visible;
5644 content: "\F3BF";
5645 transform: scaleX(-1);
5646 width: 2em;
5647 text-align: center;
5650 @media only screen and (max-width: 520px) {
5651 a.comment-parent-link {
5652 position: static;
5654 a.comment-parent-link::before {
5655 padding: 6px;
5656 left: unset;
5657 right: 0;
5658 top: unset;
5659 bottom: 0;
5660 height: 2em;
5664 /*=================================*/
5665 /* COMMENT THREAD MINIMIZE BUTTONS */
5666 /*=================================*/
5668 @media only screen and (max-width: 520px) {
5669 .comment-minimize-button{
5670 right: 2px;
5674 /*===========================*/
5675 /* COMMENTING AND POSTING UI */
5676 /*===========================*/
5678 @media only screen and (max-width: 900px) {
5679 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5680 font-size: 0;
5682 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5683 font-size: 0.9rem;
5685 .comment-controls .cancel-comment-button {
5686 max-width: 1.3em;
5687 overflow: hidden;
5688 margin-right: 0.125em;
5690 .comment-controls .edit-button::before {
5691 font-size: 0.9375rem;
5693 .comments > .comment-controls .cancel-comment-button {
5694 right: 8px;
5696 .comment-controls .cancel-comment-button::before {
5697 font-size: 1.25rem;
5700 @media only screen and (max-width: 520px) {
5701 .comment-controls {
5702 position: static;
5704 .comment-controls:focus-within {
5705 z-index: 10001;
5707 .comment-controls .cancel-comment-button {
5708 right: 10px;
5710 .textarea-container:focus-within textarea {
5711 position: fixed;
5712 top: 0;
5713 left: 2px;
5714 width: calc(100vw - 4px);
5715 height: calc(100% - 100px);
5716 min-height: unset;
5717 max-height: unset;
5718 border-width: 1px;
5719 z-index: 11001;
5721 #content.conversation-page .textarea-container:focus-within textarea {
5722 height: calc(100% - 54px);
5724 #content.conversation-page .textarea-container:focus-within::after {
5725 content: "";
5726 display: block;
5727 width: 100%;
5728 height: 50px;
5729 position: fixed;
5730 left: 0;
5731 bottom: 0;
5732 z-index: 11000;
5734 .textarea-container:focus-within .guiedit-buttons-container {
5735 position: fixed;
5736 z-index: 11002;
5737 left: 0;
5738 width: 100vw;
5739 height: auto;
5740 background-image: none;
5741 padding: 3px 4px 4px 4px;
5742 margin: 0;
5743 text-align: center;
5744 top: auto;
5745 bottom: 0;
5747 .textarea-container:focus-within button.guiedit {
5748 font-size: 0.9375rem;
5749 line-height: 1.5;
5750 height: auto;
5751 width: calc((100% / 10) - 2px);
5752 padding: 10px 1px 8px 0;
5753 position: relative;
5754 margin: 1px;
5756 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5757 z-index: 11011;
5758 position: fixed;
5759 bottom: 7px;
5760 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5761 font-size: 1.25rem;
5762 padding: 5px 5px 6px 5px;
5763 display: block;
5765 .textarea-container:focus-within button.guiedit sup {
5766 position: absolute;
5767 left: calc(50% + 0.65em);
5768 top: calc(50% - 1.3em);
5770 .textarea-container:focus-within .guiedit-mobile-help-button {
5771 left: 8px;
5773 .textarea-container:focus-within .guiedit-mobile-exit-button {
5774 right: 8px;
5776 .guiedit::after {
5777 display: none;
5780 #markdown-hints,
5781 #edit-post-form #markdown-hints {
5782 z-index: 11111;
5783 position: fixed;
5784 top: 40px;
5785 left: 0;
5786 right: 0;
5787 margin: auto;
5788 padding: 4px 0 4px 8px;
5789 width: 310px;
5790 border-width: 3px;
5791 border-style: double;
5792 pointer-events: none;
5794 #markdown-hints::after {
5795 content: "(Type to hide this help box.)";
5796 color: #9740cb;
5797 display: block;
5798 margin: 12px 18px 13px 10px;
5799 padding: 5px;
5800 font-size: 0.9em;
5801 text-align: center;
5805 /*================*/
5806 /* EDIT POST FORM */
5807 /*================*/
5809 @media only screen and (max-width: 520px) {
5810 #edit-post-form {
5811 padding-bottom: 0;
5813 #edit-post-form .post-meta-fields {
5814 grid-template-columns: 4.5em auto auto auto 1fr auto;
5816 #edit-post-form label[for='url'],
5817 #edit-post-form label[for='section'],
5818 #edit-post-form label[for='title'] {
5819 padding-left: 0;
5821 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5822 white-space: normal;
5823 line-height: 0.9;
5824 top: -1px;
5825 font-family: Font Awesome;
5826 font-weight: 900;
5827 justify-self: start;
5829 #edit-post-form .post-meta-fields .question-checkbox,
5830 #edit-post-form .post-meta-fields .question-checkbox + label {
5831 grid-column: 6;
5832 margin-left: unset;
5834 #edit-post-form .post-meta-fields input[type='radio'] + label {
5835 align-self: start;
5837 #edit-post-form .textarea-container:focus-within textarea {
5838 height: calc(100% - 101px);
5839 min-height: unset;
5842 #markdown-hints-checkbox,
5843 #markdown-hints-checkbox + label {
5844 display: none;
5847 #edit-post-form div:last-child {
5848 clear: both;
5849 overflow: auto;
5851 #edit-post-form input[type='submit'] {
5852 float: none;
5853 display: block;
5854 font-size: 1.5rem;
5855 margin: 1rem auto 1.5rem auto;
5856 padding: 6px 12px 8px 12px;
5860 /*===================*/
5861 /* TABLE OF CONTENTS */
5862 /*===================*/
5864 @media only screen and (max-width: 900px) {
5865 .contents {
5866 float: none;
5867 display: table;
5868 max-width: none;
5869 margin-left: auto;
5870 margin-right: auto;
5873 @media only screen and (max-width: 520px) {
5874 .contents {
5875 max-width: 100%;
5876 margin: 1em auto 0 auto;
5877 display: table;
5879 .contents-head {
5880 font-size: 1.2em;
5882 div.post-body .contents ul {
5883 font-size: unset;
5887 /*========================*/
5888 /* QUALIFIED HYPERLINKING */
5889 /*========================*/
5891 @media only screen and (max-width: 520px) {
5892 .qualified-linking-toolbar {
5893 right: -5em;
5897 } /* END MOBILE LAYOUT */
5900 /*****************/
5901 /* DEFAULT THEME */
5902 /*****************/
5904 /*===========*/
5905 /* VARIABLES */
5906 /*===========*/
5908 /* Color scheme.
5910 :root {
5911 --GW-comment-background-color-odd: #131313;
5912 --GW-comment-background-color-even: #000;
5913 --GW-comment-background-color-target: #00001e;
5915 --GW-toggle-widget-color: #666;
5916 --GW-toggle-widget-hover-color: #aeaeae;
5917 --GW-toggle-widget-shadow-color: rgba(0, 0, 0, 0.5);
5920 /*======*/
5921 /* BASE */
5922 /*======*/
5924 body {
5925 color: #fff;
5926 background-color: #232323;
5927 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
5928 font-feature-settings: 'ss07';
5930 #content {
5931 line-height: 1.55;
5933 #content::before {
5934 background-color: #000;
5935 box-shadow: 0px 0px 10px #9b9b9b;
5938 /*=========*/
5939 /* NAV BAR */
5940 /*=========*/
5942 .nav-inner {
5943 font-size: 1.375em;
5944 font-weight: 600;
5946 .nav-bar-top:not(#primary-bar) .nav-inner {
5947 font-size: 1em;
5950 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5951 #bottom-bar a:hover,
5952 #nav-item-search:not(.nav-current):focus-within {
5953 background-color: #1f1f1f;
5955 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5956 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5957 background-color: #232323;
5960 .nav-bar a:visited {
5961 color: #0cc800;
5963 .nav-bar a:hover,
5964 .nav-bar a:focus {
5965 text-decoration: none;
5966 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5969 #bottom-bar.decorative::before,
5970 #bottom-bar.decorative::after {
5971 content: "GW";
5972 display: block;
5973 text-align: center;
5974 padding: 0.25em 0 1em 0;
5976 #bottom-bar.decorative::before {
5977 width: 100%;
5978 color: transparent;
5979 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5980 background-repeat: repeat-x;
5981 background-position: center 35%;
5982 margin: 0 30px;
5984 #bottom-bar.decorative::after {
5985 color: #232323;
5986 position: absolute;
5987 left: 0;
5988 right: 0;
5989 margin: auto;
5990 background-color: #000;
5991 padding-right: 4px;
5992 padding-left: 4px;
5994 @supports (width: -moz-fit-content) {
5995 #bottom-bar.decorative::after {
5996 width: -moz-fit-content;
5999 @supports (width: fit-content) {
6000 #bottom-bar.decorative::after {
6001 width: fit-content;
6005 /* Accesskey hints */
6007 .nav-inner::after {
6008 display: block;
6009 position: absolute;
6010 left: 5px;
6011 top: -2px;
6012 font-weight: 400;
6013 font-size: 0.7em;
6014 color: #232323;
6016 .inactive-bar .nav-inner::after {
6017 color: #2c2c2c;
6019 .nav-inner:hover::after {
6020 color: #393939;
6023 /* This makes the navbar items look like tabs: */
6025 .nav-inactive {
6026 box-shadow:
6027 0 -1px #232323 inset,
6028 1px 0 #000 inset;
6030 .nav-inactive:first-child {
6031 box-shadow: 0 -1px #232323 inset;
6033 .inactive-bar .nav-inactive {
6034 background-color: #1a1a1a;
6036 .active-bar .nav-inactive {
6037 background-color: #131313;
6039 .nav-bar + .nav-bar {
6040 position: relative;
6043 /* For Webkit: */
6044 .nav-bar:not(#bottom-bar) {
6045 box-shadow: 0 -3px 8px -2px #2c2c2c;
6047 .active-bar .nav-inactive {
6048 box-shadow:
6049 0 -4px 8px -4px #393939 inset,
6050 1px 0 #000 inset;
6052 .active-bar .nav-inactive:first-child {
6053 box-shadow:
6054 0 -4px 8px -4px #393939 inset;
6056 .active-bar .nav-current + .nav-inactive {
6057 box-shadow:
6058 5px -4px 8px -4px #393939 inset;
6060 .active-bar .nav-item-last-before-current {
6061 box-shadow:
6062 -5px -4px 8px -4px #393939 inset,
6063 1px 0 #000 inset;
6065 .active-bar .nav-item-last-before-current:first-child {
6066 box-shadow:
6067 -5px -4px 8px -4px #393939 inset;
6069 /* And for Gecko: */
6070 @-moz-document url-prefix() {
6071 .nav-bar:not(#bottom-bar) {
6072 box-shadow: 0 -3px 4px -2px #2c2c2c;
6075 .active-bar .nav-inactive {
6076 box-shadow:
6077 0 -4px 4px -4px #393939 inset,
6078 1px 0 #000 inset;
6080 .active-bar .nav-inactive:first-child {
6081 box-shadow:
6082 0 -4px 4px -4px #393939 inset;
6084 .active-bar .nav-current + .nav-inactive {
6085 box-shadow:
6086 5px -4px 4px -4px #393939 inset;
6088 .active-bar .nav-item-last-before-current {
6089 box-shadow:
6090 -5px -4px 4px -4px #393939 inset,
6091 1px 0 #000 inset;
6093 .active-bar .nav-item-last-before-current:first-child {
6094 box-shadow:
6095 -5px -4px 4px -4px #393939 inset;
6099 /* Search tab */
6101 #nav-item-search button {
6102 border: none;
6103 font-weight: inherit;
6105 #nav-item-search input::placeholder {
6106 color: #00a1e8;
6107 font-weight: normal;
6110 /*= Top pagination UI hover tooltips =*/
6112 #top-nav-bar a::after,
6113 #bottom-bar a::after {
6114 color: #fff;
6117 /*==============*/
6118 /* PAGE TOOLBAR */
6119 /*==============*/
6121 .button.new-post:not(:hover),
6122 .button.new-private-message:not(:hover),
6123 .button.unignore-button:not(:hover){
6124 color: #9740cb;
6126 .button.logout-button, .button.ignore-button {
6127 color: #0094be;
6130 /*==============*/
6131 /* SUBLEVEL NAV */
6132 /*==============*/
6134 .sublevel-nav .sublevel-item {
6135 color: #777;
6136 background-color: #000;
6138 .sublevel-nav .sublevel-item:not(.selected):hover {
6139 background-color: #1f1f1f;
6140 color: #fff;
6141 text-decoration: none;
6142 text-shadow: none;
6144 .sublevel-nav .sublevel-item:not(.selected):active,
6145 .sublevel-nav .sublevel-item.selected {
6146 background-color: #1f1f1f;
6147 color: #fff;
6148 text-shadow:
6149 0 -1px 0 #000,
6150 0 0.5px 0.5px #fff;
6153 .sublevel-nav:not(.sort) .sublevel-item {
6154 border-style: solid;
6155 border-color: #1f1f1f;
6156 border-width: 1px 0 1px 1px;
6158 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6159 border-radius: 8px 0 0 8px;
6161 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6162 border-width: 1px;
6163 border-radius: 0 8px 8px 0;
6166 /*=====================*/
6167 /* SORT ORDER SELECTOR */
6168 /*=====================*/
6170 .sublevel-nav.sort .sublevel-item {
6171 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6172 letter-spacing: 0.5px;
6173 padding: 6px 7px;
6174 text-transform: uppercase;
6175 pointer-events: auto;
6176 box-shadow: 1px 1px 0 0 #484848 inset;
6178 .sublevel-nav.sort {
6179 border: 2px solid transparent;
6180 padding: 18px 0 0 0;
6181 border-radius: 8px;
6182 pointer-events: none;
6183 background-color: #393939;
6185 .sublevel-nav.sort::before {
6186 text-transform: uppercase;
6187 font-weight: 600;
6188 color: #aeaeae;
6189 text-shadow: 0.5px 0.5px 0 #000;
6190 z-index: 1;
6192 .sublevel-nav.sort::after {
6193 content: "";
6194 position: absolute;
6195 display: block;
6196 top: 0;
6197 left: 0;
6198 width: 100%;
6199 height: 100%;
6200 border-radius: 6px;
6201 box-shadow:
6202 0 18px 0 0 #393939 inset,
6203 0 0 0 1px #484848 inset,
6204 0 18px 0 1px #484848 inset,
6205 0 0 0 2px #393939;
6208 /*================*/
6209 /* WIDTH SELECTOR */
6210 /*================*/
6211 /* THEME SELECTOR */
6212 /*================*/
6214 #width-selector button,
6215 #theme-selector button {
6216 box-shadow:
6217 0 0 0 4px #232323 inset,
6218 0 0 0 5px #393939 inset;
6220 #width-selector button:hover,
6221 #width-selector button.selected,
6222 #theme-selector button:hover,
6223 #theme-selector button.selected {
6224 box-shadow:
6225 0 0 0 5px #393939 inset;
6228 #theme-selector button::before {
6229 color: #575756;
6230 background-color: #232323;
6232 #theme-selector button:hover::before,
6233 #theme-selector button.selected::before {
6234 color: #888;
6236 #width-selector button::after {
6237 color: #575756;
6240 /*======================*/
6241 /* THEME TWEAKER TOGGLE */
6242 /*======================*/
6244 #theme-tweaker-toggle button {
6245 color: #777;
6248 /*=================*/
6249 /* QUICKNAV WIDGET */
6250 /*=================*/
6252 #quick-nav-ui a {
6253 color: #575756;
6254 background-color: #1a1a1a;
6255 border-radius: 4px;
6256 text-decoration: none;
6258 #quick-nav-ui a[href='#bottom-bar'] {
6259 line-height: 1.8;
6261 #quick-nav-ui a:active {
6262 transform: scale(0.9);
6264 #quick-nav-ui a[href='#comments'].no-comments {
6265 opacity: 0.4;
6266 color: #393939;
6268 @media only screen and (hover:hover) {
6269 #quick-nav-ui a:hover {
6270 color: #fff;
6271 background-color: #131313;
6273 #quick-nav-ui a:focus:not(:hover) {
6274 transform: none;
6275 text-shadow: none;
6279 /*======================*/
6280 /* NEW COMMENT QUICKNAV */
6281 /*======================*/
6283 #new-comment-nav-ui .new-comments-count {
6284 font-weight: 600;
6285 color: #888;
6286 text-shadow: 0.5px 0.5px 0 #000;
6288 #new-comment-nav-ui .new-comments-count::after {
6289 font-weight: 600;
6290 color: #777;
6292 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6293 color: #393939;
6294 text-shadow: none;
6296 @media only screen and (hover:hover) {
6297 #new-comment-nav-ui .new-comments-count:hover {
6298 text-shadow:
6299 0 0 1px #000,
6300 0 0 3px #000,
6301 0 0 5px #000,
6302 0 0 8px #000,
6303 0.5px 0.5px 0 #000;
6305 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6306 color: #00a1e8;
6307 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6311 /*=================*/
6312 /* HNS DATE PICKER */
6313 /*=================*/
6315 #hns-date-picker span {
6316 color: #777;
6317 text-shadow: 0.5px 0.5px 0 #000;
6318 font-weight: 600;
6320 #hns-date-picker input {
6321 border: 1px solid #777;
6322 background-color: transparent;
6323 color: #888;
6324 box-shadow: 0 0 0 1px transparent;
6326 #hns-date-picker input:focus {
6327 color: #fff;
6330 /*======================*/
6331 /* ANTI-KIBITZER TOGGLE */
6332 /*======================*/
6334 #anti-kibitzer-toggle button::before,
6335 #anti-kibitzer-toggle button::after {
6336 background-color: var(--GW-toggle-widget-color);
6337 -webkit-background-clip: text;
6338 color: transparent;
6339 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
6341 #anti-kibitzer-toggle button:hover::before,
6342 #anti-kibitzer-toggle button:hover::after {
6343 background-color: var(--GW-toggle-widget-hover-color);
6346 /*======================*/
6347 /* TEXT SIZE ADJUSTMENT */
6348 /*======================*/
6350 #text-size-adjustment-ui button {
6351 color: #777;
6353 #text-size-adjustment-ui button.default {
6354 font-weight: 600;
6356 #text-size-adjustment-ui button:disabled:hover {
6357 text-shadow: none;
6359 #text-size-adjustment-ui::after {
6360 color: #575756;
6363 /*=============================*/
6364 /* COMMENTS VIEW MODE SELECTOR */
6365 /*=============================*/
6367 #comments-view-mode-selector a {
6368 color: #777;
6371 /*==========*/
6372 /* ARCHIVES */
6373 /*==========*/
6375 .archive-nav {
6376 border: 1px solid #484848;
6378 .archive-nav *[class^='archive-nav-item'] {
6379 border-style: solid;
6380 border-color: #1f1f1f;
6381 border-width: 1px 0 1px 1px;
6382 background-color: #131313;
6384 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6385 border-top-width: 0;
6386 border-bottom-width: 0;
6388 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6389 border-bottom-width: 1px;
6391 .archive-nav *[class^='archive-nav-item']:last-child {
6392 border-right-width: 1px;
6394 .archive-nav span[class^='archive-nav-item'] {
6395 font-weight: bold;
6396 background-color: #1f1f1f;
6399 .archive-nav a:link,
6400 .archive-nav a:visited {
6401 color: rgba(12, 200, 0, 0.7);
6403 .archive-nav a:hover {
6404 text-decoration: none;
6405 color: #00a9ed;
6406 background-color: #1d1d1d;
6407 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6409 .archive-nav a:active {
6410 transform: scale(0.9);
6412 .archive-nav a:focus:not(:hover) {
6413 transform: none;
6415 .archive-nav a.archive-nav-item-day:hover {
6416 background-color: #1f1f1f;
6419 /*==========*/
6420 /* LISTINGS */
6421 /*==========*/
6423 h1.listing {
6424 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
6425 font-weight: 800;
6426 margin: 0.7em 20px 0 20px;
6427 max-width: calc(100% - 40px);
6428 top: 0.125em; ;
6431 h1.listing .post-title-link {
6432 color: #fff;
6434 h1.listing .link-post-link {
6435 color: #54d400;
6438 @media only screen and (hover: hover) {
6439 h1.listing a:hover,
6440 h1.listing a:focus {
6441 color: #777;
6442 background-color: rgba(0, 0, 0, 0.85);
6444 h1.listing:focus-within::before {
6445 color: #00c200;
6446 left: -0.625em;
6448 h1.listing .link-post-link:hover {
6449 color: #670;
6450 text-shadow:
6451 0.5px 0.5px 0 #000,
6452 -0.5px -0.5px 0 #000,
6453 0 0 2px #000,
6454 0 0 3px #54d400;
6458 h1.listing .edit-post-link {
6459 padding: 5px 3px 12px 0.5em;
6460 top: 0;
6461 right: 0;
6463 h1.listing .edit-post-link:hover {
6464 text-decoration: none;
6466 #content.user-page h1.listing .edit-post-link {
6467 background-color: #131313;
6470 /*======*/
6471 /* SPAM */
6472 /*======*/
6474 h1.listing.spam {
6475 opacity: 0.15;
6477 h1.listing.spam + .post-meta {
6478 opacity: 0.4;
6480 h1.listing.spam:hover,
6481 h1.listing.spam + .post-meta:hover,
6482 h1.listing.spam:hover + .post-meta {
6483 opacity: 1.0;
6486 /*===================*/
6487 /* LISTING POST-META */
6488 /*===================*/
6490 h1.listing + .post-meta {
6491 padding-right: 330px;
6493 h1.listing + .post-meta .karma-value,
6494 h1.listing + .post-meta .comment-count,
6495 h1.listing + .post-meta .lw2-link,
6496 h1.listing + .post-meta .read-time {
6497 border-radius: 4px;
6498 padding: 0 4px 0 2px;
6499 text-shadow: 0.5px 0.5px 0.5px #575756;
6500 margin: 0 0.25em 0 0.5em;
6501 position: absolute;
6502 line-height: 1.15;
6503 bottom: -6px;
6505 h1.listing + .post-meta .karma-value span,
6506 h1.listing + .post-meta .comment-count span,
6507 h1.listing + .post-meta .lw2-link span,
6508 h1.listing + .post-meta .read-time span {
6509 display: none;
6511 h1.listing + .post-meta .karma-value::before,
6512 h1.listing + .post-meta .comment-count::before,
6513 h1.listing + .post-meta .lw2-link::before,
6514 h1.listing + .post-meta .read-time::before {
6515 color: #000;
6516 font-family: 'Font Awesome', 'Font Awesome 5 Free';
6517 font-weight: 900;
6518 margin: 0 8px 0 0;
6519 box-shadow: 0 0 0 2px #1f1f1f;
6521 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
6522 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
6523 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
6524 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
6525 text-shadow: 0 0 3px #575756;
6528 h1.listing + .post-meta .karma {
6529 margin: 0;
6531 h1.listing + .post-meta .karma-value {
6532 box-shadow:
6533 22px 0 0 0 #1f1f1f inset,
6534 0 0 0 3px #1f1f1f;
6535 cursor: default;
6536 color: #00a9ed;
6537 right: 264px;
6539 h1.listing + .post-meta .karma-value::before {
6540 content: "\F139";
6541 text-shadow: none;
6542 font-size: 0.9375em;
6543 line-height: 1.3;
6546 h1.listing + .post-meta .comment-count::before {
6547 content: "\F086";
6549 h1.listing + .post-meta .comment-count {
6550 box-shadow:
6551 25px 0 0 0 #1f1f1f inset,
6552 0 0 0 3px #1f1f1f;
6553 color: #9e4acf;
6554 right: 176px;
6556 h1.listing + .post-meta .comment-count:hover {
6557 text-decoration: none;
6558 color: #000;
6559 background-color: #9e4acf;
6561 h1.listing + .post-meta .comment-count:hover::before {
6562 color: #9e4acf;
6564 h1.listing + .post-meta .comment-count.new-comments::before {
6565 color: #9e4acf;
6566 text-shadow: 0.5px 0.5px 0.5px #000;
6568 h1.listing + .post-meta .comment-count.new-comments:hover::before {
6569 text-shadow: 0.5px 0.5px 0.5px #575756;
6573 h1.listing + .post-meta .lw2-link {
6574 box-shadow:
6575 23px 0 0 0 #1f1f1f inset,
6576 0 0 0 3px #1f1f1f;
6577 right: 0;
6579 h1.listing + .post-meta .lw2-link::before {
6580 content: "\F0C1";
6582 h1.listing + .post-meta .lw2-link:hover {
6583 text-decoration: none;
6584 color: #000;
6585 background-color: #00c200;
6587 h1.listing + .post-meta .lw2-link:hover::before {
6588 color: #00c200;
6591 h1.listing + .post-meta .read-time {
6592 box-shadow:
6593 21px 0 0 0 #1f1f1f inset,
6594 0 0 0 3px #1f1f1f;
6595 right: 80px;
6597 h1.listing + .post-meta .read-time::before {
6598 content: "\F2F2";
6599 cursor: pointer;
6601 h1.listing + .post-meta .read-time::after {
6602 content: " min";
6604 h1.listing + .post-meta .read-time:hover::before {
6605 color: #777;
6608 h1.listing + .post-meta .word-count {
6609 box-shadow:
6610 22px 0 0 0 #1f1f1f inset,
6611 0 0 0 3px #1f1f1f;
6612 padding: 0 4px 0 4px;
6614 h1.listing + .post-meta .word-count::before {
6615 content: "\F15C";
6616 margin: 0 10px 0 0;
6618 h1.listing + .post-meta .read-time.word-count::after {
6619 content: none;
6622 h1.listing + .post-meta .link-post-domain {
6623 margin: 0 0 0 0.5em;
6626 h1.listing + .post-meta::after {
6627 content: "";
6628 display: block;
6629 height: 1px;
6630 width: 100%;
6631 background-color: #1f1f1f;
6632 position: absolute;
6633 bottom: -14px;
6636 /*============*/
6637 /* USER PAGES */
6638 /*============*/
6640 #content.user-page h1.page-main-heading,
6641 #content.user-page .user-stats {
6642 border-bottom: 1px solid #2c2c2c;
6645 #content.user-page h1.listing,
6646 #content.user-page h1.listing + .post-meta {
6647 background-color: #131313;
6648 border-style: solid;
6649 border-color: #2c2c2c;
6651 #content.user-page h1.listing {
6652 padding: 0 6px;
6653 padding-top: 0.25em;
6654 border-width: 1px 1px 0 1px;
6655 margin: 1rem 0 0 0;
6656 max-width: 100%;
6658 #content.own-user-page h1.listing,
6659 h1.listing.own-post-listing {
6660 padding-right: 36px;
6662 @media only screen and (hover: hover) {
6663 #content.user-page h1.listing a:hover,
6664 #content.user-page h1.listing a:focus {
6665 background-color: #131313;
6667 #content.user-page h1.listing:focus-within::before {
6668 left: -0.625em;
6671 #content.user-page h1.listing + .post-meta {
6672 padding: 0.125em 6px 1em 36px;
6673 border-width: 0 1px 1px 1px;
6674 margin: 0 0 1rem 0;
6676 #content.user-page h1.listing + .post-meta::after {
6677 display: none;
6679 @media only screen and (min-width: 521px) {
6680 #content.user-page h1.listing + .post-meta .karma-value,
6681 #content.user-page h1.listing + .post-meta .comment-count,
6682 #content.user-page h1.listing + .post-meta .lw2-link,
6683 #content.user-page h1.listing + .post-meta .read-time {
6684 bottom: 10px;
6687 #content.user-page h1.listing + .post-meta .post-section::before {
6688 left: -1px;
6691 #content.conversations-user-page h1.listing {
6692 padding: 4px 6px;
6693 font-size: 1.75rem;
6695 #content.conversations-user-page h1.listing + .post-meta {
6696 padding: 6px 4px;
6697 margin: 0 0 0.25rem 0;
6700 .user-stats .karma-total {
6701 font-weight: bold;
6704 /*===============*/
6705 /* CONVERSATIONS */
6706 /*===============*/
6708 /*============*/
6709 /* LOGIN PAGE */
6710 /*============*/
6712 .login-container form input[type='submit'] {
6713 font-weight: bold;
6714 background-color: #131313;
6715 border: 1px solid #2c2c2c;
6717 .login-container form input[type='submit']:hover,
6718 .login-container form input[type='submit']:focus {
6719 background-color: #1f1f1f;
6720 border: 1px solid #484848;
6723 /* “Create account” form */
6725 #signup-form {
6726 background-color: #0f0f0f;
6727 border: 1px solid #1f1f1f;
6729 #signup-form input[type='submit'] {
6730 background-color: #1a1a1a;
6731 border: 1px solid #2c2c2c;
6733 #signup-form input[type='submit']:hover {
6734 background-color: #232323;
6735 border: 1px solid #484848;
6738 /* Log in tip */
6740 .login-container .login-tip {
6741 border: 1px solid #131313;
6744 /* Message box */
6746 .error-box {
6747 border: 1px solid red;
6748 background-color: #004147;
6750 .success-box {
6751 border: 1px solid green;
6752 background-color: #320042;
6755 /*=====================*/
6756 /* PASSWORD RESET PAGE */
6757 /*=====================*/
6759 .reset-password-container input[type='submit'] {
6760 background-color: #1a1a1a;
6761 border: 1px solid #2c2c2c;
6762 font-weight: bold;
6765 /*===================*/
6766 /* TABLE OF CONTENTS */
6767 /*===================*/
6769 .contents {
6770 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6771 border: 1px solid #1f1f1f;
6772 background-color: #131313;
6774 .contents-head {
6775 font-weight: bold;
6777 .post-body .contents li::before {
6778 color: #575756;
6779 font-feature-settings: "tnum";
6781 .post-body .contents a,
6782 .post-body .contents a:hover {
6783 border: none;
6785 .post-body .contents a:hover {
6786 text-decoration: underline;
6789 /*==================*/
6790 /* POSTS & COMMENTS */
6791 /*==================*/
6793 .body-text {
6794 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6797 .body-text a {
6798 border-bottom: 1px dotted #393939;
6800 .body-text a:hover {
6801 text-decoration: none;
6802 border-bottom: 1px solid currentColor;
6805 /*=======*/
6806 /* POSTS */
6807 /*=======*/
6809 h1.post-title {
6810 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6811 font-weight: 800;
6814 /*=================*/
6815 /* POST NAVIGATION */
6816 /*=================*/
6818 .post-nav-links a,
6819 .post-nav-links a:visited {
6820 color: #fff;
6822 .post-nav-links a:hover {
6823 text-decoration: none;
6825 .post-nav-title {
6826 font-weight: 600;
6829 .post-nav-label {
6830 color: #777;
6832 .post-nav-links a:hover .post-nav-label {
6833 font-weight: 600;
6834 color: #666;
6836 .post-nav-links a:hover .post-nav-title {
6837 color: #777;
6840 @media only screen and (max-width: 900px) {
6841 .sequence-title {
6842 border-top: 1px dotted #777;
6844 .post-nav.prev {
6845 border-right: 1px dotted #777;
6847 .post-nav.next {
6848 border-left: 1px dotted #777;
6852 .crosspost {
6853 background-color: #131313;
6854 border: 1px solid #2c2c2c;
6857 /*===========*/
6858 /* POST-META */
6859 /*===========*/
6861 .post-meta .post-section::before,
6862 .comment-meta .alignment-forum {
6863 color: #000;
6864 text-shadow:
6865 1px 1px 0 #9740cb,
6866 0 1px 0 #9740cb,
6867 0 0 5px #9740cb;
6869 a.post-section:hover {
6870 text-decoration: none;
6872 a.post-section:hover::before {
6873 color: #2e0062;
6875 .post-meta .post-section.alignment-forum::before,
6876 .comment-meta .alignment-forum {
6877 text-shadow:
6878 1px 1px 0 #658100,
6879 0 1px 0 #658100,
6880 0 0 5px #658100;
6882 a.post-section.alignment-forum:hover::before {
6883 color: #181a00;
6885 .post-meta .date {
6886 color: #666;
6888 .post-meta .author {
6889 color: #9740cb;
6891 .bottom-post-meta {
6892 border-color: #1f1f1f;
6895 /*============*/
6896 /* LINK POSTS */
6897 /*============*/
6899 .post.link-post a.link-post-link {
6900 text-decoration: none;
6901 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6902 font-weight: 600;
6904 .post.link-post a.link-post-link:hover {
6905 color: #00a9ed;
6907 .post.link-post a.link-post-link:hover::before {
6908 color: #670;
6909 text-shadow:
6910 0.5px 0.5px 0 #000,
6911 -0.5px -0.5px 0 #000,
6912 0 0 2px #000,
6913 0 0 3px #54d400;
6915 .post.link-post a.link-post-link:focus {
6916 color: #777;
6917 border-bottom: 2px dotted #777;
6920 /*==========*/
6921 /* COMMENTS */
6922 /*==========*/
6924 .comments::before {
6925 border-top: 1px solid #fff;
6926 box-shadow: 0 3px 4px -4px #fff inset;
6928 @-moz-document url-prefix() {
6929 .comments::before {
6930 box-shadow: 0 3px 3px -4px #fff inset;
6933 #content > .comment-thread .comment-meta a.date:focus,
6934 #content > .comment-thread .comment-meta a.permalink:focus {
6935 color: #666;
6936 outline: 2px dotted #575756;
6937 position: relative;
6938 background-color: #000;
6940 #content > .comment-thread .comment-meta a.date:focus {
6941 padding: 0 4px;
6942 left: -4px;
6944 #content > .comment-thread .comment-meta a.date:focus + * {
6945 margin-left: -8px;
6947 #content > .comment-thread .comment-meta a.permalink:focus {
6948 padding: 0 5px;
6949 left: -5px;
6951 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6952 margin-left: -10px;
6954 .comment-item {
6955 border: 1px solid #2c2c2c;
6956 background-color: var(--GW-comment-background-color);
6958 .comment-parent-link::after {
6959 box-shadow:
6960 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6961 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6962 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6965 /*================================*/
6966 /* DEEP COMMENT THREAD COLLAPSING */
6967 /*================================*/
6969 .comment-item input[id^="expand"] + label::after {
6970 color: #0cc800;
6971 font-weight: 600;
6973 .comment-item input[id^="expand"] + label:hover::after {
6974 color: #00a9ed;
6976 .comment-item input[id^="expand"] + label:active::after,
6977 .comment-item input[id^="expand"] + label:focus::after{
6978 color: #00a9ed;
6980 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6981 border-width: 1px 0 0 0;
6984 /*==============*/
6985 /* COMMENT-META */
6986 /*==============*/
6988 .comment-meta .author {
6989 font-weight: bold;
6990 font-size: 1.25em;
6991 color: #fff;
6993 .comment-meta .author:hover {
6994 text-decoration: none;
6995 color: #9740cb;
6997 .comment-item .author:not(.redacted).original-poster::after {
6998 opacity: 0.5;
7001 .comment-item .voting-controls.active-controls::after,
7002 .comment-item .voting-controls .karma-value::after,
7003 .post .voting-controls.active-controls::after,
7004 .post .voting-controls .karma-value::after,
7005 .author::before {
7006 background-color: #000;
7007 color: #575756;
7008 border-radius: 4px;
7009 box-shadow: 0 0 0 1px #1f1f1f inset;
7011 .comment-item .voting-controls.active-controls::after,
7012 .post .voting-controls.active-controls::after {
7013 padding: 6px 4px 4px 4px;
7014 bottom: -44px;
7016 .comment-item .voting-controls .karma-value::after,
7017 .post .voting-controls .karma-value::after {
7018 padding: 2px 8px 1px 8px;
7019 top: -25px;
7020 min-width: 56px;
7023 /*====================*/
7024 /* ANTI-KIBITZER MODE */
7025 /*====================*/
7027 .author.redacted,
7028 .inline-author.redacted {
7029 opacity: 0.6;
7030 font-weight: 400;
7033 .karma-value.redacted {
7034 opacity: 0.4;
7037 .link-post-domain.redacted {
7038 opacity: 0.4;
7041 /*===========================*/
7042 /* COMMENT THREAD NAVIGATION */
7043 /*===========================*/
7045 div.comment-parent-link {
7046 font-weight: 600;
7048 a.comment-parent-link {
7049 font-weight: 400;
7051 a.comment-parent-link::before {
7052 color: #393939;
7054 a.comment-parent-link:hover::before {
7055 background-color: #00001e;
7056 color: #575756;
7059 div.comment-child-links {
7060 font-weight: 600;
7062 div.comment-child-links a {
7063 font-weight: 400;
7065 .comment-child-link::before {
7066 color: #484848;
7069 .comment-item-highlight {
7070 box-shadow:
7071 0 0 2px #0047b5,
7072 0 0 3px #0047b5,
7073 0 0 5px #0047b5,
7074 0 0 7px #0047b5,
7075 0 0 10px #0047b5;
7076 border: 1px solid #0047b5;
7078 .comment-item-highlight-faint {
7079 box-shadow:
7080 0 0 2px #00193b,
7081 0 0 3px #00193b,
7082 0 0 5px #00193b,
7083 0 0 7px #00193b,
7084 0 0 10px #00193b;
7085 border: 1px solid #00193b;
7088 .comment-popup {
7089 background-color: #000;
7092 /*=======================*/
7093 /* COMMENTS COMPACT VIEW */
7094 /*=======================*/
7096 #comments-list-mode-selector button {
7097 box-shadow:
7098 0 0 0 4px #000 inset,
7099 0 0 0 5px #393939 inset;
7101 #comments-list-mode-selector button:hover,
7102 #comments-list-mode-selector button.selected {
7103 box-shadow:
7104 0 0 0 5px #393939 inset;
7106 #content.compact > .comment-thread .comment-item::after {
7107 color: #0cc800;
7108 background: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
7111 @media only screen and (hover: hover) {
7112 #content.compact > .comment-thread .comment-item:hover .comment,
7113 #content.compact > .comment-thread .comment-item.expanded .comment {
7114 background-color: #000;
7115 outline: 3px solid #54d400;
7117 #content.compact > .comment-thread .comment-item:hover .comment::before,
7118 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7119 background-color: #000;
7120 box-shadow:
7121 0 0 3px #000,
7122 0 0 5px #000,
7123 0 0 7px #000,
7124 0 0 10px #000,
7125 0 0 20px #000,
7126 0 0 30px #000,
7127 0 0 40px #000;
7130 @media only screen and (hover: none) {
7131 #content.compact > .comment-thread.expanded .comment-item .comment {
7132 background-color: #000;
7133 outline: 3px solid #54d400;
7135 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7136 background-color: #000;
7137 box-shadow:
7138 0 0 3px #000,
7139 0 0 5px #000,
7140 0 0 7px #000,
7141 0 0 10px #000,
7142 0 0 20px #000,
7143 0 0 30px #000,
7144 0 0 40px #000;
7148 #content.user-page.compact > h1.listing {
7149 margin-top: 0.5rem;
7151 #content.user-page.compact > h1.listing + .post-meta {
7152 margin-bottom: 0.5rem;
7155 /*===========================*/
7156 /* HIGHLIGHTING NEW COMMENTS */
7157 /*===========================*/
7159 .new-comment::before {
7160 outline: 2px solid #7f3b92;
7161 box-shadow:
7162 0 0 6px -2px #7f3b92 inset,
7163 0 0 4px #7f3b92,
7164 0 0 6px #7f3b92;
7167 /*=================================*/
7168 /* COMMENT THREAD MINIMIZE BUTTONS */
7169 /*=================================*/
7171 .comment-minimize-button {
7172 color: #2c2c2c;
7174 .comment-minimize-button:hover {
7175 color: #484848;
7176 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7178 .comment-minimize-button::after {
7179 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7180 color: #777;
7182 .comment-minimize-button.maximized::after {
7183 color: #2c2c2c;
7186 /*==============*/
7187 /* VOTE BUTTONS */
7188 /*==============*/
7190 .vote::before {
7191 content: "";
7192 border-radius: 50%;
7193 background-size: 17px 17px;
7194 width: 17px;
7195 height: 17px;
7196 display: inline-block;
7197 position: relative;
7198 top: 2.5px;
7200 .vote:active {
7201 transform: none;
7204 /**********/
7205 /* States.
7208 /* _ 1
7210 .upvote {
7211 filter: grayscale(100%) brightness(128%);
7213 .downvote {
7214 filter: grayscale(100%) brightness(188%);
7217 /* _ 2
7219 .vote:not(.none) {
7220 filter: drop-shadow(0 0 1px #000);
7223 /* 1 _
7225 .vote.two-temp::before {
7226 box-shadow:
7227 0 0 0 1px #000,
7228 0 0 0 4px #2f2f2f,
7229 0 0 0 5px transparent;
7232 /* 2 _
7234 .upvote.two::before {
7235 box-shadow:
7236 0 0 0 1px #000,
7237 0 0 0 4px var(--GW-upvote-button-color),
7238 0 0 0 5px transparent;
7240 .downvote.two::before {
7241 box-shadow:
7242 0 0 0 1px #000,
7243 0 0 0 4px var(--GW-downvote-button-color),
7244 0 0 0 5px transparent;
7247 /* Disabled.
7249 .vote:disabled {
7250 visibility: unset;
7251 filter: brightness(50%);
7254 /*********/
7255 /* Icons.
7258 .karma .upvote::before {
7259 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7261 .karma .downvote::before {
7262 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7265 .karma .upvote:disabled::before {
7266 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiBzdHJva2U9IiNEOEQ4RDgiIHN0cm9rZS13aWR0aD0iNCUiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
7268 .karma .downvote:disabled::before {
7269 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7272 .agreement .upvote::before {
7273 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgZmlsbD0iIzAwRDgwMCIvPjwvc3ZnPg==');
7275 .agreement .downvote::before {
7276 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIGZpbGw9IiNFQjRDMkEiLz48L3N2Zz4=');
7279 .agreement .upvote:disabled::before {
7280 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7282 .agreement .downvote:disabled::before {
7283 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7286 /*===========================*/
7287 /* COMMENTING AND POSTING UI */
7288 /*===========================*/
7290 .posting-controls input[type='submit'] {
7291 background-color: #000;
7292 border: 1px solid #484848;
7293 font-weight: bold;
7295 .posting-controls input[type='submit']:hover,
7296 .posting-controls input[type='submit']:focus {
7297 background-color: #1f1f1f;
7298 border: 1px solid #575756;
7301 .comment-controls .cancel-comment-button {
7302 font-weight: 600;
7303 color: #00a9ed;
7304 text-shadow:
7305 0 0 1px #000,
7306 0 0 2px #000;
7308 .comment-controls .cancel-comment-button:hover {
7309 color: #0090e0;
7310 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7313 .new-comment-button {
7314 font-weight: 600;
7317 .comment-controls .delete-button,
7318 .comment-controls .retract-button {
7319 color: #00bbf5;
7320 opacity: 0.85;
7322 .comment-controls .edit-button,
7323 .comment-controls .unretract-button {
7324 color: #9740cb;
7326 .comment-controls .action-button:hover {
7327 color: #0090e0;
7328 opacity: 1.0;
7331 .button.edit-post-link:not(:hover) {
7332 color: #9740cb;
7335 .posting-controls textarea {
7336 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
7337 color: #fff;
7338 background-color: #000;
7339 border-color: #484848;
7340 box-shadow:
7341 0 0 0 1px #131313 inset;
7343 .posting-controls textarea:focus {
7344 background-color: #00001e;
7345 border-color: #0cc800;
7346 box-shadow:
7347 0 0 0 1px #1d1f00 inset,
7348 0 0 0 1px #000,
7349 0 0 0 2px #0cc800;
7351 .posting-controls.edit-existing-post textarea:focus,
7352 .posting-controls form.edit-existing-comment textarea:focus {
7353 border-color: #9740cb;
7354 box-shadow:
7355 0 0 0 1px #3d0061 inset,
7356 0 0 0 1px #000,
7357 0 0 0 2px #9740cb;
7360 /*= Scroll bars =*/
7362 .posting-controls textarea::-webkit-scrollbar {
7363 width: 16px;
7364 background-color: transparent;
7366 .posting-controls textarea::-webkit-scrollbar-track {
7367 background-color: #131313;
7368 border-left: 1px solid #484848;
7369 border-top: 1px solid #131313;
7371 .posting-controls textarea:focus::-webkit-scrollbar-track {
7372 border-left: 1px solid #0cc800;
7373 border-top: 1px solid #1d1f00;
7375 .posting-controls textarea::-webkit-scrollbar-thumb {
7376 background-color: #484848;
7377 box-shadow: 0 0 0 1px #131313 inset;
7378 border-left: 1px solid #484848;
7380 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7381 border-left: 1px solid #0cc800;
7382 background-color: #40a800;
7383 box-shadow:
7384 0 1px 0 0 #1d1f00 inset,
7385 0 0 0 1px #131313 inset;
7388 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7389 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7390 border-left: 1px solid #9740cb;
7392 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7393 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7394 border-left: 1px solid #9740cb;
7395 background-color: #8533c2;
7398 /* GUIEdit buttons */
7400 .guiedit-buttons-container {
7401 background-image: linear-gradient(to bottom, #000 0%, #1d1f00 50%, #252c00 75%, #344700 100%);
7404 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7405 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7406 color: #ce92ee;
7408 .guiedit-buttons-container button {
7409 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
7412 .guiedit::after {
7413 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7414 color: #777;
7415 text-shadow: none;
7418 /* Markdown hints */
7420 #markdown-hints-checkbox + label {
7421 color: #0cc800;
7423 #markdown-hints-checkbox + label:hover {
7424 color: #0098e4;
7425 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7427 #markdown-hints {
7428 border: 1px solid #00a9ed;
7429 background-color: #000340;
7432 /*================*/
7433 /* EDIT POST FORM */
7434 /*================*/
7436 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7437 top: -1px;
7439 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7440 border-radius: 3px;
7441 border: 1px solid #1f1f1f;
7442 color: #777;
7444 @media only screen and (hover:hover) {
7445 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7446 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7447 text-shadow:
7448 0 0 1px #000,
7449 0 0 2px #000,
7450 0 0 2.5px #484848;
7452 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7453 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7454 border-color: #484848;
7457 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7458 content: "\F00C";
7460 #edit-post-form input[type='radio'] + label {
7461 color: #777;
7462 border-color: #1f1f1f;
7463 padding: 4px 12px 5px 12px;
7465 #edit-post-form input[type='radio'][value='all'] + label {
7466 border-radius: 8px 0 0 8px;
7467 border-width: 1px;
7469 #edit-post-form input[type='radio'][value='drafts'] + label {
7470 border-radius: 0 8px 8px 0;
7472 @media only screen and (hover:hover) {
7473 #edit-post-form input[type='radio'] + label:hover,
7474 #edit-post-form input[type='radio']:focus + label {
7475 background-color: #1f1f1f;
7476 color: #fff;
7479 #edit-post-form input[type='radio']:focus + label {
7480 color: #fff;
7481 box-shadow:
7482 0 0 0 1px #484848;
7484 #edit-post-form input[type='radio']:checked + label {
7485 background-color: #1f1f1f;
7486 border-color: #1f1f1f;
7487 color: #fff;
7488 text-shadow:
7489 0 -1px 0 #000,
7490 0 0.5px 0.5px #fff;
7493 /*=======*/
7494 /* LINKS */
7495 /*=======*/
7498 text-decoration: none;
7499 color: #0cc800;
7501 a:visited {
7502 color: #76cc54;
7504 a:hover {
7505 text-decoration: underline;
7508 /*=========*/
7509 /* BUTTONS */
7510 /*=========*/
7512 button,
7513 input[type='submit'] {
7514 color: #0cc800;
7517 button:active,
7518 input[type='submit']:active {
7519 color: #0090e0;
7520 transform: scale(0.9);
7522 .button:visited {
7523 color: #0cc800;
7525 .button:active {
7526 transform: scale(0.9);
7528 @-moz-document url-prefix() {
7529 .button:active {
7530 transform: none;
7534 @media only screen and (hover:hover) {
7535 button:hover,
7536 input[type='submit']:hover,
7537 button:focus,
7538 input[type='submit']:focus {
7539 color: #0090e0;
7540 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7543 .button:hover {
7544 color: #0090e0;
7545 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7546 text-decoration: none;
7548 .button:focus:not(:hover) {
7549 transform: none;
7553 /*==========*/
7554 /* HEADINGS */
7555 /*==========*/
7557 .body-text h1,
7558 .body-text h2,
7559 .body-text h4 {
7560 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7562 .body-text h3,
7563 .body-text h5,
7564 .body-text h6 {
7565 font-weight: 600;
7566 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7568 .body-text h6 {
7569 color: #9b9b9b;
7571 .body-text h1 {
7572 border-bottom: 1px solid #484848;
7575 /*========*/
7576 /* QUOTES */
7577 /*========*/
7579 blockquote {
7580 border-left: 5px solid #2c2c2c;
7583 /*========*/
7584 /* IMAGES */
7585 /*========*/
7587 #content img,
7588 #content figure.image img {
7589 border: 1px solid #2c2c2c;
7591 #content figure img {
7592 border: 1px solid #fff;
7594 #content img[src$='.svg'],
7595 #content figure img[src$='.svg'] {
7596 border: none;
7598 #content img[style^='float'] {
7599 border: 1px solid transparent;
7602 /*========*/
7603 /* TABLES */
7604 /*========*/
7606 #content:not(.tag-index-page) .body-text table,
7607 #content:not(.tag-index-page) .body-text table th,
7608 #content:not(.tag-index-page) .body-text table td {
7609 border: 1px solid #2c2c2c;
7612 /*======*/
7613 /* MISC */
7614 /*======*/
7616 hr {
7617 border-bottom: 1px solid #575756;
7620 code {
7621 background-color: #0b0b00;
7622 border: 1px solid #1d1f00;
7623 border-radius: 4px;
7626 input[type='text'],
7627 input[type='search'],
7628 input[type='password'] {
7629 background-color: #000;
7630 border: 1px solid #1f1f1f;
7631 color: #fff;
7633 input[type='text']:focus,
7634 input[type='search']:focus,
7635 input[type='password']:focus {
7636 background-color: #00001e;
7637 border: 1px solid #393939;
7638 box-shadow: 0 0 1px #393939;
7641 select {
7642 color: #fff;
7645 @-moz-document url-prefix() {
7646 h1.listing s,
7647 .post > h1:first-of-type s {
7648 position: relative;
7649 text-decoration: none;
7651 h1.listing s::after,
7652 .post > h1:first-of-type s::after {
7653 position: absolute;
7654 border-bottom: 3px solid #fff;
7655 content: "";
7656 top: 0;
7657 left: 0;
7658 width: 100%;
7659 height: 50%;
7662 /*============*/
7663 /* ABOUT PAGE */
7664 /*============*/
7666 .about-page mark {
7667 background-color: #191919;
7668 text-decoration: none;
7669 box-shadow:
7670 0 -1px 0 0 #fff inset,
7671 0 -3px 1px -2px #fff inset;
7672 padding: 0 1px;
7675 #content.about-page .accesskey-table {
7676 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7677 border-color: #1f1f1f;
7680 #content.about-page img {
7681 border: 1px solid #fff;
7684 /*========================*/
7685 /* QUALIFIED HYPERLINKING */
7686 /*========================*/
7688 #aux-about-link a {
7689 color: #777;
7691 #aux-about-link a:hover {
7692 opacity: 1.0;
7693 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7696 .qualified-linking label {
7697 color: #0cc800;
7699 .qualified-linking label:hover {
7700 text-shadow:
7701 0 0 1px #000,
7702 0 0 3px #000,
7703 0 0 5px #0cc800;
7706 .qualified-linking-toolbar {
7707 border: 1px solid #fff;
7708 background-color: #000;
7710 .qualified-linking-toolbar a {
7711 background-color: #131313;
7712 border: 1px solid #2c2c2c;
7713 border-radius: 4px;
7715 .qualified-linking-toolbar a:visited {
7716 color: #0cc800;
7718 .qualified-linking-toolbar a:hover {
7719 text-decoration: none;
7720 background-color: #1f1f1f;
7721 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7723 .qualified-linking label::after {
7724 background-color: #232323;
7725 opacity: 0.8;
7728 /*======*/
7729 /* MATH */
7730 /*======*/
7732 .mathjax-block-container::-webkit-scrollbar {
7733 height: 12px;
7734 background-color: #0b0b00;
7735 border-radius: 6px;
7736 border: 1px solid #1d1f00;
7738 .mathjax-block-container::-webkit-scrollbar-thumb {
7739 background-color: #1e1f13;
7740 border-radius: 6px;
7741 border: 1px solid #282c11;
7743 .mathjax-inline-container::-webkit-scrollbar {
7744 height: 8px;
7745 background-color: #0b0b00;
7746 border-radius: 4px;
7747 border: 1px solid #1d1f00;
7749 .mathjax-inline-container::-webkit-scrollbar-thumb {
7750 background-color: #1e1f13;
7751 border-radius: 4px;
7752 border: 1px solid #282c11;
7756 /*===============*/
7757 /* USER MENTIONS */
7758 /*===============*/
7760 .textarea-container .autocomplete-container {
7761 background-color: rgba(0, 3, 64, 0.75);
7762 border: 1px solid rgba(10, 200, 0, 0.75);
7765 .textarea-container .autocomplete-container div.highlighted {
7766 background-color: rgba(10, 200, 0, 0.75);
7767 color: #000;
7770 .textarea-container .autocomplete-container div span.age,
7771 .textarea-container .autocomplete-container div span.karma {
7772 color: #666;
7776 /*=================*/
7777 /* ALIGNMENT FORUM */
7778 /*=================*/
7780 #content.alignment-forum-index-page::before {
7781 background-color: #131100;
7783 #content.alignment-forum-index-page::after {
7784 font-family: "Concourse SmallCaps";
7785 font-weight: bold;
7786 background-color: #658100;
7787 -webkit-background-clip: text;
7788 color: transparent;
7789 text-shadow:
7790 rgba(0, 0, 0, 0.5) 0px 3px 3px;;
7792 @media only screen and (hover: hover) {
7793 #content.alignment-forum-index-page h1.listing a:hover,
7794 #content.alignment-forum-index-page h1.listing a:focus {
7795 background-color: rgba(19, 17, 0, 0.85);
7799 /*====================*/
7800 /* FOR NARROW SCREENS */
7801 /*====================*/
7803 @media only screen and (max-width: 1440px) {
7804 #hns-date-picker {
7805 background-color: #232323;
7806 opacity: 1.0;
7808 #hns-date-picker::before {
7809 border: 1px solid #575756;
7810 border-width: 1px 0 1px 1px;
7813 @media only screen and (max-width: 1160px) {
7814 #theme-selector:hover::after {
7815 background-color: #575756;
7818 @media only screen and (max-width: 1080px) {
7819 #text-size-adjustment-ui button {
7820 border: 1px solid #575756;
7821 padding: 0 0 0 1px;
7822 border-radius: 50%;
7823 box-shadow:
7824 0 0 6px #575756 inset,
7825 0 0 0 1px transparent;
7827 #theme-tweaker-toggle button {
7828 border: 1px solid #575756;
7829 box-shadow:
7830 0 0 10px #575756 inset,
7831 0 0 0 1px transparent;
7832 border-radius: 50%;
7833 transform: scale(0.8);
7836 @media only screen and (max-width: 1020px) {
7837 #quick-nav-ui a {
7838 box-shadow:
7839 0 0 0 1px #575756,
7840 0 0 0 2px transparent;
7842 #new-comment-nav-ui .new-comments-count::before {
7843 background-color: #232323;
7844 box-shadow:
7845 0 0 0 1px #575756,
7846 0 0 0 2px transparent;
7847 border-radius: 8px;
7849 #anti-kibitzer-toggle {
7850 box-shadow:
7851 0 0 0 1px #575756,
7852 0 0 0 2px transparent;
7853 background-color: #232323;
7854 border-radius: 6px;
7855 overflow: hidden;
7858 @media only screen and (max-width: 1000px) {
7859 #theme-selector {
7860 background-color: #232323;
7861 box-shadow:
7862 0 0 0 1px #575756,
7863 0 0 0 2px transparent;
7865 #theme-selector:hover::after {
7866 width: calc(6em - 3px);
7867 height: calc(100% - 5px);
7868 top: 3px;
7869 left: 100%;
7871 #text-size-adjustment-ui button {
7872 background-color: #1f1f1f;
7874 #text-size-adjustment-ui button:hover {
7875 background-color: #131313;
7877 #theme-tweaker-toggle button {
7878 background-color: #1f1f1f;
7882 /*========*/
7883 /* MOBILE */
7884 /*========*/
7886 /**************************************************************************/
7887 @media only screen and (max-width: 1160px) {
7888 /**************************************************************************/
7890 #ui-elements-container > div[id$='-ui-toggle'] button {
7891 color: #666;
7892 text-shadow:
7893 0 0 1px #000,
7894 0 0 3px #000,
7895 0 0 5px #000,
7896 0 0 10px #000,
7897 0 0 20px #000,
7898 0 0 30px #000;
7901 #theme-selector {
7902 background-color: #232323;
7903 box-shadow:
7904 0 0 0 1px #575756,
7905 0 0 1px 3px #000,
7906 0 0 3px 3px #000,
7907 0 0 5px 3px #000,
7908 0 0 10px 3px #000,
7909 0 0 20px 3px #000;
7910 border-radius: 12px;
7912 #theme-selector::before,
7913 #theme-selector .theme-selector-close-button {
7914 color: #888;
7915 text-shadow: 0.5px 0.5px 0 #000;
7917 #theme-selector button {
7918 background-color: #191919;
7919 border-radius: 10px;
7921 #theme-selector button::after {
7922 color: #fff;
7923 padding-bottom: 2px;
7924 max-width: calc(100% - 3.25em);
7925 overflow: hidden;
7926 text-overflow: ellipsis;
7928 #theme-selector button.selected::after {
7929 text-shadow:
7930 0 -1px 0 #000,
7931 0 0.5px 0.5px #fff;
7934 #quick-nav-ui {
7935 background-color: #000;
7937 #quick-nav-ui,
7938 #new-comment-nav-ui,
7939 #hns-date-picker {
7940 box-shadow:
7941 0 0 1px 3px #000,
7942 0 0 3px 3px #000,
7943 0 0 5px 3px #000,
7944 0 0 10px 3px #000,
7945 0 0 20px 3px #000;
7947 #quick-nav-ui a::after,
7948 #new-comment-nav-ui::before {
7949 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7950 font-weight: 600;
7951 box-shadow:
7952 0 0 1px 0 #000,
7953 0 0 3px 0 #000,
7954 0 0 5px 0 #000;
7955 background-color: #000;
7956 border-radius: 4px;
7958 #quick-nav-ui,
7959 #new-comment-nav-ui {
7960 border-radius: 8px;
7962 #new-comment-nav-ui {
7963 background-color: #232323;
7964 border: 1px solid #575756;
7966 #new-comment-nav-ui::before {
7967 color: #777;
7969 #new-comment-nav-ui .new-comment-sequential-nav-button {
7970 box-shadow: 0 0 0 1px #575756;
7971 color: #777;
7973 #new-comment-nav-ui .new-comments-count {
7974 background-color: inherit;
7975 box-shadow: 0 -1px 0 0 #575756;
7977 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7978 color: #393939;
7980 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7981 border-radius: 7px 0 0 7px;
7983 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7984 border-radius: 0 7px 7px 0;
7986 #new-comment-nav-ui button::after {
7987 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7990 /*****************************************/
7991 @media only screen and (max-width: 900px) {
7992 /*****************************************/
7993 h1.listing {
7994 font-size: 1.75rem;
7995 line-height: 1;
7997 h1.listing .link-post-link {
7998 top: 2px;
8000 h1.listing + .post-meta .karma-value,
8001 h1.listing + .post-meta .comment-count,
8002 h1.listing + .post-meta .lw2-link,
8003 h1.listing + .post-meta .read-time {
8004 bottom: 0;
8006 h1.listing + .post-meta .post-section::before {
8007 position: unset;
8009 h1.listing + .post-meta .post-section {
8010 overflow: visible;
8011 order: 1;
8013 h1.listing + .post-meta .link-post-domain {
8014 order: 2;
8015 line-height: 1;
8016 flex-basis: 100%;
8018 h1.listing + .post-meta::after {
8019 bottom: -10px;
8021 #content.user-page h1.listing + .post-meta {
8022 margin-bottom: 1em;
8024 #content.user-page h1.link-post-listing::after {
8025 height: calc(100% + 2em);
8028 #nav-item-search button::before {
8029 color: #0cc800;
8032 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8033 background-color: #484848;
8036 .comment-item .comment-item {
8037 margin: 0.75em 2px 4px 6px;
8038 box-shadow:
8039 0 0 2px #2c2c2c,
8040 0 0 4px #2c2c2c,
8041 0 0 7px #2c2c2c;
8043 .comment-item .comment-item + .comment-item {
8044 margin: 1.5em 2px 4px 6px;
8046 .comment-body {
8047 font-size: 1.125rem;
8050 a.comment-parent-link:hover::before {
8051 background-color: unset;
8054 .sublevel-nav:not(.sort) .sublevel-item,
8055 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8056 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8057 border-radius: 8px;
8058 border-width: 1px;
8059 margin: 2px;
8061 /*******************************************/
8062 } @media only screen and (max-width: 720px) {
8063 /*******************************************/
8064 h1.listing {
8065 margin: 10px 6px 6px 6px;
8066 max-width: calc(100% - 12px);
8067 font-size: 1.5rem;
8068 padding-right: 35px;
8070 #content.conversations-user-page h1.listing {
8071 font-size: 1.5rem;
8073 h1.listing + .post-meta {
8074 margin: 0 6px 0 7px;
8075 clear: both;
8077 h1.listing + .post-meta {
8078 padding: .25em 254px 0 0;
8080 h1.listing + .post-meta::after {
8081 bottom: -2px;
8083 h1.listing + .post-meta > * {
8084 line-height: 1;
8085 display: block;
8087 #content.conversations-user-page h1.listing + .post-meta > * {
8088 line-height: 1.5;
8090 h1.listing + .post-meta .date,
8091 h1.listing + .post-meta .author {
8092 line-height: 1.3;
8094 h1.listing + .post-meta .karma-value,
8095 h1.listing + .post-meta .comment-count,
8096 h1.listing + .post-meta .lw2-link,
8097 h1.listing + .post-meta .read-time {
8098 top: unset;
8099 font-size: 1rem;
8100 box-shadow: none;
8102 h1.listing + .post-meta .karma-value::before,
8103 h1.listing + .post-meta .comment-count::before,
8104 h1.listing + .post-meta .lw2-link::before,
8105 h1.listing + .post-meta .read-time::before {
8106 box-shadow: none;
8108 h1.listing + .post-meta .karma-value,
8109 h1.listing + .post-meta .comment-count,
8110 h1.listing + .post-meta .read-time,
8111 h1.listing + .post-meta .lw2-link {
8112 bottom: 4px;
8115 h1.listing + .post-meta .karma-value {
8116 right: 192px;
8118 h1.listing + .post-meta .karma-value::before {
8119 text-shadow: 0.5px 0.5px 0.5px #575756;
8121 h1.listing + .post-meta .comment-count {
8122 right: 132px;
8124 h1.listing + .post-meta .read-time {
8125 right: 56px;
8127 h1.listing + .post-meta .lw2-link {
8128 opacity: 1;
8129 right: 0;
8131 h1.listing + .post-meta .link-post-domain {
8132 margin: 0;
8133 line-height: 1.3;
8134 overflow: hidden;
8135 text-overflow: ellipsis;
8137 h1.listing + .post-meta .post-section::before {
8138 position: absolute;
8139 left: unset;
8140 right: 0;
8141 bottom: 30px;
8142 top: unset;
8144 h1.listing a {
8145 display: inline;
8147 /*******************************************/
8148 } @media only screen and (max-width: 520px) {
8149 /*******************************************/
8150 h1.listing + .post-meta {
8151 padding: .25em 144px 0 0;
8152 flex-flow: column;
8154 #content.conversations-user-page h1.listing + .post-meta {
8155 flex-flow: row wrap;
8157 h1.listing + .post-meta .date {
8158 margin: 0.375em 0 0.25em 0;
8159 line-height: 1;
8161 #content.user-page h1.listing::after {
8162 height: calc(100% + 2.125em);
8164 #content.user-page h1.link-post-listing::after {
8165 height: calc(100% + 3.125em);
8167 #content.user-page:not(.conversations-user-page) h1.listing + .post-meta {
8168 padding: 0.25em 144px 0.5em 36px;
8170 #content.conversations-user-page h1.listing + .post-meta .date {
8171 margin: 0 0 0 1em;
8174 h1.listing + .post-meta .karma-value {
8175 bottom: 28px;
8176 right: 56px;
8178 h1.listing + .post-meta .comment-count {
8179 bottom: 28px;
8180 right: 0;
8182 h1.listing + .post-meta .read-time {
8183 right: 56px;
8184 bottom: 4px;
8186 h1.listing + .post-meta .lw2-link {
8187 right: 0;
8188 bottom: 4px;
8190 h1.listing + .post-meta .link-post-domain {
8191 max-width: 100%;
8193 h1.listing + .post-meta .post-section::before {
8194 right: 120px;
8197 #content.compact > .comment-thread .comment-item {
8198 max-height: 110px;
8201 .textarea-container:focus-within button:active {
8202 background-color: #2c2c2c;
8204 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8205 background-color: #131313;
8206 border: 1px solid #1f1f1f;
8207 border-radius: 6px;
8209 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8210 border-color: #00a9ed;
8211 box-shadow:
8212 0 0 0 1px #000,
8213 0 0 0 2px #00a9ed;
8214 color: #00a9ed;
8215 font-weight: 600;
8217 #content.conversation-page .textarea-container:focus-within::after {
8218 background-color: #000;
8220 .textarea-container:focus-within .guiedit-buttons-container {
8221 background-color: white;
8222 border-top: 1px solid #1d1f00;
8224 .textarea-container:focus-within button.guiedit {
8225 background-color: #131313;
8226 border: 1px solid #1f1f1f;
8227 border-radius: 6px;
8229 #markdown-hints::after {
8230 color: #9740cb;
8233 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8234 top: 2px;
8236 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8237 top: 1px;
8239 /*******************************************/
8240 } @media only screen and (max-width: 320px) {
8241 /*******************************************/
8242 h1.listing {
8243 font-size: 1.25rem;
8245 #content.user-page h1.listing::after {
8246 height: calc(100% + 2.625em);
8248 #content.user-page h1.link-post-listing::after {
8249 height: calc(100% + 3.75em);
8255 /*************/
8256 /* ACCORDIUS */
8257 /*************/
8259 /*======*/
8260 /* TAGS */
8261 /*======*/
8263 #tags {
8264 order: 12;
8265 display: flex;
8266 flex-basis: 100%;
8267 justify-content: center;
8268 margin: 0;
8269 flex-flow: row wrap;
8270 align-items: flex-start;
8273 /*===============*/
8274 /* DEFAULT THEME */
8275 /*===============*/
8277 /*++++++*/
8278 /* TAGS */
8279 /*++++++*/
8281 #tags {
8282 padding: 0.5em;
8284 #tags::before {
8285 content: "Tags:";
8286 margin: 0 0.25em 0 0;
8287 opacity: 0.5;
8288 line-height: 1;
8289 align-self: center;
8291 #tags a {
8292 border-radius: 8px;
8293 background-color: #110c06;
8294 border: 1px solid #2e2416;
8295 padding: 4px 8px 5px 8px;
8296 line-height: 1;
8297 margin: 0.25em;
8298 font-size: 0.9375em;
8300 #tags a:hover {
8301 text-decoration: none;
8302 background-color: #221806;
8304 #tags a:active {
8305 color: #00a1e8;