Fix for user mentions list in comments on mobile
[lw2-viewer.git] / www / css / style-dark.mac.css
blob9ecd511a11e97489c0660c8404205151374d076d
1 body {
2 --invertible-display: none;
3 --inverted-display: initial;
5 /*************/
6 /* VARIABLES */
7 /*************/
9 :root {
10 --GW-comment-background-color-odd: transparent;
11 --GW-comment-background-color-even: transparent;
12 --GW-comment-background-color-target: transparent;
14 --inverted-display: none;
17 /***************/
18 /* BASE LAYOUT */
19 /***************/
21 html {
22 box-sizing: border-box;
23 font-size: 16px;
25 *, *::before, *::after {
26 box-sizing: inherit;
28 script {
29 display: none !important;
32 /*=------=*/
33 /*= Body =*/
34 /*=------=*/
36 body {
37 padding: 0;
38 margin: 0;
40 body::before {
41 background-color: inherit;
42 position: fixed;
43 width: 100%;
44 height: 100%;
47 body.no-scroll {
48 overflow-y: scroll;
49 position: fixed;
50 width: 100%;
53 /*=----------------------------=*/
54 /*= Immediate children of body =*/
55 /*=----------------------------=*/
57 body > * {
58 max-width: 900px;
61 /* Special styles for special browsers.
62 (This one is a fix for Firefox’s built-in screenshot feature.)
64 body > iframe[id^='firefox-screenshots'] {
65 max-width: unset;
68 #content {
69 margin: 0 auto;
70 padding: 0 30px;
71 position: relative;
72 overflow: visible;
73 display: grid;
74 grid-template-columns: 2fr 1fr 2fr;
76 #content::before {
77 content: "";
78 display: block;
79 position: absolute;
80 top: 0;
81 left: 0;
82 width: 100%;
83 height: 100%;
84 z-index: -1;
85 pointer-events: none;
88 /*=---------=*/
89 /*= Content =*/
90 /*=---------=*/
92 #content > * {
93 grid-column: 1 / span 3;
96 /*=----------------------=*/
97 /*= Floating UI elements =*/
98 /*=----------------------=*/
100 #ui-elements-container {
101 position: fixed;
102 height: 100vh;
103 top: 0;
104 left: 0;
105 right: 0;
106 margin: auto;
107 z-index: 10000;
108 pointer-events: none;
110 #ui-elements-container > * {
111 pointer-events: auto;
114 /*=----------------=*/
115 /*= Images overlay =*/
116 /*=----------------=*/
117 /* (To exclude images in posts from theme tweaks) */
119 #images-overlay {
120 position: absolute;
121 z-index: 1;
122 left: 0;
123 right: 0;
124 margin: auto;
127 /***********/
128 /* NAV BAR */
129 /***********/
131 .nav-bar {
132 margin: 0 -30px;
133 display: flex;
134 order: -11;
135 z-index: 1;
138 /*=---------------=*/
139 /*= Nav bar items =*/
140 /*=---------------=*/
142 .nav-item {
143 flex: 1 1 auto;
145 .nav-item * {
146 text-overflow: ellipsis;
147 white-space: nowrap;
148 overflow: hidden;
150 .nav-inner {
151 padding: 12px 30px;
152 text-align: center;
153 display: block;
154 position: relative;
155 line-height: inherit;
156 width: 100%;
157 background: unset;
159 .nav-bar-top:not(#primary-bar) .nav-inner {
160 padding: 4px 0;
163 #nav-item-sequences .nav-inner::before {
164 font-family: "Font Awesome", "Font Awesome 5 Free";
165 content: "\F5DB";
167 @media only screen and (min-width: 901px) {
168 #nav-item-about .nav-inner {
169 margin-right: 0.5em;
171 #nav-item-sequences .nav-inner::before {
172 font-size: 1rem;
173 display: block;
175 #secondary-bar #nav-item-sequences .nav-inner {
176 font-size: 0;
177 line-height: 1.4;
181 /*=------------=*/
182 /*= Bottom bar =*/
183 /*=------------=*/
185 #bottom-bar {
186 order: 11;
188 h1.listing ~ #bottom-bar {
189 margin-top: 1.25em;
191 #bottom-bar .nav-item {
192 flex: 1 1 0;
195 /*=-----------------=*/
196 /*= Accesskey hints =*/
197 /*=-----------------=*/
199 .nav-inner::after {
200 content: attr(accesskey);
201 display: none;
204 /*=---------------=*/
205 /*= Pagination UI =*/
206 /*=---------------=*/
208 #bottom-bar .nav-item a::before,
209 #top-nav-bar a::before {
210 font-family: "Font Awesome", "Font Awesome 5 Free";
211 font-weight: 900;
212 font-size: 0.8em;
213 position: relative;
214 bottom: 1px;
215 margin-right: 0.5em;
217 #bottom-bar #nav-item-first a::before,
218 #top-nav-bar a.nav-item-first::before {
219 content: "\F33e";
221 #bottom-bar #nav-item-top a::before {
222 content: "\F062";
224 #bottom-bar #nav-item-prev a::before,
225 #top-nav-bar a.nav-item-prev::before {
226 content: "\F060";
228 #bottom-bar #nav-item-next a::before,
229 #top-nav-bar a.nav-item-next::before {
230 content: "\F061";
232 #bottom-bar #nav-item-last a::before,
233 #top-nav-bar a.nav-item-last::before {
234 content: "\F340";
236 #bottom-bar #nav-item-next a::before {
237 margin-left: -2em;
238 margin-right: 0;
239 left: 3.8em;
241 #bottom-bar #nav-item-last a::before {
242 margin-left: -1.8em;
243 margin-right: 0;
244 left: 3.4em;
247 /*= Hover tooltips =*/
249 #top-nav-bar a {
250 position: relative;
252 #top-nav-bar a::after {
253 bottom: calc(100% - 3px);
254 content: attr(data-target-page);
256 #top-nav-bar a::after {
257 display: block;
258 position: absolute;
259 font-size: 0.75rem;
260 width: 100%;
261 line-height: 1;
262 visibility: hidden;
264 #top-nav-bar a:hover::after,
265 #bottom-bar a:hover::after {
266 visibility: visible;
269 /*=-----------------------=*/
270 /*= Decorative bottom bar =*/
271 /*=-----------------------=*/
272 /* (On short pages with no pagination) */
274 #bottom-bar.decorative {
275 position: relative;
277 #bottom-bar.decorative .nav-item {
278 display: none;
281 /*=------------=*/
282 /*= Search tab =*/
283 /*=------------=*/
285 #nav-item-search {
286 flex: 4 1 auto;
288 #nav-item-search form::before {
289 content: "\F002";
290 font-family: "Font Awesome", "Font Awesome 5 Free";
291 font-weight: 900;
292 display: inline-block;
293 vertical-align: top;
294 height: 23px;
295 width: 23px;
297 #nav-item-search input {
298 height: 23px;
299 width: calc(95% - 80px);
300 padding: 1px 4px;
302 #nav-item-search button {
303 height: 21px;
306 /*=-----------=*/
307 /*= Login tab =*/
308 /*=-----------=*/
310 #nav-item-login {
311 position: relative;
312 padding-right: 0.5em;
315 /*******************/
316 /* INBOX INDICATOR */
317 /*******************/
319 #inbox-indicator {
320 position: absolute;
321 top: 1px;
322 right: 0;
323 height: 100%;
324 visibility: hidden;
326 #inbox-indicator::before {
327 content: "\F0E0";
328 font-family: "Font Awesome", "Font Awesome 5 Free";
329 color: #393939;
330 font-size: 1.1875rem;
331 position: absolute;
332 height: 100%;
333 right: 0;
334 top: 0;
335 padding: 0 0.45em;
336 visibility: visible;
337 font-weight: 900;
339 #inbox-indicator.new-messages::before {
340 color: #0090e0;
341 text-shadow:
342 0 0 1px #777,
343 0.5px 0.5px 1px #777;
345 a#inbox-indicator:hover::before {
346 color: #000;
347 text-shadow:
348 0 0 1px #fff,
349 0 0 2px #fff,
350 0 0 4px #fff,
351 0 0 1px #777,
352 0.5px 0.5px 1px #777;
354 a#inbox-indicator.new-messages:hover::before {
355 text-shadow:
356 0 0 1px #0090e0,
357 0 0 2px #0090e0,
358 0 0 4px #0090e0,
359 0 0 1px #777,
360 0.5px 0.5px 1px #777;
363 /****************/
364 /* PAGE TOOLBAR */
365 /****************/
367 .page-toolbar {
368 font-size: 0.9em;
369 line-height: 1.8;
370 text-align: right;
371 margin-right: -20px;
373 #content > .page-toolbar {
374 grid-column: 3;
375 grid-row: span 3;
377 #content.user-page > .page-toolbar {
378 grid-column: 2 / span 2;
379 order: -4;
382 /*=--------------------------=*/
383 /*= Page toolbar items (all) =*/
384 /*=--------------------------=*/
386 .page-toolbar > * {
387 display: inline-block;
388 margin-left: 1.5em;
390 .page-toolbar > form button {
391 padding: 0;
392 text-align: right;
393 white-space: unset;
395 .page-toolbar > form button::before {
396 text-align: center;
398 .page-toolbar .button::before {
399 font-family: "Font Awesome", "Font Awesome 5 Free";
400 font-size: 0.9em;
401 padding-right: 0.3em;
404 /*=-------------------------------=*/
405 /*= Page toolbar items (specific) =*/
406 /*=-------------------------------=*/
408 .new-post::before {
409 content: '\F067';
410 font-weight: 900;
412 .new-private-message::before {
413 content: '\F075';
414 font-weight: 400;
416 .logout-button::before {
417 content: '\F2F5';
418 font-weight: 900;
420 #enable-push-notifications::before {
421 content: '\F0F3';
422 font-weight: 400;
424 .ignore-button::before {
425 content: "\F070";
426 font-weight: 400;
428 .unignore-button::before {
429 content: "\F06E";
430 font-weight: 400;
432 .rss::before {
433 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
434 display: inline-block;
435 width: 1em;
436 padding-right: 0.2em;
437 position: relative;
438 top: 1px;
441 /*********************/
442 /* TOP PAGINATION UI */
443 /*********************/
445 #top-nav-bar {
446 grid-column: 2;
447 margin: 0.25em 0 0 0;
448 padding: 0.75em 0 0 0;
449 text-align: center;
450 font-size: 1.25em;
451 display: flex;
452 justify-content: center;
454 #top-nav-bar a {
455 line-height: 1;
457 #top-nav-bar a.disabled {
458 pointer-events: none;
459 visibility: hidden;
461 #top-nav-bar .page-number {
462 position: relative;
463 display: inline-block;
464 width: 1.5em;
466 #top-nav-bar .page-number-label {
467 position: absolute;
468 font-size: 0.5em;
469 text-transform: uppercase;
470 width: 100%;
471 bottom: 90%;
472 left: 0;
474 #top-nav-bar a::before {
475 margin: 0.5em;
476 display: inline-block;
479 /****************/
480 /* SUBLEVEL NAV */
481 /****************/
483 .sublevel-nav {
484 text-align: center;
485 display: flex;
486 justify-content: center;
487 margin: 1em 0 0 0;
489 #content > .sublevel-nav:not(.sort) {
490 grid-column: 2;
491 align-self: start;
493 .sublevel-nav .sublevel-item {
494 flex: 0 0 6em;
495 padding: 0.125em 0.5em;
496 font-size: 1.125rem;
498 .sublevel-nav .sublevel-item:active {
499 transform: none;
501 .sublevel-nav .sublevel-item.selected {
502 cursor: default;
505 /***********************/
506 /* SORT ORDER SELECTOR */
507 /***********************/
509 .sublevel-nav.sort {
510 position: relative;
511 margin-top: 8px;
512 font-size: 0.75em;
514 #content > .sublevel-nav.sort {
515 grid-column: 3;
516 grid-row: span 2;
517 justify-self: end;
518 align-self: start;
519 flex-flow: column;
521 #content.index-page > .sublevel-nav.sort {
522 grid-column: 1;
523 justify-self: start;
524 flex-flow: row;
527 .sublevel-nav.sort::before {
528 content: "Sort";
529 font-size: 0.75rem;
530 position: absolute;
531 top: 0;
532 left: 0;
533 width: 100%;
535 .sublevel-nav.sort .sublevel-item {
536 line-height: 1;
537 font-size: 0.875rem;
538 flex-basis: unset;
541 /*******************************/
542 /* COMMENTS SORT MODE SELECTOR */
543 /*******************************/
545 .comments > .sublevel-nav.sort {
546 margin: 1em auto 0 auto;
548 @supports (width: -moz-fit-content) {
549 .comments > .sublevel-nav.sort {
550 width: -moz-fit-content;
553 @supports (width: fit-content) {
554 .comments > .sublevel-nav.sort {
555 width: fit-content;
559 /******************/
560 /* WIDTH SELECTOR */
561 /******************/
563 #width-selector {
564 position: absolute;
565 top: 4px;
566 right: -78px;
568 #width-selector button {
569 width: 22px;
570 height: 22px;
571 padding: 6px;
572 margin: 1px;
573 overflow: hidden;
574 background-repeat: no-repeat;
575 background-size: 100%;
576 background-origin: content-box;
578 #width-selector button,
579 #width-selector button:active,
580 #width-selector button:focus {
581 text-shadow: none;
582 color: transparent;
584 #width-selector button:disabled {
585 cursor: auto;
587 #width-selector button.select-width-normal {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
590 #width-selector button.select-width-wide {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
593 #width-selector button.select-width-fluid {
594 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
597 /*=----------------=*/
598 /*= Hover tooltips =*/
599 /*=----------------=*/
601 #width-selector button::after {
602 content: attr(data-name);
603 position: absolute;
604 display: block;
605 left: 0;
606 width: 100%;
607 text-align: center;
608 top: 56px;
609 visibility: hidden;
611 #width-selector button.selected::after {
612 content: attr(data-name) " (selected)";
614 #width-selector button:hover:not(:active)::after {
615 visibility: visible;
618 head.content-width-normal + body > * {
619 max-width: 900px;
621 head.content-width-wide + body > * {
622 max-width: 1150px;
624 head.content-width-fluid + body > * {
625 max-width: calc(100% - 300px);
628 /******************/
629 /* THEME SELECTOR */
630 /******************/
632 #theme-selector {
633 position: absolute;
634 top: 3px;
635 left: -41px;
636 opacity: 0.4;
637 display: table;
638 max-width: 40px;
640 #theme-selector:hover {
641 opacity: 1.0;
644 /*=----------------------=*/
645 /*= Theme select buttons =*/
646 /*=----------------------=*/
648 .theme-selector button {
649 display: table-cell;
650 width: 26px;
651 height: 26px;
652 padding: 5px;
653 margin: 1px 7px 0 7px;
654 color: transparent;
655 background-size: 16px 16px;
656 background-origin: content-box;
658 .theme-selector button,
659 .theme-selector button:hover,
660 .theme-selector button:active,
661 .theme-selector button:focus {
662 text-shadow: none;
663 color: transparent;
665 .theme-selector button:disabled {
666 cursor: auto;
669 /*=----------------------------=*/
670 /*= Pre-rendered button images =*/
671 /*=----------------------------=*/
672 /* (Each is just a capital letter A through whatever) */
674 .theme-selector button:nth-of-type(1) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
677 .theme-selector button:nth-of-type(2) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
680 .theme-selector button:nth-of-type(3) {
681 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
683 .theme-selector button:nth-of-type(4) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
686 .theme-selector button:nth-of-type(5) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
689 .theme-selector button:nth-of-type(6) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
692 .theme-selector button:nth-of-type(7) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
695 .theme-selector button:nth-of-type(8) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
698 .theme-selector button:nth-of-type(9) {
699 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
702 /*=------------------------------=*/
703 /*= Theme select button tooltips =*/
704 /*=------------------------------=*/
705 /* (with the name & description of the theme that each button selects) */
707 #theme-selector button {
708 position: relative;
709 z-index: 1;
711 #theme-selector button::before {
712 content: attr(data-theme-name);
713 position: absolute;
714 top: 0;
715 right: 100%;
716 padding: 5px 6px 6px 6px;
717 line-height: 1;
718 width: 6em;
719 text-align: right;
720 z-index: 1;
721 visibility: hidden;
723 #theme-selector:hover button::before {
724 visibility: visible;
726 #theme-selector:hover ~ #theme-tweaker-toggle,
727 #theme-selector:active ~ #theme-tweaker-toggle {
728 z-index: -1;
731 /************************/
732 /* THEME TWEAKER TOGGLE */
733 /************************/
735 #theme-tweaker-toggle {
736 position: absolute;
737 top: 7px;
738 left: -75px;
740 #theme-tweaker-toggle button {
741 font-family: "Font Awesome", "Font Awesome 5 Free";
742 font-weight: 900;
743 font-size: 1.25rem;
744 opacity: 0.4;
745 z-index: 1;
747 #theme-tweaker-toggle button:hover {
748 opacity: 1.0;
751 /*******************/
752 /* QUICKNAV WIDGET */
753 /*******************/
755 #quick-nav-ui {
756 position: absolute;
757 right: -67px;
758 bottom: 20px;
760 #quick-nav-ui a {
761 font-family: "Font Awesome", "Font Awesome 5 Free";
762 font-weight: 900;
763 font-size: 1.5rem;
764 line-height: 1.7;
765 text-align: center;
766 display: block;
767 width: 40px;
768 height: 40px;
769 margin: 10px 0 0 0;
771 #quick-nav-ui a[href='#comments'].no-comments {
772 pointer-events: none;
774 #quick-nav-ui a {
775 visibility: hidden;
777 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
778 visibility: visible;
781 /************************/
782 /* NEW COMMENT QUICKNAV */
783 /************************/
785 #new-comment-nav-ui {
786 position: absolute;
787 right: -112px;
788 bottom: 42px;
790 #new-comment-nav-ui > * {
791 display: block;
792 position: relative;
794 #new-comment-nav-ui.no-comments {
795 display: none;
798 /*=--------------------=*/
799 /*= New comments count =*/
800 /*=--------------------=*/
802 #new-comment-nav-ui .new-comments-count {
803 width: 2em;
804 font-size: 1.25rem;
805 line-height: 1.1;
806 text-align: center;
807 left: 1px;
808 cursor: pointer;
810 #new-comment-nav-ui .new-comments-count::selection {
811 background-color: transparent;
813 #new-comment-nav-ui .new-comments-count::after {
814 content: "NEW";
815 display: block;
816 font-size: 0.625rem;
819 /*=-----------------------------------=*/
820 /*= Next/previous new comment buttons =*/
821 /*=-----------------------------------=*/
823 #new-comment-nav-ui .new-comment-sequential-nav-button {
824 font-size: 1.75rem;
825 font-family: "Font Awesome", "Font Awesome 5 Free";
826 font-weight: 900;
827 width: 1.5em;
828 z-index: 5001;
830 #new-comment-nav-ui .new-comment-previous {
831 top: 8px;
833 #new-comment-nav-ui .new-comment-next {
834 bottom: 6px;
836 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
837 cursor: auto;
838 pointer-events: none;
841 /*******************/
842 /* HNS DATE PICKER */
843 /*******************/
845 #hns-date-picker {
846 position: absolute;
847 bottom: 72px;
848 right: -253px;
849 opacity: 0.6;
851 #hns-date-picker:hover,
852 #hns-date-picker:focus-within {
853 opacity: 1.0;
855 #hns-date-picker.no-comments {
856 display: none;
859 /*=---------------=*/
860 /*= "Since" label =*/
861 /*=---------------=*/
863 #hns-date-picker span {
864 display: block;
865 font-size: 0.75rem;
866 text-transform: uppercase;
869 /*=--------------------=*/
870 /*= "Since" text field =*/
871 /*=--------------------=*/
873 #hns-date-picker input {
874 margin-top: 1px;
875 padding: 1px 3px;
876 width: 140px;
877 text-align: center;
878 box-shadow: 0 0 0 1px transparent;
881 /************************/
882 /* ANTI-KIBITZER TOGGLE */
883 /************************/
885 #anti-kibitzer-toggle {
886 position: absolute;
887 right: -67px;
888 bottom: 225px;
890 #anti-kibitzer-toggle button {
891 display: block;
892 width: 40px;
893 height: 54px;
894 padding: 0;
896 #anti-kibitzer-toggle button::before,
897 #anti-kibitzer-toggle button::after {
898 font-family: "Font Awesome", "Font Awesome 5 Free";
900 #anti-kibitzer-toggle button::before {
901 content: "\F06E";
902 display: block;
903 font-size: 1.75em;
904 font-weight: 400;
906 #anti-kibitzer-toggle button::after {
907 content: "\F007\2004\F164";
908 font-size: 0.875em;
909 font-weight: 900;
911 #anti-kibitzer-toggle.engaged button::before {
912 content: "\F070";
915 /************************/
916 /* TEXT SIZE ADJUSTMENT */
917 /************************/
919 #text-size-adjustment-ui {
920 position: absolute;
921 top: 30px;
922 right: -78px;
923 opacity: 0.4;
925 #text-size-adjustment-ui:hover {
926 opacity: 1.0;
929 /* This doesn't work in Mozilla browsers, so hide it */
930 @-moz-document url-prefix() {
931 #text-size-adjustment-ui {
932 display: none;
936 /*=---------=*/
937 /*= Buttons =*/
938 /*=---------=*/
940 #text-size-adjustment-ui button {
941 font-weight: 900;
942 font-family: "Font Awesome", "Font Awesome 5 Free";
943 font-size: 0.75rem;
944 width: 24px;
945 height: 24px;
946 padding: 0;
948 #text-size-adjustment-ui button.default {
949 font-family: inherit;
950 font-size: 1.125rem;
951 position: relative;
952 top: 1px;
954 #text-size-adjustment-ui button:disabled {
955 opacity: 0.5;
957 #text-size-adjustment-ui button:disabled:hover {
958 cursor: default;
961 /*=----------------=*/
962 /*= Hover tooltips =*/
963 /*=----------------=*/
965 #text-size-adjustment-ui::after {
966 content: "Adjust text size";
967 position: absolute;
968 display: block;
969 left: 0;
970 width: 100%;
971 text-align: center;
972 top: 32px;
973 visibility: hidden;
974 font-size: 0.9em;
976 #text-size-adjustment-ui:hover::after {
977 visibility: visible;
980 /*******************************/
981 /* COMMENTS VIEW MODE SELECTOR */
982 /*******************************/
984 #comments-view-mode-selector {
985 position: absolute;
986 bottom: 30px;
987 left: -40px;
988 opacity: 0.6;
990 #comments-view-mode-selector:hover {
991 opacity: 1.0;
994 /*=---------=*/
995 /*= Buttons =*/
996 /*=---------=*/
998 #comments-view-mode-selector a {
999 display: block;
1000 font-family: "Font Awesome", "Font Awesome 5 Free";
1001 font-size: 1.25rem;
1002 text-align: center;
1003 opacity: 0.4;
1004 padding: 0.25em;
1005 z-index: 1;
1007 #comments-view-mode-selector a.threaded {
1008 transform: scaleY(-1);
1009 font-weight: 900;
1011 #comments-view-mode-selector a.chrono {
1012 font-weight: normal;
1014 #comments-view-mode-selector a.selected,
1015 #comments-view-mode-selector a:hover {
1016 opacity: 1.0;
1017 text-decoration: none;
1019 #comments-view-mode-selector a.selected {
1020 cursor: default;
1023 /*****************/
1024 /* KEYBOARD HELP */
1025 /*****************/
1027 #keyboard-help-overlay {
1028 width: 100vw;
1029 height: 100vh;
1030 background-color: rgba(255, 255, 255, 0.7);
1031 position: fixed;
1032 left: 0;
1033 top: 0;
1034 z-index: 5001;
1036 display: flex;
1037 justify-content: center;
1038 align-items: center;
1039 padding: 20px 30px 30px 20px;
1041 visibility: hidden;
1044 #keyboard-help-overlay .keyboard-help-container {
1045 background-color: #000;
1046 filter: drop-shadow(4px 4px 2px #fff);
1047 flex: 1 1 auto;
1048 max-width: 1500px;
1049 max-height: 100%;
1050 overflow-y: auto;
1051 position: relative;
1053 #keyboard-help-overlay .keyboard-help-container h1 {
1054 text-align: center;
1055 border-bottom: 1px solid #1f1f1f;
1056 margin: 0;
1057 padding: 10px 20px;
1059 #keyboard-help-overlay .keyboard-help-container .note {
1060 margin: 0.5em auto;
1061 padding: 0 1em;
1062 width: fit-content;
1064 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1065 column-width: 21em;
1066 column-count: auto;
1067 column-gap: 1.5em;
1068 border-top: 1px solid #1f1f1f;
1069 padding: 15px 20px;
1071 #keyboard-help-overlay .keyboard-help-container ul {
1072 list-style-type: none;
1073 margin: 0;
1074 padding: 0;
1075 break-inside: avoid;
1076 white-space: nowrap;
1078 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1079 margin: 20px 0 0 0;
1081 #keyboard-help-overlay .keyboard-help-container ul li.section {
1082 font-weight: bold;
1083 font-size: 1.125rem;
1084 break-after: avoid;
1086 #keyboard-help-overlay .keyboard-help-container .keys {
1087 margin: 0 0.5em 0 0;
1088 min-width: 4.5em;
1089 display: inline-block;
1091 #keyboard-help-overlay .keyboard-help-container .keys code {
1092 margin: 0 6px 0 0;
1094 #keyboard-help-overlay .keyboard-help-container code {
1095 display: inline-block;
1096 background-color: #131313;
1097 border: 1px solid #2c2c2c;
1098 padding: 3px 8px 4px 8px;
1099 margin: 0 1px;
1101 #keyboard-help-overlay .keyboard-help-container code.ak {
1102 background-color: #001b5f;
1103 border-color: #0052bc;
1105 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1106 content: "ak+";
1107 opacity: 0.3;
1110 #nav-item-about button.open-keyboard-help {
1111 display: none;
1113 @media only screen and (hover:hover) and (pointer:fine) {
1114 #nav-item-about {
1115 position: relative;
1116 padding-right: 0.25em;
1118 #nav-item-about button.open-keyboard-help {
1119 font-family: "Font Awesome", "Font Awesome 5 Free";
1120 font-weight: 900;
1121 position: absolute;
1122 top: 0;
1123 right: 0;
1124 height: 100%;
1125 padding: 8px;
1126 display: initial;
1127 line-height: 1;
1128 background-color: transparent;
1132 #keyboard-help-overlay button.close-keyboard-help {
1133 position: absolute;
1134 right: 0;
1135 top: 0;
1136 font-family: "Font Awesome", "Font Awesome 5 Free";
1137 font-size: 1.5rem;
1138 padding: 10px 12px;
1141 /************/
1142 /* ARCHIVES */
1143 /************/
1145 .archive-nav {
1146 margin: 1.25em 0.5em 0 0.5em;
1147 padding: 0.25em;
1149 .archive-nav > * {
1150 display: flex;
1152 .archive-nav *[class^='archive-nav-item'] {
1153 line-height: 1;
1154 flex: 1 1 5%;
1155 text-align: center;
1156 padding: 6px 4px 4px 4px;
1157 max-width: 8%;
1159 @-moz-document url-prefix() {
1160 .archive-nav *[class^='archive-nav-item'] {
1161 padding: 5px 4px;
1164 .archive-nav-days .archive-nav-item-day {
1165 font-size: 0.8em;
1166 padding: 7px 0 5px 0;
1167 max-width: 4%;
1169 .archive-nav-days .archive-nav-item-day:first-child {
1170 flex-basis: 10%;
1173 /************/
1174 /* ARCHIVES */
1175 /************/
1177 .archive-nav {
1178 margin: 1.25em 0.5em 0 0.5em;
1179 padding: 0.25em;
1181 .archive-nav > * {
1182 display: flex;
1184 .archive-nav *[class^='archive-nav-item'] {
1185 line-height: 1;
1186 flex: 1 1 5%;
1187 text-align: center;
1188 padding: 6px 4px 4px 4px;
1189 max-width: 8%;
1191 @-moz-document url-prefix() {
1192 .archive-nav *[class^='archive-nav-item'] {
1193 padding: 5px 4px;
1196 .archive-nav-days .archive-nav-item-day {
1197 font-size: 0.8em;
1198 padding: 7px 0 5px 0;
1199 max-width: 4%;
1201 .archive-nav-days .archive-nav-item-day:first-child {
1202 flex-basis: 10%;
1205 /************/
1206 /* LISTINGS */
1207 /************/
1209 h1.listing {
1210 font-size: 1.875rem;
1211 line-height: 1.15;
1212 max-height: 1.15em;
1213 position: relative;
1216 h1.listing a {
1217 position: relative;
1220 /* Links to link-posts (not the link-post links themselves; that's below) */
1221 h1.listing .link-post-link + a {
1222 margin-left: 0.25em;
1225 h1.listing .link-post-link {
1226 font-size: 0.8em;
1227 display: inline;
1228 vertical-align: top;
1229 position: relative;
1230 top: 4px;
1233 /*=----------------------=*/
1234 /*= Listing hover reveal =*/
1235 /*=----------------------=*/
1236 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1238 @media only screen and (min-width: 1160px) {
1239 h1.listing a {
1240 max-width: 100%;
1241 display: inline-block;
1242 white-space: nowrap;
1243 text-overflow: ellipsis;
1244 overflow: hidden;
1245 border-bottom: 1px solid transparent;
1246 -webkit-hyphens: auto;
1247 -moz-hyphens: auto;
1248 -ms-hyphens: auto;
1249 hyphens: auto;
1250 z-index: 1;
1251 padding: 0 0 1px 1px;
1253 h1.listing .link-post-link + a {
1254 max-width: calc(100% - 40px);
1256 h1.listing a:hover,
1257 h1.listing a:focus {
1258 text-decoration: dotted underline;
1259 white-space: initial;
1260 overflow: visible;
1261 z-index: 2;
1263 h1.listing:focus-within::before {
1264 content: "\F105";
1265 font-family: "Font Awesome", "Font Awesome 5 Free";
1266 display: block;
1267 position: absolute;
1268 left: -0.75em;
1271 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1272 mouse movements) */
1274 h1.listing a:not(.edit-post-link):hover::before {
1275 content: "";
1276 position: absolute;
1277 top: -10px;
1278 right: -10px;
1279 bottom: -10px;
1280 left: -10px;
1281 z-index: -1;
1283 h1.listing .link-post-link:hover {
1284 text-decoration: none;
1288 /*=-----------------------=*/
1289 /*= In-listing edit links =*/
1290 /*=-----------------------=*/
1292 h1.listing .edit-post-link {
1293 position: absolute;
1294 margin: 0;
1297 /*=---------------------------------=*/
1298 /*= Error messages on listing pages =*/
1299 /*=---------------------------------=*/
1301 .listing-message {
1302 width: 100%;
1303 text-align: center;
1304 padding: 1.25em 0 1.25em 0;
1305 font-size: 1.375em;
1308 /*********************/
1309 /* LISTING POST-META */
1310 /*********************/
1312 h1.listing + .post-meta {
1313 position: relative;
1314 justify-content: flex-start;
1315 margin: 0 20px 0 21px;
1318 h1.listing + .post-meta > * {
1319 margin: 0 1em 0 0;
1322 h1.listing + .post-meta .post-section {
1323 width: 0;
1324 margin: 0;
1325 overflow: hidden;
1327 h1.listing + .post-meta .post-section::before {
1328 position: absolute;
1329 left: -36px;
1332 h1.listing + .post-meta .read-time {
1333 cursor: default;
1336 /********************/
1337 /* SEQUENCES & TAGS */
1338 /********************/
1340 .sequence-text, .tag-description {
1341 font-size: 1.2rem;
1342 padding: 0 22px;
1345 #content.tag-index-page .tag-description {
1346 margin: 1em 0 0;
1349 section {
1350 margin-top: 2em;
1351 margin-bottom: 4em;
1354 h1.sequence-chapter {
1355 font-size: 2.3rem;
1358 article {
1359 max-width: 100%;
1362 .post-meta + .comments {
1363 margin-top: 3em;
1366 .tag-list {
1367 column-count: auto;
1368 column-width: 15em;
1369 margin-top: 0;
1370 border-bottom: 1px solid #575756;
1371 padding-bottom: 1em;
1372 margin-bottom: 0;
1375 /**************/
1376 /* USER PAGES */
1377 /**************/
1379 /*=---------------------=*/
1380 /*= User's display name =*/
1381 /*=---------------------=*/
1383 #content.user-page h1.page-main-heading {
1384 margin: 0.25em 0 0 0;
1385 line-height: 1.1;
1386 grid-column: 1 / span 2;
1387 order: -2;
1390 #content.user-page h1.page-main-heading .user-full-name {
1391 font-size: 1rem;
1392 font-weight: normal;
1393 padding-left: 0.5em;
1396 /*=--------------------=*/
1397 /*= User's karma total =*/
1398 /*=--------------------=*/
1400 #content.user-page .user-stats {
1401 grid-column: 3;
1402 order: -2;
1403 text-align: right;
1404 align-self: end;
1407 #content.user-page .user-stats .karma-type {
1408 white-space: nowrap;
1411 /*=----------------------=*/
1412 /*= Expanded vs. compact =*/
1413 /*=----------------------=*/
1415 #content.user-page #comments-list-mode-selector {
1416 grid-row: span 2;
1418 #content.user-page #comments-list-mode-selector button {
1419 display: block;
1422 /*=----------------------------------------------------=*/
1423 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1424 /*=----------------------------------------------------=*/
1426 #content.user-page .sublevel-nav {
1427 margin-bottom: 0.5em;
1430 /*=--------------=*/
1431 /*= User's posts =*/
1432 /*=--------------=*/
1434 #content.user-page h1.listing {
1435 margin: 0.5em 0 0 0;
1438 #content.user-page .user-bio :first-child {
1439 margin-top: 0.5em;
1442 /*****************/
1443 /* CONVERSATIONS */
1444 /*****************/
1446 /*=----------------------=*/
1447 /*= List of participants =*/
1448 /*=----------------------=*/
1450 #content.conversation-page .conversation-participants {
1451 grid-column: 2 / span 2;
1452 text-align: right;
1453 margin: 0.5em 0 0 0;
1455 .post-meta > .conversation-participants {
1456 white-space: normal;
1458 .conversation-participants ul,
1459 .conversation-participants li {
1460 list-style-type: none;
1461 display: inline-block;
1462 margin: 0;
1463 padding: 0;
1465 .conversation-participants li {
1466 margin-left: 0.375em;
1468 .conversation-participants li:not(:last-of-type)::after {
1469 content: ",";
1472 /*=-------------------------=*/
1473 /*= Posting controls (form) =*/
1474 /*=-------------------------=*/
1476 #content.conversation-page .posting-controls {
1477 padding: 0 0 1em 0;
1479 #content.conversation-page .post-meta-fields {
1480 overflow: auto;
1481 display: flex;
1482 flex-flow: row wrap;
1484 .posting-controls.standalone textarea {
1485 margin-top: 0.375em;
1487 .posting-controls.standalone form {
1488 padding: 0 1em;
1490 #content.conversation-page .posting-controls.standalone form {
1491 padding: 0 1em 3em 1em;
1493 .posting-controls.standalone input[type='text'],
1494 .posting-controls.standalone label {
1495 margin: 0.25em 0;
1497 .posting-controls.standalone label {
1498 width: 4em;
1499 text-align: right;
1500 padding: 2px 6px;
1501 border: 1px solid transparent;
1503 .posting-controls.standalone input[type='text'] {
1504 width: calc(100% - 4em);
1505 padding: 0.25em;
1507 .posting-controls.standalone input[type='submit'] {
1508 float: right;
1510 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1511 white-space: nowrap;
1513 .posting-controls.standalone #markdown-hints {
1514 top: calc(100% + 2em);
1517 /*=--------------------=*/
1518 /*= Conversation title =*/
1519 /*=--------------------=*/
1521 #content.conversation-page h1.page-main-heading {
1522 text-align: center;
1523 margin: 0.5em 0;
1524 line-height: 1.15;
1527 /*=----------=*/
1528 /*= Messages =*/
1529 /*=----------=*/
1531 #content.conversation-page > ul.comment-thread:last-of-type {
1532 margin-bottom: 2em;
1535 /******************/
1536 /* SEARCH RESULTS */
1537 /******************/
1539 #content.search-results-page h1.listing,
1540 #content.sequence-page h1.listing,
1541 #content.post-page h1.listing {
1542 font-size: 1.625em;
1545 /**************/
1546 /* LOGIN PAGE */
1547 /**************/
1549 .login-container {
1550 margin: 2em 0;
1551 padding: 1em;
1552 display: flex;
1553 flex-flow: row wrap;
1556 .login-container form {
1557 flex-basis: 50%;
1558 display: grid;
1559 grid-row-gap: 0.5em;
1560 align-content: start;
1562 .login-container form label {
1563 text-align: right;
1564 padding: 0.25em 0.5em;
1565 white-space: nowrap;
1566 grid-column: 1;
1568 .login-container form input {
1569 grid-column: 2;
1570 padding: 0.25em;
1572 .login-container form input[type='submit'],
1573 .login-container form a {
1574 grid-column: 2;
1575 justify-self: center;
1577 .login-container form input[type='submit'] {
1578 width: 10em;
1579 padding: 0.35em;
1580 line-height: 1;
1581 margin: 0.5em 0 0 0;
1583 .login-container form h1 {
1584 text-align: center;
1585 margin: 0;
1586 grid-column: 2;
1589 /* “Log in” form */
1591 #login-form {
1592 grid-template-columns: 5.5em 1fr;
1593 padding: 0.5em 2em 0.5em 0;
1596 /* “Create account” form */
1598 #signup-form {
1599 font-size: 0.9em;
1600 grid-template-columns: 8.5em 1fr;
1601 padding: 0.5em 1em 1em 1em;
1603 #signup-form h1 {
1604 font-size: 1.7em;
1606 #signup-form input[type='submit'] {
1607 padding: 0.4em 0.5em 0.5em 0.5em;
1610 /* Log in tip */
1612 .login-container .login-tip {
1613 padding: 0.5em 0.5em 0.5em 3em;
1614 margin: 2em 4em 0 4em;
1615 text-indent: -2em;
1616 line-height: 1.4;
1618 .login-container .login-tip span {
1619 font-weight: bold;
1622 /* Message box */
1624 #content.login-page .error-box {
1625 margin: 1.5em 0.875em -1.5em 0.875em;
1627 .error-box, .success-box {
1628 padding: 0.25em;
1629 text-align: center;
1632 /***********************/
1633 /* PASSWORD RESET PAGE */
1634 /***********************/
1636 .reset-password-container {
1637 margin-bottom: 2em;
1639 .reset-password-container input[type='submit'] {
1640 padding: 0.2em 0.5em;
1641 width: unset;
1643 .reset-password-container input {
1644 margin-left: 0.5em;
1645 width: 12em;
1647 .reset-password-container label {
1648 display: inline-block;
1649 width: 9em;
1651 .reset-password-container form > div {
1652 margin: 0.2em;
1654 .reset-password-container .action-container {
1655 padding-left: 11em;
1656 padding-top: 0.2em;
1658 .reset-password-container .error-box {
1659 margin: unset;
1662 /*********************/
1663 /* TABLE OF CONTENTS */
1664 /*********************/
1666 .contents {
1667 float: right;
1668 min-width: 6em;
1669 max-width: 40%;
1670 margin: 1.25em 0 0.75em 1.25em;
1671 padding: 7px 14px 10px 10px;
1672 position: relative;
1673 z-index: 1;
1676 .contents-head {
1677 text-align: center;
1678 margin-bottom: 0.25em;
1681 .post-body .contents ul {
1682 list-style-type: none;
1683 margin: 0 0 0 0.5em;
1684 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1685 padding-left: 1em;
1686 font-size: 0.75em;
1688 .post-body .contents li {
1689 margin: 0.15em 0 0.3em 1em;
1690 text-align: left;
1691 text-indent: -1em;
1692 line-height: 1.2;
1693 position: relative;
1695 .post-body .contents li::before {
1696 position: absolute;
1697 width: 3em;
1698 display: block;
1699 text-align: right;
1700 left: -4.5em;
1702 .contents .toc-item-1 {
1703 counter-increment: toc-item-1;
1704 counter-reset: toc-item-2 toc-item-3;
1706 .contents .toc-item-1::before {
1707 content: counter(toc-item-1);
1709 .contents .toc-item-1 ~ .toc-item-2 {
1710 margin-left: 2.9em;
1711 font-size: 0.95em;
1713 .contents .toc-item-2 {
1714 counter-increment: toc-item-2;
1715 counter-reset: toc-item-3;
1717 .contents .toc-item-1 ~ .toc-item-2::before {
1718 content: counter(toc-item-1) "." counter(toc-item-2);
1720 .contents .toc-item-2::before {
1721 content: counter(toc-item-2);
1723 .contents .toc-item-1 + .toc-item-3 {
1724 counter-increment: toc-item-2 toc-item-3;
1726 .contents .toc-item-2 ~ .toc-item-3,
1727 .contents .toc-item-1 ~ .toc-item-3 {
1728 margin-left: 2.9em;
1729 font-size: 0.95em;
1731 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1732 margin-left: 5.7em;
1733 font-size: 0.9em;
1735 .contents .toc-item-3 {
1736 counter-increment: toc-item-3;
1738 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1739 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1741 .contents .toc-item-1 ~ .toc-item-3::before {
1742 content: counter(toc-item-1) "." counter(toc-item-3);
1744 .contents .toc-item-2 ~ .toc-item-3::before {
1745 content: counter(toc-item-2) "." counter(toc-item-3);
1747 .contents .toc-item-3::before {
1748 content: counter(toc-item-3);
1750 .contents .toc-item-4,
1751 .contents .toc-item-5,
1752 .contents .toc-item-6 {
1753 display: none;
1756 /********************/
1757 /* POSTS & COMMENTS */
1758 /********************/
1760 .post-meta > *,
1761 .comment-meta > * {
1762 display: inline-block;
1763 margin-right: 1em;
1764 font-size: 1.0625em;
1766 .body-text {
1767 overflow-wrap: break-word;
1768 text-align: justify;
1770 .body-text p {
1771 margin: 1em 0;
1773 .retracted .body-text {
1774 text-decoration: line-through;
1777 .bare-url {
1778 word-break: break-all;
1779 hyphens: auto;
1781 .body-text a:not([href]),
1782 .body-text a:not([href]):hover,
1783 .body-text a:not([href])::before,
1784 .body-text a:not([href])::after {
1785 text-decoration: none;
1786 text-shadow: unset;
1787 border: unset;
1788 color: unset;
1789 content: unset;
1791 /*************/
1792 /* POST-META */
1793 /*************/
1795 .post-meta {
1796 display: flex;
1797 flex-flow: row wrap;
1798 justify-content: center;
1800 .post-meta .lw2-link {
1801 opacity: 0.5;
1802 order: 1;
1804 .post-meta > *,
1805 .post-meta .post-section::before {
1806 margin: 0 0.5em;
1808 .post-meta .post-section {
1809 order: -1;
1810 margin: 0;
1811 visibility: hidden;
1813 .post-meta .post-section::before,
1814 .comment-meta .alignment-forum {
1815 visibility: visible;
1816 font-family: "Font Awesome", "Font Awesome 5 Free";
1817 font-weight: 900;
1819 .post-section.frontpage::before {
1820 content: "\F015";
1822 .post-section.featured::before {
1823 content: "\F005";
1825 .post-section.meta::before {
1826 content: "\F077";
1828 .post-section.events::before {
1829 content: "\F5A0";
1831 .post-section.personal::before {
1832 content: "\F007";
1834 .post-section.draft::before {
1835 content: "\F15B";
1837 .post-section.alignment-forum::before,
1838 .comment-meta .alignment-forum {
1839 content: "AF";
1840 font-family: Concourse, 'Changa One';
1843 /*= Karma controls hover tooltips =*/
1845 @media only screen and (pointer: fine) {
1846 .post .voting-controls,
1847 .comment-item .voting-controls {
1848 position: relative;
1850 .post .karma.active-controls::after,
1851 .comment-item .karma.active-controls::after {
1852 content: "Double-click for strong vote";
1853 position: absolute;
1854 pointer-events: none;
1855 display: block;
1856 left: 6px;
1857 width: 100%;
1858 line-height: 1.15;
1859 white-space: normal;
1860 text-align: center;
1861 font-size: 0.875rem;
1862 opacity: 0;
1863 transition: opacity 0.2s ease;
1865 .post .voting-controls.active-controls:hover::after,
1866 .comment-item .voting-controls.active-controls:hover::after {
1867 opacity: 1.0;
1870 .post .voting-controls .karma-value::after,
1871 .comment-item .voting-controls .karma-value::after {
1872 content: attr(title);
1873 position: absolute;
1874 pointer-events: none;
1875 display: block;
1876 left: 50%;
1877 transform: translateX(-50%);
1878 white-space: pre-wrap;
1879 width: max-content;
1880 text-align: center;
1881 font-size: 0.875rem;
1882 color: #393939;
1883 opacity: 0;
1884 transition: opacity 0.2s ease;
1886 .post .voting-controls.agreement .karma-value:hover::after,
1887 .comment-item .voting-controls.agreement .karma-value:hover::after {
1888 top: unset;
1889 bottom: 100%;
1891 .post .voting-controls .karma-value:hover::after,
1892 .comment-item .voting-controls .karma-value:hover::after {
1893 opacity: 1.0;
1895 .post .voting-controls.waiting .karma-value:hover::after,
1896 .comment-item .voting-controls.waiting .karma-value:hover::after {
1897 display: none;
1899 .comment-item .voting-controls .karma-value:hover::after {
1900 z-index: 5001;
1903 .author {
1904 position: relative;
1906 .author:not(.redacted)::before {
1907 content: attr(data-full-name);
1908 position: absolute;
1909 pointer-events: none;
1910 display: block;
1911 padding: 0 1em;
1912 left: 50%;
1913 bottom: 2em;
1914 transform: translateX(-50%);
1915 white-space: nowrap;
1916 text-align: center;
1917 font-size: 0.875rem;
1918 font-weight: normal;
1919 opacity: 0;
1920 transition: opacity 0.2s ease;
1921 z-index: 5001;
1923 .author:hover::before {
1924 opacity: 1.0;
1928 /*********/
1929 /* POSTS */
1930 /*********/
1932 .post {
1933 max-width: 100%;
1936 .post-body {
1937 min-height: 8em;
1938 padding: 0 30px;
1939 line-height: 1.5;
1940 font-size: 1.3rem;
1941 overflow: auto;
1942 margin: 0.5em 0 0 0;
1944 h1.post-title {
1945 margin: 1.1em 0 0.35em 0;
1946 padding: 0 30px;
1947 text-align: center;
1948 font-size: 2.5em;
1949 line-height: 1;
1951 .post .post-meta {
1952 text-align: center;
1953 position: relative;
1954 z-index: 2;
1956 .post .top-post-meta:last-child {
1957 margin-bottom: 40px;
1959 .post .bottom-post-meta {
1960 margin: 0;
1961 padding: 20px 0;
1963 .bottom-post-meta {
1964 border-style: solid;
1965 border-width: 1px 0;
1968 /**********/
1969 /* EVENTS */
1970 /**********/
1972 .event-info .map {
1973 position: relative;
1974 width: 100%;
1975 margin: 2em 0 1em;
1978 .event-info .map::before {
1979 content: "";
1980 display: block;
1981 padding-bottom: 50%;
1984 .event-info .map iframe {
1985 width: 100%;
1986 height: 100%;
1987 border: 1px solid #fff;
1988 position: absolute;
1989 top: 0;
1990 left: 0;
1993 .event-info ul {
1994 list-style: none;
1995 padding: 0;
1996 text-align: center;
1999 /*******************/
2000 /* POST NAVIGATION */
2001 /*******************/
2003 .post-nav-item {
2004 display: grid;
2005 grid-template: 100% / 32% 36% 32%;
2006 grid-template-areas:
2007 "prev seq next";
2009 .post-nav {
2010 display: flex;
2011 flex-flow: column;
2012 justify-content: flex-end;
2013 padding: 0.5em;
2016 .post-nav-title {
2017 font-size: 1.125em;
2018 line-height: 1.15;
2019 display: inline;
2020 border-top: 1px solid transparent;
2022 .post-nav.prev .post-nav-title,
2023 .post-nav.next .post-nav-title {
2024 border-bottom: 1px solid transparent;
2027 .sequence-title {
2028 align-items: center;
2029 text-align: center;
2030 grid-area: seq;
2032 .sequence-title .post-nav-title {
2033 font-size: 1.5em;
2036 .post-nav.prev {
2037 grid-area: prev;
2038 align-items: flex-start;
2040 .post-nav.prev .post-nav-title::before {
2041 content: "\F0D9\2005";
2043 .post-nav.next {
2044 grid-area: next;
2045 text-align: right;
2046 align-items: flex-end;
2048 .post-nav.prev .post-nav-label,
2049 .post-nav.next .post-nav-label {
2050 display: none;
2052 .post-nav.next .post-nav-title::after {
2053 content: "\2004\F0DA";
2055 .post-nav.prev .post-nav-title::before,
2056 .post-nav.next .post-nav-title::after {
2057 font-family: Font Awesome;
2058 font-weight: 900;
2059 vertical-align: text-bottom;
2060 opacity: 0.75;
2062 .post-nav-links {
2063 max-width: 100%;
2066 @media only screen and (max-width: 900px) {
2067 .post-nav-item {
2068 font-size: 0.875em;
2069 grid-template: auto auto / 50% 50%;
2070 grid-template-areas:
2071 "prev next"
2072 "seq seq";
2074 .post-nav.prev .post-nav-title,
2075 .post-nav.next .post-nav-title {
2076 border-bottom: none;
2078 .post-nav.prev {
2079 margin: 0 0 0 -1px;
2080 position: relative;
2081 left: 1px;
2083 .sequence-title {
2084 padding: 0.75em 0;
2087 @media only screen and (max-width: 520px) {
2088 .post-nav-links + .comments {
2089 padding: 1em 0 0 0;
2093 .related-posts, .related-post-group {
2094 padding-bottom: 1em;
2096 .related-post-type {
2097 font-size: 1.2em;
2098 font-weight: 600;
2099 margin-top: 0.5em;
2100 margin-bottom: -0.5em;
2101 list-style-type: disc;
2102 margin-left: -0.5em;
2103 opacity: 0.7;
2105 .related-post-type::before {
2106 content: "\269c";
2107 font-size: 1.375em;
2108 font-weight: normal;
2109 margin-right: 0.15em;
2110 position: relative;
2111 vertical-align: baseline;
2112 top: 0.05em;
2114 .related-posts .post-type-prefix {
2115 display: none;
2118 .crosspost {
2119 padding: 0.1em 1em;
2120 margin: 1em auto;
2123 /**************/
2124 /* LINK POSTS */
2125 /**************/
2127 .post.link-post > .post-body > p:first-child {
2128 text-align: center;
2129 font-size: 1.125em;
2130 margin: 0.5em 0 0 0;
2132 .post.link-post > .post-body > p:only-child {
2133 font-size: 1.5em;
2134 margin: 1em 0;
2136 .post.link-post a.link-post-link::before {
2137 content: "\F0C1";
2138 font-family: "Font Awesome", "Font Awesome 5 Free";
2139 font-weight: 900;
2140 font-size: 0.75em;
2141 position: relative;
2142 top: -2px;
2143 margin-right: 0.25em;
2146 /************/
2147 /* COMMENTS */
2148 /************/
2150 .comments {
2151 max-width: 100%;
2152 padding: 0 0 1px 0;
2153 position: relative;
2155 .comments::before {
2156 content: "";
2157 position: absolute;
2158 display: block;
2159 top: 0;
2160 left: 0;
2161 width: 100%;
2162 height: 100%;
2163 pointer-events: none;
2165 ul.comment-thread {
2166 list-style-type: none;
2167 padding: 0;
2168 max-width: 100%;
2170 .comments .comment-thread > li {
2171 position: relative;
2173 #content > #top-nav-bar + .comment-thread .comment-item {
2174 margin-top: 0;
2177 .comment-item {
2178 margin: 2em 0 0 0;
2180 .comment-item .comment-item {
2181 margin: 1em 8px 8px 16px;
2183 .comment-item .comment-item + .comment-item {
2184 margin: 2em 8px 8px 16px;
2187 .comment-body {
2188 line-height: 1.45;
2189 font-size: 1.2rem;
2190 padding: 10px;
2192 .comment-body ul {
2193 list-style-type: circle;
2195 .comment-body > *:first-child {
2196 margin-top: 0;
2198 .comment-body > *:last-child {
2199 margin-bottom: 0;
2202 .comments-empty-message {
2203 width: 100%;
2204 text-align: center;
2205 padding: 0.75em 0 0.9em 0;
2206 font-size: 1.375em;
2209 /**********************************/
2210 /* DEEP COMMENT THREAD COLLAPSING */
2211 /**********************************/
2213 .comment-item > input[id^="expand"] {
2214 display: none;
2216 .comment-item > input[id^="expand"] + label {
2217 display: block;
2218 visibility: hidden;
2219 position: relative;
2220 margin: 8px 9px;
2222 .comment-item > input[id^="expand"] + label::after {
2223 content: "(Expand " attr(data-child-count) " below)";
2224 visibility: visible;
2225 position: absolute;
2226 left: 0;
2227 white-space: nowrap;
2228 cursor: pointer;
2230 .comment-item > input[id^="expand"]:checked + label::after {
2231 content: "(Collapse " attr(data-child-count) " below)";
2233 .comment-item > input[id^="expand"] ~ .comment-thread {
2234 max-height: 34px;
2235 overflow: hidden;
2237 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2238 margin-top: 0;
2240 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2241 max-height: 1000000px;
2244 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2245 margin: 0;
2247 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2248 display: none;
2251 /*************/
2252 /* BACKLINKS */
2253 /*************/
2255 .backlinks > input {
2256 display: none;
2259 .backlinks > label {
2260 margin-left: 10px;
2261 display: block;
2262 color: #00c200;
2263 cursor: pointer;
2266 .backlinks > label::before {
2267 content: " ";
2268 border-left: 5px solid currentColor;
2269 border-top: 5px solid transparent;
2270 border-bottom: 5px solid transparent;
2271 transition: transform 0.25s ease-out;
2272 transform-origin: 29% 55%;
2273 display: inline-block;
2274 padding-right: 0.5em;
2277 .backlinks > input:checked + label::before {
2278 transform: rotate(90deg);
2281 .backlinks li {
2282 margin-top: 0;
2285 .backlinks > ul {
2286 height: 0;
2287 perspective-origin: top;
2288 transform: perspective(100em) rotateX(-90deg);
2289 transform-origin: center top;
2290 opacity: 0;
2291 margin-top: 0.5em;
2292 margin-bottom: 0.5em;
2295 .backlinks > input:checked ~ ul {
2296 height: auto;
2297 transform: perspective(100em) rotateX(0deg);
2298 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2299 opacity: 1;
2302 /****************/
2303 /* COMMENT-META */
2304 /****************/
2306 .comment-meta {
2307 padding: 2px 24px 2px 10px;
2308 margin: 0 -1px;
2309 border: none;
2310 display: flex;
2311 flex-flow: row wrap;
2312 align-items: baseline;
2314 .user-page .comment-meta,
2315 .conversation-page .comment-meta {
2316 padding-right: 10px;
2318 .comment-meta .comment-post-title {
2319 flex-basis: 100%;
2320 overflow: hidden;
2321 text-overflow: ellipsis;
2322 white-space: nowrap;
2323 line-height: 1.3;
2325 .conversation-page .comment-meta .comment-post-title {
2326 margin: 0;
2327 flex-basis: unset;
2328 flex: 1 0 auto;
2329 text-align: right;
2330 display: none; /* Not sure if we need to display this... */
2332 .comment-item .author:not(.redacted).original-poster::after {
2333 content: "\2004(OP)";
2334 font-size: 0.75em;
2337 /*****************************/
2338 /* COMMENT THREAD NAVIGATION */
2339 /*****************************/
2341 a.comment-parent-link:not(.inline-author),
2342 a.comment-parent-link.inline-author::before {
2343 opacity: 0.5;
2345 a.comment-parent-link:hover {
2346 opacity: 1.0;
2348 a.comment-parent-link::before {
2349 content: "\F062";
2350 font-family: "Font Awesome", "Font Awesome 5 Free";
2351 font-weight: 900;
2352 font-size: 0.75rem;
2353 line-height: 1;
2354 position: absolute;
2355 z-index: 1;
2356 display: block;
2357 padding: 3px 3px 0 3px;
2358 width: 16px;
2359 height: calc(100% + 2px);
2360 top: -1px;
2361 left: -17px;
2363 a.comment-parent-link::after {
2364 content: "";
2365 position: absolute;
2366 z-index: 0;
2367 display: block;
2368 width: calc(100% + 26px);
2369 height: calc(100% + 38px);
2370 top: -29px;
2371 left: -17px;
2372 pointer-events: none;
2373 overflow: hidden;
2374 visibility: hidden;
2376 a.comment-parent-link:hover::after {
2377 visibility: visible;
2380 .comment-child-links {
2381 flex-basis: 100%;
2383 .comment-child-link {
2384 margin: 0 0.25em;
2385 display: inline-block;
2387 .comment-child-link::before {
2388 content: ">";
2389 display: inline-block;
2390 margin: 0 2px 0 0;
2393 .comment-popup {
2394 position: fixed;
2395 top: 10%;
2396 right: 10%;
2397 max-width: 700px;
2398 z-index: 10001;
2399 font-size: 1rem;
2400 white-space: unset;
2401 pointer-events: none;
2403 .comment-popup .comment-parent-link {
2404 display: none;
2406 .comment-popup .comment-body {
2407 font-size: 1.0625rem;
2410 .comment-item.depth-odd {
2411 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2412 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2414 .comment-item.depth-even {
2415 --GW-comment-background-color: var(--GW-comment-background-color-even);
2416 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2419 .comment-item:target {
2420 --GW-comment-background-color: var(--GW-comment-background-color-target);
2422 .comment-item:target > .comment-thread > .comment-item {
2423 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2426 /**********************/
2427 /* COMMENT PERMALINKS */
2428 /**********************/
2429 /********************/
2430 /* COMMENT LW LINKS */
2431 /********************/
2433 .comment-meta .permalink::before,
2434 .comment-meta .lw2-link::before,
2435 .individual-thread-page a.comment-parent-link:empty::before {
2436 content: "";
2437 display: inline-block;
2438 width: 1rem;
2439 height: 1rem;
2440 border-radius: 3px;
2441 box-shadow:
2442 0 0 0 1px #000,
2443 0 0 0 2px #0cc800,
2444 0 0 0 3px transparent;
2445 padding: 0 0 0 2px;
2446 background-size: 100%;
2447 position: relative;
2448 top: 2px;
2449 opacity: 0.5;
2451 .comment-meta .permalink::before {
2452 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BxG6SZO6ipS6zJY6zhd7Dtf7Elr7k1u7lZ171178GJ/8GOA8GWC8GmF8WyH8XON8nWP8naP8oOa84Wc84ac9Ied9Iyh9I6j9JCl9ZGl9ZSo9ZWp9Zms9Zut9qKz9qi4962897G/+LPB+LTC+LjF+L3J+cLN+cTP+sXQ+srU+svU+s7X+9DZ+9HZ+9La+9Xd+9bd+9ng/Nrh/Nvh/Obq/ent/e7x/vHz/vL0/vP1/vT2/vj5//n6//r7//v7//z8//39//7+/////wAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAMDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84AAgoOEhYaHiImKi4yNjo+QhgEODQGRiiVDRERDIpeHJ5uiRCWfhAdAo5tCCaaCFZtDHyCxEK4AsERCCxG1twhBqrqttzPCNLeCDTqjOQzJGMKctq4e0kMPkQUbgxSaqtiCAR0DiwbMMoMEACybyJYAATREOQWJBjui6YMr7oPyouodEsBsFAx+/gTFUCWwkIJgo3iUA9CPCLJ4OMBlOyThWwtCFS8KchErgqIAN0SFQGhxkAhRNhhFE3XjAgAVm14AyJBSlIVGJlT5GNVDVSlHHCBKEyVEg7YUP5b2QDHx04QRL2rUaEHCZLKvYMOKHXspEAA7');
2454 .comment-meta .lw2-link::before {
2455 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BZB6RxG6SJL6iZO6ipS6zJY6zhd7D1h7EBk7UJl7Ulr7kts7lFx7mB+8GJ/8GmF8WyH8XON8naP8niR8n+X84GY84+k9JOn9ZSo9ZWp9Zut9qS196W296e396q6962896+++LTC+LzI+b3J+cDM+cXQ+sjS+srU+s7X+9La+9bd+9jf/Nng/Nvh/Nzi/N7k/OXq/efr/ent/eru/e3w/vDz/vHz/vL0/vT2/vb3//f4//r7//z8//39//7+/////wAAt4pHif9/AAAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH5YAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5EHBwoBgwuaB56hgpqciAE3QUE6BQAIPao9BgAmqiAADT6qNac2qjuzAC2qQBQBNaovABqqQSi9v60AHM0iCbpBsifEFtBBO9IM2CwYzUAVNL/BhgG+39IAMqo4w80qPKorie3RgyHNAANu2OcO3CAIPwIG/IGAoCodAwbxawZjBsAYiiYC8dDhQwYAJQB6IAGwQ0Z3AIFEmACE2IMLzX44OKkQiAQBOVTdGEAAVhAanRwGVAkghaoUglyoGoGpqdOnUKNKnUq1qlVEgQAAOw==');
2457 .individual-thread-page a.comment-parent-link:empty::before {
2458 left: unset;
2459 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wAw9QAw9gBj9gB39gB99i8w5y+R9y+R+T8w51eq+V8w51+R9Jeq85eq9ZfY/s/E89fL+dfl/N/E8N/L9N/L9d/4/+fL9OfY9+f4/u/R9e/4/u////fY9ffe9ffe9vfr+/f//////P////9/AAABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAABAuwlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGi0CAcEgsGo/IpHLJbDqf0Kh0Ci1IIFRkgTMaXbLFbbf7BQPEYzIYnVZP2W13lRtvl53wSKgLsqTvSwR0XRMCeyMeAYNeTQ9pFAAEhx+RgyILTAhjGkIDk0IFn00KGxVDnl2UQgcZGAZUqCOqZp2itACxs7S5t7Wpvbi2u4cdwAAMDg0JxszNzs/QZkEAOw==');
2461 .comment-meta .permalink:hover::before {
2462 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6QBW5wBd6wBq6gBq6y8w5y+E7UdW508w509D50996k+k718w51+q71+x71+x8F+38G8w549W55dW55d355ed6pfL9Z++75/L86dd56eq6qex66fR86fY9a9q57+R57/L77/e9b/r+seR58fl+c+d58+k58+36s/L7c/y/8/4/9eq59fl9tf4/9+x59/E6t/e8+e36Oe+6ufL6ufe8Ofy9uf4+ef//+/R6u/e7u////fY6vfe7ffr8ffy9vf////e6//l6//l7P/r7f/y8P/47//48P//8P//8v//8///9f//9v//+f//+v///1X/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84BQgoOEhYaHiImKi4yNjo+Qhk5AQJGLMQcAmh6WhzOaoAAYnYRJE6GaATmkgkSgIzqgLKxQQ6kvRbK0SA6oAAKrrE8lvg20gkYVoQU4x0K+mrOsPdAAL5FMMoNEmb7XUE42QYtKyg+DT1AtmsaDTiEABTyJShSg54PrAO3g8Jryh5YoCwUhHztBT06gMjCv0BEFqAiMU3cQSpMN3hAV6SaBkD5+UFCAWqHICQhQHwzuG1QDFAJGz0AxcAEFhqYIUHZYCEWiEQ1UA0IlQKXhkQ+I1UAFMBGpSYoF1QZkmGjpyQ8VHC5c6CDixrGvYMOKHdspEAA7');
2464 .comment-meta .lw2-link:hover::before {
2465 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6gBD6gBW6gBd6wBq6gBq6wB97S8w5y997Ucw50ed70ek708w50+k7U+q8F8w51+x8G+38Xcw53dD53e38Ye37JdW55fL9ZfR9p/Y9p/e9qdW56dd56dq56d356fe9rdq57ed57fl+b9357/Y8L/y/8eR58+R58/R78/y9s/y/8/4/9eq59fR79fe9df4/9+x59///+e36O/L6u////fY6vfe6vfe6/f////l7P/r7f/y7v/47//48P/4+f/4+v//7///8f//9f//9v//+v///wAAAAAAAAAAwMyACwEAAAAPAAAAAAAAALDBCVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAJDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH2YBHgoOEhYaHiImKi4yNjo+QkZKTlJWWl5FGRkGDRkCaRoOfnZuJRR0AAAU6R0MUqQOsNKkbRz4RqQiIRR6pBKxHKakALEUfqQ1HOcMWu70Av4I3wxpCDrA6MsMnzr7AP7gAEDjDACsi3t3QwEYlqQYj5RcVqRKmz9GCNeX8wyT36QT1WNCvnAAbAFUR4lXuAYhyDBQxTGXihQoYR2YN46AxVQiJz/jF4JFgWIwdwwLMAFmwBREMqQ60egVAwaKJIo+4SDXhiBEUqTJgGkq0qNGjSJMqXcoUUSAAOw==');
2467 .individual-thread-page a.comment-parent-link:empty:hover::before {
2468 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wBD5wBD6i8w50cw50+E6k+k70+q8F8w51+x8G8w529d53cw53e38Idq54ex7oe+8Y9d54/E8Ze+8JfL9aeR6qe+7K/L8t+359/e8N/e8vfe7ffr8ff////r7f/r7v/y7//y8P/47///8P///wABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAAAQwAlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGjECScEgsGo/IpHLJbDqf0Kh0Cg1VLlQkSAEAQLLFbbf7BZPEYzIYnVZP2ePAuAyFt+d17tiC6BYiaXRLInpdFCN9AAcjDIFNGGkSJCKJBpOFAh1MHgNdDUKUXZZnlU4bCxNDoQCjJB8OD1mrrWaTpbWgt7izuLmivba/vSIEXQnAJBwZGsjNzs/Q0bVBADs=');
2470 .comment-meta .permalink:hover::before,
2471 .comment-meta .lw2-link:hover::before,
2472 .individual-thread-page a.comment-parent-link:empty:hover::before {
2473 box-shadow:
2474 0 0 0 2px #0cc800,
2475 0 0 0 3px transparent;
2476 opacity: 1.0;
2477 filter: unset;
2479 .comment-meta .permalink:active::before,
2480 .comment-meta .lw2-link:active::before,
2481 .individual-thread-page a.comment-parent-link:empty:active::before {
2482 transform: scale(0.9);
2485 .comment-meta .permalink,
2486 .comment-meta .lw2-link,
2487 .individual-thread-page .comment-parent-link:empty {
2488 position: relative;
2489 opacity: 1.0;
2491 .comment-meta .permalink::after,
2492 .comment-meta .lw2-link::after,
2493 .individual-thread-page .comment-parent-link:empty::after {
2494 content: "";
2495 width: 30px;
2496 height: 30px;
2497 display: block;
2498 position: absolute;
2499 top: -2px;
2500 left: -7px;
2501 box-shadow: none;
2502 pointer-events: auto;
2503 visibility: visible;
2506 /*************************/
2507 /* COMMENTS COMPACT VIEW */
2508 /*************************/
2510 #comments-list-mode-selector,
2511 #content.index-page #comments-list-mode-selector,
2512 #content.user-page #comments-list-mode-selector {
2513 padding-top: 6px;
2514 grid-column: 1;
2515 position: unset;
2516 z-index: 1;
2517 justify-self: start;
2518 align-self: start;
2520 #comments-list-mode-selector button {
2521 color: transparent;
2522 width: 32px;
2523 height: 32px;
2524 padding: 6px;
2525 margin: 1px;
2526 overflow: hidden;
2527 background-repeat: no-repeat;
2528 background-size: 100%;
2529 background-origin: content-box;
2531 #comments-list-mode-selector button:disabled {
2532 cursor: auto;
2534 #comments-list-mode-selector button.expanded {
2535 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2537 #comments-list-mode-selector button.compact {
2538 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2540 @media only screen and (max-resolution: 1dppx) {
2541 #comments-list-mode-selector button.expanded {
2542 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2544 #comments-list-mode-selector button.compact {
2545 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2549 #content > ul.comment-thread > li.comment-item,
2550 #content.compact > ul.comment-thread > li.comment-item {
2551 margin: 0;
2554 #content > .comment-thread {
2555 margin: 1em 0;
2557 #content.compact > .comment-thread {
2558 font-size: 0.9375rem;
2559 margin: 0.5em 0;
2561 #content.compact > .comment-thread:hover {
2562 z-index: 1;
2564 #content.compact > .comment-thread .comment-body {
2565 font-size: 1.0625rem;
2567 #content.compact > .comment-thread .comment-item,
2568 #content.index-page .comment-item.ignored,
2569 #content.inbox-user-page .comment-item.ignored {
2570 max-height: 61px;
2571 margin-top: 1em;
2572 overflow: hidden;
2573 position: relative;
2575 #content.compact > .comment-thread .comment-item {
2576 pointer-events: none;
2578 #content.compact > .comment-thread .comment-item::after {
2579 content: "…";
2580 position: absolute;
2581 right: 0;
2582 bottom: 0;
2583 font-size: 2rem;
2584 line-height: 1;
2585 padding: 0 16px 10px 64px;
2586 pointer-events: auto;
2588 @media only screen and (hover: hover) {
2589 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2590 #content.compact > .comment-thread .comment-item.expanded {
2591 overflow: visible;
2592 pointer-events: auto;
2593 z-index: 10;
2596 @media only screen and (hover: none) {
2597 #content.compact > .comment-thread.expanded .comment-item {
2598 overflow: visible;
2599 pointer-events: auto;
2600 z-index: 10;
2603 #content.compact > .comment-thread .comment-item .comment-meta {
2604 white-space: nowrap;
2605 overflow: hidden;
2606 text-overflow: ellipsis;
2607 padding: 2px 10px;
2609 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2610 white-space: unset;
2612 #content.compact > .comment-thread .comment-item .comment-meta a {
2613 pointer-events: auto;
2615 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2616 display: inline;
2618 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2619 margin-left: 0.75em;
2621 @media only screen and (hover: hover) {
2622 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2623 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2624 max-height: unset;
2626 #content.compact > .comment-thread .comment-item:hover .comment,
2627 #content.compact > .comment-thread .comment-item.expanded .comment {
2628 position: relative;
2629 z-index: 1;
2630 margin-bottom: 2em;
2631 bottom: 0;
2633 #content.compact > .comment-thread .comment-item:hover .comment::before,
2634 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2635 content: "";
2636 position: absolute;
2637 display: block;
2638 width: calc(100% + 20px);
2639 height: calc(100% + 20px);
2640 z-index: -1;
2641 top: -10px;
2642 left: -10px;
2644 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2645 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2646 margin: 0;
2649 @media only screen and (hover: none) {
2650 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2651 max-height: unset;
2653 #content.compact > .comment-thread.expanded .comment-item .comment {
2654 position: relative;
2655 z-index: 1;
2656 margin-bottom: 2em;
2657 bottom: 0;
2659 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2660 content: "";
2661 position: absolute;
2662 display: block;
2663 width: calc(100% + 14px);
2664 height: calc(100% + 20px);
2665 z-index: -1;
2666 top: -10px;
2667 left: -10px;
2669 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2670 margin: 0;
2672 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2673 content: "";
2674 display: block;
2675 position: fixed;
2676 top: 0;
2677 left: 0;
2678 width: 100%;
2679 height: 100%;
2680 z-index: -2;
2681 background-color: rgba(255, 255, 255, 0.5);
2685 /*****************************/
2686 /* HIGHLIGHTING NEW COMMENTS */
2687 /*****************************/
2689 .new-comment::before {
2690 content: "";
2691 position: absolute;
2692 width: 100%;
2693 height: 100%;
2694 z-index: 5000;
2695 pointer-events: none;
2698 /***********************************/
2699 /* COMMENT THREAD MINIMIZE BUTTONS */
2700 /***********************************/
2702 .comment-minimize-button {
2703 font-family: "Font Awesome", "Font Awesome 5 Free";
2704 font-weight: 900;
2705 font-size: 1.25rem;
2706 line-height: 1;
2707 position: absolute;
2708 right: 1px;
2709 top: 1px;
2710 width: 18px;
2711 margin: 0;
2712 cursor: pointer;
2714 .comment-minimize-button:active {
2715 transform: scale(0.9);
2717 .comment-minimize-button::after {
2718 content: attr(data-child-count);
2719 font-weight: normal;
2720 font-size: 0.8125rem;
2721 position: absolute;
2722 left: 0;
2723 width: 100%;
2724 text-align: center;
2725 top: 21px;
2727 #content.individual-thread-page .comment-minimize-button {
2728 display: none;
2731 /*****************/
2732 /* IGNORE SYSTEM */
2733 /*****************/
2735 #content.comment-thread-page .comment-item.ignored {
2736 height: 38px;
2737 overflow: hidden;
2739 .comment-item.ignored > .comment > .comment-meta > .author {
2740 text-decoration: line-through;
2743 /***********************************/
2744 /* INDIVIDUAL COMMENT THREAD PAGES */
2745 /***********************************/
2747 .individual-thread-page > h1 {
2748 line-height: 1;
2749 margin: 0.75em 0 3px 0;
2751 .individual-thread-page .comments {
2752 border: none;
2755 /*************/
2756 /* SHORTFORM */
2757 /*************/
2759 .shortform-index-page .comments::before {
2760 border: none;
2761 box-shadow: none;
2764 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2765 margin-top: 0;
2768 /****************/
2769 /* VOTE BUTTONS */
2770 /****************/
2772 .vote {
2773 margin: 0;
2775 .vote {
2776 font-family: "Font Awesome", "Font Awesome 5 Free";
2777 font-weight: 900;
2778 border: none;
2781 .vote:disabled {
2782 visibility: hidden;
2783 cursor: default;
2786 @keyframes waiting {
2787 0% {background-position: 200% 0%}
2788 100% {background-position: 0% 0%}
2791 .voting-controls .karma-value {
2792 opacity: 1;
2793 transition: opacity 0.5s linear;
2796 .voting-controls.waiting .karma-value {
2797 opacity: 0.5;
2798 background: repeat-x linear-gradient(70deg, #fff 50%, #000 75%, #fff);
2799 background-clip: text;
2800 -webkit-background-clip: text;
2801 color: transparent;
2802 background-position: 200% 0%;
2803 background-size: 200% 100%;
2804 animation: waiting 1s linear infinite;
2807 /* Replicated karma controls at bottom of comments. */
2808 .comment-controls .voting-controls {
2809 float: left;
2810 font-size: 0.9375em;
2813 .comment-controls .voting-controls:first-of-type {
2814 margin-left: -14px;
2817 /*****************************/
2818 /* COMMENTING AND POSTING UI */
2819 /*****************************/
2821 .comment-controls {
2822 text-align: right;
2823 margin: 0 8px 8px 16px;
2824 position: relative;
2825 z-index: 9999;
2827 .comment-thread .comment-controls + .comment-thread > li:first-child {
2828 margin-top: 8px;
2830 .comments > .comment-controls {
2831 margin: 8px 0 0 0;
2833 .comments > .comment-controls:last-child {
2834 margin: 8px 0 16px 0;
2837 .posting-controls input[type='submit'] {
2838 margin: 6px;
2839 padding: 4px 10px;
2840 font-size: 1.125rem;
2843 .comment-controls .cancel-comment-button {
2844 position: absolute;
2845 right: 0;
2846 margin: 0;
2847 height: 27px;
2848 font-size: inherit;
2849 padding: 4px 8px 2px 4px;
2850 z-index: 1;
2852 .comment-controls .cancel-comment-button::before {
2853 font-family: "Font Awesome", "Font Awesome 5 Free";
2854 margin-right: 3px;
2855 content: '\F00D';
2856 font-weight: 900;
2857 font-size: 0.9em;
2858 opacity: 0.7;
2861 .comment + .comment-controls .action-button {
2862 font-weight: normal;
2863 font-size: 1.0625em;
2864 padding: 1px 6px;
2866 .comment-controls .action-button::before {
2867 font-family: "Font Awesome", "Font Awesome 5 Free";
2868 margin-right: 3px;
2870 .new-comment-button {
2871 font-size: 1.5rem;
2872 margin: 0 0.25em;
2874 .comment-controls .reply-button::before {
2875 content: '\F3E5';
2876 font-weight: 900;
2877 font-size: 0.9em;
2878 opacity: 0.6;
2880 .comment-meta .replied::before {
2881 content: '\F3E5';
2882 font-family: "Font Awesome", "Font Awesome 5 Free";
2883 color: #9740cb;
2884 font-weight: 900;
2885 font-size: 0.9em;
2886 opacity: 0.6;
2889 .post-controls {
2890 text-align: right;
2891 margin: 0.75em 0 0 0;
2892 align-self: start;
2893 justify-self: end;
2895 .edit-post-link {
2896 display: inline-block;
2897 margin-bottom: 0.25em;
2898 font-size: 1.125rem;
2900 .edit-post-link::before {
2901 margin-right: 0.3em;
2903 .comment-controls .edit-button::before,
2904 .edit-post-link::before {
2905 content: '\F303';
2906 font-family: "Font Awesome", "Font Awesome 5 Free";
2907 font-weight: 900;
2908 font-size: 0.75em;
2909 position: relative;
2910 top: -1px;
2913 .comment-controls .delete-button {
2914 margin-right: 0.25em;
2916 .comment-controls .edit-button,
2917 .comment-controls .retract-button,
2918 .comment-controls .unretract-button {
2919 margin-right: 1em;
2921 .comment-controls .retract-button::before {
2922 content: '\F4B3';
2923 opacity: 0.6;
2925 .comment-controls .unretract-button::before {
2926 content: '\F075';
2927 opacity: 0.9;
2929 .comment-controls .delete-button::before {
2930 content: '\F05E';
2931 opacity: 0.7;
2933 .comment-controls .retract-button::before,
2934 .comment-controls .unretract-button::before,
2935 .comment-controls .delete-button::before {
2936 font-weight: 900;
2937 font-size: 0.9em;
2940 .comment-controls form {
2941 position: relative;
2943 .textarea-container {
2944 position: relative;
2946 .posting-controls textarea {
2947 display: block;
2948 width: 100%;
2949 height: 15em;
2950 min-height: 15em;
2951 max-height: calc(100vh - 6em);
2952 margin: 2px 0 0 0;
2953 padding: 4px 5px;
2954 font-size: 1.2rem;
2955 border-style: solid;
2956 border-width: 29px 1px 1px 1px;
2957 resize: none;
2960 /* GUIEdit buttons */
2962 .guiedit-buttons-container {
2963 position: absolute;
2964 left: 1px;
2965 top: 1px;
2966 width: calc(100% - 2px);
2967 height: 28px;
2968 text-align: left;
2969 padding: 1px 4px 0 4px;
2970 overflow: hidden;
2972 .comment-thread-page .guiedit-buttons-container {
2973 padding-right: 60px;
2975 .guiedit-buttons-container button {
2976 height: 26px;
2977 padding: 0 7px;
2978 font-weight: 900;
2979 font-size: 0.875rem;
2980 line-height: 1;
2981 position: static;
2983 .guiedit-buttons-container button:active {
2984 transform: none;
2986 .guiedit-buttons-container button:active div {
2987 transform: scale(0.9);
2989 .guiedit-buttons-container button sup {
2990 font-weight: bold;
2992 .guiedit::after {
2993 content: attr(data-tooltip);
2994 position: absolute;
2995 font-weight: normal;
2996 font-size: 1rem;
2997 top: 2px;
2998 left: 464px;
2999 height: 25px;
3000 padding: 4px 0;
3001 white-space: nowrap;
3002 visibility: hidden;
3004 .guiedit:hover::after {
3005 visibility: visible;
3008 /* Markdown hints */
3010 .posting-controls .markdown-reference-link {
3011 float: left;
3012 padding: 1px 0 0 6px;
3014 .posting-controls .markdown-reference-link a {
3015 padding-right: 1.5em;
3016 margin-right: 0.15em;
3017 background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAQAAABNTyozAAAEDklEQVR4Ae3cY3QDjRaG0V1e27Zt27Zt27Ztf7Zt27Zt10jOdZtZzbSN2q41533+tsFO4zRi0TKRJVACJdDiJVACJVACJVACZQmUQAmUQAmUQAmUQFkCJVACJVACJVACJVDWuD7P8icnGRcVbdyJ/uRZ+jTZYxwq/lN2qMcozvtMibmySe/TsPeqi0JZ3XsAHm1SZAua9CjgoMQo6UB4uiim5gbXV7Ab1EQxT+P3RRw/dHtV3e39UL3g8XuOEw39QNX3g4LHcYwU/n5uo+q7beGKNqLwJ3U1cteKuepEQ1cid03BJIESKIESKIESKIESaIkl0I3dv7Q7a293c//ShrWym7l/abdbGaCnidJGPFzre6opUdqDtLJXitJ+svpA4Uy30dru6hJRHaCws37L37CDRbWAwvctf38S1QOqe43l7f2iikDheg+x9J5ksqpA4TS3svju5CJRXaCwvX7lG3KAqDZQ+Jby/U4kUM0rNN+7hAQSrvNAC/c4Ewn0/052C8Xd0fkigebbRp/5DdpHJFCxr5nfr4QEUqzmJYC3iQRq1jXuj8cYT6CyTnAv54oEKm9EJFBnJVAC7eoS0XJn2r8qQP/wNFOipUY8wvbVAeIjooXq3ki1gPhHC0A/oWWgQZ/37ZI2FaUdVPpb33LHlQS6scPFstrDQBtAvEpNdLEfsZJA3N3lYsnOcTvaAuKzomttqW+lgXimabFoYx5N20D8SXSlw9yElQfiE0J5dW+lI6BBu4uOO8+dWB0g1hel/YIOgbiVE0VHXefhrB7QTRwtmra3gS4AcW+Xibab8SJWE4h7uaLpn/Ud6AoQTzIu2uzDrDYQzzUjCo17HF0D4g3qoo1+yWoCld8hv5OuAvFl0XLb6V8rQGws5votXQfqs45oqaPdjLUDdNO5f7Xa32APgBhu6b2SC92VtQTEfVwlXOhO9ASI2zhNLKsRj2atAfFCo55Iz4C4nyvFks16OWsRiPvQUyCeblIs0adYq0B6DsTb1EV5fk+1gfiWKG0XAwnUZyPRtOPdggTiRg4UC7rEPUkg4PbOFIXGPIEEmt+DCmeu5rUkUHHPaXj76Qsk0MK9R/ynv5FAzfdDYS9Da+n/xe6ovd2lS/8vVlyfH7o1vQLKJVACJVACJVACJVACIYGW/A6z/A6zG8RcNbdT9d1eTcx1A8eKhn6s6vtxweNYfisaqvupu+jXV8H63cXP1Asev+Wpopi6aVMVbFpdFPMUlP6jdrY/8AgTYkHZhEcAvFNdFMpq3qFh78y/okIT3qk4j8zborn290hN91S/c6zrzapVsFnXO9bvPFXjYtEykSVQAnVUAiVQAiVQAiVQAiVQlkAJlEAJlEAJlEAJlCVQAiVQAiVQAiVQAmX/BMHb3CdNrgcrAAAAAElFTkSuQmCC');
3018 background-size: 1.25em;
3019 background-repeat: no-repeat;
3020 background-position: right center;
3023 #markdown-hints-checkbox + label {
3024 float: left;
3025 margin: 2px 0 0 1em;
3026 line-height: 1.3;
3027 cursor: pointer;
3029 #edit-post-form #markdown-hints-checkbox + label {
3030 padding: 0;
3032 #markdown-hints-checkbox {
3033 visibility: hidden;
3034 float: left;
3036 #markdown-hints-checkbox + label::after {
3037 content: "(Show Markdown help)";
3039 #markdown-hints-checkbox:checked + label::after {
3040 content: "(Hide Markdown help)";
3042 #markdown-hints-checkbox + label::before {
3043 content: '\F059';
3044 font-family: "Font Awesome", "Font Awesome 5 Free";
3045 font-weight: 900;
3046 margin-right: 3px;
3048 #markdown-hints-checkbox:checked + label::before {
3049 font-weight: normal;
3051 #markdown-hints {
3052 margin: 4px 0 0 4px;
3053 padding: 4px 8px;
3054 position: absolute;
3055 text-align: left;
3056 top: calc(100% - 1em);
3057 z-index: 1;
3058 display: none;
3060 .comment-controls #markdown-hints {
3061 top: calc(100% + 1.75em);
3063 #markdown-hints-checkbox:checked ~ #markdown-hints {
3064 display: table;
3066 .markdown-hints-row {
3067 display: table-row;
3069 #markdown-hints .markdown-hints-row span,
3070 #markdown-hints .markdown-hints-row code {
3071 float: none;
3072 display: table-cell;
3073 border: none;
3074 background-color: inherit;
3075 padding: 0 12px 0 0;
3078 /******************/
3079 /* EDIT POST FORM */
3080 /******************/
3082 #edit-post-form {
3083 padding: 1em 1em 4em 1em;
3085 #edit-post-form .post-meta-fields {
3086 display: grid;
3087 grid-template-columns: 5em auto auto auto 1fr auto;
3088 margin-bottom: 0.625em;
3091 #edit-post-form label[for='title'],
3092 #edit-post-form label[for='url'],
3093 #edit-post-form label[for='section'] {
3094 grid-column: 1;
3096 #edit-post-form input[type='text'] {
3097 padding: 0.25em;
3098 grid-column: 2 / span 4;
3099 margin-bottom: 0.5em;
3102 #edit-post-form .link-post-checkbox,
3103 #edit-post-form .link-post-checkbox + label {
3104 grid-row: 1;
3105 grid-column: 6;
3107 #edit-post-form .question-checkbox,
3108 #edit-post-form .question-checkbox + label {
3109 grid-row: 3;
3110 grid-column: 5;
3111 justify-self: start;
3112 margin-left: 1.5em;
3115 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3116 grid-row: 4;
3117 grid-column: 2 / span 4;
3118 text-align: left;
3119 margin-top: 8px;
3122 #edit-post-form .post-meta-fields input[type='checkbox'] {
3123 height: 0;
3124 opacity: 0;
3125 pointer-events: none;
3127 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3128 white-space: nowrap;
3129 position: relative;
3130 cursor: pointer;
3131 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3132 align-self: start;
3134 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3135 content: "";
3136 font-family: "Font Awesome", "Font Awesome 5 Free";
3137 font-size: 1.375rem;
3138 line-height: 0.7;
3139 text-indent: 1px;
3140 font-weight: 900;
3141 position: absolute;
3142 width: 20px;
3143 height: 20px;
3144 left: 5px;
3146 #edit-post-form label[for='url'],
3147 #edit-post-form input[name='url'] {
3148 display: none;
3150 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3151 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3152 display: initial;
3154 #edit-post-form label {
3155 line-height: normal;
3156 border: 1px solid transparent;
3157 text-align: right;
3158 padding: 0.25em 0.5em;
3159 white-space: nowrap;
3161 #edit-post-form input[type='radio'] {
3162 width: 0;
3163 margin: 0;
3164 opacity: 0;
3165 pointer-events: none;
3167 #edit-post-form input[type='radio'] + label {
3168 padding: 4px 12px;
3169 text-align: center;
3170 border-style: solid;
3171 border-width: 1px 1px 1px 0;
3172 cursor: pointer;
3174 #edit-post-form input[type='radio']:checked + label {
3175 cursor: default;
3178 #edit-post-form label[for='section'] {
3179 grid-row: 3;
3181 #edit-post-form input[type='radio'] + label {
3182 grid-row: 3;
3184 @supports (width: -moz-fit-content) {
3185 #edit-post-form input[type='radio'] + label {
3186 width: -moz-fit-content;
3189 @supports (width: fit-content) {
3190 #edit-post-form input[type='radio'] + label {
3191 width: fit-content;
3195 #edit-post-form textarea {
3196 min-height: 24em;
3199 #edit-post-form input[type='submit'] {
3200 padding: 6px 12px;
3201 float: right;
3203 #edit-post-form #markdown-hints {
3204 top: calc(100% + 2em);
3207 #edit-post-form button.guiedit div {
3208 overflow: visible;
3210 .guiedit-mobile-auxiliary-button {
3211 display: none;
3214 /***********/
3215 /* BUTTONS */
3216 /***********/
3218 button,
3219 input[type='submit'] {
3220 font-family: inherit;
3221 font-size: inherit;
3222 background-color: inherit;
3223 cursor: pointer;
3224 border: none;
3225 border-radius: 0;
3228 /************/
3229 /* HEADINGS */
3230 /************/
3232 .body-text h1,
3233 .body-text h2,
3234 .body-text h3,
3235 .body-text h4,
3236 .body-text h5,
3237 .body-text h6 {
3238 line-height: 1.1;
3239 margin: 1em 0 0.75em 0;
3240 text-align: left;
3243 .post-body h5,
3244 .post-body h6 {
3245 font-size: 1em;
3247 .post-body h4 {
3248 font-size: 1.2em;
3250 .post-body h3 {
3251 font-size: 1.4em;
3253 .post-body h2 {
3254 font-size: 1.75em;
3256 .post-body h1 {
3257 font-size: 2.1em;
3260 .comment-body h5,
3261 .comment-body h6 {
3262 font-size: 1em;
3264 .comment-body h4 {
3265 font-size: 1.15em;
3267 .comment-body h3 {
3268 font-size: 1.3em;
3270 .comment-body h2 {
3271 font-size: 1.5em;
3273 .comment-body h1 {
3274 font-size: 1.75em;
3277 /**********/
3278 /* QUOTES */
3279 /**********/
3281 blockquote,
3282 .post-body .comment-box .comment-body {
3283 font-size: 0.9em;
3284 margin: 1em 0;
3285 padding-left: 0.5em;
3286 margin-left: 1px;
3287 padding-bottom: 3px;
3289 blockquote *:first-child {
3290 margin-top: 0;
3292 blockquote *:last-child {
3293 margin-bottom: 0;
3295 blockquote blockquote {
3296 font-size: 0.95em;
3299 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3301 .post-body .comment-box .user-name {
3302 font-style: italic;
3304 .post-body .comment-box .user-name::after {
3305 content: ":";
3307 .post-body .comment-box {
3308 zoom: 1.25;
3311 /**********/
3312 /* IMAGES */
3313 /**********/
3315 #content img, #content figure {
3316 max-width: 100%;
3319 .prediction-poll > svg {
3320 width: 700px;
3321 max-width: 100%;
3324 img.inline-latex {
3325 position: relative;
3326 top: 2.5px;
3327 margin: 0 2px;
3330 #content figure {
3331 text-align: center;
3332 margin: 1.5em auto;
3335 p.imgonly,
3336 div.imgonly,
3337 figure {
3338 text-align: center;
3339 margin: auto;
3340 clear: both;
3343 .imgonly iframe {
3344 display: block;
3345 width: 100%;
3346 height: 250px;
3347 border: 0;
3350 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3352 [style*="--aspect-ratio"] > * {
3353 width: 100%;
3355 [style*="--aspect-ratio"] > img {
3356 height: auto;
3358 @supports (--custom:property) {
3359 [style*="--aspect-ratio"] {
3360 position: relative;
3362 [style*="--aspect-ratio"]::before {
3363 content: "";
3364 display: block;
3365 padding-bottom: calc(100% / (var(--aspect-ratio)));
3367 [style*="--aspect-ratio"] > * {
3368 position: absolute;
3369 top: 0;
3370 left: 0;
3371 height: 100%;
3375 /**********/
3376 /* TABLES */
3377 /**********/
3379 .body-text table {
3380 border-collapse: collapse;
3381 font-size: 0.875em;
3383 .body-text table th,
3384 .body-text table td {
3385 text-align: left;
3386 padding: 4px 6px;
3387 line-height: 1.3;
3389 .body-text table .numeric {
3390 text-align: right;
3391 font-family: Inconsolata, Menlo, monospace;
3393 .body-text table caption {
3394 margin: 0 0 0.25em 0;
3395 font-weight: bold;
3396 font-size: 1.125em;
3399 /********/
3400 /* MISC */
3401 /********/
3403 /*= Superscripts & subscripts =*/
3405 /* Make sure superscripts and subscripts do not affect line spacing. */
3406 sup, sub {
3407 vertical-align: baseline;
3408 position: relative;
3409 top: -0.5em;
3410 left: 0.05em;
3411 font-size: 0.8em;
3413 sub {
3414 top: 0.3em;
3417 /*= Code blocks & other "unstyled" text. =*/
3419 pre,
3420 code {
3421 font-family: Inconsolata, Menlo, monospace;
3423 pre {
3424 white-space: pre-wrap;
3426 .body-text pre {
3427 text-align: left;
3429 code {
3430 font-size: 0.95em;
3431 display: inline-block;
3432 padding: 0 4px 1px 5px;
3434 pre > code {
3435 display: block;
3436 border-radius: 0;
3437 padding: 3px 4px 5px 8px;
3438 tab-size: 4;
3441 /*= Fractions =*/
3443 .frac::after {
3444 content: "\200B";
3447 /*= Removing browser default styling of various elements =*/
3449 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3450 :focus {
3451 outline: none;
3454 /* Remove "embossed" appearance of horizontal rules. */
3455 hr {
3456 border: none;
3459 input,
3460 button,
3461 textarea {
3462 -webkit-appearance: none;
3463 -moz-appearance: none;
3464 appearance: none;
3467 input {
3468 font-family: inherit;
3469 font-size: inherit;
3470 font-weight: inherit;
3473 /*************/
3474 /* FOOTNOTES */
3475 /*************/
3477 ol {
3478 counter-reset: ordered-list;
3480 .footnote-definition {
3481 font-size: 0.9em;
3482 list-style-type: none;
3483 counter-increment: ordered-list;
3484 position: relative;
3486 .footnote-definition p {
3487 font-size: inherit !important;
3489 .footnote-definition::before {
3490 content: counter(ordered-list) ".";
3491 position: absolute;
3492 left: -2.5em;
3493 font-weight: bold;
3494 text-align: right;
3495 width: 2em;
3498 /*= LW Docs footnotes =*/
3500 .footnote-item {
3501 display: flex;
3504 .footnote-item > :not(.nothing) {
3505 margin: 0 0.2em;
3508 .footnote-item > :first-child {
3509 margin-left: -0.2em;
3510 margin-right: 0;
3513 .footnote-back-link a:not(.nothing) {
3514 font-size: 0;
3515 text-decoration: none;
3516 border: none;
3519 .footnote-back-link a:not(.nothing):hover {
3520 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #0cc800;
3521 border: none;
3522 text-decoration: none;
3525 .footnote-back-link a::after {
3526 content: '\F106';
3527 font-family: Font Awesome;
3528 font-size: 1rem;
3529 padding: 0.2em;
3530 text-decoration: none;
3531 font-weight: bold;
3534 .footnote-content > :first-child {
3535 margin-top: 0;
3538 /*********/
3539 /* LISTS */
3540 /*********/
3542 li {
3543 margin-bottom: 0.5em;
3546 .body-text ol p,
3547 .body-text ul p {
3548 margin: 0.5em 0;
3551 .body-text ol {
3552 list-style: none;
3553 padding: 0;
3554 counter-reset: ol;
3556 .body-text ol > li {
3557 position: relative;
3558 counter-increment: ol;
3559 padding: 0 0 0 2.5em;
3560 margin: 0.25em 0 0 0;
3562 .body-text ol > li::before {
3563 content: counter(ol) ".";
3564 position: absolute;
3565 width: 2em;
3566 text-align: right;
3567 left: 0;
3569 .body-text ul {
3570 list-style: none;
3571 padding: 0;
3573 .body-text ul:not(.contents-list) > li:empty {
3574 padding-bottom: 1.25em;
3576 .body-text ul:not(.contents-list) > li {
3577 position: relative;
3578 padding: 0 0 0 1.75em;
3579 margin: 0.25em 0 0 0;
3581 .body-text ul:not(.contents-list) > li ul > li {
3582 padding: 0 0 0 2em;
3584 .body-text ul:not(.contents-list) > li::before {
3585 content: "•";
3586 position: absolute;
3587 width: 1.25em;
3588 text-align: right;
3589 left: 0;
3591 .body-text ul:not(.contents-list) > li ul > li::before {
3592 width: 1.5em;
3594 .body-text li > ul:first-child > li {
3595 padding-left: 0;
3597 .body-text li > ul:first-child > li::before {
3598 content: none;
3601 /**************/
3602 /* ERROR PAGE */
3603 /**************/
3605 .error-retry-form {
3606 margin: 0.5em 0;
3609 .error-retry-form input[type="submit"] {
3610 border: 1px solid #484848;
3611 font-weight: bold;
3612 font-size: 1.125rem;
3613 padding: 0.5em 1.25em;
3616 /**************/
3617 /* ABOUT PAGE */
3618 /**************/
3620 #content.about-page .contents {
3621 margin-top: 0.25em;
3623 #content.about-page .accesskey-table {
3624 border-collapse: collapse;
3625 margin: auto;
3627 #content.about-page .accesskey-table th,
3628 #content.about-page .accesskey-table td {
3629 padding: 2px 6px;
3631 #content.about-page .accesskey-table td:first-child {
3632 padding-right: 1.5em;
3634 #content.about-page .accesskey-table td:last-child {
3635 text-align: center;
3636 font-family: Inconsolata, Menlo, monospace;
3638 #content.about-page h3:nth-of-type(n+2) {
3639 clear: both;
3642 /******************/
3643 /* IMAGES OVERLAY */
3644 /******************/
3646 #images-overlay + #content .post-body img {
3647 visibility: hidden;
3650 #images-overlay div {
3651 position: absolute;
3653 #images-overlay div::after {
3654 content: "Click to enlarge";
3655 display: block;
3656 position: absolute;
3657 margin: auto;
3658 left: 0;
3659 right: 0;
3660 bottom: 10px;
3661 padding: 6px 10px;
3662 font-size: 1.25rem;
3663 background-color: rgba(255, 255, 255, 0.6);
3664 color: #000;
3665 border-radius: 5px;
3666 opacity: 0.0;
3667 transition: opacity 0.15s ease;
3668 pointer-events: none;
3670 @supports (width: -moz-fit-content) {
3671 #images-overlay div::after {
3672 width: -moz-fit-content;
3675 @supports (width: fit-content) {
3676 #images-overlay div::after {
3677 width: fit-content;
3680 #images-overlay div:hover::after {
3681 opacity: 1.0;
3684 #images-overlay img {
3685 width: 100%;
3688 /***************/
3689 /* IMAGE FOCUS */
3690 /***************/
3692 /*=--------------=*/
3693 /*= Hover styles =*/
3694 /*=--------------=*/
3696 #content img:hover,
3697 #images-overlay img:hover {
3698 filter: drop-shadow(0 0 3px #777);
3699 cursor: zoom-in;
3701 #content img:active,
3702 #images-overlay img:active {
3703 transform: scale(0.975);
3706 /*=---------=*/
3707 /*= Overlay =*/
3708 /*=---------=*/
3710 #image-focus-overlay {
3711 position: fixed;
3712 top: 0;
3713 right: 0;
3714 bottom: 0;
3715 left: 0;
3716 z-index: 2;
3717 display: none;
3718 cursor: zoom-out;
3720 #image-focus-overlay::before {
3721 content: "";
3722 display: block;
3723 position: absolute;
3724 top: 0;
3725 right: 0;
3726 bottom: 0;
3727 left: 0;
3728 background-color: #fff;
3729 opacity: 0.5;
3730 z-index: -1;
3732 #image-focus-overlay.engaged {
3733 display: initial;
3736 #image-focus-overlay img {
3737 margin: auto;
3738 position: absolute;
3739 left: 50%;
3740 top: 50%;
3741 transform: translateX(-50%) translateY(-50%);
3744 /*=-------------------=*/
3745 /*= Single-image mode =*/
3746 /*=-------------------=*/
3748 #image-focus-overlay:not(.slideshow) .image-number,
3749 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3750 visibility: hidden;
3753 /*=---------=*/
3754 /*= Caption =*/
3755 /*=---------=*/
3757 #image-focus-overlay .caption {
3758 position: absolute;
3759 bottom: 0.75em;
3760 background-color: rgba(255, 255, 255, 0.7);
3761 left: 9em;
3762 right: 9em;
3763 margin: auto;
3764 max-width: calc(100% - 18em);
3765 text-align: center;
3766 font-size: 1.375em;
3767 border-radius: 8px;
3768 z-index: 1;
3769 transition:
3770 bottom 0.2s ease;
3772 @supports (width: -moz-fit-content) {
3773 #image-focus-overlay .caption {
3774 width: -moz-fit-content;
3777 @supports (width: fit-content) {
3778 #image-focus-overlay .caption {
3779 width: fit-content;
3782 #image-focus-overlay .caption.hidden {
3783 bottom: -5em;
3784 transition:
3785 bottom 0.5s ease;
3788 #image-focus-overlay .caption p {
3789 margin: 1em 1.25em;
3790 color: #000;
3793 #image-focus-overlay .caption:not(:empty)::before {
3794 content: "";
3795 display: block;
3796 position: absolute;
3797 width: 100vw;
3798 height: calc(100% + 1.5em);
3799 z-index: -1;
3800 top: -0.75em;
3801 left: calc(-50vw + 50%);
3805 /*=--------------=*/
3806 /*= Help overlay =*/
3807 /*=--------------=*/
3809 #image-focus-overlay .help-overlay {
3810 position: absolute;
3811 display: flex;
3812 flex-flow: column;
3813 z-index: 2;
3814 font-size: 1.5rem;
3815 padding: 1em;
3816 border-radius: 10px;
3817 bottom: 1em;
3818 right: 1em;
3819 overflow: hidden;
3820 white-space: nowrap;
3821 color: transparent;
3822 cursor: default;
3823 visibility: hidden;
3824 transition:
3825 visibility 1s ease,
3826 color 1s ease,
3827 background-color 1s ease,
3828 bottom 0.3s ease;
3830 #image-focus-overlay .help-overlay:hover {
3831 max-width: 24em;
3832 max-height: 14em;
3833 background-color: rgba(255, 255, 255, 0.85);
3834 color: #000;
3835 visibility: visible;
3836 transition:
3837 visibility 0.2s ease 0.3s,
3838 color 0.2s ease 0.3s,
3839 background-color 0.2s ease 0.3s;
3842 #image-focus-overlay .help-overlay::after {
3843 content: "\F128";
3844 font-family: "Font Awesome", "Font Awesome 5 Free";
3845 font-weight: 900;
3846 font-size: 2rem;
3847 position: absolute;
3848 right: 0;
3849 bottom: 0;
3850 padding: 10px;
3851 color: #fff;
3852 filter: drop-shadow(0 0 6px #000);
3853 visibility: visible;
3854 opacity: 0.85;
3855 transition:
3856 visibility 1s ease;
3858 #image-focus-overlay .help-overlay:hover::after {
3859 visibility: hidden;
3860 transition:
3861 visibility 0.2s ease 0.3s;
3864 #image-focus-overlay .help-overlay p {
3865 margin: 0;
3866 text-indent: -2em;
3867 padding-left: 2em;
3868 max-width: 100%;
3869 overflow: hidden;
3871 #image-focus-overlay .help-overlay p + p {
3872 margin: 0.75em 0 0 0;
3874 #image-focus-overlay .help-overlay.hidden {
3875 bottom: -2em;
3878 /*=--------------=*/
3879 /*= Slide number =*/
3880 /*=--------------=*/
3882 #image-focus-overlay .image-number {
3883 position: absolute;
3884 z-index: 2;
3885 font-size: 1.75rem;
3886 left: 1em;
3887 bottom: 1em;
3888 font-weight: 600;
3889 text-shadow:
3890 0 0 3px #000,
3891 0 0 5px #000,
3892 0 0 8px #000,
3893 0 0 13px #000;
3894 width: 1.5em;
3895 text-align: right;
3896 white-space: nowrap;
3897 transition: bottom 0.3s ease;
3899 #image-focus-overlay .image-number::before {
3900 content: "#";
3901 opacity: 0.3;
3903 #image-focus-overlay .image-number::after {
3904 content: " of " attr(data-number-of-images);
3905 opacity: 0.3;
3907 #image-focus-overlay .image-number:hover::before,
3908 #image-focus-overlay .image-number:hover::after {
3909 opacity: 1.0;
3911 #image-focus-overlay .image-number.hidden {
3912 bottom: -1.25em;
3915 /*=-------------------=*/
3916 /*= Slideshow buttons =*/
3917 /*=-------------------=*/
3919 #image-focus-overlay .slideshow-buttons {
3920 position: absolute;
3921 top: 0;
3922 left: 0;
3923 width: 100%;
3924 height: 100%;
3925 z-index: 1;
3926 display: flex;
3927 justify-content: space-between;
3928 pointer-events: none;
3930 #image-focus-overlay .slideshow-buttons button {
3931 font-family: "Font Awesome", "Font Awesome 5 Free";
3932 font-weight: 900;
3933 font-size: 3rem;
3934 padding: 0.5em;
3935 color: #1f1f1f;
3936 position: relative;
3937 left: 0;
3938 transition:
3939 left 0.3s ease;
3940 pointer-events: auto;
3942 #image-focus-overlay .slideshow-buttons button::selection {
3943 background-color: transparent;
3945 @media only screen and (hover: hover) {
3946 #image-focus-overlay .slideshow-buttons button:hover {
3947 background-color: rgba(255, 255, 255, 0.1);
3948 color: #777;
3951 #image-focus-overlay .slideshow-buttons button:active {
3952 transform: none;
3953 color: #666;
3955 #image-focus-overlay .slideshow-buttons button:disabled {
3956 text-shadow: none;
3957 background-color: transparent;
3958 color: #1f1f1f;
3959 cursor: default;
3960 opacity: 0.4;
3962 #image-focus-overlay .slideshow-button.previous.hidden {
3963 left: -1.75em;
3965 #image-focus-overlay .slideshow-button.next.hidden {
3966 left: 1.75em;
3969 /*=-----------------=*/
3970 /*= Background blur =*/
3971 /*=-----------------=*/
3973 .blurred {
3974 filter: blur(3px);
3977 /**************************/
3978 /* QUALIFIED HYPERLINKING */
3979 /**************************/
3981 #content.no-nav-bars {
3982 margin: 8px auto;
3984 #content.no-nav-bars + #ui-elements-container > * {
3985 padding-top: 8px;
3988 #aux-about-link {
3989 position: fixed;
3990 top: 40px;
3991 left: calc((100% - 900px) / 2 - 69px);
3992 width: 1.5em;
3993 height: 1.5em;
3994 text-align: center;
3995 display: table;
3997 #aux-about-link a {
3998 display: table-cell;
3999 width: 100%;
4000 vertical-align: middle;
4001 font-family: "Font Awesome", "Font Awesome 5 Free";
4002 font-weight: 900;
4003 font-size: 1.25rem;
4004 opacity: 0.4;
4005 z-index: 1;
4008 .qualified-linking {
4009 margin: 0;
4010 position: relative;
4012 .qualified-linking input[type='checkbox'] {
4013 visibility: hidden;
4014 width: 0;
4015 height: 0;
4016 margin: 0;
4018 .qualified-linking label {
4019 font-family: "Font Awesome", "Font Awesome 5 Free";
4020 font-weight: 900;
4021 font-size: 1rem;
4022 padding: 0 0.5em;
4023 display: inline-block;
4024 margin-left: 0.25em;
4026 .qualified-linking label:hover {
4027 cursor: pointer;
4029 .qualified-linking label:active span {
4030 display: inline-block;
4031 transform: scale(0.9);
4033 .qualified-linking label::selection {
4034 background-color: transparent;
4037 .qualified-linking label::after {
4038 content: "";
4039 width: 100vw;
4040 height: 0;
4041 left: 0;
4042 top: 0;
4043 position: fixed;
4044 z-index: 1;
4045 cursor: default;
4047 .qualified-linking input[type='checkbox']:checked + label::after {
4048 height: 100vh;
4051 .qualified-linking-toolbar {
4052 position: absolute;
4053 right: 0.25em;
4054 top: 110%;
4055 z-index: 1;
4057 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4058 display: none;
4060 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4061 display: block;
4063 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4064 top: unset;
4065 bottom: 125%;
4068 .qualified-linking-toolbar a {
4069 display: block;
4070 padding: 0 6px;
4071 margin: 4px;
4073 .qualified-linking-toolbar a::selection {
4074 background-color: transparent;
4077 /*****************/
4078 /* HOVER PREVIEW */
4079 /*****************/
4081 #preview-popup-toggle {
4082 position: absolute;
4083 right: -67px;
4084 bottom: 285px;
4085 cursor: pointer;
4086 color: var(--GW-toggle-widget-color, #666);
4088 #preview-popup-toggle:hover {
4089 color: var(--GW-toggle-widget-hover-color, #aeaeae);
4092 #content.preview:not(not) {
4093 padding: 0;
4095 #content.preview > .comment-thread {
4096 margin: 2px;
4098 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4099 border: none;
4101 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4102 padding: 0 8px;
4104 #content.preview.user-page .page-main-heading {
4105 margin-left: 8px;
4107 #content.preview.not(not) .body-text {
4108 margin-left: 8px;
4109 margin-right: 8px;
4111 #content.preview.user-page .user-stats {
4112 margin-right: 32px;
4114 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4115 display: none;
4117 #content.preview button.vote {
4118 display: none;
4120 #content.preview > h1.listing {
4121 max-height: unset;
4123 #content.preview.user-page > .comment-thread {
4124 margin: 0.5em 0;
4126 #content.preview > .post {
4127 margin: 0 18px;
4129 #content.preview .post-title {
4130 margin-top: 0.5em;
4132 #content.preview .post-meta {
4133 line-height: 1.0;
4135 #content.preview .body-text {
4136 font-size: 1em;
4138 #content.preview nav.contents,
4139 #content.preview .lw2-link {
4140 display: none;
4143 .preview-popup {
4144 position: fixed;
4145 transform-origin: top;
4146 top: 10%;
4147 right: 10%;
4148 max-width: 700px;
4149 z-index: 10001;
4150 background-color: #131313;
4151 border: 1px solid #2c2c2c;
4152 box-shadow: 2px 6px 20px -4px #fff;
4153 transition: height 0.2s ease, top 0.2s ease;
4155 .popup-hide-button {
4156 position: fixed;
4157 top: 4px;
4158 right: 4px;
4159 color: #fff;
4160 background-color: #000;
4161 width: 28px;
4162 height: 28px;
4163 display: flex;
4164 font-family: "Font Awesome";
4165 font-size: 14px;
4166 line-height: 1;
4167 border: 1px solid #393939;
4168 border-radius: 28px;
4169 align-items: center;
4170 justify-content: center;
4171 //padding-bottom: 2px;
4172 padding-left: 1.5px;
4173 font-family: "Font Awesome", "Font Awesome 5 Free";
4174 cursor: pointer;
4176 .popup-hide-button:hover::before {
4177 content: "Turn off preview popups";
4178 display: block;
4179 position: absolute;
4180 width: max-content;
4181 right: 32px;
4182 color #fff;
4183 background-color: #000;
4184 border: 1px solid #131313;
4185 border-radius: 2px;
4186 padding: 4px;
4189 /********/
4190 /* MATH */
4191 /********/
4193 .mathjax-block-container {
4194 display: block;
4195 overflow-y: hidden;
4196 border-radius: 6px;
4197 margin: 1em 0 1.5em 0;
4199 .mathjax-inline-container {
4200 max-width: 100%;
4201 overflow-x: auto;
4202 overflow-y: hidden;
4203 position: relative;
4204 padding: 0 1px;
4206 #content .mathjax-inline-container,
4207 #content .mathjax-inline-container .mjpage,
4208 #content .mathjax-inline-container .mjx-chtml,
4209 #content .mathjax-inline-container .mjx-math,
4210 #content .mathjax-inline-container .mjx-mrow {
4211 display: inline;
4212 white-space: normal;
4214 .post .mathjax-inline-container {
4215 line-height: 1;
4217 .comment .mathjax-inline-container {
4218 line-height: 1;
4220 .mathjax-inline-container .mjx-chtml {
4221 padding: 0;
4224 /************/
4225 /* SPOILERS */
4226 /************/
4228 .spoiler {
4229 color: #fff;
4230 background-color: currentColor;
4231 transition: none;
4232 text-shadow: none;
4233 margin: 1em 0;
4234 box-shadow: 0 0 0 1px currentColor inset;
4235 overflow: auto;
4237 .spoiler:not(:last-child) {
4238 margin-bottom: 0;
4240 #content .spoiler * {
4241 color: inherit;
4242 border: none;
4244 .spoiler:hover {
4245 color: unset;
4246 background-color: unset;
4247 text-shadow: unset;
4248 transition:
4249 color 0.1s ease-out 0.1s,
4250 background-color 0.1s ease-out 0.1s,
4251 text-shadow 0.1s ease-out 0.1s;
4253 .spoiler::selection,
4254 .spoiler ::selection {
4255 color: #000;
4256 background-color: #fff;
4258 .spoiler:not(:hover)::selection,
4259 .spoiler:not(:hover) ::selection {
4260 background-color: transparent;
4263 /*= Fix for LessWrong being weird =*/
4265 .spoiler > p {
4266 padding: 0 7px;
4268 .spoiler > p:first-child {
4269 margin-top: 0.25em;
4271 .spoiler > p:last-child {
4272 margin-bottom: 0;
4273 padding-bottom: 0.25em;
4275 .spoiler > p:hover ~ p {
4276 background-color: currentColor;
4278 .spoiler > p + p {
4279 margin-top: -1em;
4281 .spoiler > p:not(:first-child) {
4282 padding-top: 0.5em;
4284 .spoiler > p:not(:last-child) {
4285 padding-bottom: 0.5em;
4288 .spoiler:not(:hover) pre,
4289 .spoiler:not(:hover) code {
4290 background-color: inherit;
4291 box-shadow: none;
4293 #content .spoiler pre {
4294 border-color: currentColor;
4295 border-style: solid;
4296 border-width: 0 1px;
4297 border-radius: 0;
4300 /*******************/
4301 /* PAGE LIST INDEX */
4302 /*******************/
4304 .page-list-index {
4305 margin: 1em 30px;
4306 line-height: 1.2;
4309 .page-list-index > p {
4310 font-weight: bold;
4311 font-size: 1.2em;
4314 .page-list-index > ul * {
4315 margin: 0;
4318 .page-list-index ul {
4319 padding-left: 1.5em;
4322 .page-list-index li {
4323 margin-top: 0.67em;
4326 .page-list-index li > a {
4327 display: block;
4328 font-size: 1.1em;
4329 font-weight: bold;
4330 margin: 0.33em 0;
4333 .page-list-index li > a:last-child {
4334 margin-bottom: 1em;
4338 /*****************/
4339 /* USER MENTIONS */
4340 /*****************/
4342 .textarea-container .autocomplete-container {
4343 position: absolute;
4344 overflow-y: auto;
4345 font-size: 1.125rem;
4346 cursor: default;
4347 backdrop-filter: blur(2px);
4348 width: 360px;
4350 .textarea-container .autocomplete-container:empty {
4351 display: none;
4354 .textarea-container .autocomplete-container.inside {
4355 max-height: calc(100% - 36px);
4356 top: 32px;
4358 .textarea-container .autocomplete-container.outside {
4359 max-height: calc(100% - 28px);
4360 top: 28px;
4361 z-index: 10001;
4364 .textarea-container .autocomplete-container.inside.right {
4365 right: 18px;
4367 .textarea-container .autocomplete-container.inside.left {
4368 left: 18px;
4370 .textarea-container .autocomplete-container.outside.right {
4371 left: calc(100% + 3px);
4373 .textarea-container .autocomplete-container.outside.left {
4374 right: calc(100% + 3px);
4377 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4378 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4380 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4381 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4383 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4384 max-width: calc((300px + 40px * 2) / 2);
4387 .textarea-container .autocomplete-container div {
4388 padding: 2px 8px 0 8px;
4389 white-space: nowrap;
4390 display: flex;
4391 justify-content: flex-end;
4394 .textarea-container .autocomplete-container div span.name {
4395 flex: 1 1 auto;
4396 width: calc(100% - 9em);
4397 overflow: hidden;
4398 text-overflow: ellipsis;
4400 .textarea-container .autocomplete-container div span.name:hover {
4401 overflow: visible;
4402 z-index: 1;
4404 .textarea-container .autocomplete-container div span.age,
4405 .textarea-container .autocomplete-container div span.karma {
4406 font-size: 0.9em;
4407 text-align: right;
4409 .textarea-container .autocomplete-container div span.age {
4410 flex: 0 0 3em;
4412 .textarea-container .autocomplete-container div span.karma {
4413 flex: 0 0 6em;
4417 /*******************/
4418 /* ALIGNMENT FORUM */
4419 /*******************/
4421 #content.alignment-forum-index-page::after {
4422 content: "Alignment Forum";
4423 font-size: 1.5rem;
4424 margin: 0.375em 0 0 -0.375em;
4425 order: -1;
4428 /**********************/
4429 /* FOR NARROW SCREENS */
4430 /**********************/
4432 @media only screen and (max-width: 1440px) {
4433 #hns-date-picker {
4434 right: -81px;
4435 padding: 8px 10px 10px 10px;
4436 bottom: 62px;
4437 display: none;
4439 #hns-date-picker::before {
4440 content: "";
4441 position: absolute;
4442 display: block;
4443 z-index: -1;
4444 height: calc(100% + 2px);
4445 top: -1px;
4446 left: -1px;
4447 width: 50%;
4450 @media only screen and (max-width: 1160px) {
4451 #new-comment-nav-ui {
4452 bottom: 180px;
4453 right: -68px;
4455 #hns-date-picker {
4456 bottom: 200px;
4457 right: -36px;
4459 #hns-date-picker::before {
4460 width: calc(100% - 35px);
4462 #theme-selector button::before {
4463 right: unset;
4464 left: 100%;
4466 #theme-selector:hover::after {
4467 content: "";
4468 display: block;
4469 position: absolute;
4470 width: calc(6em - 7px);
4471 height: calc(100% + 2px);
4472 top: 0;
4473 left: calc(100% + 1px);
4475 #anti-kibitzer-toggle {
4476 bottom: 330px;
4479 @media only screen and (max-width: 1080px) {
4480 #width-selector {
4481 right: -30px;
4483 #width-selector button {
4484 display: block;
4486 #text-size-adjustment-ui {
4487 top: 90px;
4488 right: -30px;
4490 #text-size-adjustment-ui button {
4491 display: block;
4492 position: relative;
4494 #text-size-adjustment-ui button.increase {
4495 bottom: 48px;
4497 #text-size-adjustment-ui button.decrease {
4498 top: 50px;
4500 #theme-selector {
4501 top: 46px;
4502 left: -44px;
4504 #theme-tweaker-toggle {
4505 left: -44px;
4506 top: 2px;
4508 #theme-tweaker-toggle button {
4509 height: 2em;
4510 width: 2em;
4511 padding: 7px;
4513 #quick-nav-ui {
4514 right: -54px;
4516 #new-comment-nav-ui {
4517 right: -55px;
4519 #hns-date-picker {
4520 right: -23px;
4522 #hns-date-picker::before {
4523 width: calc(100% - 22px);
4525 #anti-kibitzer-toggle {
4526 right: -54px;
4529 @media only screen and (max-width: 1040px) {
4530 #quick-nav-ui {
4531 right: -49px;
4533 #new-comment-nav-ui {
4534 right: -50px;
4536 #hns-date-picker {
4537 right: -18px;
4539 #hns-date-picker::before {
4540 width: calc(100% - 17px);
4542 #anti-kibitzer-toggle {
4543 right: -50px;
4546 @media only screen and (max-width: 1020px) {
4547 #quick-nav-ui {
4548 right: -20px;
4550 #new-comment-nav-ui {
4551 right: -21px;
4553 #new-comment-nav-ui .new-comments-count::before {
4554 content: "";
4555 position: absolute;
4556 width: 100%;
4557 height: calc(100% + 45px);
4558 z-index: -1;
4559 left: 0;
4560 top: -22px;
4562 #hns-date-picker {
4563 right: 19px;
4565 #hns-date-picker::before {
4566 width: 100%;
4568 #anti-kibitzer-toggle {
4569 right: -20px;
4572 @media only screen and (max-width: 1000px) {
4573 #theme-selector {
4574 left: -17px;
4575 top: 120px;
4576 padding: 3px 0;
4577 max-width: 32px;
4579 #theme-selector button {
4580 margin: 1px 4px;
4582 #text-size-adjustment-ui {
4583 top: 100px;
4584 right: -12px;
4586 @media not screen and (hover: none) {
4587 #quick-nav-ui,
4588 #new-comment-nav-ui,
4589 #new-comment-nav-ui + #hns-date-picker,
4590 #anti-kibitzer-toggle {
4591 opacity: 0.4;
4593 #quick-nav-ui:hover,
4594 #new-comment-nav-ui:hover,
4595 #new-comment-nav-ui + #hns-date-picker:hover,
4596 #new-comment-nav-ui + #hns-date-picker:focus-within,
4597 #new-comment-nav-ui:hover + #hns-date-picker,
4598 #anti-kibitzer-toggle:hover {
4599 opacity: 1.0;
4602 #theme-tweaker-toggle {
4603 top: 70px;
4604 left: -21px;
4608 /**************/
4609 /* PRINT VIEW */
4610 /**************/
4612 @media only print {
4613 .nav-bar {
4614 visibility: hidden;
4615 max-height: 0;
4616 overflow: hidden;
4618 #ui-elements-container {
4619 display: none;
4621 #images-overlay {
4622 display: none;
4624 #images-overlay + #content .post-body img {
4625 visibility: visible;
4627 .comment-controls {
4628 display: none;
4630 #comments-sort-mode-selector {
4631 display: none;
4633 .comment-minimize-button {
4634 display: none;
4636 .post-meta .qualified-linking,
4637 .post-meta .lw2-link {
4638 display: none;
4640 .comment-meta .permalink,
4641 .comment-meta .lw2-link,
4642 .comment-meta .comment-parent-link {
4643 display: none;
4645 .new-comment::before {
4646 display: none;
4648 #content::before {
4649 box-shadow: none;
4653 /*****************/
4654 /* MOBILE LAYOUT */
4655 /*****************/
4657 /* Hide the mobile elements on desktop screens: */
4659 @media only screen and (max-width: 1160px) {
4660 #post-nav-ui-toggle,
4661 #appearance-adjust-ui-toggle {
4662 display: none;
4666 @media only screen and (max-width: 1160px) {
4668 /*====================*/
4669 /* MOBILE UI ELEMENTS */
4670 /*====================*/
4672 #ui-elements-container {
4673 height: unset !important;
4674 position: unset;
4676 #ui-elements-container > * {
4677 position: fixed;
4678 visibility: hidden;
4679 opacity: 1.0;
4680 z-index: 10000;
4683 #ui-elements-container > div[id$='-ui-toggle'] {
4684 visibility: visible;
4685 display: inline-block;
4686 border-radius: 50%;
4687 z-index: 10000;
4689 #ui-elements-container > div[id$='-ui-toggle'] button,
4690 #theme-selector .theme-selector-close-button {
4691 font-family: Font Awesome;
4692 font-weight: 900;
4693 font-size: 32px;
4694 padding: 10px;
4695 opacity: 0.8;
4696 -webkit-tap-highlight-color: transparent;
4697 transition: transform 0.2s ease;
4699 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4700 #theme-selector .theme-selector-close-button::selection {
4701 background-color: transparent;
4703 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4704 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4705 border: none;
4707 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4708 transform: rotate(-90deg);
4709 opacity: 1.0;
4712 #appearance-adjust-ui-toggle {
4713 bottom: 10px;
4714 left: 10px;
4717 #post-nav-ui-toggle {
4718 bottom: 10px;
4719 right: 10px;
4722 #theme-selector.engaged,
4723 #quick-nav-ui.engaged,
4724 #new-comment-nav-ui.engaged,
4725 #hns-date-picker.engaged {
4726 visibility: visible;
4729 #image-focus-overlay.engaged {
4730 visibility: visible;
4732 #image-focus-overlay .help-overlay {
4733 display: none;
4736 /*=========*/
4737 /* GENERAL */
4738 /*=========*/
4740 @media only screen and (max-width: 900px) {
4741 #content,
4742 #images-overlay,
4743 #ui-elements-container {
4744 min-width: unset;
4745 width: unset;
4747 #content {
4748 padding: 0 4px;
4752 /*================*/
4753 /* THEME SELECTOR */
4754 /*================*/
4756 #theme-selector {
4757 display: flex;
4758 flex-flow: column;
4759 background-color: #000;
4760 width: calc(100vw - 20px);
4761 max-width: 360px;
4762 padding: 0 0 3px 0;
4763 overflow: hidden;
4764 max-height: 0;
4765 transition:
4766 top 0.2s ease,
4767 max-height 0.2s ease,
4768 visibility 0.2s ease;
4769 top: calc(100% + 10px);
4770 left: 0;
4771 right: 0;
4772 margin: auto;
4774 #theme-selector.engaged {
4775 max-height: 1000px;
4776 top: 10px;
4777 z-index: 10001;
4779 #theme-selector::before {
4780 content: "Select theme";
4781 white-space: nowrap;
4782 display: block;
4783 font-weight: 600;
4784 font-size: 2rem;
4785 margin: 0.375em 1em 0.5em 1em;
4786 text-align: center;
4788 #theme-selector button {
4789 width: calc(100% - 0.5em);
4790 background-repeat: no-repeat;
4791 padding: 1em 0.875em;
4792 margin: 1px 4px;
4793 line-height: 1;
4794 height: unset;
4795 position: relative;
4797 #theme-selector button::after {
4798 content: attr(data-theme-description);
4799 color: #fff;
4800 white-space: nowrap;
4801 position: absolute;
4802 text-align: left;
4803 left: 2.5em;
4804 top: 1em;
4806 @media only screen and (max-height: 675px) {
4807 #theme-selector button {
4808 padding: 0.875em;
4810 #theme-selector button::after {
4811 top: 0.875em;
4814 #theme-selector .theme-selector-close-button {
4815 position: absolute;
4816 width: unset;
4817 background-color: transparent;
4818 top: 0;
4819 right: -3px;
4821 #theme-selector .theme-selector-close-button,
4822 #theme-selector .theme-selector-close-button:focus,
4823 #theme-selector .theme-selector-close-button:active,
4824 #theme-selector .theme-selector-close-button:hover {
4825 box-shadow: none;
4828 /*===============*/
4829 /* THEME TWEAKER */
4830 /*===============*/
4832 #theme-selector {
4833 padding: 0 0 64px 0;
4835 #theme-selector ~ #theme-tweaker-toggle {
4836 top: 100%;
4838 #theme-selector ~ #theme-tweaker-toggle::after {
4839 content: "Open theme tweaker";
4840 position: absolute;
4841 font-size: 0.625em;
4842 white-space: nowrap;
4843 left: -50%;
4844 top: 100%;
4846 #theme-selector.engaged ~ #theme-tweaker-toggle {
4847 visibility: visible;
4848 top: 530px;
4849 left: 0;
4850 right: 0;
4851 margin: auto;
4852 z-index: 11111;
4853 transition:
4854 top 0.2s ease,
4855 visibility 0.2s ease;
4857 @media only screen and (max-height: 675px) {
4858 #theme-selector.engaged ~ #theme-tweaker-toggle {
4859 top: 492px;
4862 @supports (width: -moz-fit-content) {
4863 #theme-selector.engaged ~ #theme-tweaker-toggle {
4864 width: -moz-fit-content;
4867 @supports (width: fit-content) {
4868 #theme-selector.engaged ~ #theme-tweaker-toggle {
4869 width: fit-content;
4872 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4873 opacity: 1.0;
4876 #theme-tweaker-ui {
4877 visibility: visible;
4880 /*======================*/
4881 /* ANTI-KIBITZER TOGGLE */
4882 /*======================*/
4884 #theme-selector ~ #anti-kibitzer-toggle {
4885 top: 100%;
4886 bottom: unset;
4887 left: 0;
4888 right: 0;
4889 margin: auto;
4890 box-shadow: none;
4891 width: calc(100vw - 44px);
4892 max-width: 330px;
4893 text-align: right;
4894 pointer-events: none;
4896 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4897 visibility: visible;
4898 z-index: 11110;
4899 top: 530px;
4900 transition:
4901 top 0.2s ease,
4902 visibility 0.2s ease;
4904 @media only screen and (max-height: 675px) {
4905 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4906 top: 492px;
4909 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4910 pointer-events: auto;
4911 display: inline-block;
4914 /*=================*/
4915 /* QUICKNAV WIDGET */
4916 /*=================*/
4918 #quick-nav-ui {
4919 max-width: 0px;
4920 transition:
4921 max-width 0.2s ease,
4922 visibility 0.2s ease;
4923 display: flex;
4924 right: 72px;
4925 bottom: 14px;
4927 #quick-nav-ui.engaged {
4928 max-width: 1000px;
4930 #quick-nav-ui a {
4931 position: relative;
4932 margin: 2px;
4934 #quick-nav-ui a + a {
4935 margin-left: 5px;
4937 #quick-nav-ui a::after {
4938 position: absolute;
4939 top: calc(100% + 2px);
4940 font-size: 0.375rem;
4941 left: 0;
4942 right: 0;
4943 margin: auto;
4944 line-height: 1;
4945 padding: 2px;
4946 text-transform: uppercase;
4947 z-index: -1;
4949 @supports (width: -moz-fit-content) {
4950 #quick-nav-ui a::after {
4951 width: -moz-fit-content;
4954 @supports (width: fit-content) {
4955 #quick-nav-ui a::after {
4956 width: fit-content;
4959 #quick-nav-ui a[href='#top']::after {
4960 content: "Top";
4961 left: -1px;
4963 #quick-nav-ui a[href='#comments']::after {
4964 content: "Comments";
4966 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4967 visibility: hidden;
4968 transition: visibility 0.2s ease;
4970 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4971 visibility: visible;
4973 #quick-nav-ui a[href='#bottom-bar']::after {
4974 content: "Bottom";
4977 /*======================*/
4978 /* NEW COMMENT QUICKNAV */
4979 /*======================*/
4981 #new-comment-nav-ui {
4982 max-width: 0px;
4983 max-height: 0px;
4984 transition:
4985 max-width 0.2s ease,
4986 max-height 0.2s ease,
4987 visibility 0.2s ease;
4988 display: flex;
4989 right: 78px;
4990 bottom: 70px;
4992 #new-comment-nav-ui::before {
4993 content: "New Comments";
4994 position: absolute;
4995 bottom: 100%;
4996 font-size: 0.5625rem;
4997 left: 0;
4998 right: 0;
4999 margin: auto;
5000 padding: 2px 3px;
5001 text-transform: uppercase;
5002 z-index: -1;
5004 @supports (width: -moz-fit-content) {
5005 #new-comment-nav-ui::before {
5006 width: -moz-fit-content;
5009 @supports (width: fit-content) {
5010 #new-comment-nav-ui::before {
5011 width: fit-content;
5014 #new-comment-nav-ui.engaged {
5015 max-width: 1000px;
5016 max-height: 1000px;
5018 #new-comment-nav-ui .new-comment-sequential-nav-button {
5019 top: unset;
5020 bottom: unset;
5021 padding: 2px 7px;
5023 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5024 padding: 2px 7px 3px 7px;
5026 #new-comment-nav-ui .new-comments-count {
5027 padding: 4px 0 5px 0;
5029 #new-comment-nav-ui .new-comments-count::before {
5030 display: none;
5032 #new-comment-nav-ui button::after {
5033 position: absolute;
5034 font-size: 0.375rem;
5035 left: 0;
5036 right: 0;
5037 margin: auto;
5038 line-height: 1;
5039 text-transform: uppercase;
5040 pointer-events: none;
5042 #new-comment-nav-ui button.new-comment-previous::after {
5043 content: "Previous";
5044 bottom: 5px;
5046 #new-comment-nav-ui button.new-comment-next::after {
5047 content: "Next";
5048 top: 7px;
5051 /*=================*/
5052 /* HNS DATE PICKER */
5053 /*=================*/
5055 #hns-date-picker {
5056 max-height: 0px;
5057 bottom: 132px;
5058 right: 62px;
5059 transition:
5060 max-height 0.2s ease,
5061 visibility 0.2s ease;
5063 #hns-date-picker.engaged {
5064 max-height: 1000px;
5066 #hns-date-picker::before {
5067 width: calc(100% + 2px);
5068 border-width: 1px !important;
5071 /*=========*/
5072 /* NAV BAR */
5073 /*=========*/
5075 #bottom-bar {
5076 margin-left: auto;
5077 margin-right: auto;
5078 width: calc(100% - 9rem + 8px);
5079 background: rgba(0, 0, 0, 0.85);
5080 backdrop-filter: blur(1px);
5082 #content.index-page #bottom-bar {
5083 z-index: 10001;
5085 #bottom-bar .nav-item {
5086 box-shadow: none;
5087 position: relative;
5089 #bottom-bar .nav-inner {
5090 font-size: 2rem;
5091 padding: 1rem 0 1.25rem 0;
5092 visibility: hidden;
5093 position: static;
5094 width: 0;
5096 #content #bottom-bar .nav-item .nav-inner::before {
5097 margin: 0;
5098 visibility: visible;
5099 position: absolute;
5100 width: 100%;
5101 height: 100%;
5102 left: 0;
5103 top: 0;
5104 padding: 1rem 0;
5106 #bottom-bar .nav-inner::after {
5107 display: block;
5108 visibility: visible;
5109 text-transform: uppercase;
5110 color: unset;
5111 font-size: 0.75rem;
5112 top: unset;
5113 left: 0;
5114 bottom: 1rem;
5115 width: 100%;
5117 #bottom-bar #nav-item-first .nav-inner::after {
5118 content: "First Page";
5120 #bottom-bar #nav-item-prev .nav-inner::after {
5121 content: "Prev. Page";
5123 #bottom-bar #nav-item-top .nav-inner::after {
5124 content: "Top";
5126 #bottom-bar #nav-item-next .nav-inner::after {
5127 content: "Next Page";
5129 #bottom-bar #nav-item-last .nav-inner::after {
5130 content: "Last Page";
5133 @media only screen and (max-width: 900px) {
5134 .nav-bar-top {
5135 font-size: 0.75rem;
5137 .nav-bar {
5138 width: calc(100% + 8px);
5139 margin: 0 -4px;
5141 .nav-bar .nav-inner::after {
5142 display: none;
5145 #primary-bar .nav-item {
5146 flex: 1 1 100%;
5148 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5149 flex: 1 1 60px;
5151 .nav-bar-top:not(#anything) .nav-inner {
5152 text-transform: uppercase;
5153 padding: 6px;
5155 .nav-bar-top .nav-inner::before {
5156 display: block;
5157 font-family: "Font Awesome";
5158 font-size: 2em;
5159 font-weight: 900;
5162 #nav-item-home .nav-inner::before {
5163 content: "\F015";
5165 #nav-item-featured .nav-inner::before {
5166 content: "\F005";
5168 #nav-item-all .nav-inner::before {
5169 content: "\F069";
5171 #nav-item-meta .nav-inner::before {
5172 content: "\F077";
5174 #nav-item-tags .nav-inner::before {
5175 content: "\F02C";
5177 #nav-item-recent-comments > * > span {
5178 display: none;
5180 #nav-item-recent-comments .nav-inner::before,
5181 #nav-item-alignment-forum-comments .nav-inner::before {
5182 content: "\F036";
5184 #nav-item-alignment-forum .nav-inner::before {
5185 content: "AF";
5186 font-family: Concourse, 'Changa One';
5188 #nav-item-questions .nav-inner::before {
5189 content: "?";
5190 font-family: Concourse, 'Changa One';
5192 #nav-item-events .nav-inner::before {
5193 content: "\F5A0";
5195 #nav-item-shortform .nav-inner::before {
5196 content: "\F2F2";
5198 #nav-item-archive .nav-inner::before {
5199 content: "\F187";
5201 #nav-item-about .nav-inner::before {
5202 content: "\F129";
5204 #nav-item-search {
5205 font-size: 2em;
5206 padding: 10px;
5208 #nav-item-search .nav-inner::before {
5209 content: none;
5211 #nav-item-search .nav-inner {
5212 height: 100%;
5213 display: flex;
5215 #nav-item-search input {
5216 width: 100%;
5217 height: 100%;
5219 #nav-item-search button {
5220 height: 100%;
5221 padding: 5px 5px 5px 10px;
5222 width: 40px;
5223 overflow: visible;
5224 visibility: hidden;
5226 #nav-item-search button::before {
5227 content: "\F002";
5228 font-family: Font Awesome;
5229 font-weight: 900;
5230 visibility: visible;
5232 #nav-item-login {
5233 padding: 0;
5235 #nav-item-login .nav-inner::before {
5236 content: "\F007";
5239 @media only screen and (max-width: 520px) {
5240 .nav-bar-top {
5241 font-size: 0.5rem;
5244 #nav-item-search,
5245 #nav-item-search .nav-inner {
5246 padding: 0;
5248 #nav-item-search button {
5249 width: 31px;
5252 #bottom-bar #nav-item-first .nav-inner::after {
5253 content: "First";
5255 #bottom-bar #nav-item-prev .nav-inner::after {
5256 content: "Prev";
5258 #bottom-bar #nav-item-next .nav-inner::after {
5259 content: "Next";
5261 #bottom-bar #nav-item-last .nav-inner::after {
5262 content: "Last";
5266 /*=================*/
5267 /* INBOX INDICATOR */
5268 /*=================*/
5270 @media only screen and (max-width: 900px) {
5271 #inbox-indicator {
5272 width: 100%;
5273 top: 0;
5274 pointer-events: none;
5276 #inbox-indicator::before {
5277 width: 100%;
5278 font-size: 1rem;
5279 text-align: right;
5280 padding: 1px 6px;
5282 #inbox-indicator.new-messages {
5283 pointer-events: auto;
5285 #inbox-indicator.new-messages::before {
5286 box-shadow: 0 0 8px 1px #0090e0 inset;
5289 @media only screen and (max-width: 520px) {
5290 #inbox-indicator::before {
5291 font-size: 0.75rem;
5292 padding: 2px 5px;
5295 @media only screen and (max-width: 374px) {
5296 #inbox-indicator::before {
5297 font-size: 0.625rem;
5301 /*===================*/
5302 /* TOP PAGINATION UI */
5303 /*===================*/
5305 #top-nav-bar {
5306 font-size: 1.75rem;
5309 /*==============*/
5310 /* PAGE TOOLBAR */
5311 /*==============*/
5313 @media only screen and (max-width: 900px) {
5314 #content > .page-toolbar {
5315 font-size: 1rem;
5316 margin-right: 0;
5318 #content.user-page > .page-toolbar {
5319 grid-column: 2 / span 2;
5320 margin: 0 0 6px 0;
5323 @media only screen and (max-width: 520px) {
5324 #content:not(.user-page) .page-toolbar {
5325 display: flex;
5326 flex-direction: column-reverse;
5327 text-align: right;
5328 align-self: start;
5329 padding: 4px 0 0 0;
5331 #content.user-page .page-toolbar {
5332 display: flex;
5333 flex-flow: row;
5334 justify-content: flex-end;
5335 padding: 2px 0 0 0;
5337 #content.user-page .page-toolbar > form,
5338 #content.user-page .page-toolbar > .button {
5339 text-align: center;
5340 flex-basis: 25%;
5341 margin-left: 1.5em;
5343 #content.user-page .page-toolbar .button {
5344 text-transform: uppercase;
5345 font-size: 0.625rem;
5347 #content.user-page .page-toolbar .button::before {
5348 font-size: 1.375rem;
5349 display: block;
5350 padding: 0;
5352 #content.user-page .page-toolbar .rss {
5353 white-space: nowrap;
5354 margin: 0 0 0 1.5em;
5356 .page-toolbar > * {
5357 line-height: 1.15;
5358 padding: 6px 0;
5359 margin: 0;
5363 /*==============*/
5364 /* SUBLEVEL NAV */
5365 /*==============*/
5367 @media only screen and (max-width: 900px) {
5368 .sublevel-nav:not(.sort) {
5369 flex-wrap: wrap;
5370 width: calc(100vw - 200px);
5372 .sublevel-nav:not(.sort) .sublevel-item {
5373 margin: 1px;
5374 flex-basis: 7em;
5377 @media only screen and (max-width: 520px) {
5378 .sublevel-nav:not(.sort) .sublevel-item {
5379 font-size: 1rem;
5383 /*=====================*/
5384 /* SORT ORDER SELECTOR */
5385 /*=====================*/
5387 @media only screen and (max-width: 720px) {
5388 #content.index-page > .sublevel-nav.sort {
5389 flex-flow: column;
5390 margin-left: 4px;
5394 /*==========*/
5395 /* ARCHIVES */
5396 /*==========*/
5398 @media only screen and (max-width: 900px) {
5399 div[class^='archive-nav-'] {
5400 flex-wrap: wrap;
5401 justify-content: flex-start;
5403 .archive-nav *[class^='archive-nav-item'],
5404 .archive-nav *[class^='archive-nav-item']:first-child {
5405 padding: 10px;
5406 margin: 2px;
5407 max-width: unset;
5408 flex: 0 1 calc((100% / 8) - 4px);
5410 .archive-nav .archive-nav-item-day,
5411 .archive-nav .archive-nav-item-day:first-child {
5412 flex-basis: calc((100% / 16) - 4px);
5414 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5415 margin-top: 8px;
5416 position: relative;
5418 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5419 content: "";
5420 display: block;
5421 position: absolute;
5422 height: 1px;
5423 width: calc(100% + 8px);
5424 left: -4px;
5425 top: -4px;
5428 @media only screen and (max-width: 720px) {
5429 .archive-nav .archive-nav-item-day,
5430 .archive-nav .archive-nav-item-day:first-child {
5431 flex-basis: calc((100% / 12) - 4px);
5434 @media only screen and (max-width: 520px) {
5435 .archive-nav *[class^='archive-nav-item'],
5436 .archive-nav *[class^='archive-nav-item']:first-child {
5437 flex-basis: calc((100% / 5) - 4px);
5439 .archive-nav .archive-nav-item-day,
5440 .archive-nav .archive-nav-item-day:first-child {
5441 flex-basis: calc((100% / 8) - 4px);
5445 /*==========*/
5446 /* LISTINGS */
5447 /*==========*/
5449 h1.listing {
5450 max-height: unset;
5453 /*============*/
5454 /* USER PAGES */
5455 /*============*/
5457 #content.user-page h1.page-main-heading {
5458 align-self: end;
5460 @media only screen and (max-width: 520px) {
5461 #content.user-page h1.page-main-heading {
5462 overflow: hidden;
5463 text-overflow: ellipsis;
5465 #content.user-page .user-stats .karma-type {
5466 display: block;
5470 /*============*/
5471 /* LOGIN PAGE */
5472 /*============*/
5474 @media only screen and (max-width: 640px) {
5475 .login-container {
5476 flex-flow: column;
5477 margin: 0 auto 3em auto;
5478 max-width: 400px;
5480 .login-container #login-form,
5481 .login-container #signup-form {
5482 padding: 0 1em 1.25em 1em;
5483 grid-row-gap: 0;
5485 .login-container #signup-form {
5486 padding-top: 1em;
5488 .login-container #login-form > *,
5489 .login-container #signup-form > * {
5490 grid-column: 1 / span 2;
5492 .login-container form label {
5493 text-align: left;
5494 padding: 0;
5495 line-height: 1;
5497 .login-container form input {
5498 margin: 0.25em 0 0.75em 0;
5499 padding: 0.5em;
5501 .login-container form h1 {
5502 grid-column: 1 / span 2;
5503 margin: 0 0 0.25em 0;
5505 .login-container form a {
5506 margin: 0.75em 0 0 0;
5508 .login-container .login-tip {
5509 margin: 1.5em 1em 0 1em;
5513 /*==================*/
5514 /* POSTS & COMMENTS */
5515 /*==================*/
5517 @media only screen and (max-width: 720px) {
5518 .body-text ol > li {
5519 padding: 0 0 0 2.25em;
5521 .body-text ol > li::before {
5522 width: 1.75em;
5524 .body-text ul:not(.contents-list) > li,
5525 .body-text ul:not(.contents-list) > li ul > li {
5526 padding: 0 0 0 0.75em;
5528 .body-text ul:not(.contents-list) > li::before,
5529 .body-text ul:not(.contents-list) > li ul > li::before {
5530 width: 0.125em;
5531 margin-left: -0.06em;
5535 /*===========*/
5536 /* POST-META */
5537 /*===========*/
5539 .post-meta {
5540 line-height: 1.9;
5542 @media only screen and (max-width: 720px) {
5543 .post-meta .lw2-link span,
5544 .post-meta .karma-value span,
5545 .post-meta .comment-count span {
5546 display: none;
5548 .post-meta .comment-count::before {
5549 content: "\F086";
5550 font-family: Font Awesome;
5551 font-size: 0.875em;
5552 margin: 0 0.25em 0 0;
5553 font-weight: 400;
5557 /*===================*/
5558 /* POSTS & BODY TEXT */
5559 /*===================*/
5561 @media only screen and (max-width: 900px) {
5562 .post-body,
5563 h1.post-title,
5564 .tag-description,
5565 .sequence-text {
5566 padding: 0 6px;
5569 @media only screen and (max-width: 520px) {
5570 .post-body {
5571 font-size: 1.2rem;
5572 line-height: 1.45;
5574 h1.post-title {
5575 font-size: 2em;
5579 /*==============*/
5580 /* COMMENT-META */
5581 /*==============*/
5583 a.comment-parent-link::after {
5584 display: none;
5586 @media only screen and (max-width: 900px) {
5587 .comment-meta {
5588 padding: 2px 40px 2px 10px;
5591 @media only screen and (max-width: 720px) {
5592 .comment .karma-value span {
5593 display: none;
5595 .comment-meta .comment-parent-link {
5596 opacity: 1.0;
5599 @media only screen and (max-width: 520px) {
5600 .comment-meta {
5601 padding: 2px 24px 2px 10px;
5602 position: relative;
5604 .comment-meta > * {
5605 order: 3;
5607 .comment-meta > :not(.author) {
5608 line-height: 1.8;
5610 .comment-meta .author,
5611 .comment-meta .date {
5612 order: 1;
5614 .comment-meta:before {
5615 content: "";
5616 order: 2;
5617 flex-basis: 100%;
5619 .comment-post-title2 {
5620 display: block;
5621 text-overflow: ellipsis;
5622 overflow: hidden;
5624 .comment-meta .lw2-link {
5625 display: none;
5629 /*=======================*/
5630 /* COMMENTS COMPACT VIEW */
5631 /*=======================*/
5633 /*===========================*/
5634 /* COMMENT THREAD NAVIGATION */
5635 /*===========================*/
5637 @media only screen and (max-width: 900px) {
5638 a.comment-parent-link {
5639 width: 0;
5640 visibility: hidden;
5641 position: relative;
5643 a.comment-parent-link::before {
5644 padding: 0;
5645 font-size: 1em;
5646 left: 0;
5647 top: 0;
5648 line-height: inherit;
5649 visibility: visible;
5650 content: "\F3BF";
5651 transform: scaleX(-1);
5652 width: 2em;
5653 text-align: center;
5656 @media only screen and (max-width: 520px) {
5657 a.comment-parent-link {
5658 position: static;
5660 a.comment-parent-link::before {
5661 padding: 6px;
5662 left: unset;
5663 right: 0;
5664 top: unset;
5665 bottom: 0;
5666 height: 2em;
5670 /*=================================*/
5671 /* COMMENT THREAD MINIMIZE BUTTONS */
5672 /*=================================*/
5674 @media only screen and (max-width: 520px) {
5675 .comment-minimize-button{
5676 right: 2px;
5680 /*===========================*/
5681 /* COMMENTING AND POSTING UI */
5682 /*===========================*/
5684 @media only screen and (max-width: 900px) {
5685 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5686 font-size: 0;
5688 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5689 font-size: 0.9rem;
5691 .comment-controls .cancel-comment-button {
5692 max-width: 1.3em;
5693 overflow: hidden;
5694 margin-right: 0.125em;
5696 .comment-controls .edit-button::before {
5697 font-size: 0.9375rem;
5699 .comments > .comment-controls .cancel-comment-button {
5700 right: 8px;
5702 .comment-controls .cancel-comment-button::before {
5703 font-size: 1.25rem;
5706 @media only screen and (max-width: 520px) {
5707 .comment-controls {
5708 position: static;
5710 .comment-controls:focus-within {
5711 z-index: 10001;
5713 .comment-controls .cancel-comment-button {
5714 right: 10px;
5716 .textarea-container:focus-within textarea {
5717 position: fixed;
5718 top: 0;
5719 left: 2px;
5720 width: calc(100vw - 4px);
5721 height: calc(100% - 100px);
5722 min-height: unset;
5723 max-height: unset;
5724 border-width: 1px;
5725 z-index: 11001;
5727 #content.conversation-page .textarea-container:focus-within textarea {
5728 height: calc(100% - 54px);
5730 #content.conversation-page .textarea-container:focus-within::after {
5731 content: "";
5732 display: block;
5733 width: 100%;
5734 height: 50px;
5735 position: fixed;
5736 left: 0;
5737 bottom: 0;
5738 z-index: 11000;
5740 .textarea-container:focus-within .guiedit-buttons-container {
5741 position: fixed;
5742 z-index: 11002;
5743 left: 0;
5744 width: 100vw;
5745 height: auto;
5746 background-image: none;
5747 padding: 3px 4px 4px 4px;
5748 margin: 0;
5749 text-align: center;
5750 top: auto;
5751 bottom: 0;
5753 .textarea-container:focus-within button.guiedit {
5754 font-size: 0.9375rem;
5755 line-height: 1.5;
5756 height: auto;
5757 width: calc((100% / 10) - 2px);
5758 padding: 10px 1px 8px 0;
5759 position: relative;
5760 margin: 1px;
5762 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5763 z-index: 11011;
5764 position: fixed;
5765 bottom: 7px;
5766 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5767 font-size: 1.25rem;
5768 padding: 5px 5px 6px 5px;
5769 display: block;
5771 .textarea-container:focus-within button.guiedit sup {
5772 position: absolute;
5773 left: calc(50% + 0.65em);
5774 top: calc(50% - 1.3em);
5776 .textarea-container:focus-within .guiedit-mobile-help-button {
5777 left: 8px;
5779 .textarea-container:focus-within .guiedit-mobile-exit-button {
5780 right: 8px;
5782 .guiedit::after {
5783 display: none;
5786 #markdown-hints,
5787 #edit-post-form #markdown-hints {
5788 z-index: 11111;
5789 position: fixed;
5790 top: 40px;
5791 left: 0;
5792 right: 0;
5793 margin: auto;
5794 padding: 4px 0 4px 8px;
5795 width: 310px;
5796 border-width: 3px;
5797 border-style: double;
5798 pointer-events: none;
5800 #markdown-hints::after {
5801 content: "(Type to hide this help box.)";
5802 color: #9740cb;
5803 display: block;
5804 margin: 12px 18px 13px 10px;
5805 padding: 5px;
5806 font-size: 0.9em;
5807 text-align: center;
5811 /*================*/
5812 /* EDIT POST FORM */
5813 /*================*/
5815 @media only screen and (max-width: 520px) {
5816 #edit-post-form {
5817 padding-bottom: 0;
5819 #edit-post-form .post-meta-fields {
5820 grid-template-columns: 4.5em auto auto auto 1fr auto;
5822 #edit-post-form label[for='url'],
5823 #edit-post-form label[for='section'],
5824 #edit-post-form label[for='title'] {
5825 padding-left: 0;
5827 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5828 white-space: normal;
5829 line-height: 0.9;
5830 top: -1px;
5831 font-family: Font Awesome;
5832 font-weight: 900;
5833 justify-self: start;
5835 #edit-post-form .post-meta-fields .question-checkbox,
5836 #edit-post-form .post-meta-fields .question-checkbox + label {
5837 grid-column: 6;
5838 margin-left: unset;
5840 #edit-post-form .post-meta-fields input[type='radio'] + label {
5841 align-self: start;
5843 #edit-post-form .textarea-container:focus-within textarea {
5844 height: calc(100% - 101px);
5845 min-height: unset;
5848 #markdown-hints-checkbox,
5849 #markdown-hints-checkbox + label {
5850 display: none;
5853 #edit-post-form div:last-child {
5854 clear: both;
5855 overflow: auto;
5857 #edit-post-form input[type='submit'] {
5858 float: none;
5859 display: block;
5860 font-size: 1.5rem;
5861 margin: 1rem auto 1.5rem auto;
5862 padding: 6px 12px 8px 12px;
5865 #edit-post-form .textarea-container .autocomplete-container,
5866 .comment-controls .textarea-container .autocomplete-container {
5867 max-height: calc(50vh - 101px);
5868 position: fixed;
5869 top: 50vh;
5870 left: 4px;
5871 right: 4px;
5872 width: unset;
5873 z-index: 11002;
5877 /*===================*/
5878 /* TABLE OF CONTENTS */
5879 /*===================*/
5881 @media only screen and (max-width: 900px) {
5882 .contents {
5883 float: none;
5884 display: table;
5885 max-width: none;
5886 margin-left: auto;
5887 margin-right: auto;
5890 @media only screen and (max-width: 520px) {
5891 .contents {
5892 max-width: 100%;
5893 margin: 1em auto 0 auto;
5894 display: table;
5896 .contents-head {
5897 font-size: 1.2em;
5899 div.post-body .contents ul {
5900 font-size: unset;
5904 /*========================*/
5905 /* QUALIFIED HYPERLINKING */
5906 /*========================*/
5908 @media only screen and (max-width: 520px) {
5909 .qualified-linking-toolbar {
5910 right: -5em;
5914 } /* END MOBILE LAYOUT */
5917 /*****************/
5918 /* DEFAULT THEME */
5919 /*****************/
5921 /*===========*/
5922 /* VARIABLES */
5923 /*===========*/
5925 /* Color scheme.
5927 :root {
5928 --GW-comment-background-color-odd: #131313;
5929 --GW-comment-background-color-even: #000;
5930 --GW-comment-background-color-target: #00001e;
5932 --GW-toggle-widget-color: #666;
5933 --GW-toggle-widget-hover-color: #aeaeae;
5934 --GW-toggle-widget-shadow-color: rgba(0, 0, 0, 0.5);
5937 /*======*/
5938 /* BASE */
5939 /*======*/
5941 body {
5942 color: #fff;
5943 background-color: #232323;
5944 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
5945 font-feature-settings: 'ss07';
5947 #content {
5948 line-height: 1.55;
5950 #content::before {
5951 background-color: #000;
5952 box-shadow: 0px 0px 10px #9b9b9b;
5955 /*=========*/
5956 /* NAV BAR */
5957 /*=========*/
5959 .nav-inner {
5960 font-size: 1.375em;
5961 font-weight: 600;
5963 .nav-bar-top:not(#primary-bar) .nav-inner {
5964 font-size: 1em;
5967 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5968 #bottom-bar a:hover,
5969 #nav-item-search:not(.nav-current):focus-within {
5970 background-color: #1f1f1f;
5972 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5973 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5974 background-color: #232323;
5977 .nav-bar a:visited {
5978 color: #0cc800;
5980 .nav-bar a:hover,
5981 .nav-bar a:focus {
5982 text-decoration: none;
5983 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5986 #bottom-bar.decorative::before,
5987 #bottom-bar.decorative::after {
5988 content: "GW";
5989 display: block;
5990 text-align: center;
5991 padding: 0.25em 0 1em 0;
5993 #bottom-bar.decorative::before {
5994 width: 100%;
5995 color: transparent;
5996 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5997 background-repeat: repeat-x;
5998 background-position: center 35%;
5999 margin: 0 30px;
6001 #bottom-bar.decorative::after {
6002 color: #232323;
6003 position: absolute;
6004 left: 0;
6005 right: 0;
6006 margin: auto;
6007 background-color: #000;
6008 padding-right: 4px;
6009 padding-left: 4px;
6011 @supports (width: -moz-fit-content) {
6012 #bottom-bar.decorative::after {
6013 width: -moz-fit-content;
6016 @supports (width: fit-content) {
6017 #bottom-bar.decorative::after {
6018 width: fit-content;
6022 /* Accesskey hints */
6024 .nav-inner::after {
6025 display: block;
6026 position: absolute;
6027 left: 5px;
6028 top: -2px;
6029 font-weight: 400;
6030 font-size: 0.7em;
6031 color: #232323;
6033 .inactive-bar .nav-inner::after {
6034 color: #2c2c2c;
6036 .nav-inner:hover::after {
6037 color: #393939;
6040 /* This makes the navbar items look like tabs: */
6042 .nav-inactive {
6043 box-shadow:
6044 0 -1px #232323 inset,
6045 1px 0 #000 inset;
6047 .nav-inactive:first-child {
6048 box-shadow: 0 -1px #232323 inset;
6050 .inactive-bar .nav-inactive {
6051 background-color: #1a1a1a;
6053 .active-bar .nav-inactive {
6054 background-color: #131313;
6056 .nav-bar + .nav-bar {
6057 position: relative;
6060 /* For Webkit: */
6061 .nav-bar:not(#bottom-bar) {
6062 box-shadow: 0 -3px 8px -2px #2c2c2c;
6064 .active-bar .nav-inactive {
6065 box-shadow:
6066 0 -4px 8px -4px #393939 inset,
6067 1px 0 #000 inset;
6069 .active-bar .nav-inactive:first-child {
6070 box-shadow:
6071 0 -4px 8px -4px #393939 inset;
6073 .active-bar .nav-current + .nav-inactive {
6074 box-shadow:
6075 5px -4px 8px -4px #393939 inset;
6077 .active-bar .nav-item-last-before-current {
6078 box-shadow:
6079 -5px -4px 8px -4px #393939 inset,
6080 1px 0 #000 inset;
6082 .active-bar .nav-item-last-before-current:first-child {
6083 box-shadow:
6084 -5px -4px 8px -4px #393939 inset;
6086 /* And for Gecko: */
6087 @-moz-document url-prefix() {
6088 .nav-bar:not(#bottom-bar) {
6089 box-shadow: 0 -3px 4px -2px #2c2c2c;
6092 .active-bar .nav-inactive {
6093 box-shadow:
6094 0 -4px 4px -4px #393939 inset,
6095 1px 0 #000 inset;
6097 .active-bar .nav-inactive:first-child {
6098 box-shadow:
6099 0 -4px 4px -4px #393939 inset;
6101 .active-bar .nav-current + .nav-inactive {
6102 box-shadow:
6103 5px -4px 4px -4px #393939 inset;
6105 .active-bar .nav-item-last-before-current {
6106 box-shadow:
6107 -5px -4px 4px -4px #393939 inset,
6108 1px 0 #000 inset;
6110 .active-bar .nav-item-last-before-current:first-child {
6111 box-shadow:
6112 -5px -4px 4px -4px #393939 inset;
6116 /* Search tab */
6118 #nav-item-search button {
6119 border: none;
6120 font-weight: inherit;
6122 #nav-item-search input::placeholder {
6123 color: #00a1e8;
6124 font-weight: normal;
6127 /*= Top pagination UI hover tooltips =*/
6129 #top-nav-bar a::after,
6130 #bottom-bar a::after {
6131 color: #fff;
6134 /*==============*/
6135 /* PAGE TOOLBAR */
6136 /*==============*/
6138 .button.new-post:not(:hover),
6139 .button.new-private-message:not(:hover),
6140 .button.unignore-button:not(:hover){
6141 color: #9740cb;
6143 .button.logout-button, .button.ignore-button {
6144 color: #0094be;
6147 /*==============*/
6148 /* SUBLEVEL NAV */
6149 /*==============*/
6151 .sublevel-nav .sublevel-item {
6152 color: #777;
6153 background-color: #000;
6155 .sublevel-nav .sublevel-item:not(.selected):hover {
6156 background-color: #1f1f1f;
6157 color: #fff;
6158 text-decoration: none;
6159 text-shadow: none;
6161 .sublevel-nav .sublevel-item:not(.selected):active,
6162 .sublevel-nav .sublevel-item.selected {
6163 background-color: #1f1f1f;
6164 color: #fff;
6165 text-shadow:
6166 0 -1px 0 #000,
6167 0 0.5px 0.5px #fff;
6170 .sublevel-nav:not(.sort) .sublevel-item {
6171 border-style: solid;
6172 border-color: #1f1f1f;
6173 border-width: 1px 0 1px 1px;
6175 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6176 border-radius: 8px 0 0 8px;
6178 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6179 border-width: 1px;
6180 border-radius: 0 8px 8px 0;
6183 /*=====================*/
6184 /* SORT ORDER SELECTOR */
6185 /*=====================*/
6187 .sublevel-nav.sort .sublevel-item {
6188 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6189 letter-spacing: 0.5px;
6190 padding: 7px 7px 5px 7px;
6191 text-transform: uppercase;
6192 pointer-events: auto;
6193 box-shadow: 1px 1px 0 0 #484848 inset;
6195 .sublevel-nav.sort {
6196 border: 2px solid transparent;
6197 padding: 18px 0 0 0;
6198 border-radius: 8px;
6199 pointer-events: none;
6200 background-color: #393939;
6202 .sublevel-nav.sort::before {
6203 text-transform: uppercase;
6204 font-weight: 600;
6205 color: #aeaeae;
6206 text-shadow: 0.5px 0.5px 0 #000;
6207 z-index: 1;
6209 .sublevel-nav.sort::after {
6210 content: "";
6211 position: absolute;
6212 display: block;
6213 top: 0;
6214 left: 0;
6215 width: 100%;
6216 height: 100%;
6217 border-radius: 6px;
6218 box-shadow:
6219 0 18px 0 0 #393939 inset,
6220 0 0 0 1px #484848 inset,
6221 0 18px 0 1px #484848 inset,
6222 0 0 0 2px #393939;
6225 /*================*/
6226 /* WIDTH SELECTOR */
6227 /*================*/
6228 /* THEME SELECTOR */
6229 /*================*/
6231 #width-selector button,
6232 #theme-selector button {
6233 box-shadow:
6234 0 0 0 4px #232323 inset,
6235 0 0 0 5px #393939 inset;
6237 #width-selector button:hover,
6238 #width-selector button.selected,
6239 #theme-selector button:hover,
6240 #theme-selector button.selected {
6241 box-shadow:
6242 0 0 0 5px #393939 inset;
6245 #theme-selector button::before {
6246 color: #575756;
6247 background-color: #232323;
6249 #theme-selector button:hover::before,
6250 #theme-selector button.selected::before {
6251 color: #888;
6253 #width-selector button::after {
6254 color: #575756;
6257 /*======================*/
6258 /* THEME TWEAKER TOGGLE */
6259 /*======================*/
6261 #theme-tweaker-toggle button {
6262 color: #777;
6265 /*=================*/
6266 /* QUICKNAV WIDGET */
6267 /*=================*/
6269 #quick-nav-ui a {
6270 color: #575756;
6271 background-color: #1a1a1a;
6272 border-radius: 4px;
6273 text-decoration: none;
6275 #quick-nav-ui a[href='#bottom-bar'] {
6276 line-height: 1.8;
6278 #quick-nav-ui a:active {
6279 transform: scale(0.9);
6281 #quick-nav-ui a[href='#comments'].no-comments {
6282 opacity: 0.4;
6283 color: #393939;
6285 @media only screen and (hover:hover) {
6286 #quick-nav-ui a:hover {
6287 color: #fff;
6288 background-color: #131313;
6290 #quick-nav-ui a:focus:not(:hover) {
6291 transform: none;
6292 text-shadow: none;
6296 /*======================*/
6297 /* NEW COMMENT QUICKNAV */
6298 /*======================*/
6300 #new-comment-nav-ui .new-comments-count {
6301 font-weight: 600;
6302 color: #888;
6303 text-shadow: 0.5px 0.5px 0 #000;
6305 #new-comment-nav-ui .new-comments-count::after {
6306 font-weight: 600;
6307 color: #777;
6309 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6310 color: #393939;
6311 text-shadow: none;
6313 @media only screen and (hover:hover) {
6314 #new-comment-nav-ui .new-comments-count:hover {
6315 text-shadow:
6316 0 0 1px #000,
6317 0 0 3px #000,
6318 0 0 5px #000,
6319 0 0 8px #000,
6320 0.5px 0.5px 0 #000;
6322 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6323 color: #00a1e8;
6324 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6328 /*=================*/
6329 /* HNS DATE PICKER */
6330 /*=================*/
6332 #hns-date-picker span {
6333 color: #777;
6334 text-shadow: 0.5px 0.5px 0 #000;
6335 font-weight: 600;
6337 #hns-date-picker input {
6338 border: 1px solid #777;
6339 background-color: transparent;
6340 color: #888;
6341 box-shadow: 0 0 0 1px transparent;
6343 #hns-date-picker input:focus {
6344 color: #fff;
6347 /*======================*/
6348 /* ANTI-KIBITZER TOGGLE */
6349 /*======================*/
6351 #anti-kibitzer-toggle button::before,
6352 #anti-kibitzer-toggle button::after {
6353 background-color: var(--GW-toggle-widget-color);
6354 -webkit-background-clip: text;
6355 color: transparent;
6356 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
6358 #anti-kibitzer-toggle button:hover::before,
6359 #anti-kibitzer-toggle button:hover::after {
6360 background-color: var(--GW-toggle-widget-hover-color);
6363 /*======================*/
6364 /* TEXT SIZE ADJUSTMENT */
6365 /*======================*/
6367 #text-size-adjustment-ui button {
6368 color: #777;
6370 #text-size-adjustment-ui button.default {
6371 font-weight: 600;
6373 #text-size-adjustment-ui button:disabled:hover {
6374 text-shadow: none;
6376 #text-size-adjustment-ui::after {
6377 color: #575756;
6380 /*=============================*/
6381 /* COMMENTS VIEW MODE SELECTOR */
6382 /*=============================*/
6384 #comments-view-mode-selector a {
6385 color: #777;
6388 /*==========*/
6389 /* ARCHIVES */
6390 /*==========*/
6392 .archive-nav {
6393 border: 1px solid #484848;
6395 .archive-nav *[class^='archive-nav-item'] {
6396 border-style: solid;
6397 border-color: #1f1f1f;
6398 border-width: 1px 0 1px 1px;
6399 background-color: #131313;
6401 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6402 border-top-width: 0;
6403 border-bottom-width: 0;
6405 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6406 border-bottom-width: 1px;
6408 .archive-nav *[class^='archive-nav-item']:last-child {
6409 border-right-width: 1px;
6411 .archive-nav span[class^='archive-nav-item'] {
6412 font-weight: bold;
6413 background-color: #1f1f1f;
6416 .archive-nav a:link,
6417 .archive-nav a:visited {
6418 color: rgba(12, 200, 0, 0.7);
6420 .archive-nav a:hover {
6421 text-decoration: none;
6422 color: #00a9ed;
6423 background-color: #1d1d1d;
6424 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6426 .archive-nav a:active {
6427 transform: scale(0.9);
6429 .archive-nav a:focus:not(:hover) {
6430 transform: none;
6432 .archive-nav a.archive-nav-item-day:hover {
6433 background-color: #1f1f1f;
6436 /*==========*/
6437 /* LISTINGS */
6438 /*==========*/
6440 h1.listing {
6441 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
6442 font-weight: 700;
6443 margin: 0.7em 20px 0 20px;
6444 max-width: calc(100% - 40px);
6445 top: 0; ;
6448 h1.listing .post-title-link {
6449 color: #fff;
6451 h1.listing .link-post-link {
6452 color: #54d400;
6455 @media only screen and (hover: hover) {
6456 h1.listing a:hover,
6457 h1.listing a:focus {
6458 color: #777;
6459 background-color: rgba(0, 0, 0, 0.85);
6461 h1.listing:focus-within::before {
6462 color: #00c200;
6463 left: -0.625em;
6465 h1.listing .link-post-link:hover {
6466 color: #670;
6467 text-shadow:
6468 0.5px 0.5px 0 #000,
6469 -0.5px -0.5px 0 #000,
6470 0 0 2px #000,
6471 0 0 3px #54d400;
6475 h1.listing .edit-post-link {
6476 padding: 5px 3px 12px 0.5em;
6477 top: 0;
6478 right: 0;
6480 h1.listing .edit-post-link:hover {
6481 text-decoration: none;
6483 #content.user-page h1.listing .edit-post-link {
6484 background-color: #131313;
6487 /*======*/
6488 /* SPAM */
6489 /*======*/
6491 h1.listing.spam {
6492 opacity: 0.15;
6494 h1.listing.spam + .post-meta {
6495 opacity: 0.4;
6497 h1.listing.spam:hover,
6498 h1.listing.spam + .post-meta:hover,
6499 h1.listing.spam:hover + .post-meta {
6500 opacity: 1.0;
6503 /*===================*/
6504 /* LISTING POST-META */
6505 /*===================*/
6507 h1.listing + .post-meta {
6508 padding-right: 330px;
6510 h1.listing + .post-meta .karma-value,
6511 h1.listing + .post-meta .comment-count,
6512 h1.listing + .post-meta .lw2-link,
6513 h1.listing + .post-meta .read-time {
6514 border-radius: 4px;
6515 padding: 0 4px 0 2px;
6516 text-shadow: 0.5px 0.5px 0.5px #575756;
6517 margin: 0 0.25em 0 0.5em;
6518 position: absolute;
6519 line-height: 1.15;
6520 bottom: -6px;
6522 h1.listing + .post-meta .karma-value span,
6523 h1.listing + .post-meta .comment-count span,
6524 h1.listing + .post-meta .lw2-link span,
6525 h1.listing + .post-meta .read-time span {
6526 display: none;
6528 h1.listing + .post-meta .karma-value::before,
6529 h1.listing + .post-meta .comment-count::before,
6530 h1.listing + .post-meta .lw2-link::before,
6531 h1.listing + .post-meta .read-time::before {
6532 color: #000;
6533 font-family: 'Font Awesome', 'Font Awesome 5 Free';
6534 font-weight: 900;
6535 margin: 0 8px 0 0;
6536 box-shadow: 0 0 0 2px #1f1f1f;
6538 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
6539 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
6540 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
6541 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
6542 text-shadow: 0 0 3px #575756;
6545 h1.listing + .post-meta .karma {
6546 margin: 0;
6548 h1.listing + .post-meta .karma-value {
6549 box-shadow:
6550 22px 0 0 0 #1f1f1f inset,
6551 0 0 0 3px #1f1f1f;
6552 cursor: default;
6553 color: #00a9ed;
6554 right: 264px;
6556 h1.listing + .post-meta .karma-value::before {
6557 content: "\F139";
6558 text-shadow: none;
6559 font-size: 0.9375em;
6560 line-height: 1.3;
6563 h1.listing + .post-meta .comment-count::before {
6564 content: "\F086";
6566 h1.listing + .post-meta .comment-count {
6567 box-shadow:
6568 25px 0 0 0 #1f1f1f inset,
6569 0 0 0 3px #1f1f1f;
6570 color: #9e4acf;
6571 right: 176px;
6573 h1.listing + .post-meta .comment-count:hover {
6574 text-decoration: none;
6575 color: #000;
6576 background-color: #9e4acf;
6578 h1.listing + .post-meta .comment-count:hover::before {
6579 color: #9e4acf;
6581 h1.listing + .post-meta .comment-count.new-comments::before {
6582 color: #9e4acf;
6583 text-shadow: 0.5px 0.5px 0.5px #000;
6585 h1.listing + .post-meta .comment-count.new-comments:hover::before {
6586 text-shadow: 0.5px 0.5px 0.5px #575756;
6590 h1.listing + .post-meta .lw2-link {
6591 box-shadow:
6592 23px 0 0 0 #1f1f1f inset,
6593 0 0 0 3px #1f1f1f;
6594 right: 0;
6596 h1.listing + .post-meta .lw2-link::before {
6597 content: "\F0C1";
6599 h1.listing + .post-meta .lw2-link:hover {
6600 text-decoration: none;
6601 color: #000;
6602 background-color: #00c200;
6604 h1.listing + .post-meta .lw2-link:hover::before {
6605 color: #00c200;
6608 h1.listing + .post-meta .read-time {
6609 box-shadow:
6610 21px 0 0 0 #1f1f1f inset,
6611 0 0 0 3px #1f1f1f;
6612 right: 80px;
6614 h1.listing + .post-meta .read-time::before {
6615 content: "\F2F2";
6616 cursor: pointer;
6618 h1.listing + .post-meta .read-time::after {
6619 content: " min";
6621 h1.listing + .post-meta .read-time:hover::before {
6622 color: #777;
6625 h1.listing + .post-meta .word-count {
6626 box-shadow:
6627 22px 0 0 0 #1f1f1f inset,
6628 0 0 0 3px #1f1f1f;
6629 padding: 0 4px 0 4px;
6631 h1.listing + .post-meta .word-count::before {
6632 content: "\F15C";
6633 margin: 0 10px 0 0;
6635 h1.listing + .post-meta .read-time.word-count::after {
6636 content: none;
6639 h1.listing + .post-meta .link-post-domain {
6640 margin: 0 0 0 0.5em;
6643 h1.listing + .post-meta::after {
6644 content: "";
6645 display: block;
6646 height: 1px;
6647 width: 100%;
6648 background-color: #1f1f1f;
6649 position: absolute;
6650 bottom: -14px;
6653 /*============*/
6654 /* USER PAGES */
6655 /*============*/
6657 #content.user-page h1.page-main-heading,
6658 #content.user-page .user-stats {
6659 border-bottom: 1px solid #2c2c2c;
6662 #content.user-page h1.listing,
6663 #content.user-page h1.listing + .post-meta {
6664 background-color: #131313;
6665 border-style: solid;
6666 border-color: #2c2c2c;
6668 #content.user-page h1.listing {
6669 padding: 0 6px;
6670 padding-top: 0.125em;
6671 border-width: 1px 1px 0 1px;
6672 margin: 1rem 0 0 0;
6673 max-width: 100%;
6675 #content.own-user-page h1.listing,
6676 h1.listing.own-post-listing {
6677 padding-right: 36px;
6679 @media only screen and (hover: hover) {
6680 #content.user-page h1.listing a:hover,
6681 #content.user-page h1.listing a:focus {
6682 background-color: #131313;
6684 #content.user-page h1.listing:focus-within::before {
6685 left: -0.625em;
6688 #content.user-page h1.listing + .post-meta {
6689 padding: 0.125em 6px 1em 36px;
6690 border-width: 0 1px 1px 1px;
6691 margin: 0 0 1rem 0;
6693 #content.user-page h1.listing + .post-meta::after {
6694 display: none;
6696 @media only screen and (min-width: 521px) {
6697 #content.user-page h1.listing + .post-meta .karma-value,
6698 #content.user-page h1.listing + .post-meta .comment-count,
6699 #content.user-page h1.listing + .post-meta .lw2-link,
6700 #content.user-page h1.listing + .post-meta .read-time {
6701 bottom: 10px;
6704 #content.user-page h1.listing + .post-meta .post-section::before {
6705 left: -1px;
6708 #content.conversations-user-page h1.listing {
6709 padding: 4px 6px;
6710 font-size: 1.75rem;
6712 #content.conversations-user-page h1.listing + .post-meta {
6713 padding: 6px 4px;
6714 margin: 0 0 0.25rem 0;
6717 .user-stats .karma-total {
6718 font-weight: bold;
6721 /*===============*/
6722 /* CONVERSATIONS */
6723 /*===============*/
6725 /*============*/
6726 /* LOGIN PAGE */
6727 /*============*/
6729 .login-container form input[type='submit'] {
6730 font-weight: bold;
6731 background-color: #131313;
6732 border: 1px solid #2c2c2c;
6734 .login-container form input[type='submit']:hover,
6735 .login-container form input[type='submit']:focus {
6736 background-color: #1f1f1f;
6737 border: 1px solid #484848;
6740 /* “Create account” form */
6742 #signup-form {
6743 background-color: #0f0f0f;
6744 border: 1px solid #1f1f1f;
6746 #signup-form input[type='submit'] {
6747 background-color: #1a1a1a;
6748 border: 1px solid #2c2c2c;
6750 #signup-form input[type='submit']:hover {
6751 background-color: #232323;
6752 border: 1px solid #484848;
6755 /* Log in tip */
6757 .login-container .login-tip {
6758 border: 1px solid #131313;
6761 /* Message box */
6763 .error-box {
6764 border: 1px solid red;
6765 background-color: #004147;
6767 .success-box {
6768 border: 1px solid green;
6769 background-color: #320042;
6772 /*=====================*/
6773 /* PASSWORD RESET PAGE */
6774 /*=====================*/
6776 .reset-password-container input[type='submit'] {
6777 background-color: #1a1a1a;
6778 border: 1px solid #2c2c2c;
6779 font-weight: bold;
6782 /*===================*/
6783 /* TABLE OF CONTENTS */
6784 /*===================*/
6786 .contents {
6787 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6788 border: 1px solid #1f1f1f;
6789 background-color: #131313;
6791 .contents-head {
6792 font-weight: bold;
6794 .post-body .contents li::before {
6795 color: #575756;
6796 font-feature-settings: "tnum";
6798 .post-body .contents a,
6799 .post-body .contents a:hover {
6800 border: none;
6802 .post-body .contents a:hover {
6803 text-decoration: underline;
6806 /*==================*/
6807 /* POSTS & COMMENTS */
6808 /*==================*/
6810 .body-text {
6811 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6814 .body-text a {
6815 border-bottom: 1px dotted #393939;
6817 .body-text a:hover {
6818 text-decoration: none;
6819 border-bottom: 1px solid currentColor;
6822 /*=======*/
6823 /* POSTS */
6824 /*=======*/
6826 h1.post-title {
6827 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6828 font-weight: 700;
6831 /*=================*/
6832 /* POST NAVIGATION */
6833 /*=================*/
6835 .post-nav-links a,
6836 .post-nav-links a:visited {
6837 color: #fff;
6839 .post-nav-links a:hover {
6840 text-decoration: none;
6842 .post-nav-title {
6843 font-weight: 600;
6846 .post-nav-label {
6847 color: #777;
6849 .post-nav-links a:hover .post-nav-label {
6850 font-weight: 600;
6851 color: #666;
6853 .post-nav-links a:hover .post-nav-title {
6854 color: #777;
6857 @media only screen and (max-width: 900px) {
6858 .sequence-title {
6859 border-top: 1px dotted #777;
6861 .post-nav.prev {
6862 border-right: 1px dotted #777;
6864 .post-nav.next {
6865 border-left: 1px dotted #777;
6869 .crosspost {
6870 background-color: #131313;
6871 border: 1px solid #2c2c2c;
6874 /*===========*/
6875 /* POST-META */
6876 /*===========*/
6878 .post-meta .post-section::before,
6879 .comment-meta .alignment-forum {
6880 color: #000;
6881 text-shadow:
6882 1px 1px 0 #9740cb,
6883 0 1px 0 #9740cb,
6884 0 0 5px #9740cb;
6886 a.post-section:hover {
6887 text-decoration: none;
6889 a.post-section:hover::before {
6890 color: #2e0062;
6892 .post-meta .post-section.alignment-forum::before,
6893 .comment-meta .alignment-forum {
6894 text-shadow:
6895 1px 1px 0 #658100,
6896 0 1px 0 #658100,
6897 0 0 5px #658100;
6899 a.post-section.alignment-forum:hover::before {
6900 color: #181a00;
6902 .post-meta .date {
6903 color: #666;
6905 .post-meta .author {
6906 color: #9740cb;
6908 .bottom-post-meta {
6909 border-color: #1f1f1f;
6912 /*============*/
6913 /* LINK POSTS */
6914 /*============*/
6916 .post.link-post a.link-post-link {
6917 text-decoration: none;
6918 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6919 font-weight: 600;
6921 .post.link-post a.link-post-link:hover {
6922 color: #00a9ed;
6924 .post.link-post a.link-post-link:hover::before {
6925 color: #670;
6926 text-shadow:
6927 0.5px 0.5px 0 #000,
6928 -0.5px -0.5px 0 #000,
6929 0 0 2px #000,
6930 0 0 3px #54d400;
6932 .post.link-post a.link-post-link:focus {
6933 color: #777;
6934 border-bottom: 2px dotted #777;
6937 /*==========*/
6938 /* COMMENTS */
6939 /*==========*/
6941 .comments::before {
6942 border-top: 1px solid #fff;
6943 box-shadow: 0 3px 4px -4px #fff inset;
6945 @-moz-document url-prefix() {
6946 .comments::before {
6947 box-shadow: 0 3px 3px -4px #fff inset;
6950 #content > .comment-thread .comment-meta a.date:focus,
6951 #content > .comment-thread .comment-meta a.permalink:focus {
6952 color: #666;
6953 outline: 2px dotted #575756;
6954 position: relative;
6955 background-color: #000;
6957 #content > .comment-thread .comment-meta a.date:focus {
6958 padding: 0 4px;
6959 left: -4px;
6961 #content > .comment-thread .comment-meta a.date:focus + * {
6962 margin-left: -8px;
6964 #content > .comment-thread .comment-meta a.permalink:focus {
6965 padding: 0 5px;
6966 left: -5px;
6968 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6969 margin-left: -10px;
6971 .comment-item {
6972 border: 1px solid #2c2c2c;
6973 background-color: var(--GW-comment-background-color);
6975 .comment-parent-link::after {
6976 box-shadow:
6977 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6978 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6979 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6982 /*================================*/
6983 /* DEEP COMMENT THREAD COLLAPSING */
6984 /*================================*/
6986 .comment-item input[id^="expand"] + label::after {
6987 color: #0cc800;
6988 font-weight: 600;
6990 .comment-item input[id^="expand"] + label:hover::after {
6991 color: #00a9ed;
6993 .comment-item input[id^="expand"] + label:active::after,
6994 .comment-item input[id^="expand"] + label:focus::after{
6995 color: #00a9ed;
6997 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6998 border-width: 1px 0 0 0;
7001 /*==============*/
7002 /* COMMENT-META */
7003 /*==============*/
7005 .comment-meta .author {
7006 font-weight: bold;
7007 font-size: 1.25em;
7008 color: #fff;
7010 .comment-meta .author:hover {
7011 text-decoration: none;
7012 color: #9740cb;
7014 .comment-item .author:not(.redacted).original-poster::after {
7015 opacity: 0.5;
7018 .comment-item .voting-controls.active-controls::after,
7019 .comment-item .voting-controls .karma-value::after,
7020 .post .voting-controls.active-controls::after,
7021 .post .voting-controls .karma-value::after,
7022 .author::before {
7023 background-color: #000;
7024 color: #575756;
7025 border-radius: 4px;
7026 box-shadow: 0 0 0 1px #1f1f1f inset;
7028 .comment-item .voting-controls.active-controls::after,
7029 .post .voting-controls.active-controls::after {
7030 padding: 6px 4px 4px 4px;
7031 bottom: -44px;
7033 .comment-item .voting-controls .karma-value::after,
7034 .post .voting-controls .karma-value::after {
7035 padding: 2px 8px 1px 8px;
7036 top: -25px;
7037 min-width: 56px;
7040 /*====================*/
7041 /* ANTI-KIBITZER MODE */
7042 /*====================*/
7044 .author.redacted,
7045 .inline-author.redacted {
7046 opacity: 0.6;
7047 font-weight: 400;
7050 .karma-value.redacted {
7051 opacity: 0.4;
7054 .link-post-domain.redacted {
7055 opacity: 0.4;
7058 /*===========================*/
7059 /* COMMENT THREAD NAVIGATION */
7060 /*===========================*/
7062 div.comment-parent-link {
7063 font-weight: 600;
7065 a.comment-parent-link {
7066 font-weight: 400;
7068 a.comment-parent-link::before {
7069 color: #393939;
7071 a.comment-parent-link:hover::before {
7072 background-color: #00001e;
7073 color: #575756;
7076 div.comment-child-links {
7077 font-weight: 600;
7079 div.comment-child-links a {
7080 font-weight: 400;
7082 .comment-child-link::before {
7083 color: #484848;
7086 .comment-item-highlight {
7087 box-shadow:
7088 0 0 2px #0047b5,
7089 0 0 3px #0047b5,
7090 0 0 5px #0047b5,
7091 0 0 7px #0047b5,
7092 0 0 10px #0047b5;
7093 border: 1px solid #0047b5;
7095 .comment-item-highlight-faint {
7096 box-shadow:
7097 0 0 2px #00193b,
7098 0 0 3px #00193b,
7099 0 0 5px #00193b,
7100 0 0 7px #00193b,
7101 0 0 10px #00193b;
7102 border: 1px solid #00193b;
7105 .comment-popup {
7106 background-color: #000;
7109 /*=======================*/
7110 /* COMMENTS COMPACT VIEW */
7111 /*=======================*/
7113 #comments-list-mode-selector button {
7114 box-shadow:
7115 0 0 0 4px #000 inset,
7116 0 0 0 5px #393939 inset;
7118 #comments-list-mode-selector button:hover,
7119 #comments-list-mode-selector button.selected {
7120 box-shadow:
7121 0 0 0 5px #393939 inset;
7123 #content.compact > .comment-thread .comment-item::after {
7124 color: #0cc800;
7125 background: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
7128 @media only screen and (hover: hover) {
7129 #content.compact > .comment-thread .comment-item:hover .comment,
7130 #content.compact > .comment-thread .comment-item.expanded .comment {
7131 background-color: #000;
7132 outline: 3px solid #54d400;
7134 #content.compact > .comment-thread .comment-item:hover .comment::before,
7135 #content.compact > .comment-thread .comment-item.expanded .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;
7147 @media only screen and (hover: none) {
7148 #content.compact > .comment-thread.expanded .comment-item .comment {
7149 background-color: #000;
7150 outline: 3px solid #54d400;
7152 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7153 background-color: #000;
7154 box-shadow:
7155 0 0 3px #000,
7156 0 0 5px #000,
7157 0 0 7px #000,
7158 0 0 10px #000,
7159 0 0 20px #000,
7160 0 0 30px #000,
7161 0 0 40px #000;
7165 #content.user-page.compact > h1.listing {
7166 margin-top: 0.5rem;
7168 #content.user-page.compact > h1.listing + .post-meta {
7169 margin-bottom: 0.5rem;
7172 /*===========================*/
7173 /* HIGHLIGHTING NEW COMMENTS */
7174 /*===========================*/
7176 .new-comment::before {
7177 outline: 2px solid #7f3b92;
7178 box-shadow:
7179 0 0 6px -2px #7f3b92 inset,
7180 0 0 4px #7f3b92,
7181 0 0 6px #7f3b92;
7184 /*=================================*/
7185 /* COMMENT THREAD MINIMIZE BUTTONS */
7186 /*=================================*/
7188 .comment-minimize-button {
7189 color: #2c2c2c;
7191 .comment-minimize-button:hover {
7192 color: #484848;
7193 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7195 .comment-minimize-button::after {
7196 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7197 color: #777;
7199 .comment-minimize-button.maximized::after {
7200 color: #2c2c2c;
7203 /*==============*/
7204 /* VOTE BUTTONS */
7205 /*==============*/
7207 .vote::before {
7208 content: "";
7209 border-radius: 50%;
7210 background-size: 17px 17px;
7211 width: 17px;
7212 height: 17px;
7213 display: inline-block;
7214 position: relative;
7215 top: 2.5px;
7217 .vote:active {
7218 transform: none;
7221 /**********/
7222 /* States.
7225 /* _ 1
7227 .upvote {
7228 filter: grayscale(100%) brightness(128%);
7230 .downvote {
7231 filter: grayscale(100%) brightness(188%);
7234 /* _ 2
7236 .vote:not(.none) {
7237 filter: drop-shadow(0 0 1px #000);
7240 /* 1 _
7242 .vote.two-temp::before {
7243 box-shadow:
7244 0 0 0 1px #000,
7245 0 0 0 4px #2f2f2f,
7246 0 0 0 5px transparent;
7249 /* 2 _
7251 .upvote.two::before {
7252 box-shadow:
7253 0 0 0 1px #000,
7254 0 0 0 4px var(--GW-upvote-button-color),
7255 0 0 0 5px transparent;
7257 .downvote.two::before {
7258 box-shadow:
7259 0 0 0 1px #000,
7260 0 0 0 4px var(--GW-downvote-button-color),
7261 0 0 0 5px transparent;
7264 /* Disabled.
7266 .vote:disabled {
7267 visibility: unset;
7268 filter: brightness(50%);
7271 /*********/
7272 /* Icons.
7275 .karma .upvote::before {
7276 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7278 .karma .downvote::before {
7279 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7282 .karma .upvote:disabled::before {
7283 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiBzdHJva2U9IiNEOEQ4RDgiIHN0cm9rZS13aWR0aD0iNCUiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
7285 .karma .downvote:disabled::before {
7286 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7289 .agreement .upvote::before {
7290 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgZmlsbD0iIzAwRDgwMCIvPjwvc3ZnPg==');
7292 .agreement .downvote::before {
7293 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIGZpbGw9IiNFQjRDMkEiLz48L3N2Zz4=');
7296 .agreement .upvote:disabled::before {
7297 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7299 .agreement .downvote:disabled::before {
7300 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7303 /*===========================*/
7304 /* COMMENTING AND POSTING UI */
7305 /*===========================*/
7307 .posting-controls input[type='submit'] {
7308 background-color: #000;
7309 border: 1px solid #484848;
7310 font-weight: bold;
7312 .posting-controls input[type='submit']:hover,
7313 .posting-controls input[type='submit']:focus {
7314 background-color: #1f1f1f;
7315 border: 1px solid #575756;
7318 .comment-controls .cancel-comment-button {
7319 font-weight: 600;
7320 color: #00a9ed;
7321 text-shadow:
7322 0 0 1px #000,
7323 0 0 2px #000;
7325 .comment-controls .cancel-comment-button:hover {
7326 color: #0090e0;
7327 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7330 .new-comment-button {
7331 font-weight: 600;
7334 .comment-controls .delete-button,
7335 .comment-controls .retract-button {
7336 color: #00bbf5;
7337 opacity: 0.85;
7339 .comment-controls .edit-button,
7340 .comment-controls .unretract-button {
7341 color: #9740cb;
7343 .comment-controls .action-button:hover {
7344 color: #0090e0;
7345 opacity: 1.0;
7348 .button.edit-post-link:not(:hover) {
7349 color: #9740cb;
7352 .posting-controls textarea {
7353 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
7354 color: #fff;
7355 background-color: #000;
7356 border-color: #484848;
7357 box-shadow:
7358 0 0 0 1px #131313 inset;
7360 .posting-controls textarea:focus {
7361 background-color: #00001e;
7362 border-color: #0cc800;
7363 box-shadow:
7364 0 0 0 1px #1d1f00 inset,
7365 0 0 0 1px #000,
7366 0 0 0 2px #0cc800;
7368 .posting-controls.edit-existing-post textarea:focus,
7369 .posting-controls form.edit-existing-comment textarea:focus {
7370 border-color: #9740cb;
7371 box-shadow:
7372 0 0 0 1px #3d0061 inset,
7373 0 0 0 1px #000,
7374 0 0 0 2px #9740cb;
7377 /*= Scroll bars =*/
7379 .posting-controls textarea::-webkit-scrollbar {
7380 width: 16px;
7381 background-color: transparent;
7383 .posting-controls textarea::-webkit-scrollbar-track {
7384 background-color: #131313;
7385 border-left: 1px solid #484848;
7386 border-top: 1px solid #131313;
7388 .posting-controls textarea:focus::-webkit-scrollbar-track {
7389 border-left: 1px solid #0cc800;
7390 border-top: 1px solid #1d1f00;
7392 .posting-controls textarea::-webkit-scrollbar-thumb {
7393 background-color: #484848;
7394 box-shadow: 0 0 0 1px #131313 inset;
7395 border-left: 1px solid #484848;
7397 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7398 border-left: 1px solid #0cc800;
7399 background-color: #40a800;
7400 box-shadow:
7401 0 1px 0 0 #1d1f00 inset,
7402 0 0 0 1px #131313 inset;
7405 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7406 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7407 border-left: 1px solid #9740cb;
7409 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7410 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7411 border-left: 1px solid #9740cb;
7412 background-color: #8533c2;
7415 /* GUIEdit buttons */
7417 .guiedit-buttons-container {
7418 background-image: linear-gradient(to bottom, #000 0%, #1d1f00 50%, #252c00 75%, #344700 100%);
7421 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7422 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7423 color: #ce92ee;
7425 .guiedit-buttons-container button {
7426 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
7429 .guiedit::after {
7430 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7431 color: #777;
7432 text-shadow: none;
7435 /* Markdown hints */
7437 #markdown-hints-checkbox + label {
7438 color: #0cc800;
7440 #markdown-hints-checkbox + label:hover {
7441 color: #0098e4;
7442 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7444 #markdown-hints {
7445 border: 1px solid #00a9ed;
7446 background-color: #000340;
7449 /*================*/
7450 /* EDIT POST FORM */
7451 /*================*/
7453 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7454 top: -1px;
7456 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7457 border-radius: 3px;
7458 border: 1px solid #1f1f1f;
7459 color: #777;
7461 @media only screen and (hover:hover) {
7462 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7463 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7464 text-shadow:
7465 0 0 1px #000,
7466 0 0 2px #000,
7467 0 0 2.5px #484848;
7469 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7470 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7471 border-color: #484848;
7474 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7475 content: "\F00C";
7477 #edit-post-form input[type='radio'] + label {
7478 color: #777;
7479 border-color: #1f1f1f;
7480 padding: 4px 12px 5px 12px;
7482 #edit-post-form input[type='radio'][value='all'] + label {
7483 border-radius: 8px 0 0 8px;
7484 border-width: 1px;
7486 #edit-post-form input[type='radio'][value='drafts'] + label {
7487 border-radius: 0 8px 8px 0;
7489 @media only screen and (hover:hover) {
7490 #edit-post-form input[type='radio'] + label:hover,
7491 #edit-post-form input[type='radio']:focus + label {
7492 background-color: #1f1f1f;
7493 color: #fff;
7496 #edit-post-form input[type='radio']:focus + label {
7497 color: #fff;
7498 box-shadow:
7499 0 0 0 1px #484848;
7501 #edit-post-form input[type='radio']:checked + label {
7502 background-color: #1f1f1f;
7503 border-color: #1f1f1f;
7504 color: #fff;
7505 text-shadow:
7506 0 -1px 0 #000,
7507 0 0.5px 0.5px #fff;
7510 /*=======*/
7511 /* LINKS */
7512 /*=======*/
7515 text-decoration: none;
7516 color: #0cc800;
7518 a:visited {
7519 color: #76cc54;
7521 a:hover {
7522 text-decoration: underline;
7525 /*=========*/
7526 /* BUTTONS */
7527 /*=========*/
7529 button,
7530 input[type='submit'] {
7531 color: #0cc800;
7534 button:active,
7535 input[type='submit']:active {
7536 color: #0090e0;
7537 transform: scale(0.9);
7539 .button:visited {
7540 color: #0cc800;
7542 .button:active {
7543 transform: scale(0.9);
7545 @-moz-document url-prefix() {
7546 .button:active {
7547 transform: none;
7551 @media only screen and (hover:hover) {
7552 button:hover,
7553 input[type='submit']:hover,
7554 button:focus,
7555 input[type='submit']:focus {
7556 color: #0090e0;
7557 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7560 .button:hover {
7561 color: #0090e0;
7562 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7563 text-decoration: none;
7565 .button:focus:not(:hover) {
7566 transform: none;
7570 /*==========*/
7571 /* HEADINGS */
7572 /*==========*/
7574 .body-text h1,
7575 .body-text h2,
7576 .body-text h4 {
7577 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7579 .body-text h3,
7580 .body-text h5,
7581 .body-text h6 {
7582 font-weight: 600;
7583 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7585 .body-text h6 {
7586 color: #9b9b9b;
7588 .body-text h1 {
7589 border-bottom: 1px solid #484848;
7592 /*========*/
7593 /* QUOTES */
7594 /*========*/
7596 blockquote {
7597 border-left: 5px solid #2c2c2c;
7600 /*========*/
7601 /* IMAGES */
7602 /*========*/
7604 #content img,
7605 #content figure.image img {
7606 border: 1px solid #2c2c2c;
7608 #content figure img {
7609 border: 1px solid #fff;
7611 #content img[src$='.svg'],
7612 #content figure img[src$='.svg'] {
7613 border: none;
7615 #content img[style^='float'] {
7616 border: 1px solid transparent;
7619 /*========*/
7620 /* TABLES */
7621 /*========*/
7623 #content:not(.tag-index-page) .body-text table,
7624 #content:not(.tag-index-page) .body-text table th,
7625 #content:not(.tag-index-page) .body-text table td {
7626 border: 1px solid #2c2c2c;
7629 /*======*/
7630 /* MISC */
7631 /*======*/
7633 hr {
7634 border-bottom: 1px solid #575756;
7637 code {
7638 background-color: #0b0b00;
7639 border: 1px solid #1d1f00;
7640 border-radius: 4px;
7643 input[type='text'],
7644 input[type='search'],
7645 input[type='password'] {
7646 background-color: #000;
7647 border: 1px solid #1f1f1f;
7648 color: #fff;
7650 input[type='text']:focus,
7651 input[type='search']:focus,
7652 input[type='password']:focus {
7653 background-color: #00001e;
7654 border: 1px solid #393939;
7655 box-shadow: 0 0 1px #393939;
7658 select {
7659 color: #fff;
7663 /*============*/
7664 /* ABOUT PAGE */
7665 /*============*/
7667 .about-page mark {
7668 background-color: #191919;
7669 text-decoration: none;
7670 box-shadow:
7671 0 -1px 0 0 #fff inset,
7672 0 -3px 1px -2px #fff inset;
7673 padding: 0 1px;
7676 #content.about-page .accesskey-table {
7677 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7678 border-color: #1f1f1f;
7681 #content.about-page img {
7682 border: 1px solid #fff;
7685 /*========================*/
7686 /* QUALIFIED HYPERLINKING */
7687 /*========================*/
7689 #aux-about-link a {
7690 color: #777;
7692 #aux-about-link a:hover {
7693 opacity: 1.0;
7694 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7697 .qualified-linking label {
7698 color: #0cc800;
7700 .qualified-linking label:hover {
7701 text-shadow:
7702 0 0 1px #000,
7703 0 0 3px #000,
7704 0 0 5px #0cc800;
7707 .qualified-linking-toolbar {
7708 border: 1px solid #fff;
7709 background-color: #000;
7711 .qualified-linking-toolbar a {
7712 background-color: #131313;
7713 border: 1px solid #2c2c2c;
7714 border-radius: 4px;
7716 .qualified-linking-toolbar a:visited {
7717 color: #0cc800;
7719 .qualified-linking-toolbar a:hover {
7720 text-decoration: none;
7721 background-color: #1f1f1f;
7722 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7724 .qualified-linking label::after {
7725 background-color: #232323;
7726 opacity: 0.8;
7729 /*======*/
7730 /* MATH */
7731 /*======*/
7733 .mathjax-block-container::-webkit-scrollbar {
7734 height: 12px;
7735 background-color: #0b0b00;
7736 border-radius: 6px;
7737 border: 1px solid #1d1f00;
7739 .mathjax-block-container::-webkit-scrollbar-thumb {
7740 background-color: #1e1f13;
7741 border-radius: 6px;
7742 border: 1px solid #282c11;
7744 .mathjax-inline-container::-webkit-scrollbar {
7745 height: 8px;
7746 background-color: #0b0b00;
7747 border-radius: 4px;
7748 border: 1px solid #1d1f00;
7750 .mathjax-inline-container::-webkit-scrollbar-thumb {
7751 background-color: #1e1f13;
7752 border-radius: 4px;
7753 border: 1px solid #282c11;
7757 /*===============*/
7758 /* USER MENTIONS */
7759 /*===============*/
7761 .textarea-container .autocomplete-container {
7762 background-color: rgba(0, 3, 64, 0.75);
7763 border: 1px solid rgba(10, 200, 0, 0.75);
7766 .textarea-container .autocomplete-container div.highlighted {
7767 background-color: rgba(10, 200, 0, 0.75);
7768 color: #000;
7771 .textarea-container .autocomplete-container div:not(.highlighted):hover {
7772 background-color: rgba(10, 200, 0, 0.25);
7775 .textarea-container .autocomplete-container div span.age,
7776 .textarea-container .autocomplete-container div span.karma {
7777 color: #666;
7781 /*=================*/
7782 /* ALIGNMENT FORUM */
7783 /*=================*/
7785 #content.alignment-forum-index-page::before {
7786 background-color: #131100;
7788 #content.alignment-forum-index-page::after {
7789 font-family: "Concourse SmallCaps";
7790 font-weight: bold;
7791 background-color: #658100;
7792 -webkit-background-clip: text;
7793 color: transparent;
7794 text-shadow:
7795 rgba(0, 0, 0, 0.5) 0px 3px 3px;;
7797 @media only screen and (hover: hover) {
7798 #content.alignment-forum-index-page h1.listing a:hover,
7799 #content.alignment-forum-index-page h1.listing a:focus {
7800 background-color: rgba(19, 17, 0, 0.85);
7804 /*====================*/
7805 /* FOR NARROW SCREENS */
7806 /*====================*/
7808 @media only screen and (max-width: 1440px) {
7809 #hns-date-picker {
7810 background-color: #232323;
7811 opacity: 1.0;
7813 #hns-date-picker::before {
7814 border: 1px solid #575756;
7815 border-width: 1px 0 1px 1px;
7818 @media only screen and (max-width: 1160px) {
7819 #theme-selector:hover::after {
7820 background-color: #575756;
7823 @media only screen and (max-width: 1080px) {
7824 #text-size-adjustment-ui button {
7825 border: 1px solid #575756;
7826 padding: 0 0 0 1px;
7827 border-radius: 50%;
7828 box-shadow:
7829 0 0 6px #575756 inset,
7830 0 0 0 1px transparent;
7832 #theme-tweaker-toggle button {
7833 border: 1px solid #575756;
7834 box-shadow:
7835 0 0 10px #575756 inset,
7836 0 0 0 1px transparent;
7837 border-radius: 50%;
7838 transform: scale(0.8);
7841 @media only screen and (max-width: 1020px) {
7842 #quick-nav-ui a {
7843 box-shadow:
7844 0 0 0 1px #575756,
7845 0 0 0 2px transparent;
7847 #new-comment-nav-ui .new-comments-count::before {
7848 background-color: #232323;
7849 box-shadow:
7850 0 0 0 1px #575756,
7851 0 0 0 2px transparent;
7852 border-radius: 8px;
7854 #anti-kibitzer-toggle {
7855 box-shadow:
7856 0 0 0 1px #575756,
7857 0 0 0 2px transparent;
7858 background-color: #232323;
7859 border-radius: 6px;
7860 overflow: hidden;
7863 @media only screen and (max-width: 1000px) {
7864 #theme-selector {
7865 background-color: #232323;
7866 box-shadow:
7867 0 0 0 1px #575756,
7868 0 0 0 2px transparent;
7870 #theme-selector:hover::after {
7871 width: calc(6em - 3px);
7872 height: calc(100% - 5px);
7873 top: 3px;
7874 left: 100%;
7876 #text-size-adjustment-ui button {
7877 background-color: #1f1f1f;
7879 #text-size-adjustment-ui button:hover {
7880 background-color: #131313;
7882 #theme-tweaker-toggle button {
7883 background-color: #1f1f1f;
7887 /*========*/
7888 /* MOBILE */
7889 /*========*/
7891 /**************************************************************************/
7892 @media only screen and (max-width: 1160px) {
7893 /**************************************************************************/
7895 #ui-elements-container > div[id$='-ui-toggle'] button {
7896 color: #666;
7897 text-shadow:
7898 0 0 1px #000,
7899 0 0 3px #000,
7900 0 0 5px #000,
7901 0 0 10px #000,
7902 0 0 20px #000,
7903 0 0 30px #000;
7906 #theme-selector {
7907 background-color: #232323;
7908 box-shadow:
7909 0 0 0 1px #575756,
7910 0 0 1px 3px #000,
7911 0 0 3px 3px #000,
7912 0 0 5px 3px #000,
7913 0 0 10px 3px #000,
7914 0 0 20px 3px #000;
7915 border-radius: 12px;
7917 #theme-selector::before,
7918 #theme-selector .theme-selector-close-button {
7919 color: #888;
7920 text-shadow: 0.5px 0.5px 0 #000;
7922 #theme-selector button {
7923 background-color: #191919;
7924 border-radius: 10px;
7926 #theme-selector button::after {
7927 color: #fff;
7928 padding-bottom: 2px;
7929 max-width: calc(100% - 3.25em);
7930 overflow: hidden;
7931 text-overflow: ellipsis;
7933 #theme-selector button.selected::after {
7934 text-shadow:
7935 0 -1px 0 #000,
7936 0 0.5px 0.5px #fff;
7939 #quick-nav-ui {
7940 background-color: #000;
7942 #quick-nav-ui,
7943 #new-comment-nav-ui,
7944 #hns-date-picker {
7945 box-shadow:
7946 0 0 1px 3px #000,
7947 0 0 3px 3px #000,
7948 0 0 5px 3px #000,
7949 0 0 10px 3px #000,
7950 0 0 20px 3px #000;
7952 #quick-nav-ui a::after,
7953 #new-comment-nav-ui::before {
7954 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7955 font-weight: 600;
7956 box-shadow:
7957 0 0 1px 0 #000,
7958 0 0 3px 0 #000,
7959 0 0 5px 0 #000;
7960 background-color: #000;
7961 border-radius: 4px;
7963 #quick-nav-ui,
7964 #new-comment-nav-ui {
7965 border-radius: 8px;
7967 #new-comment-nav-ui {
7968 background-color: #232323;
7969 border: 1px solid #575756;
7971 #new-comment-nav-ui::before {
7972 color: #777;
7974 #new-comment-nav-ui .new-comment-sequential-nav-button {
7975 box-shadow: 0 0 0 1px #575756;
7976 color: #777;
7978 #new-comment-nav-ui .new-comments-count {
7979 background-color: inherit;
7980 box-shadow: 0 -1px 0 0 #575756;
7982 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7983 color: #393939;
7985 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7986 border-radius: 7px 0 0 7px;
7988 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7989 border-radius: 0 7px 7px 0;
7991 #new-comment-nav-ui button::after {
7992 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7995 /*****************************************/
7996 @media only screen and (max-width: 900px) {
7997 /*****************************************/
7998 h1.listing {
7999 font-size: 1.75rem;
8000 line-height: 1;
8002 h1.listing .link-post-link {
8003 top: 2px;
8005 h1.listing + .post-meta .karma-value,
8006 h1.listing + .post-meta .comment-count,
8007 h1.listing + .post-meta .lw2-link,
8008 h1.listing + .post-meta .read-time {
8009 bottom: 0;
8011 h1.listing + .post-meta .post-section::before {
8012 position: unset;
8014 h1.listing + .post-meta .post-section {
8015 overflow: visible;
8016 order: 1;
8018 h1.listing + .post-meta .link-post-domain {
8019 order: 2;
8020 line-height: 1;
8021 flex-basis: 100%;
8023 h1.listing + .post-meta::after {
8024 bottom: -10px;
8026 #content.user-page h1.listing + .post-meta {
8027 margin-bottom: 1em;
8029 #content.user-page h1.link-post-listing::after {
8030 height: calc(100% + 2em);
8033 #nav-item-search button::before {
8034 color: #0cc800;
8037 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8038 background-color: #484848;
8041 .comment-item .comment-item {
8042 margin: 0.75em 2px 4px 6px;
8043 box-shadow:
8044 0 0 2px #2c2c2c,
8045 0 0 4px #2c2c2c,
8046 0 0 7px #2c2c2c;
8048 .comment-item .comment-item + .comment-item {
8049 margin: 1.5em 2px 4px 6px;
8051 .comment-body {
8052 font-size: 1.125rem;
8055 a.comment-parent-link:hover::before {
8056 background-color: unset;
8059 .sublevel-nav:not(.sort) .sublevel-item,
8060 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8061 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8062 border-radius: 8px;
8063 border-width: 1px;
8064 margin: 2px;
8066 /*******************************************/
8067 } @media only screen and (max-width: 720px) {
8068 /*******************************************/
8069 h1.listing {
8070 margin: 10px 6px 6px 6px;
8071 max-width: calc(100% - 12px);
8072 font-size: 1.5rem;
8073 padding-right: 35px;
8075 #content.conversations-user-page h1.listing {
8076 font-size: 1.5rem;
8078 h1.listing + .post-meta {
8079 margin: 0 6px 0 7px;
8080 clear: both;
8082 h1.listing + .post-meta {
8083 padding: .25em 254px 0 0;
8085 h1.listing + .post-meta::after {
8086 bottom: -2px;
8088 h1.listing + .post-meta > * {
8089 line-height: 1;
8090 display: block;
8092 #content.conversations-user-page h1.listing + .post-meta > * {
8093 line-height: 1.5;
8095 h1.listing + .post-meta .date,
8096 h1.listing + .post-meta .author {
8097 line-height: 1.3;
8099 h1.listing + .post-meta .karma-value,
8100 h1.listing + .post-meta .comment-count,
8101 h1.listing + .post-meta .lw2-link,
8102 h1.listing + .post-meta .read-time {
8103 top: unset;
8104 font-size: 1rem;
8105 box-shadow: none;
8107 h1.listing + .post-meta .karma-value::before,
8108 h1.listing + .post-meta .comment-count::before,
8109 h1.listing + .post-meta .lw2-link::before,
8110 h1.listing + .post-meta .read-time::before {
8111 box-shadow: none;
8113 h1.listing + .post-meta .karma-value,
8114 h1.listing + .post-meta .comment-count,
8115 h1.listing + .post-meta .read-time,
8116 h1.listing + .post-meta .lw2-link {
8117 bottom: 4px;
8120 h1.listing + .post-meta .karma-value {
8121 right: 192px;
8123 h1.listing + .post-meta .karma-value::before {
8124 text-shadow: 0.5px 0.5px 0.5px #575756;
8126 h1.listing + .post-meta .comment-count {
8127 right: 132px;
8129 h1.listing + .post-meta .read-time {
8130 right: 56px;
8132 h1.listing + .post-meta .lw2-link {
8133 opacity: 1;
8134 right: 0;
8136 h1.listing + .post-meta .link-post-domain {
8137 margin: 0;
8138 line-height: 1.3;
8139 overflow: hidden;
8140 text-overflow: ellipsis;
8142 h1.listing + .post-meta .post-section::before {
8143 position: absolute;
8144 left: unset;
8145 right: 0;
8146 bottom: 30px;
8147 top: unset;
8149 h1.listing a {
8150 display: inline;
8152 /*******************************************/
8153 } @media only screen and (max-width: 520px) {
8154 /*******************************************/
8155 h1.listing + .post-meta {
8156 padding: .25em 144px 0 0;
8157 flex-flow: column;
8159 #content.conversations-user-page h1.listing + .post-meta {
8160 flex-flow: row wrap;
8162 h1.listing + .post-meta .date {
8163 margin: 0.375em 0 0.25em 0;
8164 line-height: 1;
8166 #content.user-page h1.listing::after {
8167 height: calc(100% + 2.125em);
8169 #content.user-page h1.link-post-listing::after {
8170 height: calc(100% + 3.125em);
8172 #content.user-page:not(.conversations-user-page) h1.listing + .post-meta {
8173 padding: 0.25em 144px 0.5em 36px;
8175 #content.conversations-user-page h1.listing + .post-meta .date {
8176 margin: 0 0 0 1em;
8179 h1.listing + .post-meta .karma-value {
8180 bottom: 28px;
8181 right: 56px;
8183 h1.listing + .post-meta .comment-count {
8184 bottom: 28px;
8185 right: 0;
8187 h1.listing + .post-meta .read-time {
8188 right: 56px;
8189 bottom: 4px;
8191 h1.listing + .post-meta .lw2-link {
8192 right: 0;
8193 bottom: 4px;
8195 h1.listing + .post-meta .link-post-domain {
8196 max-width: 100%;
8198 h1.listing + .post-meta .post-section::before {
8199 right: 120px;
8202 #content.compact > .comment-thread .comment-item {
8203 max-height: 110px;
8206 .textarea-container:focus-within button:active {
8207 background-color: #2c2c2c;
8209 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8210 background-color: #131313;
8211 border: 1px solid #1f1f1f;
8212 border-radius: 6px;
8214 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8215 border-color: #00a9ed;
8216 box-shadow:
8217 0 0 0 1px #000,
8218 0 0 0 2px #00a9ed;
8219 color: #00a9ed;
8220 font-weight: 600;
8222 #content.conversation-page .textarea-container:focus-within::after {
8223 background-color: #000;
8225 .textarea-container:focus-within .guiedit-buttons-container {
8226 background-color: white;
8227 border-top: 1px solid #1d1f00;
8229 .textarea-container:focus-within button.guiedit {
8230 background-color: #131313;
8231 border: 1px solid #1f1f1f;
8232 border-radius: 6px;
8234 #markdown-hints::after {
8235 color: #9740cb;
8238 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8239 top: 2px;
8241 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8242 top: 1px;
8244 /*******************************************/
8245 } @media only screen and (max-width: 320px) {
8246 /*******************************************/
8247 h1.listing {
8248 font-size: 1.25rem;
8250 #content.user-page h1.listing::after {
8251 height: calc(100% + 2.625em);
8253 #content.user-page h1.link-post-listing::after {
8254 height: calc(100% + 3.75em);
8260 /*************/
8261 /* ACCORDIUS */
8262 /*************/
8264 /*======*/
8265 /* TAGS */
8266 /*======*/
8268 #tags {
8269 order: 12;
8270 display: flex;
8271 flex-basis: 100%;
8272 justify-content: center;
8273 margin: 0;
8274 flex-flow: row wrap;
8275 align-items: flex-start;
8278 /*===============*/
8279 /* DEFAULT THEME */
8280 /*===============*/
8282 /*++++++*/
8283 /* TAGS */
8284 /*++++++*/
8286 #tags {
8287 padding: 0.5em;
8289 #tags::before {
8290 content: "Tags:";
8291 margin: 0 0.25em 0 0;
8292 opacity: 0.5;
8293 line-height: 1;
8294 align-self: center;
8296 #tags a {
8297 border-radius: 8px;
8298 background-color: #110c06;
8299 border: 1px solid #2e2416;
8300 padding: 4px 8px 5px 8px;
8301 line-height: 1;
8302 margin: 0.25em;
8303 font-size: 0.9375em;
8305 #tags a:hover {
8306 text-decoration: none;
8307 background-color: #221806;
8309 #tags a:active {
8310 color: #00a1e8;