Try to prevent vote button hover effects from being troublesome on mobile.
[lw2-viewer.git] / www / css / style-dark.linux.css
blob6cb97e2d59b93c8dfe88820a340f5751049b66b2
1 body {
2 --invertible-display: none;
3 --inverted-display: initial;
5 /*************/
6 /* VARIABLES */
7 /*************/
9 :root {
10 --GW-comment-background-color-odd: transparent;
11 --GW-comment-background-color-even: transparent;
12 --GW-comment-background-color-target: transparent;
14 --inverted-display: none;
17 /***************/
18 /* BASE LAYOUT */
19 /***************/
21 html {
22 box-sizing: border-box;
23 font-size: 16px;
25 *, *::before, *::after {
26 box-sizing: inherit;
28 script {
29 display: none !important;
32 /*=------=*/
33 /*= Body =*/
34 /*=------=*/
36 body {
37 padding: 0;
38 margin: 0;
40 body::before {
41 background-color: inherit;
42 position: fixed;
43 width: 100%;
44 height: 100%;
47 body.no-scroll {
48 overflow-y: scroll;
49 position: fixed;
50 width: 100%;
53 /*=----------------------------=*/
54 /*= Immediate children of body =*/
55 /*=----------------------------=*/
57 body > * {
58 max-width: 900px;
61 /* Special styles for special browsers.
62 (This one is a fix for Firefox’s built-in screenshot feature.)
64 body > iframe[id^='firefox-screenshots'] {
65 max-width: unset;
68 #content {
69 margin: 0 auto;
70 padding: 0 30px;
71 position: relative;
72 overflow: visible;
73 display: grid;
74 grid-template-columns: 2fr 1fr 2fr;
76 #content::before {
77 content: "";
78 display: block;
79 position: absolute;
80 top: 0;
81 left: 0;
82 width: 100%;
83 height: 100%;
84 z-index: -1;
85 pointer-events: none;
88 /*=---------=*/
89 /*= Content =*/
90 /*=---------=*/
92 #content > * {
93 grid-column: 1 / span 3;
96 /*=----------------------=*/
97 /*= Floating UI elements =*/
98 /*=----------------------=*/
100 #ui-elements-container {
101 position: fixed;
102 height: 100vh;
103 top: 0;
104 left: 0;
105 right: 0;
106 margin: auto;
107 z-index: 10000;
108 pointer-events: none;
110 #ui-elements-container > * {
111 pointer-events: auto;
114 /*=----------------=*/
115 /*= Images overlay =*/
116 /*=----------------=*/
117 /* (To exclude images in posts from theme tweaks) */
119 #images-overlay {
120 position: absolute;
121 z-index: 1;
122 left: 0;
123 right: 0;
124 margin: auto;
127 /***********/
128 /* NAV BAR */
129 /***********/
131 .nav-bar {
132 margin: 0 -30px;
133 display: flex;
134 order: -11;
135 z-index: 1;
138 /*=---------------=*/
139 /*= Nav bar items =*/
140 /*=---------------=*/
142 .nav-item {
143 flex: 1 1 auto;
145 .nav-item * {
146 text-overflow: ellipsis;
147 white-space: nowrap;
148 overflow: hidden;
150 .nav-inner {
151 padding: 12px 30px;
152 text-align: center;
153 display: block;
154 position: relative;
156 .nav-bar-top:not(#primary-bar) .nav-inner {
157 padding: 4px 0;
160 #nav-item-sequences .nav-inner::before {
161 font-family: "Font Awesome", "Font Awesome 5 Free";
162 content: "\F5DB";
164 @media only screen and (min-width: 901px) {
165 #nav-item-about .nav-inner {
166 margin-right: 0.5em;
168 #nav-item-sequences .nav-inner::before {
169 font-size: 1rem;
170 display: block;
172 #secondary-bar #nav-item-sequences .nav-inner {
173 font-size: 0;
174 line-height: 1.4;
178 /*=------------=*/
179 /*= Bottom bar =*/
180 /*=------------=*/
182 #bottom-bar {
183 order: 11;
185 h1.listing ~ #bottom-bar {
186 margin-top: 1.25em;
188 #bottom-bar .nav-item {
189 flex: 1 1 0;
192 /*=-----------------=*/
193 /*= Accesskey hints =*/
194 /*=-----------------=*/
196 .nav-inner::after {
197 content: attr(accesskey);
198 display: none;
201 /*=---------------=*/
202 /*= Pagination UI =*/
203 /*=---------------=*/
205 #bottom-bar .nav-item a::before,
206 #top-nav-bar a::before {
207 font-family: "Font Awesome", "Font Awesome 5 Free";
208 font-weight: 900;
209 font-size: 0.8em;
210 position: relative;
211 bottom: 1px;
212 margin-right: 0.5em;
214 #bottom-bar #nav-item-first a::before,
215 #top-nav-bar a.nav-item-first::before {
216 content: "\F33e";
218 #bottom-bar #nav-item-top a::before {
219 content: "\F062";
221 #bottom-bar #nav-item-prev a::before,
222 #top-nav-bar a.nav-item-prev::before {
223 content: "\F060";
225 #bottom-bar #nav-item-next a::before,
226 #top-nav-bar a.nav-item-next::before {
227 content: "\F061";
229 #bottom-bar #nav-item-last a::before,
230 #top-nav-bar a.nav-item-last::before {
231 content: "\F340";
233 #bottom-bar #nav-item-next a::before {
234 margin-left: -2em;
235 margin-right: 0;
236 left: 3.8em;
238 #bottom-bar #nav-item-last a::before {
239 margin-left: -1.8em;
240 margin-right: 0;
241 left: 3.4em;
244 /*= Hover tooltips =*/
246 #top-nav-bar a {
247 position: relative;
249 #top-nav-bar a::after {
250 bottom: calc(100% - 3px);
251 content: attr(data-target-page);
253 #top-nav-bar a::after {
254 display: block;
255 position: absolute;
256 font-size: 0.75rem;
257 width: 100%;
258 line-height: 1;
259 visibility: hidden;
261 #top-nav-bar a:hover::after,
262 #bottom-bar a:hover::after {
263 visibility: visible;
266 /*=-----------------------=*/
267 /*= Decorative bottom bar =*/
268 /*=-----------------------=*/
269 /* (On short pages with no pagination) */
271 #bottom-bar.decorative {
272 position: relative;
274 #bottom-bar.decorative .nav-item {
275 display: none;
278 /*=------------=*/
279 /*= Search tab =*/
280 /*=------------=*/
282 #nav-item-search {
283 flex: 4 1 auto;
285 #nav-item-search form::before {
286 content: "\F002";
287 font-family: "Font Awesome", "Font Awesome 5 Free";
288 font-weight: 900;
289 display: inline-block;
290 vertical-align: top;
291 height: 23px;
292 width: 23px;
294 #nav-item-search input {
295 height: 23px;
296 width: calc(95% - 80px);
297 padding: 1px 4px;
299 #nav-item-search button {
300 height: 21px;
303 /*=-----------=*/
304 /*= Login tab =*/
305 /*=-----------=*/
307 #nav-item-login {
308 position: relative;
309 padding-right: 0.5em;
312 /*******************/
313 /* INBOX INDICATOR */
314 /*******************/
316 #inbox-indicator {
317 position: absolute;
318 top: 1px;
319 right: 0;
320 height: 100%;
321 visibility: hidden;
323 #inbox-indicator::before {
324 content: "\F0E0";
325 font-family: "Font Awesome", "Font Awesome 5 Free";
326 color: #393939;
327 font-size: 1.1875rem;
328 position: absolute;
329 height: 100%;
330 right: 0;
331 top: 0;
332 padding: 0 0.45em;
333 visibility: visible;
334 font-weight: 900;
336 #inbox-indicator.new-messages::before {
337 color: #0090e0;
338 text-shadow:
339 0 0 1px #777,
340 0.5px 0.5px 1px #777;
342 a#inbox-indicator:hover::before {
343 color: #000;
344 text-shadow:
345 0 0 1px #fff,
346 0 0 2px #fff,
347 0 0 4px #fff,
348 0 0 1px #777,
349 0.5px 0.5px 1px #777;
351 a#inbox-indicator.new-messages:hover::before {
352 text-shadow:
353 0 0 1px #0090e0,
354 0 0 2px #0090e0,
355 0 0 4px #0090e0,
356 0 0 1px #777,
357 0.5px 0.5px 1px #777;
360 /****************/
361 /* PAGE TOOLBAR */
362 /****************/
364 .page-toolbar {
365 font-size: 0.9em;
366 line-height: 1.8;
367 text-align: right;
368 margin-right: -20px;
370 #content > .page-toolbar {
371 grid-column: 3;
372 grid-row: span 3;
374 #content.user-page > .page-toolbar {
375 grid-column: 2 / span 2;
376 order: -4;
379 /*=--------------------------=*/
380 /*= Page toolbar items (all) =*/
381 /*=--------------------------=*/
383 .page-toolbar > * {
384 display: inline-block;
385 margin-left: 1.5em;
387 .page-toolbar > form button {
388 padding: 0;
389 text-align: right;
390 white-space: unset;
392 .page-toolbar > form button::before {
393 text-align: center;
395 .page-toolbar .button::before {
396 font-family: "Font Awesome", "Font Awesome 5 Free";
397 font-size: 0.9em;
398 padding-right: 0.3em;
401 /*=-------------------------------=*/
402 /*= Page toolbar items (specific) =*/
403 /*=-------------------------------=*/
405 .new-post::before {
406 content: '\F067';
407 font-weight: 900;
409 .new-private-message::before {
410 content: '\F075';
411 font-weight: 400;
413 .logout-button::before {
414 content: '\F2F5';
415 font-weight: 900;
417 #enable-push-notifications::before {
418 content: '\F0F3';
419 font-weight: 400;
421 .ignore-button::before {
422 content: "\F070";
423 font-weight: 400;
425 .unignore-button::before {
426 content: "\F06E";
427 font-weight: 400;
429 .rss::before {
430 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
431 display: inline-block;
432 width: 1em;
433 padding-right: 0.2em;
434 position: relative;
435 top: 1px;
438 /*********************/
439 /* TOP PAGINATION UI */
440 /*********************/
442 #top-nav-bar {
443 grid-column: 2;
444 margin: 0.25em 0 0 0;
445 padding: 0.75em 0 0 0;
446 text-align: center;
447 font-size: 1.25em;
448 display: flex;
449 justify-content: center;
451 #top-nav-bar a {
452 line-height: 1;
454 #top-nav-bar a.disabled {
455 pointer-events: none;
456 visibility: hidden;
458 #top-nav-bar .page-number {
459 position: relative;
460 display: inline-block;
461 width: 1.5em;
463 #top-nav-bar .page-number-label {
464 position: absolute;
465 font-size: 0.5em;
466 text-transform: uppercase;
467 width: 100%;
468 bottom: 90%;
469 left: 0;
471 #top-nav-bar a::before {
472 margin: 0.5em;
473 display: inline-block;
476 /****************/
477 /* SUBLEVEL NAV */
478 /****************/
480 .sublevel-nav {
481 text-align: center;
482 display: flex;
483 justify-content: center;
484 margin: 1em 0 0 0;
486 #content > .sublevel-nav:not(.sort) {
487 grid-column: 2;
488 align-self: start;
490 .sublevel-nav .sublevel-item {
491 flex: 0 0 6em;
492 padding: 0.125em 0.5em;
493 font-size: 1.125rem;
495 .sublevel-nav .sublevel-item:active {
496 transform: none;
498 .sublevel-nav .sublevel-item.selected {
499 cursor: default;
502 /***********************/
503 /* SORT ORDER SELECTOR */
504 /***********************/
506 .sublevel-nav.sort {
507 position: relative;
508 margin-top: 8px;
509 font-size: 0.75em;
511 #content > .sublevel-nav.sort {
512 grid-column: 3;
513 grid-row: span 2;
514 justify-self: end;
515 align-self: start;
516 flex-flow: column;
518 #content.index-page > .sublevel-nav.sort {
519 grid-column: 1;
520 justify-self: start;
521 flex-flow: row;
524 .sublevel-nav.sort::before {
525 content: "Sort";
526 font-size: 0.75rem;
527 position: absolute;
528 top: 0;
529 left: 0;
530 width: 100%;
532 .sublevel-nav.sort .sublevel-item {
533 line-height: 1;
534 font-size: 0.875rem;
535 flex-basis: unset;
538 /*******************************/
539 /* COMMENTS SORT MODE SELECTOR */
540 /*******************************/
542 .comments > .sublevel-nav.sort {
543 margin: 1em auto 0 auto;
545 @supports (width: -moz-fit-content) {
546 .comments > .sublevel-nav.sort {
547 width: -moz-fit-content;
550 @supports (width: fit-content) {
551 .comments > .sublevel-nav.sort {
552 width: fit-content;
556 /******************/
557 /* WIDTH SELECTOR */
558 /******************/
560 #width-selector {
561 position: absolute;
562 top: 4px;
563 right: -78px;
565 #width-selector button {
566 width: 22px;
567 height: 22px;
568 padding: 6px;
569 margin: 1px;
570 overflow: hidden;
571 background-repeat: no-repeat;
572 background-size: 100%;
573 background-origin: content-box;
575 #width-selector button,
576 #width-selector button:active,
577 #width-selector button:focus {
578 text-shadow: none;
579 color: transparent;
581 #width-selector button:disabled {
582 cursor: auto;
584 #width-selector button.select-width-normal {
585 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
587 #width-selector button.select-width-wide {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
590 #width-selector button.select-width-fluid {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
594 /*=----------------=*/
595 /*= Hover tooltips =*/
596 /*=----------------=*/
598 #width-selector button::after {
599 content: attr(data-name);
600 position: absolute;
601 display: block;
602 left: 0;
603 width: 100%;
604 text-align: center;
605 top: 56px;
606 visibility: hidden;
608 #width-selector button.selected::after {
609 content: attr(data-name) " (selected)";
611 #width-selector button:hover:not(:active)::after {
612 visibility: visible;
615 head.content-width-normal + body > * {
616 max-width: 900px;
618 head.content-width-wide + body > * {
619 max-width: 1150px;
621 head.content-width-fluid + body > * {
622 max-width: calc(100% - 300px);
625 /******************/
626 /* THEME SELECTOR */
627 /******************/
629 #theme-selector {
630 position: absolute;
631 top: 3px;
632 left: -41px;
633 opacity: 0.4;
634 display: table;
635 max-width: 40px;
637 #theme-selector:hover {
638 opacity: 1.0;
641 /*=----------------------=*/
642 /*= Theme select buttons =*/
643 /*=----------------------=*/
645 .theme-selector button {
646 display: table-cell;
647 width: 26px;
648 height: 26px;
649 padding: 5px;
650 margin: 1px 7px 0 7px;
651 color: transparent;
652 background-size: 16px 16px;
653 background-origin: content-box;
655 .theme-selector button,
656 .theme-selector button:hover,
657 .theme-selector button:active,
658 .theme-selector button:focus {
659 text-shadow: none;
660 color: transparent;
662 .theme-selector button:disabled {
663 cursor: auto;
666 /*=----------------------------=*/
667 /*= Pre-rendered button images =*/
668 /*=----------------------------=*/
669 /* (Each is just a capital letter A through whatever) */
671 .theme-selector button:nth-of-type(1) {
672 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
674 .theme-selector button:nth-of-type(2) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
677 .theme-selector button:nth-of-type(3) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
680 .theme-selector button:nth-of-type(4) {
681 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
683 .theme-selector button:nth-of-type(5) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
686 .theme-selector button:nth-of-type(6) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
689 .theme-selector button:nth-of-type(7) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
692 .theme-selector button:nth-of-type(8) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
695 .theme-selector button:nth-of-type(9) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
699 /*=------------------------------=*/
700 /*= Theme select button tooltips =*/
701 /*=------------------------------=*/
702 /* (with the name & description of the theme that each button selects) */
704 #theme-selector button {
705 position: relative;
706 z-index: 1;
708 #theme-selector button::before {
709 content: attr(data-theme-name);
710 position: absolute;
711 top: 0;
712 right: 100%;
713 padding: 5px 6px 6px 6px;
714 line-height: 1;
715 width: 6em;
716 text-align: right;
717 z-index: 1;
718 visibility: hidden;
720 #theme-selector:hover button::before {
721 visibility: visible;
723 #theme-selector:hover ~ #theme-tweaker-toggle,
724 #theme-selector:active ~ #theme-tweaker-toggle {
725 z-index: -1;
728 /************************/
729 /* THEME TWEAKER TOGGLE */
730 /************************/
732 #theme-tweaker-toggle {
733 position: absolute;
734 top: 7px;
735 left: -75px;
737 #theme-tweaker-toggle button {
738 font-family: "Font Awesome", "Font Awesome 5 Free";
739 font-weight: 900;
740 font-size: 1.25rem;
741 opacity: 0.4;
742 z-index: 1;
744 #theme-tweaker-toggle button:hover {
745 opacity: 1.0;
748 /*******************/
749 /* QUICKNAV WIDGET */
750 /*******************/
752 #quick-nav-ui {
753 position: absolute;
754 right: -67px;
755 bottom: 20px;
757 #quick-nav-ui a {
758 font-family: "Font Awesome", "Font Awesome 5 Free";
759 font-weight: 900;
760 font-size: 1.5rem;
761 line-height: 1.7;
762 text-align: center;
763 display: block;
764 width: 40px;
765 height: 40px;
766 margin: 10px 0 0 0;
768 #quick-nav-ui a[href='#comments'].no-comments {
769 pointer-events: none;
771 #quick-nav-ui a {
772 visibility: hidden;
774 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
775 visibility: visible;
778 /************************/
779 /* NEW COMMENT QUICKNAV */
780 /************************/
782 #new-comment-nav-ui {
783 position: absolute;
784 right: -112px;
785 bottom: 42px;
787 #new-comment-nav-ui > * {
788 display: block;
789 position: relative;
791 #new-comment-nav-ui.no-comments {
792 display: none;
795 /*=--------------------=*/
796 /*= New comments count =*/
797 /*=--------------------=*/
799 #new-comment-nav-ui .new-comments-count {
800 width: 2em;
801 font-size: 1.25rem;
802 line-height: 1.1;
803 text-align: center;
804 left: 1px;
805 cursor: pointer;
807 #new-comment-nav-ui .new-comments-count::selection {
808 background-color: transparent;
810 #new-comment-nav-ui .new-comments-count::after {
811 content: "NEW";
812 display: block;
813 font-size: 0.625rem;
816 /*=-----------------------------------=*/
817 /*= Next/previous new comment buttons =*/
818 /*=-----------------------------------=*/
820 #new-comment-nav-ui .new-comment-sequential-nav-button {
821 font-size: 1.75rem;
822 font-family: "Font Awesome", "Font Awesome 5 Free";
823 font-weight: 900;
824 width: 1.5em;
825 z-index: 5001;
827 #new-comment-nav-ui .new-comment-previous {
828 top: 8px;
830 #new-comment-nav-ui .new-comment-next {
831 bottom: 6px;
833 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
834 cursor: auto;
835 pointer-events: none;
838 /*******************/
839 /* HNS DATE PICKER */
840 /*******************/
842 #hns-date-picker {
843 position: absolute;
844 bottom: 72px;
845 right: -253px;
846 opacity: 0.6;
848 #hns-date-picker:hover,
849 #hns-date-picker:focus-within {
850 opacity: 1.0;
852 #hns-date-picker.no-comments {
853 display: none;
856 /*=---------------=*/
857 /*= "Since" label =*/
858 /*=---------------=*/
860 #hns-date-picker span {
861 display: block;
862 font-size: 0.75rem;
863 text-transform: uppercase;
866 /*=--------------------=*/
867 /*= "Since" text field =*/
868 /*=--------------------=*/
870 #hns-date-picker input {
871 margin-top: 1px;
872 padding: 1px 3px;
873 width: 140px;
874 text-align: center;
875 box-shadow: 0 0 0 1px transparent;
878 /************************/
879 /* ANTI-KIBITZER TOGGLE */
880 /************************/
882 #anti-kibitzer-toggle {
883 position: absolute;
884 right: -67px;
885 bottom: 225px;
887 #anti-kibitzer-toggle button {
888 display: block;
889 width: 40px;
890 height: 54px;
891 padding: 0;
893 #anti-kibitzer-toggle button::before,
894 #anti-kibitzer-toggle button::after {
895 font-family: "Font Awesome", "Font Awesome 5 Free";
897 #anti-kibitzer-toggle button::before {
898 content: "\F06E";
899 display: block;
900 font-size: 1.75em;
901 font-weight: 400;
903 #anti-kibitzer-toggle button::after {
904 content: "\F007\2004\F164";
905 font-size: 0.875em;
906 font-weight: 900;
908 #anti-kibitzer-toggle.engaged button::before {
909 content: "\F070";
912 /************************/
913 /* TEXT SIZE ADJUSTMENT */
914 /************************/
916 #text-size-adjustment-ui {
917 position: absolute;
918 top: 30px;
919 right: -78px;
920 opacity: 0.4;
922 #text-size-adjustment-ui:hover {
923 opacity: 1.0;
926 /* This doesn't work in Mozilla browsers, so hide it */
927 @-moz-document url-prefix() {
928 #text-size-adjustment-ui {
929 display: none;
933 /*=---------=*/
934 /*= Buttons =*/
935 /*=---------=*/
937 #text-size-adjustment-ui button {
938 font-weight: 900;
939 font-family: "Font Awesome", "Font Awesome 5 Free";
940 font-size: 0.75rem;
941 width: 24px;
942 height: 24px;
943 padding: 0;
945 #text-size-adjustment-ui button.default {
946 font-family: inherit;
947 font-size: 1.125rem;
948 position: relative;
949 top: 1px;
951 #text-size-adjustment-ui button:disabled {
952 opacity: 0.5;
954 #text-size-adjustment-ui button:disabled:hover {
955 cursor: default;
958 /*=----------------=*/
959 /*= Hover tooltips =*/
960 /*=----------------=*/
962 #text-size-adjustment-ui::after {
963 content: "Adjust text size";
964 position: absolute;
965 display: block;
966 left: 0;
967 width: 100%;
968 text-align: center;
969 top: 32px;
970 visibility: hidden;
971 font-size: 0.9em;
973 #text-size-adjustment-ui:hover::after {
974 visibility: visible;
977 /*******************************/
978 /* COMMENTS VIEW MODE SELECTOR */
979 /*******************************/
981 #comments-view-mode-selector {
982 position: absolute;
983 bottom: 30px;
984 left: -40px;
985 opacity: 0.6;
987 #comments-view-mode-selector:hover {
988 opacity: 1.0;
991 /*=---------=*/
992 /*= Buttons =*/
993 /*=---------=*/
995 #comments-view-mode-selector a {
996 display: block;
997 font-family: "Font Awesome", "Font Awesome 5 Free";
998 font-size: 1.25rem;
999 text-align: center;
1000 opacity: 0.4;
1001 padding: 0.25em;
1002 z-index: 1;
1004 #comments-view-mode-selector a.threaded {
1005 transform: scaleY(-1);
1006 font-weight: 900;
1008 #comments-view-mode-selector a.chrono {
1009 font-weight: normal;
1011 #comments-view-mode-selector a.selected,
1012 #comments-view-mode-selector a:hover {
1013 opacity: 1.0;
1014 text-decoration: none;
1016 #comments-view-mode-selector a.selected {
1017 cursor: default;
1020 /*****************/
1021 /* KEYBOARD HELP */
1022 /*****************/
1024 #keyboard-help-overlay {
1025 width: 100vw;
1026 height: 100vh;
1027 background-color: rgba(255, 255, 255, 0.7);
1028 position: fixed;
1029 left: 0;
1030 top: 0;
1031 z-index: 5001;
1033 display: flex;
1034 justify-content: center;
1035 align-items: center;
1036 padding: 20px 30px 30px 20px;
1038 visibility: hidden;
1041 #keyboard-help-overlay .keyboard-help-container {
1042 background-color: #000;
1043 filter: drop-shadow(4px 4px 2px #000);
1044 flex: 1 1 auto;
1045 max-width: 1500px;
1046 max-height: 100%;
1047 overflow-y: auto;
1048 position: relative;
1050 #keyboard-help-overlay .keyboard-help-container h1 {
1051 text-align: center;
1052 border-bottom: 1px solid #1f1f1f;
1053 margin: 0;
1054 padding: 10px 20px;
1056 #keyboard-help-overlay .keyboard-help-container .note {
1057 margin: 0.5em auto;
1058 padding: 0 1em;
1059 width: fit-content;
1061 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1062 column-width: 21em;
1063 column-count: auto;
1064 column-gap: 1.5em;
1065 border-top: 1px solid #1f1f1f;
1066 padding: 15px 20px;
1068 #keyboard-help-overlay .keyboard-help-container ul {
1069 list-style-type: none;
1070 margin: 0;
1071 padding: 0;
1072 break-inside: avoid;
1073 white-space: nowrap;
1075 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1076 margin: 20px 0 0 0;
1078 #keyboard-help-overlay .keyboard-help-container ul li.section {
1079 font-weight: bold;
1080 font-size: 1.125rem;
1081 break-after: avoid;
1083 #keyboard-help-overlay .keyboard-help-container .keys {
1084 margin: 0 0.5em 0 0;
1085 min-width: 4.5em;
1086 display: inline-block;
1088 #keyboard-help-overlay .keyboard-help-container .keys code {
1089 margin: 0 6px 0 0;
1091 #keyboard-help-overlay .keyboard-help-container code {
1092 display: inline-block;
1093 background-color: #131313;
1094 border: 1px solid #2c2c2c;
1095 padding: 3px 8px 4px 8px;
1096 margin: 0 1px;
1098 #keyboard-help-overlay .keyboard-help-container code.ak {
1099 background-color: #001b5f;
1100 border-color: #0052bc;
1102 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1103 content: "ak+";
1104 opacity: 0.3;
1107 #nav-item-about button.open-keyboard-help {
1108 display: none;
1110 @media only screen and (hover:hover) and (pointer:fine) {
1111 #nav-item-about {
1112 position: relative;
1113 padding-right: 0.25em;
1115 #nav-item-about button.open-keyboard-help {
1116 font-family: "Font Awesome", "Font Awesome 5 Free";
1117 font-weight: 900;
1118 position: absolute;
1119 top: 0;
1120 right: 0;
1121 height: 100%;
1122 padding: 8px;
1123 display: initial;
1124 line-height: 1;
1125 background-color: transparent;
1129 #keyboard-help-overlay button.close-keyboard-help {
1130 position: absolute;
1131 right: 0;
1132 top: 0;
1133 font-family: "Font Awesome", "Font Awesome 5 Free";
1134 font-size: 1.5rem;
1135 padding: 10px 12px;
1138 /************/
1139 /* ARCHIVES */
1140 /************/
1142 .archive-nav {
1143 margin: 1.25em 0.5em 0 0.5em;
1144 padding: 0.25em;
1146 .archive-nav > * {
1147 display: flex;
1149 .archive-nav *[class^='archive-nav-item'] {
1150 line-height: 1;
1151 flex: 1 1 5%;
1152 text-align: center;
1153 padding: 6px 4px 4px 4px;
1154 max-width: 8%;
1156 @-moz-document url-prefix() {
1157 .archive-nav *[class^='archive-nav-item'] {
1158 padding: 5px 4px;
1161 .archive-nav-days .archive-nav-item-day {
1162 font-size: 0.8em;
1163 padding: 7px 0 5px 0;
1164 max-width: 4%;
1166 .archive-nav-days .archive-nav-item-day:first-child {
1167 flex-basis: 10%;
1170 /************/
1171 /* ARCHIVES */
1172 /************/
1174 .archive-nav {
1175 margin: 1.25em 0.5em 0 0.5em;
1176 padding: 0.25em;
1178 .archive-nav > * {
1179 display: flex;
1181 .archive-nav *[class^='archive-nav-item'] {
1182 line-height: 1;
1183 flex: 1 1 5%;
1184 text-align: center;
1185 padding: 6px 4px 4px 4px;
1186 max-width: 8%;
1188 @-moz-document url-prefix() {
1189 .archive-nav *[class^='archive-nav-item'] {
1190 padding: 5px 4px;
1193 .archive-nav-days .archive-nav-item-day {
1194 font-size: 0.8em;
1195 padding: 7px 0 5px 0;
1196 max-width: 4%;
1198 .archive-nav-days .archive-nav-item-day:first-child {
1199 flex-basis: 10%;
1202 /************/
1203 /* LISTINGS */
1204 /************/
1206 h1.listing {
1207 font-size: 1.875rem;
1208 line-height: 1.15;
1209 max-height: 1.15em;
1210 position: relative;
1213 h1.listing a {
1214 position: relative;
1217 /* Links to link-posts (not the link-post links themselves; that's below) */
1218 h1.listing .link-post-link + a {
1219 margin-left: 0.25em;
1222 h1.listing .link-post-link {
1223 font-size: 0.8em;
1224 display: inline;
1225 vertical-align: top;
1226 position: relative;
1227 top: 4px;
1230 /*=----------------------=*/
1231 /*= Listing hover reveal =*/
1232 /*=----------------------=*/
1233 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1235 @media only screen and (min-width: 1160px) {
1236 h1.listing a {
1237 max-width: 100%;
1238 display: inline-block;
1239 white-space: nowrap;
1240 text-overflow: ellipsis;
1241 overflow: hidden;
1242 border-bottom: 1px solid transparent;
1243 -webkit-hyphens: auto;
1244 -moz-hyphens: auto;
1245 -ms-hyphens: auto;
1246 hyphens: auto;
1247 z-index: 1;
1248 padding: 0 0 1px 1px;
1250 h1.listing .link-post-link + a {
1251 max-width: calc(100% - 33px);
1253 h1.listing a:hover,
1254 h1.listing a:focus {
1255 text-decoration: dotted underline;
1256 white-space: initial;
1257 overflow: visible;
1258 z-index: 2;
1260 h1.listing:focus-within::before {
1261 content: "\F105";
1262 font-family: "Font Awesome", "Font Awesome 5 Free";
1263 display: block;
1264 position: absolute;
1265 left: -0.75em;
1268 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1269 mouse movements) */
1271 h1.listing a:not(.edit-post-link):hover::before {
1272 content: "";
1273 position: absolute;
1274 top: -10px;
1275 right: -10px;
1276 bottom: -10px;
1277 left: -10px;
1278 z-index: -1;
1280 h1.listing .link-post-link:hover {
1281 text-decoration: none;
1285 /*=-----------------------=*/
1286 /*= In-listing edit links =*/
1287 /*=-----------------------=*/
1289 h1.listing .edit-post-link {
1290 position: absolute;
1291 margin: 0;
1294 /*=---------------------------------=*/
1295 /*= Error messages on listing pages =*/
1296 /*=---------------------------------=*/
1298 .listing-message {
1299 width: 100%;
1300 text-align: center;
1301 padding: 1.25em 0 1.25em 0;
1302 font-size: 1.375em;
1305 /*********************/
1306 /* LISTING POST-META */
1307 /*********************/
1309 h1.listing + .post-meta {
1310 position: relative;
1311 justify-content: flex-start;
1312 margin: 0 20px 0 21px;
1315 h1.listing + .post-meta > * {
1316 margin: 0 1em 0 0;
1319 h1.listing + .post-meta .post-section {
1320 width: 0;
1321 margin: 0;
1322 overflow: hidden;
1324 h1.listing + .post-meta .post-section::before {
1325 position: absolute;
1326 left: -36px;
1329 h1.listing + .post-meta .read-time {
1330 cursor: default;
1333 /********************/
1334 /* SEQUENCES & TAGS */
1335 /********************/
1337 .sequence-text, .tag-description {
1338 font-size: 1.2rem;
1339 padding: 0 22px;
1342 #content.tag-index-page .tag-description {
1343 margin: 1em 0 0;
1346 section {
1347 margin-top: 2em;
1348 margin-bottom: 4em;
1351 h1.sequence-chapter {
1352 font-size: 2.3rem;
1355 article {
1356 max-width: 100%;
1359 .post-meta + .comments {
1360 margin-top: 3em;
1363 .tag-list {
1364 column-count: auto;
1365 column-width: 15em;
1366 margin-top: 0;
1367 border-bottom: 1px solid #575756;
1368 padding-bottom: 1em;
1369 margin-bottom: 0;
1372 /**************/
1373 /* USER PAGES */
1374 /**************/
1376 /*=---------------------=*/
1377 /*= User's display name =*/
1378 /*=---------------------=*/
1380 #content.user-page h1.page-main-heading {
1381 margin: 0.25em 0 0 0;
1382 line-height: 1.1;
1383 grid-column: 1 / span 2;
1384 order: -2;
1387 #content.user-page h1.page-main-heading .user-full-name {
1388 font-size: 1rem;
1389 font-weight: normal;
1390 padding-left: 0.5em;
1393 /*=--------------------=*/
1394 /*= User's karma total =*/
1395 /*=--------------------=*/
1397 #content.user-page .user-stats {
1398 grid-column: 3;
1399 order: -2;
1400 text-align: right;
1401 align-self: end;
1404 #content.user-page .user-stats .karma-type {
1405 white-space: nowrap;
1408 /*=----------------------=*/
1409 /*= Expanded vs. compact =*/
1410 /*=----------------------=*/
1412 #content.user-page #comments-list-mode-selector {
1413 grid-row: span 2;
1415 #content.user-page #comments-list-mode-selector button {
1416 display: block;
1419 /*=----------------------------------------------------=*/
1420 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1421 /*=----------------------------------------------------=*/
1423 #content.user-page .sublevel-nav {
1424 margin-bottom: 0.5em;
1427 /*=--------------=*/
1428 /*= User's posts =*/
1429 /*=--------------=*/
1431 #content.user-page h1.listing {
1432 margin: 0.5em 0 0 0;
1435 #content.user-page .user-bio :first-child {
1436 margin-top: 0.5em;
1439 /*****************/
1440 /* CONVERSATIONS */
1441 /*****************/
1443 /*=----------------------=*/
1444 /*= List of participants =*/
1445 /*=----------------------=*/
1447 #content.conversation-page .conversation-participants {
1448 grid-column: 2 / span 2;
1449 text-align: right;
1450 margin: 0.5em 0 0 0;
1452 .post-meta > .conversation-participants {
1453 white-space: normal;
1455 .conversation-participants ul,
1456 .conversation-participants li {
1457 list-style-type: none;
1458 display: inline-block;
1459 margin: 0;
1460 padding: 0;
1462 .conversation-participants li {
1463 margin-left: 0.375em;
1465 .conversation-participants li:not(:last-of-type)::after {
1466 content: ",";
1469 /*=-------------------------=*/
1470 /*= Posting controls (form) =*/
1471 /*=-------------------------=*/
1473 #content.conversation-page .posting-controls {
1474 padding: 0 0 1em 0;
1476 #content.conversation-page .post-meta-fields {
1477 overflow: auto;
1478 display: flex;
1479 flex-flow: row wrap;
1481 .posting-controls.standalone textarea {
1482 margin-top: 0.375em;
1484 .posting-controls.standalone form {
1485 padding: 0 1em;
1487 #content.conversation-page .posting-controls.standalone form {
1488 padding: 0 1em 3em 1em;
1490 .posting-controls.standalone input[type='text'],
1491 .posting-controls.standalone label {
1492 margin: 0.25em 0;
1494 .posting-controls.standalone label {
1495 width: 4em;
1496 text-align: right;
1497 padding: 2px 6px;
1498 border: 1px solid transparent;
1500 .posting-controls.standalone input[type='text'] {
1501 width: calc(100% - 4em);
1502 padding: 0.25em;
1504 .posting-controls.standalone input[type='submit'] {
1505 float: right;
1507 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1508 white-space: nowrap;
1510 .posting-controls.standalone #markdown-hints {
1511 top: calc(100% + 2em);
1514 /*=--------------------=*/
1515 /*= Conversation title =*/
1516 /*=--------------------=*/
1518 #content.conversation-page h1.page-main-heading {
1519 text-align: center;
1520 margin: 0.5em 0;
1521 line-height: 1.15;
1524 /*=----------=*/
1525 /*= Messages =*/
1526 /*=----------=*/
1528 #content.conversation-page > ul.comment-thread:last-of-type {
1529 margin-bottom: 2em;
1532 /******************/
1533 /* SEARCH RESULTS */
1534 /******************/
1536 #content.search-results-page h1.listing,
1537 #content.sequence-page h1.listing,
1538 #content.post-page h1.listing {
1539 font-size: 1.625em;
1542 /**************/
1543 /* LOGIN PAGE */
1544 /**************/
1546 .login-container {
1547 margin: 2em 0;
1548 padding: 1em;
1549 display: flex;
1550 flex-flow: row wrap;
1553 .login-container form {
1554 flex-basis: 50%;
1555 display: grid;
1556 grid-row-gap: 0.5em;
1557 align-content: start;
1559 .login-container form label {
1560 text-align: right;
1561 padding: 0.25em 0.5em;
1562 white-space: nowrap;
1563 grid-column: 1;
1565 .login-container form input {
1566 grid-column: 2;
1567 padding: 0.25em;
1569 .login-container form input[type='submit'],
1570 .login-container form a {
1571 grid-column: 2;
1572 justify-self: center;
1574 .login-container form input[type='submit'] {
1575 width: 10em;
1576 padding: 0.35em;
1577 line-height: 1;
1578 margin: 0.5em 0 0 0;
1580 .login-container form h1 {
1581 text-align: center;
1582 margin: 0;
1583 grid-column: 2;
1586 /* “Log in” form */
1588 #login-form {
1589 grid-template-columns: 5.5em 1fr;
1590 padding: 0.5em 2em 0.5em 0;
1593 /* “Create account” form */
1595 #signup-form {
1596 font-size: 0.9em;
1597 grid-template-columns: 8.5em 1fr;
1598 padding: 0.5em 1em 1em 1em;
1600 #signup-form h1 {
1601 font-size: 1.7em;
1603 #signup-form input[type='submit'] {
1604 padding: 0.4em 0.5em 0.5em 0.5em;
1607 /* Log in tip */
1609 .login-container .login-tip {
1610 padding: 0.5em 0.5em 0.5em 3em;
1611 margin: 2em 4em 0 4em;
1612 text-indent: -2em;
1613 line-height: 1.4;
1615 .login-container .login-tip span {
1616 font-weight: bold;
1619 /* Message box */
1621 #content.login-page .error-box {
1622 margin: 1.5em 0.875em -1.5em 0.875em;
1624 .error-box, .success-box {
1625 padding: 0.25em;
1626 text-align: center;
1629 /***********************/
1630 /* PASSWORD RESET PAGE */
1631 /***********************/
1633 .reset-password-container {
1634 margin-bottom: 2em;
1636 .reset-password-container input[type='submit'] {
1637 padding: 0.2em 0.5em;
1638 width: unset;
1640 .reset-password-container input {
1641 margin-left: 0.5em;
1642 width: 12em;
1644 .reset-password-container label {
1645 display: inline-block;
1646 width: 9em;
1648 .reset-password-container form > div {
1649 margin: 0.2em;
1651 .reset-password-container .action-container {
1652 padding-left: 11em;
1653 padding-top: 0.2em;
1655 .reset-password-container .error-box {
1656 margin: unset;
1659 /*********************/
1660 /* TABLE OF CONTENTS */
1661 /*********************/
1663 .contents {
1664 float: right;
1665 min-width: 6em;
1666 max-width: 40%;
1667 margin: 1.25em 0 0.75em 1.25em;
1668 padding: 7px 14px 10px 10px;
1669 position: relative;
1670 z-index: 1;
1673 .contents-head {
1674 text-align: center;
1675 margin-bottom: 0.25em;
1678 .post-body .contents ul {
1679 list-style-type: none;
1680 margin: 0 0 0 0.5em;
1681 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1682 padding-left: 1em;
1683 font-size: 0.75em;
1685 .post-body .contents li {
1686 margin: 0.15em 0 0.3em 1em;
1687 text-align: left;
1688 text-indent: -1em;
1689 line-height: 1.2;
1690 position: relative;
1692 .post-body .contents li::before {
1693 position: absolute;
1694 width: 3em;
1695 display: block;
1696 text-align: right;
1697 left: -4.5em;
1699 .contents .toc-item-1 {
1700 counter-increment: toc-item-1;
1701 counter-reset: toc-item-2 toc-item-3;
1703 .contents .toc-item-1::before {
1704 content: counter(toc-item-1);
1706 .contents .toc-item-1 ~ .toc-item-2 {
1707 margin-left: 2.9em;
1708 font-size: 0.95em;
1710 .contents .toc-item-2 {
1711 counter-increment: toc-item-2;
1712 counter-reset: toc-item-3;
1714 .contents .toc-item-1 ~ .toc-item-2::before {
1715 content: counter(toc-item-1) "." counter(toc-item-2);
1717 .contents .toc-item-2::before {
1718 content: counter(toc-item-2);
1720 .contents .toc-item-1 + .toc-item-3 {
1721 counter-increment: toc-item-2 toc-item-3;
1723 .contents .toc-item-2 ~ .toc-item-3,
1724 .contents .toc-item-1 ~ .toc-item-3 {
1725 margin-left: 2.9em;
1726 font-size: 0.95em;
1728 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1729 margin-left: 5.7em;
1730 font-size: 0.9em;
1732 .contents .toc-item-3 {
1733 counter-increment: toc-item-3;
1735 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1736 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1738 .contents .toc-item-1 ~ .toc-item-3::before {
1739 content: counter(toc-item-1) "." counter(toc-item-3);
1741 .contents .toc-item-2 ~ .toc-item-3::before {
1742 content: counter(toc-item-2) "." counter(toc-item-3);
1744 .contents .toc-item-3::before {
1745 content: counter(toc-item-3);
1747 .contents .toc-item-4,
1748 .contents .toc-item-5,
1749 .contents .toc-item-6 {
1750 display: none;
1753 /********************/
1754 /* POSTS & COMMENTS */
1755 /********************/
1757 .post-meta > *,
1758 .comment-meta > * {
1759 display: inline-block;
1760 margin-right: 1em;
1761 font-size: 1.0625em;
1763 .body-text {
1764 overflow-wrap: break-word;
1765 text-align: justify;
1767 .body-text p {
1768 margin: 1em 0;
1770 .retracted .body-text {
1771 text-decoration: line-through;
1774 .bare-url {
1775 word-break: break-all;
1776 hyphens: auto;
1778 .body-text a:not([href]),
1779 .body-text a:not([href]):hover,
1780 .body-text a:not([href])::before,
1781 .body-text a:not([href])::after {
1782 text-decoration: none;
1783 text-shadow: unset;
1784 border: unset;
1785 color: unset;
1786 content: unset;
1788 /*************/
1789 /* POST-META */
1790 /*************/
1792 .post-meta {
1793 display: flex;
1794 flex-flow: row wrap;
1795 justify-content: center;
1797 .post-meta .lw2-link {
1798 opacity: 0.5;
1799 order: 1;
1801 .post-meta > *,
1802 .post-meta .post-section::before {
1803 margin: 0 0.5em;
1805 .post-meta .post-section {
1806 order: -1;
1807 margin: 0;
1808 visibility: hidden;
1810 .post-meta .post-section::before,
1811 .comment-meta .alignment-forum {
1812 visibility: visible;
1813 font-family: "Font Awesome", "Font Awesome 5 Free";
1814 font-weight: 900;
1816 .post-section.frontpage::before {
1817 content: "\F015";
1819 .post-section.featured::before {
1820 content: "\F005";
1822 .post-section.meta::before {
1823 content: "\F077";
1825 .post-section.events::before {
1826 content: "\F5A0";
1828 .post-section.personal::before {
1829 content: "\F007";
1831 .post-section.draft::before {
1832 content: "\F15B";
1834 .post-section.alignment-forum::before,
1835 .comment-meta .alignment-forum {
1836 content: "AF";
1837 font-family: Concourse, 'Changa One';
1840 /*= Karma controls hover tooltips =*/
1842 @media only screen and (pointer: fine) {
1843 .post .karma,
1844 .comment-item .karma {
1845 position: relative;
1847 .post .karma.active-controls::after,
1848 .comment-item .karma.active-controls::after {
1849 content: "Double-click for strong vote";
1850 position: absolute;
1851 pointer-events: none;
1852 display: block;
1853 left: 6px;
1854 max-width: calc(100% - 12px);
1855 line-height: 1.15;
1856 white-space: normal;
1857 text-align: center;
1858 font-size: 0.875rem;
1859 opacity: 0;
1860 transition: opacity 0.2s ease;
1862 .post .karma.active-controls:hover::after,
1863 .comment-item .karma.active-controls:hover::after {
1864 opacity: 1.0;
1867 .post .karma .karma-value::after,
1868 .comment-item .karma .karma-value::after {
1869 content: attr(title);
1870 position: absolute;
1871 pointer-events: none;
1872 display: block;
1873 left: 50%;
1874 transform: translateX(-50%);
1875 white-space: nowrap;
1876 text-align: center;
1877 font-size: 0.875rem;
1878 color: #393939;
1879 opacity: 0;
1880 transition: opacity 0.2s ease;
1882 .post .karma .karma-value:hover::after,
1883 .comment-item .karma .karma-value:hover::after {
1884 opacity: 1.0;
1886 .comment-item .karma .karma-value:hover::after {
1887 z-index: 5001;
1890 .author {
1891 position: relative;
1893 .author:not(.redacted)::before {
1894 content: attr(data-full-name);
1895 position: absolute;
1896 pointer-events: none;
1897 display: block;
1898 padding: 0 1em;
1899 left: 50%;
1900 bottom: 2em;
1901 transform: translateX(-50%);
1902 white-space: nowrap;
1903 text-align: center;
1904 font-size: 0.875rem;
1905 font-weight: normal;
1906 opacity: 0;
1907 transition: opacity 0.2s ease;
1908 z-index: 5001;
1910 .author:hover::before {
1911 opacity: 1.0;
1915 /*********/
1916 /* POSTS */
1917 /*********/
1919 .post {
1920 max-width: 100%;
1923 .post-body {
1924 min-height: 8em;
1925 padding: 0 30px;
1926 line-height: 1.5;
1927 font-size: 1.3rem;
1928 overflow: auto;
1929 margin: 0.5em 0 0 0;
1931 h1.post-title {
1932 margin: 1.1em 0 0.35em 0;
1933 padding: 0 30px;
1934 text-align: center;
1935 font-size: 2.5em;
1936 line-height: 1;
1938 .post .post-meta {
1939 text-align: center;
1940 position: relative;
1941 z-index: 2;
1943 .post .top-post-meta:last-child {
1944 margin-bottom: 40px;
1946 .post .bottom-post-meta {
1947 margin: 0;
1948 padding: 20px 0;
1950 .bottom-post-meta {
1951 border-style: solid;
1952 border-width: 1px 0;
1955 /**********/
1956 /* EVENTS */
1957 /**********/
1959 .event-info .map {
1960 position: relative;
1961 width: 100%;
1962 margin: 2em 0 1em;
1965 .event-info .map::before {
1966 content: "";
1967 display: block;
1968 padding-bottom: 50%;
1971 .event-info .map iframe {
1972 width: 100%;
1973 height: 100%;
1974 border: 1px solid #fff;
1975 position: absolute;
1976 top: 0;
1977 left: 0;
1980 .event-info ul {
1981 list-style: none;
1982 padding: 0;
1983 text-align: center;
1986 /*******************/
1987 /* POST NAVIGATION */
1988 /*******************/
1990 .post-nav-item {
1991 display: grid;
1992 grid-template: 100% / 32% 36% 32%;
1993 grid-template-areas:
1994 "prev seq next";
1996 .post-nav {
1997 display: flex;
1998 flex-flow: column;
1999 justify-content: flex-end;
2000 padding: 0.5em;
2003 .post-nav-title {
2004 font-size: 1.125em;
2005 line-height: 1.15;
2006 display: inline;
2007 border-top: 1px solid transparent;
2009 .post-nav.prev .post-nav-title,
2010 .post-nav.next .post-nav-title {
2011 border-bottom: 1px solid transparent;
2014 .sequence-title {
2015 align-items: center;
2016 text-align: center;
2017 grid-area: seq;
2019 .sequence-title .post-nav-title {
2020 font-size: 1.5em;
2023 .post-nav.prev {
2024 grid-area: prev;
2025 align-items: flex-start;
2027 .post-nav.prev .post-nav-title::before {
2028 content: "\F0D9\2005";
2030 .post-nav.next {
2031 grid-area: next;
2032 text-align: right;
2033 align-items: flex-end;
2035 .post-nav.prev .post-nav-label,
2036 .post-nav.next .post-nav-label {
2037 display: none;
2039 .post-nav.next .post-nav-title::after {
2040 content: "\2004\F0DA";
2042 .post-nav.prev .post-nav-title::before,
2043 .post-nav.next .post-nav-title::after {
2044 font-family: Font Awesome;
2045 font-weight: 900;
2046 vertical-align: text-bottom;
2047 opacity: 0.75;
2049 .post-nav-links {
2050 max-width: 100%;
2053 @media only screen and (max-width: 900px) {
2054 .post-nav-item {
2055 font-size: 0.875em;
2056 grid-template: auto auto / 50% 50%;
2057 grid-template-areas:
2058 "prev next"
2059 "seq seq";
2061 .post-nav.prev .post-nav-title,
2062 .post-nav.next .post-nav-title {
2063 border-bottom: none;
2065 .post-nav.prev {
2066 margin: 0 0 0 -1px;
2067 position: relative;
2068 left: 1px;
2070 .sequence-title {
2071 padding: 0.75em 0;
2074 @media only screen and (max-width: 520px) {
2075 .post-nav-links + .comments {
2076 padding: 1em 0 0 0;
2080 .related-posts, .related-post-group {
2081 padding-bottom: 1em;
2083 .related-post-type {
2084 font-size: 1.2em;
2085 font-weight: 600;
2086 margin-top: 0.5em;
2087 margin-bottom: -0.5em;
2088 list-style-type: disc;
2089 margin-left: -0.5em;
2090 opacity: 0.7;
2092 .related-post-type::before {
2093 content: "\269c";
2094 margin-right: 0.15em;
2096 .related-posts .post-type-prefix {
2097 display: none;
2100 /**************/
2101 /* LINK POSTS */
2102 /**************/
2104 .post.link-post > .post-body > p:first-child {
2105 text-align: center;
2106 font-size: 1.125em;
2107 margin: 0.5em 0 0 0;
2109 .post.link-post > .post-body > p:only-child {
2110 font-size: 1.5em;
2111 margin: 1em 0;
2113 .post.link-post a.link-post-link::before {
2114 content: "\F0C1";
2115 font-family: "Font Awesome", "Font Awesome 5 Free";
2116 font-weight: 900;
2117 font-size: 0.75em;
2118 position: relative;
2119 top: -2px;
2120 margin-right: 0.25em;
2123 /************/
2124 /* COMMENTS */
2125 /************/
2127 .comments {
2128 max-width: 100%;
2129 padding: 0 0 1px 0;
2130 position: relative;
2132 .comments::before {
2133 content: "";
2134 position: absolute;
2135 display: block;
2136 top: 0;
2137 left: 0;
2138 width: 100%;
2139 height: 100%;
2140 pointer-events: none;
2142 ul.comment-thread {
2143 list-style-type: none;
2144 padding: 0;
2145 max-width: 100%;
2147 .comments .comment-thread > li {
2148 position: relative;
2150 #content > #top-nav-bar + .comment-thread .comment-item {
2151 margin-top: 0;
2154 .comment-item {
2155 margin: 2em 0 0 0;
2157 .comment-item .comment-item {
2158 margin: 1em 8px 8px 16px;
2160 .comment-item .comment-item + .comment-item {
2161 margin: 2em 8px 8px 16px;
2164 .comment-body {
2165 line-height: 1.45;
2166 font-size: 1.2rem;
2167 padding: 10px;
2169 .comment-body ul {
2170 list-style-type: circle;
2172 .comment-body > *:first-child {
2173 margin-top: 0;
2175 .comment-body > *:last-child {
2176 margin-bottom: 0;
2179 .comments-empty-message {
2180 width: 100%;
2181 text-align: center;
2182 padding: 0.75em 0 0.9em 0;
2183 font-size: 1.375em;
2186 /**********************************/
2187 /* DEEP COMMENT THREAD COLLAPSING */
2188 /**********************************/
2190 .comment-item > input[id^="expand"] {
2191 display: none;
2193 .comment-item > input[id^="expand"] + label {
2194 display: block;
2195 visibility: hidden;
2196 position: relative;
2197 margin: 8px 9px;
2199 .comment-item > input[id^="expand"] + label::after {
2200 content: "(Expand " attr(data-child-count) " below)";
2201 visibility: visible;
2202 position: absolute;
2203 left: 0;
2204 white-space: nowrap;
2205 cursor: pointer;
2207 .comment-item > input[id^="expand"]:checked + label::after {
2208 content: "(Collapse " attr(data-child-count) " below)";
2210 .comment-item > input[id^="expand"] ~ .comment-thread {
2211 max-height: 34px;
2212 overflow: hidden;
2214 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2215 margin-top: 0;
2217 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2218 max-height: 1000000px;
2221 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2222 margin: 0;
2224 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2225 display: none;
2228 /*************/
2229 /* BACKLINKS */
2230 /*************/
2232 .backlinks > input {
2233 display: none;
2236 .backlinks > label {
2237 margin-left: 10px;
2238 display: block;
2239 color: #00c200;
2240 cursor: pointer;
2243 .backlinks > label::before {
2244 content: " ";
2245 border-left: 5px solid currentColor;
2246 border-top: 5px solid transparent;
2247 border-bottom: 5px solid transparent;
2248 transition: transform 0.25s ease-out;
2249 transform-origin: 29% 55%;
2250 display: inline-block;
2251 padding-right: 0.5em;
2254 .backlinks > input:checked + label::before {
2255 transform: rotate(90deg);
2258 .backlinks li {
2259 margin-top: 0;
2262 .backlinks > ul {
2263 height: 0;
2264 perspective-origin: top;
2265 transform: perspective(100em) rotateX(-90deg);
2266 transform-origin: center top;
2267 opacity: 0;
2268 margin-top: 0.5em;
2269 margin-bottom: 0.5em;
2272 .backlinks > input:checked ~ ul {
2273 height: auto;
2274 transform: perspective(100em) rotateX(0deg);
2275 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2276 opacity: 1;
2279 /****************/
2280 /* COMMENT-META */
2281 /****************/
2283 .comment-meta {
2284 padding: 2px 24px 2px 10px;
2285 margin: 0 -1px;
2286 border: none;
2287 display: flex;
2288 flex-flow: row wrap;
2289 align-items: baseline;
2291 .user-page .comment-meta,
2292 .conversation-page .comment-meta {
2293 padding-right: 10px;
2295 .comment-meta .comment-post-title {
2296 flex-basis: 100%;
2297 overflow: hidden;
2298 text-overflow: ellipsis;
2299 line-height: 1.3;
2301 .conversation-page .comment-meta .comment-post-title {
2302 margin: 0;
2303 flex-basis: unset;
2304 flex: 1 0 auto;
2305 text-align: right;
2306 display: none; /* Not sure if we need to display this... */
2308 .comment-item .author:not(.redacted).original-poster::after {
2309 content: "\2004(OP)";
2310 font-size: 0.75em;
2313 /*****************************/
2314 /* COMMENT THREAD NAVIGATION */
2315 /*****************************/
2317 a.comment-parent-link:not(.inline-author),
2318 a.comment-parent-link.inline-author::before {
2319 opacity: 0.5;
2321 a.comment-parent-link:hover {
2322 opacity: 1.0;
2324 a.comment-parent-link::before {
2325 content: "\F062";
2326 font-family: "Font Awesome", "Font Awesome 5 Free";
2327 font-weight: 900;
2328 font-size: 0.75rem;
2329 line-height: 1;
2330 position: absolute;
2331 z-index: 1;
2332 display: block;
2333 padding: 3px 3px 0 3px;
2334 width: 16px;
2335 height: calc(100% + 2px);
2336 top: -1px;
2337 left: -17px;
2339 a.comment-parent-link::after {
2340 content: "";
2341 position: absolute;
2342 z-index: 0;
2343 display: block;
2344 width: calc(100% + 26px);
2345 height: calc(100% + 38px);
2346 top: -29px;
2347 left: -17px;
2348 pointer-events: none;
2349 overflow: hidden;
2350 visibility: hidden;
2352 a.comment-parent-link:hover::after {
2353 visibility: visible;
2356 .comment-child-links {
2357 flex-basis: 100%;
2359 .comment-child-link {
2360 margin: 0 0.25em;
2361 display: inline-block;
2363 .comment-child-link::before {
2364 content: ">";
2365 display: inline-block;
2366 margin: 0 2px 0 0;
2369 .comment-popup {
2370 position: fixed;
2371 top: 10%;
2372 right: 10%;
2373 max-width: 700px;
2374 z-index: 10001;
2375 font-size: 1rem;
2376 white-space: unset;
2377 pointer-events: none;
2379 .comment-popup .comment-parent-link {
2380 display: none;
2382 .comment-popup .comment-body {
2383 font-size: 1.0625rem;
2386 .comment-item.depth-odd {
2387 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2388 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2390 .comment-item.depth-even {
2391 --GW-comment-background-color: var(--GW-comment-background-color-even);
2392 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2395 .comment-item:target {
2396 --GW-comment-background-color: var(--GW-comment-background-color-target);
2398 .comment-item:target > .comment-thread > .comment-item {
2399 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2402 /**********************/
2403 /* COMMENT PERMALINKS */
2404 /**********************/
2405 /********************/
2406 /* COMMENT LW LINKS */
2407 /********************/
2409 .comment-meta .permalink::before,
2410 .comment-meta .lw2-link::before,
2411 .individual-thread-page a.comment-parent-link:empty::before {
2412 content: "";
2413 display: inline-block;
2414 width: 1rem;
2415 height: 1rem;
2416 border-radius: 3px;
2417 box-shadow:
2418 0 0 0 1px #000,
2419 0 0 0 2px #0cc800,
2420 0 0 0 3px transparent;
2421 padding: 0 0 0 2px;
2422 background-size: 100%;
2423 position: relative;
2424 top: 2px;
2425 opacity: 0.5;
2427 .comment-meta .permalink::before {
2428 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BxG6SZO6ipS6zJY6zhd7Dtf7Elr7k1u7lZ171178GJ/8GOA8GWC8GmF8WyH8XON8nWP8naP8oOa84Wc84ac9Ied9Iyh9I6j9JCl9ZGl9ZSo9ZWp9Zms9Zut9qKz9qi4962897G/+LPB+LTC+LjF+L3J+cLN+cTP+sXQ+srU+svU+s7X+9DZ+9HZ+9La+9Xd+9bd+9ng/Nrh/Nvh/Obq/ent/e7x/vHz/vL0/vP1/vT2/vj5//n6//r7//v7//z8//39//7+/////wAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAMDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84AAgoOEhYaHiImKi4yNjo+QhgEODQGRiiVDRERDIpeHJ5uiRCWfhAdAo5tCCaaCFZtDHyCxEK4AsERCCxG1twhBqrqttzPCNLeCDTqjOQzJGMKctq4e0kMPkQUbgxSaqtiCAR0DiwbMMoMEACybyJYAATREOQWJBjui6YMr7oPyouodEsBsFAx+/gTFUCWwkIJgo3iUA9CPCLJ4OMBlOyThWwtCFS8KchErgqIAN0SFQGhxkAhRNhhFE3XjAgAVm14AyJBSlIVGJlT5GNVDVSlHHCBKEyVEg7YUP5b2QDHx04QRL2rUaEHCZLKvYMOKHXspEAA7');
2430 .comment-meta .lw2-link::before {
2431 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BZB6RxG6SJL6iZO6ipS6zJY6zhd7D1h7EBk7UJl7Ulr7kts7lFx7mB+8GJ/8GmF8WyH8XON8naP8niR8n+X84GY84+k9JOn9ZSo9ZWp9Zut9qS196W296e396q6962896+++LTC+LzI+b3J+cDM+cXQ+sjS+srU+s7X+9La+9bd+9jf/Nng/Nvh/Nzi/N7k/OXq/efr/ent/eru/e3w/vDz/vHz/vL0/vT2/vb3//f4//r7//z8//39//7+/////wAAt4pHif9/AAAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH5YAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5EHBwoBgwuaB56hgpqciAE3QUE6BQAIPao9BgAmqiAADT6qNac2qjuzAC2qQBQBNaovABqqQSi9v60AHM0iCbpBsifEFtBBO9IM2CwYzUAVNL/BhgG+39IAMqo4w80qPKorie3RgyHNAANu2OcO3CAIPwIG/IGAoCodAwbxawZjBsAYiiYC8dDhQwYAJQB6IAGwQ0Z3AIFEmACE2IMLzX44OKkQiAQBOVTdGEAAVhAanRwGVAkghaoUglyoGoGpqdOnUKNKnUq1qlVEgQAAOw==');
2433 .individual-thread-page a.comment-parent-link:empty::before {
2434 left: unset;
2435 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wAw9QAw9gBj9gB39gB99i8w5y+R9y+R+T8w51eq+V8w51+R9Jeq85eq9ZfY/s/E89fL+dfl/N/E8N/L9N/L9d/4/+fL9OfY9+f4/u/R9e/4/u////fY9ffe9ffe9vfr+/f//////P////9/AAABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAABAuwlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGi0CAcEgsGo/IpHLJbDqf0Kh0Ci1IIFRkgTMaXbLFbbf7BQPEYzIYnVZP2W13lRtvl53wSKgLsqTvSwR0XRMCeyMeAYNeTQ9pFAAEhx+RgyILTAhjGkIDk0IFn00KGxVDnl2UQgcZGAZUqCOqZp2itACxs7S5t7Wpvbi2u4cdwAAMDg0JxszNzs/QZkEAOw==');
2437 .comment-meta .permalink:hover::before {
2438 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6QBW5wBd6wBq6gBq6y8w5y+E7UdW508w509D50996k+k718w51+q71+x71+x8F+38G8w549W55dW55d355ed6pfL9Z++75/L86dd56eq6qex66fR86fY9a9q57+R57/L77/e9b/r+seR58fl+c+d58+k58+36s/L7c/y/8/4/9eq59fl9tf4/9+x59/E6t/e8+e36Oe+6ufL6ufe8Ofy9uf4+ef//+/R6u/e7u////fY6vfe7ffr8ffy9vf////e6//l6//l7P/r7f/y8P/47//48P//8P//8v//8///9f//9v//+f//+v///1X/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84BQgoOEhYaHiImKi4yNjo+Qhk5AQJGLMQcAmh6WhzOaoAAYnYRJE6GaATmkgkSgIzqgLKxQQ6kvRbK0SA6oAAKrrE8lvg20gkYVoQU4x0K+mrOsPdAAL5FMMoNEmb7XUE42QYtKyg+DT1AtmsaDTiEABTyJShSg54PrAO3g8Jryh5YoCwUhHztBT06gMjCv0BEFqAiMU3cQSpMN3hAV6SaBkD5+UFCAWqHICQhQHwzuG1QDFAJGz0AxcAEFhqYIUHZYCEWiEQ1UA0IlQKXhkQ+I1UAFMBGpSYoF1QZkmGjpyQ8VHC5c6CDixrGvYMOKHdspEAA7');
2440 .comment-meta .lw2-link:hover::before {
2441 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6gBD6gBW6gBd6wBq6gBq6wB97S8w5y997Ucw50ed70ek708w50+k7U+q8F8w51+x8G+38Xcw53dD53e38Ye37JdW55fL9ZfR9p/Y9p/e9qdW56dd56dq56d356fe9rdq57ed57fl+b9357/Y8L/y/8eR58+R58/R78/y9s/y/8/4/9eq59fR79fe9df4/9+x59///+e36O/L6u////fY6vfe6vfe6/f////l7P/r7f/y7v/47//48P/4+f/4+v//7///8f//9f//9v//+v///wAAAAAAAAAAwMyACwEAAAAPAAAAAAAAALDBCVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAJDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH2YBHgoOEhYaHiImKi4yNjo+QkZKTlJWWl5FGRkGDRkCaRoOfnZuJRR0AAAU6R0MUqQOsNKkbRz4RqQiIRR6pBKxHKakALEUfqQ1HOcMWu70Av4I3wxpCDrA6MsMnzr7AP7gAEDjDACsi3t3QwEYlqQYj5RcVqRKmz9GCNeX8wyT36QT1WNCvnAAbAFUR4lXuAYhyDBQxTGXihQoYR2YN46AxVQiJz/jF4JFgWIwdwwLMAFmwBREMqQ60egVAwaKJIo+4SDXhiBEUqTJgGkq0qNGjSJMqXcoUUSAAOw==');
2443 .individual-thread-page a.comment-parent-link:empty:hover::before {
2444 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wBD5wBD6i8w50cw50+E6k+k70+q8F8w51+x8G8w529d53cw53e38Idq54ex7oe+8Y9d54/E8Ze+8JfL9aeR6qe+7K/L8t+359/e8N/e8vfe7ffr8ff////r7f/r7v/y7//y8P/47///8P///wABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAAAQwAlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGjECScEgsGo/IpHLJbDqf0Kh0Cg1VLlQkSAEAQLLFbbf7BZPEYzIYnVZP2ePAuAyFt+d17tiC6BYiaXRLInpdFCN9AAcjDIFNGGkSJCKJBpOFAh1MHgNdDUKUXZZnlU4bCxNDoQCjJB8OD1mrrWaTpbWgt7izuLmivba/vSIEXQnAJBwZGsjNzs/Q0bVBADs=');
2446 .comment-meta .permalink:hover::before,
2447 .comment-meta .lw2-link:hover::before,
2448 .individual-thread-page a.comment-parent-link:empty:hover::before {
2449 box-shadow:
2450 0 0 0 2px #0cc800,
2451 0 0 0 3px transparent;
2452 opacity: 1.0;
2453 filter: unset;
2455 .comment-meta .permalink:active::before,
2456 .comment-meta .lw2-link:active::before,
2457 .individual-thread-page a.comment-parent-link:empty:active::before {
2458 transform: scale(0.9);
2461 .comment-meta .permalink,
2462 .comment-meta .lw2-link,
2463 .individual-thread-page .comment-parent-link:empty {
2464 position: relative;
2465 opacity: 1.0;
2467 .comment-meta .permalink::after,
2468 .comment-meta .lw2-link::after,
2469 .individual-thread-page .comment-parent-link:empty::after {
2470 content: "";
2471 width: 30px;
2472 height: 30px;
2473 display: block;
2474 position: absolute;
2475 top: -2px;
2476 left: -7px;
2477 box-shadow: none;
2478 pointer-events: auto;
2479 visibility: visible;
2482 /*************************/
2483 /* COMMENTS COMPACT VIEW */
2484 /*************************/
2486 #comments-list-mode-selector,
2487 #content.index-page #comments-list-mode-selector,
2488 #content.user-page #comments-list-mode-selector {
2489 padding-top: 6px;
2490 grid-column: 1;
2491 position: unset;
2492 z-index: 1;
2493 justify-self: start;
2494 align-self: start;
2496 #comments-list-mode-selector button {
2497 color: transparent;
2498 width: 32px;
2499 height: 32px;
2500 padding: 6px;
2501 margin: 1px;
2502 overflow: hidden;
2503 background-repeat: no-repeat;
2504 background-size: 100%;
2505 background-origin: content-box;
2507 #comments-list-mode-selector button:disabled {
2508 cursor: auto;
2510 #comments-list-mode-selector button.expanded {
2511 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2513 #comments-list-mode-selector button.compact {
2514 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2516 @media only screen and (max-resolution: 1dppx) {
2517 #comments-list-mode-selector button.expanded {
2518 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2520 #comments-list-mode-selector button.compact {
2521 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2525 #content > ul.comment-thread > li.comment-item,
2526 #content.compact > ul.comment-thread > li.comment-item {
2527 margin: 0;
2530 #content > .comment-thread {
2531 margin: 1em 0;
2533 #content.compact > .comment-thread {
2534 font-size: 0.9375rem;
2535 margin: 0.5em 0;
2537 #content.compact > .comment-thread:hover {
2538 z-index: 1;
2540 #content.compact > .comment-thread .comment-body {
2541 font-size: 1.0625rem;
2543 #content.compact > .comment-thread .comment-item,
2544 #content.index-page .comment-item.ignored,
2545 #content.inbox-user-page .comment-item.ignored {
2546 max-height: 61px;
2547 margin-top: 1em;
2548 overflow: hidden;
2549 position: relative;
2551 #content.compact > .comment-thread .comment-item {
2552 pointer-events: none;
2554 #content.compact > .comment-thread .comment-item::after {
2555 content: "…";
2556 position: absolute;
2557 right: 0;
2558 bottom: 0;
2559 font-size: 2rem;
2560 line-height: 1;
2561 padding: 0 16px 10px 64px;
2562 pointer-events: auto;
2564 @media only screen and (hover: hover) {
2565 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2566 #content.compact > .comment-thread .comment-item.expanded {
2567 overflow: visible;
2568 pointer-events: auto;
2569 z-index: 10;
2572 @media only screen and (hover: none) {
2573 #content.compact > .comment-thread.expanded .comment-item {
2574 overflow: visible;
2575 pointer-events: auto;
2576 z-index: 10;
2579 #content.compact > .comment-thread .comment-item .comment-meta {
2580 white-space: nowrap;
2581 overflow: hidden;
2582 text-overflow: ellipsis;
2583 padding: 2px 10px;
2585 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2586 white-space: unset;
2588 #content.compact > .comment-thread .comment-item .comment-meta a {
2589 pointer-events: auto;
2591 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2592 display: inline;
2594 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2595 margin-left: 0.75em;
2597 @media only screen and (hover: hover) {
2598 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2599 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2600 max-height: unset;
2602 #content.compact > .comment-thread .comment-item:hover .comment,
2603 #content.compact > .comment-thread .comment-item.expanded .comment {
2604 position: relative;
2605 z-index: 1;
2606 margin-bottom: 2em;
2607 bottom: 0;
2609 #content.compact > .comment-thread .comment-item:hover .comment::before,
2610 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2611 content: "";
2612 position: absolute;
2613 display: block;
2614 width: calc(100% + 20px);
2615 height: calc(100% + 20px);
2616 z-index: -1;
2617 top: -10px;
2618 left: -10px;
2620 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2621 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2622 margin: 0;
2625 @media only screen and (hover: none) {
2626 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2627 max-height: unset;
2629 #content.compact > .comment-thread.expanded .comment-item .comment {
2630 position: relative;
2631 z-index: 1;
2632 margin-bottom: 2em;
2633 bottom: 0;
2635 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2636 content: "";
2637 position: absolute;
2638 display: block;
2639 width: calc(100% + 14px);
2640 height: calc(100% + 20px);
2641 z-index: -1;
2642 top: -10px;
2643 left: -10px;
2645 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2646 margin: 0;
2648 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2649 content: "";
2650 display: block;
2651 position: fixed;
2652 top: 0;
2653 left: 0;
2654 width: 100%;
2655 height: 100%;
2656 z-index: -2;
2657 background-color: rgba(255, 255, 255, 0.5);
2661 /*****************************/
2662 /* HIGHLIGHTING NEW COMMENTS */
2663 /*****************************/
2665 .new-comment::before {
2666 content: "";
2667 position: absolute;
2668 width: 100%;
2669 height: 100%;
2670 z-index: 5000;
2671 pointer-events: none;
2674 /***********************************/
2675 /* COMMENT THREAD MINIMIZE BUTTONS */
2676 /***********************************/
2678 .comment-minimize-button {
2679 font-family: "Font Awesome", "Font Awesome 5 Free";
2680 font-weight: 900;
2681 font-size: 1.25rem;
2682 line-height: 1;
2683 position: absolute;
2684 right: 1px;
2685 top: 1px;
2686 width: 18px;
2687 margin: 0;
2688 cursor: pointer;
2690 .comment-minimize-button:active {
2691 transform: scale(0.9);
2693 .comment-minimize-button::after {
2694 content: attr(data-child-count);
2695 font-weight: normal;
2696 font-size: 0.8125rem;
2697 position: absolute;
2698 left: 0;
2699 width: 100%;
2700 text-align: center;
2701 top: 21px;
2703 #content.individual-thread-page .comment-minimize-button {
2704 display: none;
2707 /*****************/
2708 /* IGNORE SYSTEM */
2709 /*****************/
2711 #content.comment-thread-page .comment-item.ignored {
2712 height: 38px;
2713 overflow: hidden;
2715 .comment-item.ignored > .comment > .comment-meta > .author {
2716 text-decoration: line-through;
2719 /***********************************/
2720 /* INDIVIDUAL COMMENT THREAD PAGES */
2721 /***********************************/
2723 .individual-thread-page > h1 {
2724 line-height: 1;
2725 margin: 0.75em 0 3px 0;
2727 .individual-thread-page .comments {
2728 border: none;
2731 /*************/
2732 /* SHORTFORM */
2733 /*************/
2735 .shortform-index-page .comments::before {
2736 border: none;
2737 box-shadow: none;
2740 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2741 margin-top: 0;
2744 /****************/
2745 /* VOTE BUTTONS */
2746 /****************/
2748 .vote {
2749 margin: 0;
2751 .vote {
2752 font-family: "Font Awesome", "Font Awesome 5 Free";
2753 font-weight: 900;
2754 border: none;
2757 .vote:disabled {
2758 visibility: hidden;
2759 cursor: default;
2762 .karma.waiting {
2763 opacity: 0.5;
2765 .karma.waiting button {
2766 pointer-events: none;
2769 /* Replicated karma controls at bottom of comments. */
2770 .comment-controls .karma {
2771 float: left;
2772 margin-left: -14px;
2773 font-size: 0.9375em;
2776 /*****************************/
2777 /* COMMENTING AND POSTING UI */
2778 /*****************************/
2780 .comment-controls {
2781 text-align: right;
2782 margin: 0 8px 8px 16px;
2783 position: relative;
2784 z-index: 9999;
2786 .comment-thread .comment-controls + .comment-thread > li:first-child {
2787 margin-top: 8px;
2789 .comments > .comment-controls {
2790 margin: 8px 0 0 0;
2792 .comments > .comment-controls:last-child {
2793 margin: 8px 0 16px 0;
2796 .posting-controls input[type='submit'] {
2797 margin: 6px;
2798 padding: 4px 10px;
2799 font-size: 1.125rem;
2802 .comment-controls .cancel-comment-button {
2803 position: absolute;
2804 right: 0;
2805 margin: 0;
2806 height: 27px;
2807 font-size: inherit;
2808 padding: 4px 8px 2px 4px;
2809 z-index: 1;
2811 .comment-controls .cancel-comment-button::before {
2812 font-family: "Font Awesome", "Font Awesome 5 Free";
2813 margin-right: 3px;
2814 content: '\F00D';
2815 font-weight: 900;
2816 font-size: 0.9em;
2817 opacity: 0.7;
2820 .comment + .comment-controls .action-button {
2821 font-weight: normal;
2822 font-size: 1.0625em;
2823 padding: 1px 6px;
2825 .comment-controls .action-button::before {
2826 font-family: "Font Awesome", "Font Awesome 5 Free";
2827 margin-right: 3px;
2829 .new-comment-button {
2830 font-size: 1.5rem;
2831 margin: 0 0.25em;
2833 .comment-controls .reply-button::before {
2834 content: '\F3E5';
2835 font-weight: 900;
2836 font-size: 0.9em;
2837 opacity: 0.6;
2839 .comment-meta .replied::before {
2840 content: '\F3E5';
2841 font-family: "Font Awesome", "Font Awesome 5 Free";
2842 color: #9740cb;
2843 font-weight: 900;
2844 font-size: 0.9em;
2845 opacity: 0.6;
2848 .post-controls {
2849 text-align: right;
2850 margin: 0.75em 0 0 0;
2851 align-self: start;
2852 justify-self: end;
2854 .edit-post-link {
2855 display: inline-block;
2856 margin-bottom: 0.25em;
2857 font-size: 1.125rem;
2859 .edit-post-link::before {
2860 margin-right: 0.3em;
2862 .comment-controls .edit-button::before,
2863 .edit-post-link::before {
2864 content: '\F303';
2865 font-family: "Font Awesome", "Font Awesome 5 Free";
2866 font-weight: 900;
2867 font-size: 0.75em;
2868 position: relative;
2869 top: -1px;
2872 .comment-controls .delete-button {
2873 margin-right: 0.25em;
2875 .comment-controls .edit-button,
2876 .comment-controls .retract-button,
2877 .comment-controls .unretract-button {
2878 margin-right: 1em;
2880 .comment-controls .retract-button::before {
2881 content: '\F4B3';
2882 opacity: 0.6;
2884 .comment-controls .unretract-button::before {
2885 content: '\F075';
2886 opacity: 0.9;
2888 .comment-controls .delete-button::before {
2889 content: '\F05E';
2890 opacity: 0.7;
2892 .comment-controls .retract-button::before,
2893 .comment-controls .unretract-button::before,
2894 .comment-controls .delete-button::before {
2895 font-weight: 900;
2896 font-size: 0.9em;
2899 .comment-controls form {
2900 position: relative;
2902 .textarea-container {
2903 position: relative;
2905 .posting-controls textarea {
2906 display: block;
2907 width: 100%;
2908 height: 15em;
2909 min-height: 15em;
2910 max-height: calc(100vh - 6em);
2911 margin: 2px 0 0 0;
2912 padding: 4px 5px;
2913 font-size: 1.2rem;
2914 border-style: solid;
2915 border-width: 29px 1px 1px 1px;
2916 resize: none;
2919 /* GUIEdit buttons */
2921 .guiedit-buttons-container {
2922 position: absolute;
2923 left: 1px;
2924 top: 1px;
2925 width: calc(100% - 2px);
2926 height: 28px;
2927 text-align: left;
2928 padding: 1px 4px 0 4px;
2929 overflow: hidden;
2931 .comment-thread-page .guiedit-buttons-container {
2932 padding-right: 60px;
2934 .guiedit-buttons-container button {
2935 height: 26px;
2936 padding: 0 7px;
2937 font-weight: 900;
2938 font-size: 0.875rem;
2939 line-height: 1;
2940 position: static;
2942 .guiedit-buttons-container button:active {
2943 transform: none;
2945 .guiedit-buttons-container button:active div {
2946 transform: scale(0.9);
2948 .guiedit-buttons-container button sup {
2949 font-weight: bold;
2951 .guiedit::after {
2952 content: attr(data-tooltip);
2953 position: absolute;
2954 font-weight: normal;
2955 font-size: 1rem;
2956 top: 2px;
2957 left: 464px;
2958 height: 25px;
2959 padding: 4px 0;
2960 white-space: nowrap;
2961 visibility: hidden;
2963 .guiedit:hover::after {
2964 visibility: visible;
2967 /* Markdown hints */
2969 .posting-controls .markdown-reference-link {
2970 float: left;
2971 padding: 1px 0 0 6px;
2973 .posting-controls .markdown-reference-link a {
2974 padding-right: 1.5em;
2975 margin-right: 0.15em;
2976 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');
2977 background-size: 1.25em;
2978 background-repeat: no-repeat;
2979 background-position: right center;
2982 #markdown-hints-checkbox + label {
2983 float: left;
2984 margin: 2px 0 0 1em;
2985 line-height: 1.3;
2986 cursor: pointer;
2988 #edit-post-form #markdown-hints-checkbox + label {
2989 padding: 0;
2991 #markdown-hints-checkbox {
2992 visibility: hidden;
2993 float: left;
2995 #markdown-hints-checkbox + label::after {
2996 content: "(Show Markdown help)";
2998 #markdown-hints-checkbox:checked + label::after {
2999 content: "(Hide Markdown help)";
3001 #markdown-hints-checkbox + label::before {
3002 content: '\F059';
3003 font-family: "Font Awesome", "Font Awesome 5 Free";
3004 font-weight: 900;
3005 margin-right: 3px;
3007 #markdown-hints-checkbox:checked + label::before {
3008 font-weight: normal;
3010 #markdown-hints {
3011 margin: 4px 0 0 4px;
3012 padding: 4px 8px;
3013 position: absolute;
3014 text-align: left;
3015 top: calc(100% - 1em);
3016 z-index: 1;
3017 display: none;
3019 .comment-controls #markdown-hints {
3020 top: calc(100% + 1.75em);
3022 #markdown-hints-checkbox:checked ~ #markdown-hints {
3023 display: table;
3025 .markdown-hints-row {
3026 display: table-row;
3028 #markdown-hints .markdown-hints-row span,
3029 #markdown-hints .markdown-hints-row code {
3030 float: none;
3031 display: table-cell;
3032 border: none;
3033 background-color: inherit;
3034 padding: 0 12px 0 0;
3037 /******************/
3038 /* EDIT POST FORM */
3039 /******************/
3041 #edit-post-form {
3042 padding: 1em 1em 4em 1em;
3044 #edit-post-form .post-meta-fields {
3045 display: grid;
3046 grid-template-columns: 5em auto auto auto 1fr auto;
3047 margin-bottom: 0.625em;
3050 #edit-post-form label[for='title'],
3051 #edit-post-form label[for='url'],
3052 #edit-post-form label[for='section'] {
3053 grid-column: 1;
3055 #edit-post-form input[type='text'] {
3056 padding: 0.25em;
3057 grid-column: 2 / span 4;
3058 margin-bottom: 0.5em;
3061 #edit-post-form .link-post-checkbox,
3062 #edit-post-form .link-post-checkbox + label {
3063 grid-row: 1;
3064 grid-column: 6;
3066 #edit-post-form .question-checkbox,
3067 #edit-post-form .question-checkbox + label {
3068 grid-row: 3;
3069 grid-column: 5;
3070 justify-self: start;
3071 margin-left: 1.5em;
3074 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3075 grid-row: 4;
3076 grid-column: 2 / span 4;
3077 text-align: left;
3078 margin-top: 8px;
3081 #edit-post-form .post-meta-fields input[type='checkbox'] {
3082 height: 0;
3083 opacity: 0;
3084 pointer-events: none;
3086 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3087 white-space: nowrap;
3088 position: relative;
3089 cursor: pointer;
3090 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3091 align-self: start;
3093 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3094 content: "";
3095 font-family: "Font Awesome", "Font Awesome 5 Free";
3096 font-size: 1.375rem;
3097 line-height: 0.7;
3098 text-indent: 1px;
3099 font-weight: 900;
3100 position: absolute;
3101 width: 20px;
3102 height: 20px;
3103 left: 5px;
3105 #edit-post-form label[for='url'],
3106 #edit-post-form input[name='url'] {
3107 display: none;
3109 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3110 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3111 display: initial;
3113 #edit-post-form label {
3114 line-height: normal;
3115 border: 1px solid transparent;
3116 text-align: right;
3117 padding: 0.25em 0.5em;
3118 white-space: nowrap;
3120 #edit-post-form input[type='radio'] {
3121 width: 0;
3122 margin: 0;
3123 opacity: 0;
3124 pointer-events: none;
3126 #edit-post-form input[type='radio'] + label {
3127 padding: 4px 12px;
3128 text-align: center;
3129 border-style: solid;
3130 border-width: 1px 1px 1px 0;
3131 cursor: pointer;
3133 #edit-post-form input[type='radio']:checked + label {
3134 cursor: default;
3137 #edit-post-form label[for='section'] {
3138 grid-row: 3;
3140 #edit-post-form input[type='radio'] + label {
3141 grid-row: 3;
3143 @supports (width: -moz-fit-content) {
3144 #edit-post-form input[type='radio'] + label {
3145 width: -moz-fit-content;
3148 @supports (width: fit-content) {
3149 #edit-post-form input[type='radio'] + label {
3150 width: fit-content;
3154 #edit-post-form textarea {
3155 min-height: 24em;
3158 #edit-post-form input[type='submit'] {
3159 padding: 6px 12px;
3160 float: right;
3162 #edit-post-form #markdown-hints {
3163 top: calc(100% + 2em);
3166 #edit-post-form button.guiedit div {
3167 overflow: visible;
3169 .guiedit-mobile-auxiliary-button {
3170 display: none;
3173 /***********/
3174 /* BUTTONS */
3175 /***********/
3177 button,
3178 input[type='submit'] {
3179 font-family: inherit;
3180 font-size: inherit;
3181 background-color: inherit;
3182 cursor: pointer;
3183 border: none;
3184 border-radius: 0;
3187 /************/
3188 /* HEADINGS */
3189 /************/
3191 .body-text h1,
3192 .body-text h2,
3193 .body-text h3,
3194 .body-text h4,
3195 .body-text h5,
3196 .body-text h6 {
3197 line-height: 1.1;
3198 margin: 1em 0 0.75em 0;
3199 text-align: left;
3202 .post-body h5,
3203 .post-body h6 {
3204 font-size: 1em;
3206 .post-body h4 {
3207 font-size: 1.2em;
3209 .post-body h3 {
3210 font-size: 1.4em;
3212 .post-body h2 {
3213 font-size: 1.75em;
3215 .post-body h1 {
3216 font-size: 2.1em;
3219 .comment-body h5,
3220 .comment-body h6 {
3221 font-size: 1em;
3223 .comment-body h4 {
3224 font-size: 1.15em;
3226 .comment-body h3 {
3227 font-size: 1.3em;
3229 .comment-body h2 {
3230 font-size: 1.5em;
3232 .comment-body h1 {
3233 font-size: 1.75em;
3236 /**********/
3237 /* QUOTES */
3238 /**********/
3240 blockquote,
3241 .post-body .comment-box .comment-body {
3242 font-size: 0.9em;
3243 margin: 1em 0;
3244 padding-left: 0.5em;
3245 margin-left: 1px;
3246 padding-bottom: 3px;
3248 blockquote *:first-child {
3249 margin-top: 0;
3251 blockquote *:last-child {
3252 margin-bottom: 0;
3254 blockquote blockquote {
3255 font-size: 0.95em;
3258 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3260 .post-body .comment-box .user-name {
3261 font-style: italic;
3263 .post-body .comment-box .user-name::after {
3264 content: ":";
3266 .post-body .comment-box {
3267 zoom: 1.25;
3270 /**********/
3271 /* IMAGES */
3272 /**********/
3274 #content img {
3275 max-width: 100%;
3278 img.inline-latex {
3279 position: relative;
3280 top: 2.5px;
3281 margin: 0 2px;
3284 #content figure {
3285 text-align: center;
3286 margin: 1.5em auto;
3289 p.imgonly,
3290 div.imgonly,
3291 figure {
3292 text-align: center;
3293 margin: auto;
3294 clear: both;
3297 .imgonly iframe {
3298 display: block;
3299 width: 100%;
3300 height: 250px;
3301 border: 0;
3304 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3306 [style*="--aspect-ratio"] > * {
3307 width: 100%;
3309 [style*="--aspect-ratio"] > img {
3310 height: auto;
3312 @supports (--custom:property) {
3313 [style*="--aspect-ratio"] {
3314 position: relative;
3316 [style*="--aspect-ratio"]::before {
3317 content: "";
3318 display: block;
3319 padding-bottom: calc(100% / (var(--aspect-ratio)));
3321 [style*="--aspect-ratio"] > * {
3322 position: absolute;
3323 top: 0;
3324 left: 0;
3325 height: 100%;
3329 /**********/
3330 /* TABLES */
3331 /**********/
3333 .body-text table {
3334 border-collapse: collapse;
3335 font-family: Inconsolata, Menlo, monospace;
3336 font-size: 0.875em;
3338 .body-text table th,
3339 .body-text table td {
3340 text-align: left;
3341 padding: 4px 6px;
3342 line-height: 1.3;
3344 .body-text table caption {
3345 margin: 0 0 0.25em 0;
3346 font-weight: bold;
3347 font-size: 1.125em;
3350 /********/
3351 /* MISC */
3352 /********/
3354 /*= Superscripts & subscripts =*/
3356 /* Make sure superscripts and subscripts do not affect line spacing. */
3357 sup, sub {
3358 vertical-align: baseline;
3359 position: relative;
3360 top: -0.5em;
3361 left: 0.05em;
3362 font-size: 0.8em;
3364 sub {
3365 top: 0.3em;
3368 /*= Code blocks & other "unstyled" text. =*/
3370 pre,
3371 code {
3372 font-family: Inconsolata, Menlo, monospace;
3374 pre {
3375 white-space: pre-wrap;
3377 .body-text pre {
3378 text-align: left;
3380 code {
3381 font-size: 0.95em;
3382 display: inline-block;
3383 padding: 0 4px 1px 5px;
3385 pre > code {
3386 display: block;
3387 border-radius: 0;
3388 padding: 3px 4px 5px 8px;
3391 /*= Fractions =*/
3393 .frac::after {
3394 content: "\200B";
3397 /*= Removing browser default styling of various elements =*/
3399 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3400 :focus {
3401 outline: none;
3404 /* Remove "embossed" appearance of horizontal rules. */
3405 hr {
3406 border: none;
3409 input,
3410 button,
3411 textarea {
3412 -webkit-appearance: none;
3413 -moz-appearance: none;
3414 appearance: none;
3417 input {
3418 font-family: inherit;
3419 font-size: inherit;
3420 font-weight: inherit;
3423 /*************/
3424 /* FOOTNOTES */
3425 /*************/
3427 ol {
3428 counter-reset: ordered-list;
3430 .footnote-definition {
3431 font-size: 0.9em;
3432 list-style-type: none;
3433 counter-increment: ordered-list;
3434 position: relative;
3436 .footnote-definition p {
3437 font-size: inherit !important;
3439 .footnote-definition::before {
3440 content: counter(ordered-list) ".";
3441 position: absolute;
3442 left: -2.5em;
3443 font-weight: bold;
3444 text-align: right;
3445 width: 2em;
3448 /*********/
3449 /* LISTS */
3450 /*********/
3452 li {
3453 margin-bottom: 0.5em;
3456 .body-text ol p,
3457 .body-text ul p {
3458 margin: 0.5em 0;
3461 .body-text ol {
3462 list-style: none;
3463 padding: 0;
3464 counter-reset: ol;
3466 .body-text ol > li {
3467 position: relative;
3468 counter-increment: ol;
3469 padding: 0 0 0 2.5em;
3470 margin: 0.25em 0 0 0;
3472 .body-text ol > li::before {
3473 content: counter(ol) ".";
3474 position: absolute;
3475 width: 2em;
3476 text-align: right;
3477 left: 0;
3479 .body-text ul {
3480 list-style: none;
3481 padding: 0;
3483 .body-text ul:not(.contents-list) > li:empty {
3484 padding-bottom: 1.25em;
3486 .body-text ul:not(.contents-list) > li {
3487 position: relative;
3488 padding: 0 0 0 1.75em;
3489 margin: 0.25em 0 0 0;
3491 .body-text ul:not(.contents-list) > li ul > li {
3492 padding: 0 0 0 2em;
3494 .body-text ul:not(.contents-list) > li::before {
3495 content: "•";
3496 position: absolute;
3497 width: 1.25em;
3498 text-align: right;
3499 left: 0;
3501 .body-text ul:not(.contents-list) > li ul > li::before {
3502 width: 1.5em;
3504 .body-text li > ul:first-child > li {
3505 padding-left: 0;
3507 .body-text li > ul:first-child > li::before {
3508 content: none;
3511 /**************/
3512 /* ERROR PAGE */
3513 /**************/
3515 .error-retry-form {
3516 margin: 0.5em 0;
3519 .error-retry-form input[type="submit"] {
3520 border: 1px solid #484848;
3521 font-weight: bold;
3522 font-size: 1.125rem;
3523 padding: 0.5em 1.25em;
3526 /**************/
3527 /* ABOUT PAGE */
3528 /**************/
3530 #content.about-page .contents {
3531 margin-top: 0.25em;
3533 #content.about-page .accesskey-table {
3534 border-collapse: collapse;
3535 margin: auto;
3537 #content.about-page .accesskey-table th,
3538 #content.about-page .accesskey-table td {
3539 padding: 2px 6px;
3541 #content.about-page .accesskey-table td:first-child {
3542 padding-right: 1.5em;
3544 #content.about-page .accesskey-table td:last-child {
3545 text-align: center;
3546 font-family: Inconsolata, Menlo, monospace;
3548 #content.about-page h3:nth-of-type(n+2) {
3549 clear: both;
3552 /******************/
3553 /* IMAGES OVERLAY */
3554 /******************/
3556 #images-overlay + #content .post-body img {
3557 visibility: hidden;
3560 #images-overlay div {
3561 position: absolute;
3563 #images-overlay div::after {
3564 content: "Click to enlarge";
3565 display: block;
3566 position: absolute;
3567 margin: auto;
3568 left: 0;
3569 right: 0;
3570 bottom: 10px;
3571 padding: 6px 10px;
3572 font-size: 1.25rem;
3573 background-color: rgba(255, 255, 255, 0.6);
3574 color: #000;
3575 border-radius: 5px;
3576 opacity: 0.0;
3577 transition: opacity 0.15s ease;
3578 pointer-events: none;
3580 @supports (width: -moz-fit-content) {
3581 #images-overlay div::after {
3582 width: -moz-fit-content;
3585 @supports (width: fit-content) {
3586 #images-overlay div::after {
3587 width: fit-content;
3590 #images-overlay div:hover::after {
3591 opacity: 1.0;
3594 #images-overlay img {
3595 width: 100%;
3598 /***************/
3599 /* IMAGE FOCUS */
3600 /***************/
3602 /*=--------------=*/
3603 /*= Hover styles =*/
3604 /*=--------------=*/
3606 #content img:hover,
3607 #images-overlay img:hover {
3608 filter: drop-shadow(0 0 3px #777);
3609 cursor: zoom-in;
3611 #content img:active,
3612 #images-overlay img:active {
3613 transform: scale(0.975);
3616 /*=---------=*/
3617 /*= Overlay =*/
3618 /*=---------=*/
3620 #image-focus-overlay {
3621 position: fixed;
3622 top: 0;
3623 right: 0;
3624 bottom: 0;
3625 left: 0;
3626 z-index: 2;
3627 display: none;
3628 cursor: zoom-out;
3630 #image-focus-overlay::before {
3631 content: "";
3632 display: block;
3633 position: absolute;
3634 top: 0;
3635 right: 0;
3636 bottom: 0;
3637 left: 0;
3638 background-color: #fff;
3639 opacity: 0.5;
3640 z-index: -1;
3642 #image-focus-overlay.engaged {
3643 display: initial;
3646 #image-focus-overlay img {
3647 margin: auto;
3648 position: absolute;
3649 left: 50%;
3650 top: 50%;
3651 transform: translateX(-50%) translateY(-50%);
3654 /*=-------------------=*/
3655 /*= Single-image mode =*/
3656 /*=-------------------=*/
3658 #image-focus-overlay:not(.slideshow) .image-number,
3659 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3660 visibility: hidden;
3663 /*=---------=*/
3664 /*= Caption =*/
3665 /*=---------=*/
3667 #image-focus-overlay .caption {
3668 position: absolute;
3669 bottom: 0.75em;
3670 background-color: rgba(255, 255, 255, 0.7);
3671 left: 9em;
3672 right: 9em;
3673 margin: auto;
3674 max-width: calc(100% - 18em);
3675 text-align: center;
3676 font-size: 1.375em;
3677 border-radius: 8px;
3678 z-index: 1;
3679 transition:
3680 bottom 0.2s ease;
3682 @supports (width: -moz-fit-content) {
3683 #image-focus-overlay .caption {
3684 width: -moz-fit-content;
3687 @supports (width: fit-content) {
3688 #image-focus-overlay .caption {
3689 width: fit-content;
3692 #image-focus-overlay .caption.hidden {
3693 bottom: -5em;
3694 transition:
3695 bottom 0.5s ease;
3698 #image-focus-overlay .caption p {
3699 margin: 1em 1.25em;
3700 color: #000;
3703 #image-focus-overlay .caption:not(:empty)::before {
3704 content: "";
3705 display: block;
3706 position: absolute;
3707 width: 100vw;
3708 height: calc(100% + 1.5em);
3709 z-index: -1;
3710 top: -0.75em;
3711 left: calc(-50vw + 50%);
3715 /*=--------------=*/
3716 /*= Help overlay =*/
3717 /*=--------------=*/
3719 #image-focus-overlay .help-overlay {
3720 position: absolute;
3721 display: flex;
3722 flex-flow: column;
3723 z-index: 2;
3724 font-size: 1.5rem;
3725 padding: 1em;
3726 border-radius: 10px;
3727 bottom: 1em;
3728 right: 1em;
3729 overflow: hidden;
3730 white-space: nowrap;
3731 color: transparent;
3732 cursor: default;
3733 visibility: hidden;
3734 transition:
3735 visibility 1s ease,
3736 color 1s ease,
3737 background-color 1s ease,
3738 bottom 0.3s ease;
3740 #image-focus-overlay .help-overlay:hover {
3741 max-width: 24em;
3742 max-height: 14em;
3743 background-color: rgba(255, 255, 255, 0.85);
3744 color: #000;
3745 visibility: visible;
3746 transition:
3747 visibility 0.2s ease 0.3s,
3748 color 0.2s ease 0.3s,
3749 background-color 0.2s ease 0.3s;
3752 #image-focus-overlay .help-overlay::after {
3753 content: "\F128";
3754 font-family: "Font Awesome", "Font Awesome 5 Free";
3755 font-weight: 900;
3756 font-size: 2rem;
3757 position: absolute;
3758 right: 0;
3759 bottom: 0;
3760 padding: 10px;
3761 color: #fff;
3762 filter: drop-shadow(0 0 6px #fff);
3763 visibility: visible;
3764 opacity: 0.85;
3765 transition:
3766 visibility 1s ease;
3768 #image-focus-overlay .help-overlay:hover::after {
3769 visibility: hidden;
3770 transition:
3771 visibility 0.2s ease 0.3s;
3774 #image-focus-overlay .help-overlay p {
3775 margin: 0;
3776 text-indent: -2em;
3777 padding-left: 2em;
3778 max-width: 100%;
3779 overflow: hidden;
3781 #image-focus-overlay .help-overlay p + p {
3782 margin: 0.75em 0 0 0;
3784 #image-focus-overlay .help-overlay.hidden {
3785 bottom: -2em;
3788 /*=--------------=*/
3789 /*= Slide number =*/
3790 /*=--------------=*/
3792 #image-focus-overlay .image-number {
3793 position: absolute;
3794 z-index: 2;
3795 font-size: 1.75rem;
3796 left: 1em;
3797 bottom: 1em;
3798 font-weight: 600;
3799 text-shadow:
3800 0 0 3px #000,
3801 0 0 5px #000,
3802 0 0 8px #000,
3803 0 0 13px #000;
3804 width: 1.5em;
3805 text-align: right;
3806 white-space: nowrap;
3807 transition: bottom 0.3s ease;
3809 #image-focus-overlay .image-number::before {
3810 content: "#";
3811 opacity: 0.3;
3813 #image-focus-overlay .image-number::after {
3814 content: " of " attr(data-number-of-images);
3815 opacity: 0.3;
3817 #image-focus-overlay .image-number:hover::before,
3818 #image-focus-overlay .image-number:hover::after {
3819 opacity: 1.0;
3821 #image-focus-overlay .image-number.hidden {
3822 bottom: -1.25em;
3825 /*=-------------------=*/
3826 /*= Slideshow buttons =*/
3827 /*=-------------------=*/
3829 #image-focus-overlay .slideshow-buttons {
3830 position: absolute;
3831 top: 0;
3832 left: 0;
3833 width: 100%;
3834 height: 100%;
3835 z-index: 1;
3836 display: flex;
3837 justify-content: space-between;
3838 pointer-events: none;
3840 #image-focus-overlay .slideshow-buttons button {
3841 font-family: "Font Awesome", "Font Awesome 5 Free";
3842 font-weight: 900;
3843 font-size: 3rem;
3844 padding: 0.5em;
3845 color: #1f1f1f;
3846 position: relative;
3847 left: 0;
3848 transition:
3849 left 0.3s ease;
3850 pointer-events: auto;
3852 #image-focus-overlay .slideshow-buttons button::selection {
3853 background-color: transparent;
3855 @media only screen and (hover: hover) {
3856 #image-focus-overlay .slideshow-buttons button:hover {
3857 background-color: rgba(255, 255, 255, 0.1);
3858 color: #777;
3861 #image-focus-overlay .slideshow-buttons button:active {
3862 transform: none;
3863 color: #666;
3865 #image-focus-overlay .slideshow-buttons button:disabled {
3866 text-shadow: none;
3867 background-color: transparent;
3868 color: #1f1f1f;
3869 cursor: default;
3870 opacity: 0.4;
3872 #image-focus-overlay .slideshow-button.previous.hidden {
3873 left: -1.75em;
3875 #image-focus-overlay .slideshow-button.next.hidden {
3876 left: 1.75em;
3879 /*=-----------------=*/
3880 /*= Background blur =*/
3881 /*=-----------------=*/
3883 .blurred {
3884 filter: blur(3px);
3887 /**************************/
3888 /* QUALIFIED HYPERLINKING */
3889 /**************************/
3891 #content.no-nav-bars {
3892 margin: 8px auto;
3894 #content.no-nav-bars + #ui-elements-container > * {
3895 padding-top: 8px;
3898 #aux-about-link {
3899 position: fixed;
3900 top: 40px;
3901 left: calc((100% - 900px) / 2 - 69px);
3902 width: 1.5em;
3903 height: 1.5em;
3904 text-align: center;
3905 display: table;
3907 #aux-about-link a {
3908 display: table-cell;
3909 width: 100%;
3910 vertical-align: middle;
3911 font-family: "Font Awesome", "Font Awesome 5 Free";
3912 font-weight: 900;
3913 font-size: 1.25rem;
3914 opacity: 0.4;
3915 z-index: 1;
3918 .qualified-linking {
3919 margin: 0;
3920 position: relative;
3922 .qualified-linking input[type='checkbox'] {
3923 visibility: hidden;
3924 width: 0;
3925 height: 0;
3926 margin: 0;
3928 .qualified-linking label {
3929 font-family: "Font Awesome", "Font Awesome 5 Free";
3930 font-weight: 900;
3931 font-size: 1rem;
3932 padding: 0 0.5em;
3933 display: inline-block;
3934 margin-left: 0.25em;
3936 .qualified-linking label:hover {
3937 cursor: pointer;
3939 .qualified-linking label:active span {
3940 display: inline-block;
3941 transform: scale(0.9);
3943 .qualified-linking label::selection {
3944 background-color: transparent;
3947 .qualified-linking label::after {
3948 content: "";
3949 width: 100vw;
3950 height: 0;
3951 left: 0;
3952 top: 0;
3953 position: fixed;
3954 z-index: 1;
3955 cursor: default;
3957 .qualified-linking input[type='checkbox']:checked + label::after {
3958 height: 100vh;
3961 .qualified-linking-toolbar {
3962 position: absolute;
3963 right: 0.25em;
3964 top: 110%;
3965 z-index: 1;
3967 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3968 display: none;
3970 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3971 display: block;
3973 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3974 top: unset;
3975 bottom: 125%;
3978 .qualified-linking-toolbar a {
3979 display: block;
3980 padding: 0 6px;
3981 margin: 4px;
3983 .qualified-linking-toolbar a::selection {
3984 background-color: transparent;
3987 /*****************/
3988 /* HOVER PREVIEW */
3989 /*****************/
3991 #preview-popup-toggle {
3992 position: absolute;
3993 right: -67px;
3994 bottom: 285px;
3995 cursor: pointer;
3996 color: var(--GW-toggle-widget-color, #888);
3998 #preview-popup-toggle:hover {
3999 color: var(--GW-toggle-widget-hover-color, #444);
4002 #content.preview:not(not) {
4003 padding: 0;
4005 #content.preview > .comment-thread {
4006 margin: 2px;
4008 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4009 border: none;
4011 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4012 padding: 0 8px;
4014 #content.preview.user-page .page-main-heading {
4015 margin-left: 8px;
4017 #content.preview.not(not) .body-text {
4018 margin-left: 8px;
4019 margin-right: 8px;
4021 #content.preview.user-page .user-stats {
4022 margin-right: 32px;
4024 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4025 display: none;
4027 #content.preview button.vote {
4028 display: none;
4030 #content.preview > h1.listing {
4031 max-height: unset;
4033 #content.preview.user-page > .comment-thread {
4034 margin: 0.5em 0;
4036 #content.preview > .post {
4037 margin: 0 18px;
4039 #content.preview .post-title {
4040 margin-top: 0.5em;
4042 #content.preview .post-meta {
4043 line-height: 1.0;
4045 #content.preview .body-text {
4046 font-size: 1em;
4048 #content.preview nav.contents,
4049 #content.preview .lw2-link {
4050 display: none;
4053 .preview-popup {
4054 position: fixed;
4055 transform-origin: top;
4056 top: 10%;
4057 right: 10%;
4058 max-width: 700px;
4059 z-index: 10001;
4060 background-color: #131313;
4061 border: 1px solid #2c2c2c;
4062 box-shadow: 2px 6px 20px -4px #fff;
4063 transition: height 0.2s ease, top 0.2s ease;
4065 .popup-hide-button {
4066 position: fixed;
4067 top: 4px;
4068 right: 4px;
4069 color: #fff;
4070 background-color: #000;
4071 width: 28px;
4072 height: 28px;
4073 display: flex;
4074 font-family: "Font Awesome";
4075 font-size: 14px;
4076 line-height: 1;
4077 border: 1px solid #393939;
4078 border-radius: 28px;
4079 align-items: center;
4080 justify-content: center;
4081 //padding-bottom: 2px;
4082 padding-left: 1.5px;
4083 font-family: "Font Awesome", "Font Awesome 5 Free";
4084 cursor: pointer;
4086 .popup-hide-button:hover::before {
4087 content: "Turn off preview popups";
4088 display: block;
4089 position: absolute;
4090 width: max-content;
4091 right: 32px;
4092 color #fff;
4093 background-color: #000;
4094 border: 1px solid #131313;
4095 border-radius: 2px;
4096 padding: 4px;
4099 /********/
4100 /* MATH */
4101 /********/
4103 .mathjax-block-container {
4104 display: block;
4105 overflow-y: hidden;
4106 border-radius: 6px;
4107 margin: 1em 0 1.5em 0;
4109 .mathjax-inline-container {
4110 max-width: 100%;
4111 display: inline-block;
4112 overflow-x: auto;
4113 overflow-y: hidden;
4114 position: relative;
4115 vertical-align: text-top;
4116 padding: 0 1px;
4118 .post .mathjax-inline-container {
4119 line-height: 1.1;
4120 top: 2px;
4122 .comment .mathjax-inline-container {
4123 top: 3px;
4124 line-height: 1;
4126 .mathjax-inline-container .mjx-chtml {
4127 padding: 0;
4130 /************/
4131 /* SPOILERS */
4132 /************/
4134 .spoiler {
4135 color: #fff;
4136 background-color: currentColor;
4137 transition: none;
4138 text-shadow: none;
4139 margin: 1em 0;
4140 box-shadow: 0 0 0 1px currentColor inset;
4141 overflow: auto;
4143 .spoiler:not(:last-child) {
4144 margin-bottom: 0;
4146 #content .spoiler * {
4147 color: inherit;
4148 border: none;
4150 .spoiler:hover {
4151 color: unset;
4152 background-color: unset;
4153 text-shadow: unset;
4154 transition:
4155 color 0.1s ease-out 0.1s,
4156 background-color 0.1s ease-out 0.1s,
4157 text-shadow 0.1s ease-out 0.1s;
4159 .spoiler::selection,
4160 .spoiler ::selection {
4161 color: #000;
4162 background-color: #fff;
4164 .spoiler:not(:hover)::selection,
4165 .spoiler:not(:hover) ::selection {
4166 background-color: transparent;
4169 /*= Fix for LessWrong being weird =*/
4171 .spoiler > p {
4172 padding: 0 7px;
4174 .spoiler > p:first-child {
4175 margin-top: 0.25em;
4177 .spoiler > p:last-child {
4178 margin-bottom: 0;
4179 padding-bottom: 0.25em;
4181 .spoiler > p:hover ~ p {
4182 background-color: currentColor;
4184 .spoiler > p + p {
4185 margin-top: -1em;
4187 .spoiler > p:not(:first-child) {
4188 padding-top: 0.5em;
4190 .spoiler > p:not(:last-child) {
4191 padding-bottom: 0.5em;
4194 .spoiler:not(:hover) pre,
4195 .spoiler:not(:hover) code {
4196 background-color: inherit;
4197 box-shadow: none;
4199 #content .spoiler pre {
4200 border-color: currentColor;
4201 border-style: solid;
4202 border-width: 0 1px;
4203 border-radius: 0;
4206 /*******************/
4207 /* PAGE LIST INDEX */
4208 /*******************/
4210 .page-list-index {
4211 margin: 1em 30px;
4212 line-height: 1.2;
4215 .page-list-index > p {
4216 font-weight: bold;
4217 font-size: 1.2em;
4220 .page-list-index > ul * {
4221 margin: 0;
4224 .page-list-index ul {
4225 padding-left: 1.5em;
4228 .page-list-index li {
4229 margin-top: 0.67em;
4232 .page-list-index li > a {
4233 display: block;
4234 font-size: 1.1em;
4235 font-weight: bold;
4236 margin: 0.33em 0;
4239 .page-list-index li > a:last-child {
4240 margin-bottom: 1em;
4243 /*******************/
4244 /* ALIGNMENT FORUM */
4245 /*******************/
4247 #content.alignment-forum-index-page::after {
4248 content: "Alignment Forum";
4249 font-size: 1.5rem;
4250 margin: 0.375em 0 0 -0.375em;
4251 order: -1;
4254 /**********************/
4255 /* FOR NARROW SCREENS */
4256 /**********************/
4258 @media only screen and (max-width: 1440px) {
4259 #hns-date-picker {
4260 right: -81px;
4261 padding: 8px 10px 10px 10px;
4262 bottom: 62px;
4263 display: none;
4265 #hns-date-picker::before {
4266 content: "";
4267 position: absolute;
4268 display: block;
4269 z-index: -1;
4270 height: calc(100% + 2px);
4271 top: -1px;
4272 left: -1px;
4273 width: 50%;
4276 @media only screen and (max-width: 1160px) {
4277 #new-comment-nav-ui {
4278 bottom: 180px;
4279 right: -68px;
4281 #hns-date-picker {
4282 bottom: 200px;
4283 right: -36px;
4285 #hns-date-picker::before {
4286 width: calc(100% - 35px);
4288 #theme-selector button::before {
4289 right: unset;
4290 left: 100%;
4292 #theme-selector:hover::after {
4293 content: "";
4294 display: block;
4295 position: absolute;
4296 width: calc(6em - 7px);
4297 height: calc(100% + 2px);
4298 top: 0;
4299 left: calc(100% + 1px);
4301 #anti-kibitzer-toggle {
4302 bottom: 330px;
4305 @media only screen and (max-width: 1080px) {
4306 #width-selector {
4307 right: -30px;
4309 #width-selector button {
4310 display: block;
4312 #text-size-adjustment-ui {
4313 top: 90px;
4314 right: -30px;
4316 #text-size-adjustment-ui button {
4317 display: block;
4318 position: relative;
4320 #text-size-adjustment-ui button.increase {
4321 bottom: 48px;
4323 #text-size-adjustment-ui button.decrease {
4324 top: 50px;
4326 #theme-selector {
4327 top: 46px;
4328 left: -44px;
4330 #theme-tweaker-toggle {
4331 left: -44px;
4332 top: 2px;
4334 #theme-tweaker-toggle button {
4335 height: 2em;
4336 width: 2em;
4337 padding: 7px;
4339 #quick-nav-ui {
4340 right: -54px;
4342 #new-comment-nav-ui {
4343 right: -55px;
4345 #hns-date-picker {
4346 right: -23px;
4348 #hns-date-picker::before {
4349 width: calc(100% - 22px);
4351 #anti-kibitzer-toggle {
4352 right: -54px;
4355 @media only screen and (max-width: 1040px) {
4356 #quick-nav-ui {
4357 right: -49px;
4359 #new-comment-nav-ui {
4360 right: -50px;
4362 #hns-date-picker {
4363 right: -18px;
4365 #hns-date-picker::before {
4366 width: calc(100% - 17px);
4368 #anti-kibitzer-toggle {
4369 right: -50px;
4372 @media only screen and (max-width: 1020px) {
4373 #quick-nav-ui {
4374 right: -20px;
4376 #new-comment-nav-ui {
4377 right: -21px;
4379 #new-comment-nav-ui .new-comments-count::before {
4380 content: "";
4381 position: absolute;
4382 width: 100%;
4383 height: calc(100% + 45px);
4384 z-index: -1;
4385 left: 0;
4386 top: -22px;
4388 #hns-date-picker {
4389 right: 19px;
4391 #hns-date-picker::before {
4392 width: 100%;
4394 #anti-kibitzer-toggle {
4395 right: -20px;
4398 @media only screen and (max-width: 1000px) {
4399 #theme-selector {
4400 left: -17px;
4401 top: 120px;
4402 padding: 3px 0;
4403 max-width: 32px;
4405 #theme-selector button {
4406 margin: 1px 4px;
4408 #text-size-adjustment-ui {
4409 top: 100px;
4410 right: -12px;
4412 @media not screen and (hover: none) {
4413 #quick-nav-ui,
4414 #new-comment-nav-ui,
4415 #new-comment-nav-ui + #hns-date-picker,
4416 #anti-kibitzer-toggle {
4417 opacity: 0.4;
4419 #quick-nav-ui:hover,
4420 #new-comment-nav-ui:hover,
4421 #new-comment-nav-ui + #hns-date-picker:hover,
4422 #new-comment-nav-ui + #hns-date-picker:focus-within,
4423 #new-comment-nav-ui:hover + #hns-date-picker,
4424 #anti-kibitzer-toggle:hover {
4425 opacity: 1.0;
4428 #theme-tweaker-toggle {
4429 top: 70px;
4430 left: -21px;
4434 /**************/
4435 /* PRINT VIEW */
4436 /**************/
4438 @media only print {
4439 .nav-bar {
4440 visibility: hidden;
4441 max-height: 0;
4442 overflow: hidden;
4444 #ui-elements-container {
4445 display: none;
4447 #images-overlay {
4448 display: none;
4450 #images-overlay + #content .post-body img {
4451 visibility: visible;
4453 .comment-controls {
4454 display: none;
4456 #comments-sort-mode-selector {
4457 display: none;
4459 .comment-minimize-button {
4460 display: none;
4462 .post-meta .qualified-linking,
4463 .post-meta .lw2-link {
4464 display: none;
4466 .comment-meta .permalink,
4467 .comment-meta .lw2-link,
4468 .comment-meta .comment-parent-link {
4469 display: none;
4471 .new-comment::before {
4472 display: none;
4474 #content::before {
4475 box-shadow: none;
4479 /*****************/
4480 /* MOBILE LAYOUT */
4481 /*****************/
4483 /* Hide the mobile elements on desktop screens: */
4485 @media only screen and (max-width: 1160px) {
4486 #post-nav-ui-toggle,
4487 #appearance-adjust-ui-toggle {
4488 display: none;
4492 @media only screen and (max-width: 1160px) {
4494 /*====================*/
4495 /* MOBILE UI ELEMENTS */
4496 /*====================*/
4498 #ui-elements-container {
4499 height: unset !important;
4500 position: unset;
4502 #ui-elements-container > * {
4503 position: fixed;
4504 visibility: hidden;
4505 opacity: 1.0;
4506 z-index: 10000;
4509 #ui-elements-container > div[id$='-ui-toggle'] {
4510 visibility: visible;
4511 display: inline-block;
4512 border-radius: 50%;
4513 z-index: 10000;
4515 #ui-elements-container > div[id$='-ui-toggle'] button,
4516 #theme-selector .theme-selector-close-button {
4517 font-family: Font Awesome;
4518 font-weight: 900;
4519 font-size: 32px;
4520 padding: 10px;
4521 opacity: 0.8;
4522 -webkit-tap-highlight-color: transparent;
4523 transition: transform 0.2s ease;
4525 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4526 #theme-selector .theme-selector-close-button::selection {
4527 background-color: transparent;
4529 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4530 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4531 border: none;
4533 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4534 transform: rotate(-90deg);
4535 opacity: 1.0;
4538 #appearance-adjust-ui-toggle {
4539 bottom: 10px;
4540 left: 10px;
4543 #post-nav-ui-toggle {
4544 bottom: 10px;
4545 right: 10px;
4548 #theme-selector.engaged,
4549 #quick-nav-ui.engaged,
4550 #new-comment-nav-ui.engaged,
4551 #hns-date-picker.engaged {
4552 visibility: visible;
4555 #image-focus-overlay.engaged {
4556 visibility: visible;
4558 #image-focus-overlay .help-overlay {
4559 display: none;
4562 /*=========*/
4563 /* GENERAL */
4564 /*=========*/
4566 @media only screen and (max-width: 900px) {
4567 #content,
4568 #images-overlay,
4569 #ui-elements-container {
4570 min-width: unset;
4571 width: unset;
4573 #content {
4574 padding: 0 4px;
4578 /*================*/
4579 /* THEME SELECTOR */
4580 /*================*/
4582 #theme-selector {
4583 display: flex;
4584 flex-flow: column;
4585 background-color: #000;
4586 width: calc(100vw - 20px);
4587 max-width: 360px;
4588 padding: 0 0 3px 0;
4589 overflow: hidden;
4590 max-height: 0;
4591 transition:
4592 top 0.2s ease,
4593 max-height 0.2s ease,
4594 visibility 0.2s ease;
4595 top: calc(100% + 10px);
4596 left: 0;
4597 right: 0;
4598 margin: auto;
4600 #theme-selector.engaged {
4601 max-height: 1000px;
4602 top: 10px;
4603 z-index: 10001;
4605 #theme-selector::before {
4606 content: "Select theme";
4607 white-space: nowrap;
4608 display: block;
4609 font-weight: 600;
4610 font-size: 2rem;
4611 margin: 0.375em 1em 0.5em 1em;
4612 text-align: center;
4614 #theme-selector button {
4615 width: calc(100% - 0.5em);
4616 background-repeat: no-repeat;
4617 padding: 1em 0.875em;
4618 margin: 1px 4px;
4619 line-height: 1;
4620 height: unset;
4621 position: relative;
4623 #theme-selector button::after {
4624 content: attr(data-theme-description);
4625 color: #fff;
4626 white-space: nowrap;
4627 position: absolute;
4628 text-align: left;
4629 left: 2.5em;
4630 top: 1em;
4632 @media only screen and (max-height: 675px) {
4633 #theme-selector button {
4634 padding: 0.875em;
4636 #theme-selector button::after {
4637 top: 0.875em;
4640 #theme-selector .theme-selector-close-button {
4641 position: absolute;
4642 width: unset;
4643 background-color: transparent;
4644 top: 0;
4645 right: -3px;
4647 #theme-selector .theme-selector-close-button,
4648 #theme-selector .theme-selector-close-button:focus,
4649 #theme-selector .theme-selector-close-button:active,
4650 #theme-selector .theme-selector-close-button:hover {
4651 box-shadow: none;
4654 /*===============*/
4655 /* THEME TWEAKER */
4656 /*===============*/
4658 #theme-selector {
4659 padding: 0 0 64px 0;
4661 #theme-selector ~ #theme-tweaker-toggle {
4662 top: 100%;
4664 #theme-selector ~ #theme-tweaker-toggle::after {
4665 content: "Open theme tweaker";
4666 position: absolute;
4667 font-size: 0.625em;
4668 white-space: nowrap;
4669 left: -50%;
4670 top: 100%;
4672 #theme-selector.engaged ~ #theme-tweaker-toggle {
4673 visibility: visible;
4674 top: 530px;
4675 left: 0;
4676 right: 0;
4677 margin: auto;
4678 z-index: 11111;
4679 transition:
4680 top 0.2s ease,
4681 visibility 0.2s ease;
4683 @media only screen and (max-height: 675px) {
4684 #theme-selector.engaged ~ #theme-tweaker-toggle {
4685 top: 492px;
4688 @supports (width: -moz-fit-content) {
4689 #theme-selector.engaged ~ #theme-tweaker-toggle {
4690 width: -moz-fit-content;
4693 @supports (width: fit-content) {
4694 #theme-selector.engaged ~ #theme-tweaker-toggle {
4695 width: fit-content;
4698 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4699 opacity: 1.0;
4702 #theme-tweaker-ui {
4703 visibility: visible;
4706 /*======================*/
4707 /* ANTI-KIBITZER TOGGLE */
4708 /*======================*/
4710 #theme-selector ~ #anti-kibitzer-toggle {
4711 top: 100%;
4712 bottom: unset;
4713 left: 0;
4714 right: 0;
4715 margin: auto;
4716 box-shadow: none;
4717 width: calc(100vw - 44px);
4718 max-width: 330px;
4719 text-align: right;
4720 pointer-events: none;
4722 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4723 visibility: visible;
4724 z-index: 11110;
4725 top: 530px;
4726 transition:
4727 top 0.2s ease,
4728 visibility 0.2s ease;
4730 @media only screen and (max-height: 675px) {
4731 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4732 top: 492px;
4735 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4736 pointer-events: auto;
4737 display: inline-block;
4740 /*=================*/
4741 /* QUICKNAV WIDGET */
4742 /*=================*/
4744 #quick-nav-ui {
4745 max-width: 0px;
4746 transition:
4747 max-width 0.2s ease,
4748 visibility 0.2s ease;
4749 display: flex;
4750 right: 72px;
4751 bottom: 14px;
4753 #quick-nav-ui.engaged {
4754 max-width: 1000px;
4756 #quick-nav-ui a {
4757 position: relative;
4758 margin: 2px;
4760 #quick-nav-ui a + a {
4761 margin-left: 5px;
4763 #quick-nav-ui a::after {
4764 position: absolute;
4765 top: calc(100% + 2px);
4766 font-size: 0.375rem;
4767 left: 0;
4768 right: 0;
4769 margin: auto;
4770 line-height: 1;
4771 padding: 2px;
4772 text-transform: uppercase;
4773 z-index: -1;
4775 @supports (width: -moz-fit-content) {
4776 #quick-nav-ui a::after {
4777 width: -moz-fit-content;
4780 @supports (width: fit-content) {
4781 #quick-nav-ui a::after {
4782 width: fit-content;
4785 #quick-nav-ui a[href='#top']::after {
4786 content: "Top";
4787 left: -1px;
4789 #quick-nav-ui a[href='#comments']::after {
4790 content: "Comments";
4792 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4793 visibility: hidden;
4794 transition: visibility 0.2s ease;
4796 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4797 visibility: visible;
4799 #quick-nav-ui a[href='#bottom-bar']::after {
4800 content: "Bottom";
4803 /*======================*/
4804 /* NEW COMMENT QUICKNAV */
4805 /*======================*/
4807 #new-comment-nav-ui {
4808 max-width: 0px;
4809 max-height: 0px;
4810 transition:
4811 max-width 0.2s ease,
4812 max-height 0.2s ease,
4813 visibility 0.2s ease;
4814 display: flex;
4815 right: 78px;
4816 bottom: 70px;
4818 #new-comment-nav-ui::before {
4819 content: "New Comments";
4820 position: absolute;
4821 bottom: 100%;
4822 font-size: 0.5625rem;
4823 left: 0;
4824 right: 0;
4825 margin: auto;
4826 padding: 2px 3px;
4827 text-transform: uppercase;
4828 z-index: -1;
4830 @supports (width: -moz-fit-content) {
4831 #new-comment-nav-ui::before {
4832 width: -moz-fit-content;
4835 @supports (width: fit-content) {
4836 #new-comment-nav-ui::before {
4837 width: fit-content;
4840 #new-comment-nav-ui.engaged {
4841 max-width: 1000px;
4842 max-height: 1000px;
4844 #new-comment-nav-ui .new-comment-sequential-nav-button {
4845 top: unset;
4846 bottom: unset;
4847 padding: 2px 7px;
4849 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4850 padding: 2px 7px 3px 7px;
4852 #new-comment-nav-ui .new-comments-count {
4853 padding: 4px 0 5px 0;
4855 #new-comment-nav-ui .new-comments-count::before {
4856 display: none;
4858 #new-comment-nav-ui button::after {
4859 position: absolute;
4860 font-size: 0.375rem;
4861 left: 0;
4862 right: 0;
4863 margin: auto;
4864 line-height: 1;
4865 text-transform: uppercase;
4866 pointer-events: none;
4868 #new-comment-nav-ui button.new-comment-previous::after {
4869 content: "Previous";
4870 bottom: 5px;
4872 #new-comment-nav-ui button.new-comment-next::after {
4873 content: "Next";
4874 top: 7px;
4877 /*=================*/
4878 /* HNS DATE PICKER */
4879 /*=================*/
4881 #hns-date-picker {
4882 max-height: 0px;
4883 bottom: 132px;
4884 right: 62px;
4885 transition:
4886 max-height 0.2s ease,
4887 visibility 0.2s ease;
4889 #hns-date-picker.engaged {
4890 max-height: 1000px;
4892 #hns-date-picker::before {
4893 width: calc(100% + 2px);
4894 border-width: 1px !important;
4897 /*=========*/
4898 /* NAV BAR */
4899 /*=========*/
4901 #bottom-bar {
4902 margin-left: auto;
4903 margin-right: auto;
4904 width: calc(100% - 9rem + 8px);
4905 background: rgba(0, 0, 0, 0.85);
4906 backdrop-filter: blur(1px);
4908 #content.index-page #bottom-bar {
4909 z-index: 10001;
4911 #bottom-bar .nav-item {
4912 box-shadow: none;
4913 position: relative;
4915 #bottom-bar .nav-inner {
4916 font-size: 2rem;
4917 padding: 1rem 0 1.25rem 0;
4918 visibility: hidden;
4919 position: static;
4920 width: 0;
4922 #content #bottom-bar .nav-item .nav-inner::before {
4923 margin: 0;
4924 visibility: visible;
4925 position: absolute;
4926 width: 100%;
4927 height: 100%;
4928 left: 0;
4929 top: 0;
4930 padding: 1rem 0;
4932 #bottom-bar .nav-inner::after {
4933 display: block;
4934 visibility: visible;
4935 text-transform: uppercase;
4936 color: unset;
4937 font-size: 0.75rem;
4938 top: unset;
4939 left: 0;
4940 bottom: 1rem;
4941 width: 100%;
4943 #bottom-bar #nav-item-first .nav-inner::after {
4944 content: "First Page";
4946 #bottom-bar #nav-item-prev .nav-inner::after {
4947 content: "Prev. Page";
4949 #bottom-bar #nav-item-top .nav-inner::after {
4950 content: "Top";
4952 #bottom-bar #nav-item-next .nav-inner::after {
4953 content: "Next Page";
4955 #bottom-bar #nav-item-last .nav-inner::after {
4956 content: "Last Page";
4959 @media only screen and (max-width: 900px) {
4960 .nav-bar-top {
4961 font-size: 0.75rem;
4963 .nav-bar {
4964 width: calc(100% + 8px);
4965 margin: 0 -4px;
4967 .nav-bar .nav-inner::after {
4968 display: none;
4971 #primary-bar .nav-item {
4972 flex: 1 1 100%;
4974 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
4975 flex: 1 1 60px;
4977 .nav-bar-top:not(#anything) .nav-inner {
4978 text-transform: uppercase;
4979 padding: 6px;
4981 .nav-bar-top .nav-inner::before {
4982 display: block;
4983 font-family: "Font Awesome";
4984 font-size: 2em;
4985 font-weight: 900;
4988 #nav-item-home .nav-inner::before {
4989 content: "\F015";
4991 #nav-item-featured .nav-inner::before {
4992 content: "\F005";
4994 #nav-item-all .nav-inner::before {
4995 content: "\F069";
4997 #nav-item-meta .nav-inner::before {
4998 content: "\F077";
5000 #nav-item-tags .nav-inner::before {
5001 content: "\F02C";
5003 #nav-item-recent-comments > * > span {
5004 display: none;
5006 #nav-item-recent-comments .nav-inner::before,
5007 #nav-item-alignment-forum-comments .nav-inner::before {
5008 content: "\F036";
5010 #nav-item-alignment-forum .nav-inner::before {
5011 content: "AF";
5012 font-family: Concourse, 'Changa One';
5014 #nav-item-questions .nav-inner::before {
5015 content: "?";
5016 font-family: Concourse, 'Changa One';
5018 #nav-item-events .nav-inner::before {
5019 content: "\F5A0";
5021 #nav-item-shortform .nav-inner::before {
5022 content: "\F2F2";
5024 #nav-item-archive .nav-inner::before {
5025 content: "\F187";
5027 #nav-item-about .nav-inner::before {
5028 content: "\F129";
5030 #nav-item-search {
5031 font-size: 2em;
5032 padding: 10px;
5034 #nav-item-search .nav-inner::before {
5035 content: none;
5037 #nav-item-search .nav-inner {
5038 height: 100%;
5039 display: flex;
5041 #nav-item-search input {
5042 width: 100%;
5043 height: 100%;
5045 #nav-item-search button {
5046 height: 100%;
5047 padding: 5px 5px 5px 10px;
5048 width: 40px;
5049 overflow: visible;
5050 visibility: hidden;
5052 #nav-item-search button::before {
5053 content: "\F002";
5054 font-family: Font Awesome;
5055 font-weight: 900;
5056 visibility: visible;
5058 #nav-item-login {
5059 padding: 0;
5061 #nav-item-login .nav-inner::before {
5062 content: "\F007";
5065 @media only screen and (max-width: 520px) {
5066 .nav-bar-top {
5067 font-size: 0.5rem;
5070 #nav-item-search,
5071 #nav-item-search .nav-inner {
5072 padding: 0;
5074 #nav-item-search button {
5075 width: 31px;
5078 #bottom-bar #nav-item-first .nav-inner::after {
5079 content: "First";
5081 #bottom-bar #nav-item-prev .nav-inner::after {
5082 content: "Prev";
5084 #bottom-bar #nav-item-next .nav-inner::after {
5085 content: "Next";
5087 #bottom-bar #nav-item-last .nav-inner::after {
5088 content: "Last";
5092 /*=================*/
5093 /* INBOX INDICATOR */
5094 /*=================*/
5096 @media only screen and (max-width: 900px) {
5097 #inbox-indicator {
5098 width: 100%;
5099 top: 0;
5100 pointer-events: none;
5102 #inbox-indicator::before {
5103 width: 100%;
5104 font-size: 1rem;
5105 text-align: right;
5106 padding: 1px 6px;
5108 #inbox-indicator.new-messages {
5109 pointer-events: auto;
5111 #inbox-indicator.new-messages::before {
5112 box-shadow: 0 0 8px 1px #0090e0 inset;
5115 @media only screen and (max-width: 520px) {
5116 #inbox-indicator::before {
5117 font-size: 0.75rem;
5118 padding: 2px 5px;
5121 @media only screen and (max-width: 374px) {
5122 #inbox-indicator::before {
5123 font-size: 0.625rem;
5127 /*===================*/
5128 /* TOP PAGINATION UI */
5129 /*===================*/
5131 #top-nav-bar {
5132 font-size: 1.75rem;
5135 /*==============*/
5136 /* PAGE TOOLBAR */
5137 /*==============*/
5139 @media only screen and (max-width: 900px) {
5140 #content > .page-toolbar {
5141 font-size: 1rem;
5142 margin-right: 0;
5144 #content.user-page > .page-toolbar {
5145 grid-column: 2 / span 2;
5146 margin: 0 0 6px 0;
5149 @media only screen and (max-width: 520px) {
5150 #content:not(.user-page) .page-toolbar {
5151 display: flex;
5152 flex-direction: column-reverse;
5153 text-align: right;
5154 align-self: start;
5155 padding: 4px 0 0 0;
5157 #content.user-page .page-toolbar {
5158 display: flex;
5159 flex-flow: row;
5160 justify-content: flex-end;
5161 padding: 2px 0 0 0;
5163 #content.user-page .page-toolbar > form,
5164 #content.user-page .page-toolbar > .button {
5165 text-align: center;
5166 flex-basis: 25%;
5167 margin-left: 1.5em;
5169 #content.user-page .page-toolbar .button {
5170 text-transform: uppercase;
5171 font-size: 0.625rem;
5173 #content.user-page .page-toolbar .button::before {
5174 font-size: 1.375rem;
5175 display: block;
5176 padding: 0;
5178 #content.user-page .page-toolbar .rss {
5179 white-space: nowrap;
5180 margin: 0 0 0 1.5em;
5182 .page-toolbar > * {
5183 line-height: 1.15;
5184 padding: 6px 0;
5185 margin: 0;
5189 /*==============*/
5190 /* SUBLEVEL NAV */
5191 /*==============*/
5193 @media only screen and (max-width: 900px) {
5194 .sublevel-nav:not(.sort) {
5195 flex-wrap: wrap;
5196 width: calc(100vw - 200px);
5198 .sublevel-nav:not(.sort) .sublevel-item {
5199 margin: 1px;
5200 flex-basis: 7em;
5203 @media only screen and (max-width: 520px) {
5204 .sublevel-nav:not(.sort) .sublevel-item {
5205 font-size: 1rem;
5209 /*=====================*/
5210 /* SORT ORDER SELECTOR */
5211 /*=====================*/
5213 @media only screen and (max-width: 720px) {
5214 #content.index-page > .sublevel-nav.sort {
5215 flex-flow: column;
5216 margin-left: 4px;
5220 /*==========*/
5221 /* ARCHIVES */
5222 /*==========*/
5224 @media only screen and (max-width: 900px) {
5225 div[class^='archive-nav-'] {
5226 flex-wrap: wrap;
5227 justify-content: flex-start;
5229 .archive-nav *[class^='archive-nav-item'],
5230 .archive-nav *[class^='archive-nav-item']:first-child {
5231 padding: 10px;
5232 margin: 2px;
5233 max-width: unset;
5234 flex: 0 1 calc((100% / 8) - 4px);
5236 .archive-nav .archive-nav-item-day,
5237 .archive-nav .archive-nav-item-day:first-child {
5238 flex-basis: calc((100% / 16) - 4px);
5240 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5241 margin-top: 8px;
5242 position: relative;
5244 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5245 content: "";
5246 display: block;
5247 position: absolute;
5248 height: 1px;
5249 width: calc(100% + 8px);
5250 left: -4px;
5251 top: -4px;
5254 @media only screen and (max-width: 720px) {
5255 .archive-nav .archive-nav-item-day,
5256 .archive-nav .archive-nav-item-day:first-child {
5257 flex-basis: calc((100% / 12) - 4px);
5260 @media only screen and (max-width: 520px) {
5261 .archive-nav *[class^='archive-nav-item'],
5262 .archive-nav *[class^='archive-nav-item']:first-child {
5263 flex-basis: calc((100% / 5) - 4px);
5265 .archive-nav .archive-nav-item-day,
5266 .archive-nav .archive-nav-item-day:first-child {
5267 flex-basis: calc((100% / 8) - 4px);
5271 /*==========*/
5272 /* LISTINGS */
5273 /*==========*/
5275 h1.listing {
5276 max-height: unset;
5279 /*============*/
5280 /* USER PAGES */
5281 /*============*/
5283 #content.user-page h1.page-main-heading {
5284 align-self: end;
5286 @media only screen and (max-width: 520px) {
5287 #content.user-page h1.page-main-heading {
5288 overflow: hidden;
5289 text-overflow: ellipsis;
5291 #content.user-page .user-stats .karma-type {
5292 display: block;
5296 /*============*/
5297 /* LOGIN PAGE */
5298 /*============*/
5300 @media only screen and (max-width: 640px) {
5301 .login-container {
5302 flex-flow: column;
5303 margin: 0 auto 3em auto;
5304 max-width: 400px;
5306 .login-container #login-form,
5307 .login-container #signup-form {
5308 padding: 0 1em 1.25em 1em;
5309 grid-row-gap: 0;
5311 .login-container #signup-form {
5312 padding-top: 1em;
5314 .login-container #login-form > *,
5315 .login-container #signup-form > * {
5316 grid-column: 1 / span 2;
5318 .login-container form label {
5319 text-align: left;
5320 padding: 0;
5321 line-height: 1;
5323 .login-container form input {
5324 margin: 0.25em 0 0.75em 0;
5325 padding: 0.5em;
5327 .login-container form h1 {
5328 grid-column: 1 / span 2;
5329 margin: 0 0 0.25em 0;
5331 .login-container form a {
5332 margin: 0.75em 0 0 0;
5334 .login-container .login-tip {
5335 margin: 1.5em 1em 0 1em;
5339 /*==================*/
5340 /* POSTS & COMMENTS */
5341 /*==================*/
5343 @media only screen and (max-width: 720px) {
5344 .body-text ol > li {
5345 padding: 0 0 0 2.25em;
5347 .body-text ol > li::before {
5348 width: 1.75em;
5350 .body-text ul:not(.contents-list) > li,
5351 .body-text ul:not(.contents-list) > li ul > li {
5352 padding: 0 0 0 0.75em;
5354 .body-text ul:not(.contents-list) > li::before,
5355 .body-text ul:not(.contents-list) > li ul > li::before {
5356 width: 0.125em;
5357 margin-left: -0.06em;
5361 /*===========*/
5362 /* POST-META */
5363 /*===========*/
5365 .post-meta {
5366 line-height: 1.9;
5368 @media only screen and (max-width: 720px) {
5369 .post-meta .lw2-link span,
5370 .post-meta .karma-value span,
5371 .post-meta .comment-count span {
5372 display: none;
5374 .post-meta .comment-count::before {
5375 content: "\F086";
5376 font-family: Font Awesome;
5377 font-size: 0.875em;
5378 margin: 0 0.25em 0 0;
5379 font-weight: 400;
5383 /*===================*/
5384 /* POSTS & BODY TEXT */
5385 /*===================*/
5387 @media only screen and (max-width: 900px) {
5388 .post-body,
5389 h1.post-title,
5390 .tag-description,
5391 .sequence-text {
5392 padding: 0 6px;
5395 @media only screen and (max-width: 520px) {
5396 .post-body {
5397 font-size: 1.2rem;
5398 line-height: 1.45;
5400 h1.post-title {
5401 font-size: 2em;
5405 /*==============*/
5406 /* COMMENT-META */
5407 /*==============*/
5409 a.comment-parent-link::after {
5410 display: none;
5412 @media only screen and (max-width: 900px) {
5413 .comment-meta {
5414 padding: 2px 40px 2px 10px;
5417 @media only screen and (max-width: 720px) {
5418 .comment .karma-value span {
5419 display: none;
5421 .comment-meta .comment-parent-link {
5422 opacity: 1.0;
5425 @media only screen and (max-width: 520px) {
5426 .comment-meta {
5427 padding: 2px 10px;
5428 position: relative;
5430 .comment-meta .author {
5431 flex-basis: 100%;
5433 .comment-post-title2 {
5434 display: block;
5435 text-overflow: ellipsis;
5436 overflow: hidden;
5438 .comment-meta .lw2-link {
5439 display: none;
5443 /*=======================*/
5444 /* COMMENTS COMPACT VIEW */
5445 /*=======================*/
5447 /*===========================*/
5448 /* COMMENT THREAD NAVIGATION */
5449 /*===========================*/
5451 @media only screen and (max-width: 900px) {
5452 a.comment-parent-link {
5453 width: 0;
5454 visibility: hidden;
5455 position: relative;
5457 a.comment-parent-link::before {
5458 padding: 0;
5459 font-size: 1em;
5460 left: 0;
5461 top: 0;
5462 line-height: inherit;
5463 visibility: visible;
5464 content: "\F3BF";
5465 transform: scaleX(-1);
5466 width: 2em;
5467 text-align: center;
5470 @media only screen and (max-width: 520px) {
5471 a.comment-parent-link {
5472 position: static;
5474 a.comment-parent-link::before {
5475 padding: 6px;
5476 left: unset;
5477 right: 0;
5478 top: unset;
5479 bottom: 0;
5480 height: 2em;
5484 /*=================================*/
5485 /* COMMENT THREAD MINIMIZE BUTTONS */
5486 /*=================================*/
5488 @media only screen and (max-width: 520px) {
5489 .comment-minimize-button{
5490 right: 2px;
5494 /*===========================*/
5495 /* COMMENTING AND POSTING UI */
5496 /*===========================*/
5498 @media only screen and (max-width: 900px) {
5499 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5500 font-size: 0;
5502 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5503 font-size: 0.9rem;
5505 .comment-controls .cancel-comment-button {
5506 max-width: 1.3em;
5507 overflow: hidden;
5508 margin-right: 0.125em;
5510 .comment-controls .edit-button::before {
5511 font-size: 0.9375rem;
5513 .comments > .comment-controls .cancel-comment-button {
5514 right: 8px;
5516 .comment-controls .cancel-comment-button::before {
5517 font-size: 1.25rem;
5520 @media only screen and (max-width: 520px) {
5521 .comment-controls {
5522 position: static;
5524 .comment-controls:focus-within {
5525 z-index: 10001;
5527 .comment-controls .cancel-comment-button {
5528 right: 10px;
5530 .textarea-container:focus-within textarea {
5531 position: fixed;
5532 top: 0;
5533 left: 2px;
5534 width: calc(100vw - 4px);
5535 height: calc(100% - 100px);
5536 min-height: unset;
5537 max-height: unset;
5538 border-width: 1px;
5539 z-index: 11001;
5541 #content.conversation-page .textarea-container:focus-within textarea {
5542 height: calc(100% - 54px);
5544 #content.conversation-page .textarea-container:focus-within::after {
5545 content: "";
5546 display: block;
5547 width: 100%;
5548 height: 50px;
5549 position: fixed;
5550 left: 0;
5551 bottom: 0;
5552 z-index: 11000;
5554 .textarea-container:focus-within .guiedit-buttons-container {
5555 position: fixed;
5556 z-index: 11002;
5557 left: 0;
5558 width: 100vw;
5559 height: auto;
5560 background-image: none;
5561 padding: 3px 4px 4px 4px;
5562 margin: 0;
5563 text-align: center;
5564 top: auto;
5565 bottom: 0;
5567 .textarea-container:focus-within button.guiedit {
5568 font-size: 0.9375rem;
5569 line-height: 1.5;
5570 height: auto;
5571 width: calc((100% / 10) - 2px);
5572 padding: 10px 1px 8px 0;
5573 position: relative;
5574 margin: 1px;
5576 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5577 z-index: 11011;
5578 position: fixed;
5579 bottom: 7px;
5580 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5581 font-size: 1.25rem;
5582 padding: 5px 5px 6px 5px;
5583 display: block;
5585 .textarea-container:focus-within button.guiedit sup {
5586 position: absolute;
5587 left: calc(50% + 0.65em);
5588 top: calc(50% - 1.3em);
5590 .textarea-container:focus-within .guiedit-mobile-help-button {
5591 left: 8px;
5593 .textarea-container:focus-within .guiedit-mobile-exit-button {
5594 right: 8px;
5596 .guiedit::after {
5597 display: none;
5600 #markdown-hints,
5601 #edit-post-form #markdown-hints {
5602 z-index: 11111;
5603 position: fixed;
5604 top: 40px;
5605 left: 0;
5606 right: 0;
5607 margin: auto;
5608 padding: 4px 0 4px 8px;
5609 width: 310px;
5610 border-width: 3px;
5611 border-style: double;
5612 pointer-events: none;
5614 #markdown-hints::after {
5615 content: "(Type to hide this help box.)";
5616 color: #9740cb;
5617 display: block;
5618 margin: 12px 18px 13px 10px;
5619 padding: 5px;
5620 font-size: 0.9em;
5621 text-align: center;
5625 /*================*/
5626 /* EDIT POST FORM */
5627 /*================*/
5629 @media only screen and (max-width: 520px) {
5630 #edit-post-form {
5631 padding-bottom: 0;
5633 #edit-post-form .post-meta-fields {
5634 grid-template-columns: 4.5em auto auto auto 1fr auto;
5636 #edit-post-form label[for='url'],
5637 #edit-post-form label[for='section'],
5638 #edit-post-form label[for='title'] {
5639 padding-left: 0;
5641 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5642 white-space: normal;
5643 line-height: 0.9;
5644 top: -1px;
5645 font-family: Font Awesome;
5646 font-weight: 900;
5647 justify-self: start;
5649 #edit-post-form .post-meta-fields .question-checkbox,
5650 #edit-post-form .post-meta-fields .question-checkbox + label {
5651 grid-column: 6;
5652 margin-left: unset;
5654 #edit-post-form .post-meta-fields input[type='radio'] + label {
5655 align-self: start;
5657 #edit-post-form .textarea-container:focus-within textarea {
5658 height: calc(100% - 101px);
5659 min-height: unset;
5662 #markdown-hints-checkbox,
5663 #markdown-hints-checkbox + label {
5664 display: none;
5667 #edit-post-form div:last-child {
5668 clear: both;
5669 overflow: auto;
5671 #edit-post-form input[type='submit'] {
5672 float: none;
5673 display: block;
5674 font-size: 1.5rem;
5675 margin: 1rem auto 1.5rem auto;
5676 padding: 6px 12px 8px 12px;
5680 /*===================*/
5681 /* TABLE OF CONTENTS */
5682 /*===================*/
5684 @media only screen and (max-width: 900px) {
5685 .contents {
5686 float: none;
5687 display: table;
5688 max-width: none;
5689 margin-left: auto;
5690 margin-right: auto;
5693 @media only screen and (max-width: 520px) {
5694 .contents {
5695 max-width: 100%;
5696 margin: 1em auto 0 auto;
5697 display: table;
5699 .contents-head {
5700 font-size: 1.2em;
5702 div.post-body .contents ul {
5703 font-size: unset;
5707 /*========================*/
5708 /* QUALIFIED HYPERLINKING */
5709 /*========================*/
5711 @media only screen and (max-width: 520px) {
5712 .qualified-linking-toolbar {
5713 right: -5em;
5717 } /* END MOBILE LAYOUT */
5720 /*****************/
5721 /* DEFAULT THEME */
5722 /*****************/
5724 /*===========*/
5725 /* VARIABLES */
5726 /*===========*/
5728 /* Color scheme.
5730 :root {
5731 --GW-comment-background-color-odd: #131313;
5732 --GW-comment-background-color-even: #000;
5733 --GW-comment-background-color-target: #00001e;
5735 --GW-toggle-widget-color: #666;
5736 --GW-toggle-widget-hover-color: #aeaeae;
5737 --GW-toggle-widget-shadow-color: rgba(0, 0, 0, 0.5);
5740 /*======*/
5741 /* BASE */
5742 /*======*/
5744 body {
5745 color: #fff;
5746 background-color: #232323;
5747 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
5748 font-feature-settings: 'ss07';
5750 #content {
5751 line-height: 1.55;
5753 #content::before {
5754 background-color: #000;
5755 box-shadow: 0px 0px 10px #9b9b9b;
5758 /*=========*/
5759 /* NAV BAR */
5760 /*=========*/
5762 .nav-inner {
5763 font-size: 1.375em;
5764 font-weight: 600;
5766 .nav-bar-top:not(#primary-bar) .nav-inner {
5767 font-size: 1em;
5770 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5771 #bottom-bar a:hover,
5772 #nav-item-search:not(.nav-current):focus-within {
5773 background-color: #1f1f1f;
5775 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5776 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5777 background-color: #232323;
5780 .nav-bar a:visited {
5781 color: #0cc800;
5783 .nav-bar a:hover,
5784 .nav-bar a:focus {
5785 text-decoration: none;
5786 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5789 #bottom-bar.decorative::before,
5790 #bottom-bar.decorative::after {
5791 content: "GW";
5792 display: block;
5793 text-align: center;
5794 padding: 0.25em 0 1em 0;
5796 #bottom-bar.decorative::before {
5797 width: 100%;
5798 color: transparent;
5799 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5800 background-repeat: repeat-x;
5801 background-position: center 35%;
5802 margin: 0 30px;
5804 #bottom-bar.decorative::after {
5805 color: #232323;
5806 position: absolute;
5807 left: 0;
5808 right: 0;
5809 margin: auto;
5810 background-color: #000;
5811 padding-right: 4px;
5812 padding-left: 4px;
5814 @supports (width: -moz-fit-content) {
5815 #bottom-bar.decorative::after {
5816 width: -moz-fit-content;
5819 @supports (width: fit-content) {
5820 #bottom-bar.decorative::after {
5821 width: fit-content;
5825 /* Accesskey hints */
5827 .nav-inner::after {
5828 display: block;
5829 position: absolute;
5830 left: 5px;
5831 top: -2px;
5832 font-weight: 400;
5833 font-size: 0.7em;
5834 color: #232323;
5836 .inactive-bar .nav-inner::after {
5837 color: #2c2c2c;
5839 .nav-inner:hover::after {
5840 color: #393939;
5843 /* This makes the navbar items look like tabs: */
5845 .nav-inactive {
5846 box-shadow:
5847 0 -1px #232323 inset,
5848 1px 0 #000 inset;
5850 .nav-inactive:first-child {
5851 box-shadow: 0 -1px #232323 inset;
5853 .inactive-bar .nav-inactive {
5854 background-color: #1a1a1a;
5856 .active-bar .nav-inactive {
5857 background-color: #131313;
5859 .nav-bar + .nav-bar {
5860 position: relative;
5863 /* For Webkit: */
5864 .nav-bar:not(#bottom-bar) {
5865 box-shadow: 0 -3px 8px -2px #2c2c2c;
5867 .active-bar .nav-inactive {
5868 box-shadow:
5869 0 -4px 8px -4px #393939 inset,
5870 1px 0 #000 inset;
5872 .active-bar .nav-inactive:first-child {
5873 box-shadow:
5874 0 -4px 8px -4px #393939 inset;
5876 .active-bar .nav-current + .nav-inactive {
5877 box-shadow:
5878 5px -4px 8px -4px #393939 inset;
5880 .active-bar .nav-item-last-before-current {
5881 box-shadow:
5882 -5px -4px 8px -4px #393939 inset,
5883 1px 0 #000 inset;
5885 .active-bar .nav-item-last-before-current:first-child {
5886 box-shadow:
5887 -5px -4px 8px -4px #393939 inset;
5889 /* And for Gecko: */
5890 @-moz-document url-prefix() {
5891 .nav-bar:not(#bottom-bar) {
5892 box-shadow: 0 -3px 4px -2px #2c2c2c;
5895 .active-bar .nav-inactive {
5896 box-shadow:
5897 0 -4px 4px -4px #393939 inset,
5898 1px 0 #000 inset;
5900 .active-bar .nav-inactive:first-child {
5901 box-shadow:
5902 0 -4px 4px -4px #393939 inset;
5904 .active-bar .nav-current + .nav-inactive {
5905 box-shadow:
5906 5px -4px 4px -4px #393939 inset;
5908 .active-bar .nav-item-last-before-current {
5909 box-shadow:
5910 -5px -4px 4px -4px #393939 inset,
5911 1px 0 #000 inset;
5913 .active-bar .nav-item-last-before-current:first-child {
5914 box-shadow:
5915 -5px -4px 4px -4px #393939 inset;
5919 /* Search tab */
5921 #nav-item-search button {
5922 border: none;
5923 font-weight: inherit;
5925 #nav-item-search input::placeholder {
5926 color: #00a1e8;
5927 font-weight: normal;
5930 /*= Top pagination UI hover tooltips =*/
5932 #top-nav-bar a::after,
5933 #bottom-bar a::after {
5934 color: #fff;
5937 /*==============*/
5938 /* PAGE TOOLBAR */
5939 /*==============*/
5941 .button.new-post:not(:hover),
5942 .button.new-private-message:not(:hover),
5943 .button.unignore-button:not(:hover){
5944 color: #9740cb;
5946 .button.logout-button, .button.ignore-button {
5947 color: #0094be;
5950 /*==============*/
5951 /* SUBLEVEL NAV */
5952 /*==============*/
5954 .sublevel-nav .sublevel-item {
5955 color: #777;
5956 background-color: #000;
5958 .sublevel-nav .sublevel-item:not(.selected):hover {
5959 background-color: #1f1f1f;
5960 color: #fff;
5961 text-decoration: none;
5962 text-shadow: none;
5964 .sublevel-nav .sublevel-item:not(.selected):active,
5965 .sublevel-nav .sublevel-item.selected {
5966 background-color: #1f1f1f;
5967 color: #fff;
5968 text-shadow:
5969 0 -1px 0 #000,
5970 0 0.5px 0.5px #fff;
5973 .sublevel-nav:not(.sort) .sublevel-item {
5974 border-style: solid;
5975 border-color: #1f1f1f;
5976 border-width: 1px 0 1px 1px;
5978 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5979 border-radius: 8px 0 0 8px;
5981 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5982 border-width: 1px;
5983 border-radius: 0 8px 8px 0;
5986 /*=====================*/
5987 /* SORT ORDER SELECTOR */
5988 /*=====================*/
5990 .sublevel-nav.sort .sublevel-item {
5991 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
5992 letter-spacing: 0.5px;
5993 padding: 6px 7px;
5994 text-transform: uppercase;
5995 pointer-events: auto;
5996 box-shadow: 1px 1px 0 0 #484848 inset;
5998 .sublevel-nav.sort {
5999 border: 2px solid transparent;
6000 padding: 18px 0 0 0;
6001 border-radius: 8px;
6002 pointer-events: none;
6003 background-color: #393939;
6005 .sublevel-nav.sort::before {
6006 text-transform: uppercase;
6007 font-weight: 600;
6008 color: #aeaeae;
6009 text-shadow: 0.5px 0.5px 0 #000;
6010 z-index: 1;
6012 .sublevel-nav.sort::after {
6013 content: "";
6014 position: absolute;
6015 display: block;
6016 top: 0;
6017 left: 0;
6018 width: 100%;
6019 height: 100%;
6020 border-radius: 6px;
6021 box-shadow:
6022 0 18px 0 0 #393939 inset,
6023 0 0 0 1px #484848 inset,
6024 0 18px 0 1px #484848 inset,
6025 0 0 0 2px #393939;
6028 /*================*/
6029 /* WIDTH SELECTOR */
6030 /*================*/
6031 /* THEME SELECTOR */
6032 /*================*/
6034 #width-selector button,
6035 #theme-selector button {
6036 box-shadow:
6037 0 0 0 4px #232323 inset,
6038 0 0 0 5px #393939 inset;
6040 #width-selector button:hover,
6041 #width-selector button.selected,
6042 #theme-selector button:hover,
6043 #theme-selector button.selected {
6044 box-shadow:
6045 0 0 0 5px #393939 inset;
6048 #theme-selector button::before {
6049 color: #575756;
6050 background-color: #232323;
6052 #theme-selector button:hover::before,
6053 #theme-selector button.selected::before {
6054 color: #888;
6056 #width-selector button::after {
6057 color: #575756;
6060 /*======================*/
6061 /* THEME TWEAKER TOGGLE */
6062 /*======================*/
6064 #theme-tweaker-toggle button {
6065 color: #777;
6068 /*=================*/
6069 /* QUICKNAV WIDGET */
6070 /*=================*/
6072 #quick-nav-ui a {
6073 color: #575756;
6074 background-color: #1a1a1a;
6075 border-radius: 4px;
6076 text-decoration: none;
6078 #quick-nav-ui a[href='#bottom-bar'] {
6079 line-height: 1.8;
6081 #quick-nav-ui a:active {
6082 transform: scale(0.9);
6084 #quick-nav-ui a[href='#comments'].no-comments {
6085 opacity: 0.4;
6086 color: #393939;
6088 @media only screen and (hover:hover) {
6089 #quick-nav-ui a:hover {
6090 color: #fff;
6091 background-color: #131313;
6093 #quick-nav-ui a:focus:not(:hover) {
6094 transform: none;
6095 text-shadow: none;
6099 /*======================*/
6100 /* NEW COMMENT QUICKNAV */
6101 /*======================*/
6103 #new-comment-nav-ui .new-comments-count {
6104 font-weight: 600;
6105 color: #888;
6106 text-shadow: 0.5px 0.5px 0 #000;
6108 #new-comment-nav-ui .new-comments-count::after {
6109 font-weight: 600;
6110 color: #777;
6112 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6113 color: #393939;
6114 text-shadow: none;
6116 @media only screen and (hover:hover) {
6117 #new-comment-nav-ui .new-comments-count:hover {
6118 text-shadow:
6119 0 0 1px #000,
6120 0 0 3px #000,
6121 0 0 5px #000,
6122 0 0 8px #000,
6123 0.5px 0.5px 0 #000;
6125 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6126 color: #00a1e8;
6127 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6131 /*=================*/
6132 /* HNS DATE PICKER */
6133 /*=================*/
6135 #hns-date-picker span {
6136 color: #777;
6137 text-shadow: 0.5px 0.5px 0 #000;
6138 font-weight: 600;
6140 #hns-date-picker input {
6141 border: 1px solid #777;
6142 background-color: transparent;
6143 color: #888;
6144 box-shadow: 0 0 0 1px transparent;
6146 #hns-date-picker input:focus {
6147 color: #fff;
6150 /*======================*/
6151 /* ANTI-KIBITZER TOGGLE */
6152 /*======================*/
6154 #anti-kibitzer-toggle button::before,
6155 #anti-kibitzer-toggle button::after {
6156 background-color: var(--GW-toggle-widget-color);
6157 -webkit-background-clip: text;
6158 color: transparent;
6159 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
6161 #anti-kibitzer-toggle button:hover::before,
6162 #anti-kibitzer-toggle button:hover::after {
6163 background-color: var(--GW-toggle-widget-hover-color);
6166 /*======================*/
6167 /* TEXT SIZE ADJUSTMENT */
6168 /*======================*/
6170 #text-size-adjustment-ui button {
6171 color: #777;
6173 #text-size-adjustment-ui button.default {
6174 font-weight: 600;
6176 #text-size-adjustment-ui button:disabled:hover {
6177 text-shadow: none;
6179 #text-size-adjustment-ui::after {
6180 color: #575756;
6183 /*=============================*/
6184 /* COMMENTS VIEW MODE SELECTOR */
6185 /*=============================*/
6187 #comments-view-mode-selector a {
6188 color: #777;
6191 /*==========*/
6192 /* ARCHIVES */
6193 /*==========*/
6195 .archive-nav {
6196 border: 1px solid #484848;
6198 .archive-nav *[class^='archive-nav-item'] {
6199 border-style: solid;
6200 border-color: #1f1f1f;
6201 border-width: 1px 0 1px 1px;
6202 background-color: #131313;
6204 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6205 border-top-width: 0;
6206 border-bottom-width: 0;
6208 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6209 border-bottom-width: 1px;
6211 .archive-nav *[class^='archive-nav-item']:last-child {
6212 border-right-width: 1px;
6214 .archive-nav span[class^='archive-nav-item'] {
6215 font-weight: bold;
6216 background-color: #1f1f1f;
6219 .archive-nav a:link,
6220 .archive-nav a:visited {
6221 color: rgba(12, 200, 0, 0.7);
6223 .archive-nav a:hover {
6224 text-decoration: none;
6225 color: #00a9ed;
6226 background-color: #1d1d1d;
6227 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6229 .archive-nav a:active {
6230 transform: scale(0.9);
6232 .archive-nav a:focus:not(:hover) {
6233 transform: none;
6235 .archive-nav a.archive-nav-item-day:hover {
6236 background-color: #1f1f1f;
6239 /*==========*/
6240 /* LISTINGS */
6241 /*==========*/
6243 h1.listing {
6244 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
6245 font-weight: 800;
6246 margin: 0.7em 20px 0 20px;
6247 max-width: calc(100% - 40px);
6248 top: 0.125em; ;
6251 h1.listing .post-title-link {
6252 color: #fff;
6254 h1.listing .link-post-link {
6255 color: #54d400;
6258 @media only screen and (hover: hover) {
6259 h1.listing a:hover,
6260 h1.listing a:focus {
6261 color: #777;
6262 background-color: rgba(0, 0, 0, 0.85);
6264 h1.listing:focus-within::before {
6265 color: #00c200;
6266 left: -0.625em;
6268 h1.listing .link-post-link:hover {
6269 color: #670;
6270 text-shadow:
6271 0.5px 0.5px 0 #000,
6272 -0.5px -0.5px 0 #000,
6273 0 0 2px #000,
6274 0 0 3px #54d400;
6278 h1.listing .edit-post-link {
6279 padding: 5px 3px 12px 0.5em;
6280 top: 0;
6281 right: 0;
6283 h1.listing .edit-post-link:hover {
6284 text-decoration: none;
6286 #content.user-page h1.listing .edit-post-link {
6287 background-color: #131313;
6290 /*======*/
6291 /* SPAM */
6292 /*======*/
6294 h1.listing.spam {
6295 opacity: 0.15;
6297 h1.listing.spam + .post-meta {
6298 opacity: 0.4;
6300 h1.listing.spam:hover,
6301 h1.listing.spam + .post-meta:hover,
6302 h1.listing.spam:hover + .post-meta {
6303 opacity: 1.0;
6306 /*===================*/
6307 /* LISTING POST-META */
6308 /*===================*/
6310 h1.listing + .post-meta {
6311 padding-right: 330px;
6313 h1.listing + .post-meta .karma-value,
6314 h1.listing + .post-meta .comment-count,
6315 h1.listing + .post-meta .lw2-link,
6316 h1.listing + .post-meta .read-time {
6317 border-radius: 4px;
6318 padding: 0 4px 0 2px;
6319 text-shadow: 0.5px 0.5px 0.5px #575756;
6320 margin: 0 0.25em 0 0.5em;
6321 position: absolute;
6322 line-height: 1.15;
6323 bottom: -6px;
6325 h1.listing + .post-meta .karma-value span,
6326 h1.listing + .post-meta .comment-count span,
6327 h1.listing + .post-meta .lw2-link span,
6328 h1.listing + .post-meta .read-time span {
6329 display: none;
6331 h1.listing + .post-meta .karma-value::before,
6332 h1.listing + .post-meta .comment-count::before,
6333 h1.listing + .post-meta .lw2-link::before,
6334 h1.listing + .post-meta .read-time::before {
6335 color: #000;
6336 font-family: 'Font Awesome', 'Font Awesome 5 Free';
6337 font-weight: 900;
6338 margin: 0 8px 0 0;
6339 box-shadow: 0 0 0 2px #1f1f1f;
6341 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
6342 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
6343 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
6344 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
6345 text-shadow: 0 0 3px #575756;
6348 h1.listing + .post-meta .karma {
6349 margin: 0;
6351 h1.listing + .post-meta .karma-value {
6352 box-shadow:
6353 22px 0 0 0 #1f1f1f inset,
6354 0 0 0 3px #1f1f1f;
6355 cursor: default;
6356 color: #00a9ed;
6357 right: 264px;
6359 h1.listing + .post-meta .karma-value::before {
6360 content: "\F139";
6361 text-shadow: none;
6362 font-size: 0.9375em;
6363 line-height: 1.3;
6366 h1.listing + .post-meta .comment-count::before {
6367 content: "\F086";
6369 h1.listing + .post-meta .comment-count {
6370 box-shadow:
6371 25px 0 0 0 #1f1f1f inset,
6372 0 0 0 3px #1f1f1f;
6373 color: #9e4acf;
6374 right: 176px;
6376 h1.listing + .post-meta .comment-count:hover {
6377 text-decoration: none;
6378 color: #000;
6379 background-color: #9e4acf;
6381 h1.listing + .post-meta .comment-count:hover::before {
6382 color: #9e4acf;
6384 h1.listing + .post-meta .comment-count.new-comments::before {
6385 color: #9e4acf;
6386 text-shadow: 0.5px 0.5px 0.5px #000;
6388 h1.listing + .post-meta .comment-count.new-comments:hover::before {
6389 text-shadow: 0.5px 0.5px 0.5px #575756;
6393 h1.listing + .post-meta .lw2-link {
6394 box-shadow:
6395 23px 0 0 0 #1f1f1f inset,
6396 0 0 0 3px #1f1f1f;
6397 right: 0;
6399 h1.listing + .post-meta .lw2-link::before {
6400 content: "\F0C1";
6402 h1.listing + .post-meta .lw2-link:hover {
6403 text-decoration: none;
6404 color: #000;
6405 background-color: #00c200;
6407 h1.listing + .post-meta .lw2-link:hover::before {
6408 color: #00c200;
6411 h1.listing + .post-meta .read-time {
6412 box-shadow:
6413 21px 0 0 0 #1f1f1f inset,
6414 0 0 0 3px #1f1f1f;
6415 right: 80px;
6417 h1.listing + .post-meta .read-time::before {
6418 content: "\F2F2";
6419 cursor: pointer;
6421 h1.listing + .post-meta .read-time::after {
6422 content: " min";
6424 h1.listing + .post-meta .read-time:hover::before {
6425 color: #777;
6428 h1.listing + .post-meta .word-count {
6429 box-shadow:
6430 22px 0 0 0 #1f1f1f inset,
6431 0 0 0 3px #1f1f1f;
6432 padding: 0 4px 0 4px;
6434 h1.listing + .post-meta .word-count::before {
6435 content: "\F15C";
6436 margin: 0 10px 0 0;
6438 h1.listing + .post-meta .read-time.word-count::after {
6439 content: none;
6442 h1.listing + .post-meta .link-post-domain {
6443 margin: 0 0 0 0.5em;
6446 h1.listing + .post-meta::after {
6447 content: "";
6448 display: block;
6449 height: 1px;
6450 width: 100%;
6451 background-color: #1f1f1f;
6452 position: absolute;
6453 bottom: -14px;
6456 /*============*/
6457 /* USER PAGES */
6458 /*============*/
6460 #content.user-page h1.page-main-heading,
6461 #content.user-page .user-stats {
6462 border-bottom: 1px solid #2c2c2c;
6465 #content.user-page h1.listing,
6466 #content.user-page h1.listing + .post-meta {
6467 background-color: #131313;
6468 border-style: solid;
6469 border-color: #2c2c2c;
6471 #content.user-page h1.listing {
6472 padding: 0 6px;
6473 padding-top: 0.25em;
6474 border-width: 1px 1px 0 1px;
6475 margin: 1rem 0 0 0;
6476 max-width: 100%;
6478 #content.own-user-page h1.listing,
6479 h1.listing.own-post-listing {
6480 padding-right: 36px;
6482 @media only screen and (hover: hover) {
6483 #content.user-page h1.listing a:hover,
6484 #content.user-page h1.listing a:focus {
6485 background-color: #131313;
6487 #content.user-page h1.listing:focus-within::before {
6488 left: -0.625em;
6491 #content.user-page h1.listing + .post-meta {
6492 padding: 0.125em 6px 1em 36px;
6493 border-width: 0 1px 1px 1px;
6494 margin: 0 0 1rem 0;
6496 #content.user-page h1.listing + .post-meta::after {
6497 display: none;
6499 @media only screen and (min-width: 521px) {
6500 #content.user-page h1.listing + .post-meta .karma-value,
6501 #content.user-page h1.listing + .post-meta .comment-count,
6502 #content.user-page h1.listing + .post-meta .lw2-link,
6503 #content.user-page h1.listing + .post-meta .read-time {
6504 bottom: 10px;
6507 #content.user-page h1.listing + .post-meta .post-section::before {
6508 left: -1px;
6511 #content.conversations-user-page h1.listing {
6512 padding: 4px 6px;
6513 font-size: 1.75rem;
6515 #content.conversations-user-page h1.listing + .post-meta {
6516 padding: 6px 4px;
6517 margin: 0 0 0.25rem 0;
6520 .user-stats .karma-total {
6521 font-weight: bold;
6524 /*===============*/
6525 /* CONVERSATIONS */
6526 /*===============*/
6528 /*============*/
6529 /* LOGIN PAGE */
6530 /*============*/
6532 .login-container form input[type='submit'] {
6533 font-weight: bold;
6534 background-color: #131313;
6535 border: 1px solid #2c2c2c;
6537 .login-container form input[type='submit']:hover,
6538 .login-container form input[type='submit']:focus {
6539 background-color: #1f1f1f;
6540 border: 1px solid #484848;
6543 /* “Create account” form */
6545 #signup-form {
6546 background-color: #0f0f0f;
6547 border: 1px solid #1f1f1f;
6549 #signup-form input[type='submit'] {
6550 background-color: #1a1a1a;
6551 border: 1px solid #2c2c2c;
6553 #signup-form input[type='submit']:hover {
6554 background-color: #232323;
6555 border: 1px solid #484848;
6558 /* Log in tip */
6560 .login-container .login-tip {
6561 border: 1px solid #131313;
6564 /* Message box */
6566 .error-box {
6567 border: 1px solid red;
6568 background-color: #004147;
6570 .success-box {
6571 border: 1px solid green;
6572 background-color: #320042;
6575 /*=====================*/
6576 /* PASSWORD RESET PAGE */
6577 /*=====================*/
6579 .reset-password-container input[type='submit'] {
6580 background-color: #1a1a1a;
6581 border: 1px solid #2c2c2c;
6582 font-weight: bold;
6585 /*===================*/
6586 /* TABLE OF CONTENTS */
6587 /*===================*/
6589 .contents {
6590 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6591 border: 1px solid #1f1f1f;
6592 background-color: #131313;
6594 .contents-head {
6595 font-weight: bold;
6597 .post-body .contents li::before {
6598 color: #575756;
6599 font-feature-settings: "tnum";
6601 .post-body .contents a,
6602 .post-body .contents a:hover {
6603 border: none;
6605 .post-body .contents a:hover {
6606 text-decoration: underline;
6609 /*==================*/
6610 /* POSTS & COMMENTS */
6611 /*==================*/
6613 .body-text {
6614 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6617 .body-text a {
6618 border-bottom: 1px dotted #393939;
6620 .body-text a:hover {
6621 text-decoration: none;
6622 border-bottom: 1px solid currentColor;
6625 /*=======*/
6626 /* POSTS */
6627 /*=======*/
6629 h1.post-title {
6630 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6631 font-weight: 800;
6634 /*=================*/
6635 /* POST NAVIGATION */
6636 /*=================*/
6638 .post-nav-links a,
6639 .post-nav-links a:visited {
6640 color: #fff;
6642 .post-nav-links a:hover {
6643 text-decoration: none;
6645 .post-nav-title {
6646 font-weight: 600;
6649 .post-nav-label {
6650 color: #777;
6652 .post-nav-links a:hover .post-nav-label {
6653 font-weight: 600;
6654 color: #666;
6656 .post-nav-links a:hover .post-nav-title {
6657 color: #777;
6660 @media only screen and (max-width: 900px) {
6661 .sequence-title {
6662 border-top: 1px dotted #777;
6664 .post-nav.prev {
6665 border-right: 1px dotted #777;
6667 .post-nav.next {
6668 border-left: 1px dotted #777;
6672 /*===========*/
6673 /* POST-META */
6674 /*===========*/
6676 .post-meta .post-section::before,
6677 .comment-meta .alignment-forum {
6678 color: #000;
6679 text-shadow:
6680 1px 1px 0 #9740cb,
6681 0 1px 0 #9740cb,
6682 0 0 5px #9740cb;
6684 a.post-section:hover {
6685 text-decoration: none;
6687 a.post-section:hover::before {
6688 color: #2e0062;
6690 .post-meta .post-section.alignment-forum::before,
6691 .comment-meta .alignment-forum {
6692 text-shadow:
6693 1px 1px 0 #658100,
6694 0 1px 0 #658100,
6695 0 0 5px #658100;
6697 a.post-section.alignment-forum:hover::before {
6698 color: #181a00;
6700 .post-meta .date {
6701 color: #666;
6703 .post-meta .author {
6704 color: #9740cb;
6706 .bottom-post-meta {
6707 border-color: #1f1f1f;
6710 /*============*/
6711 /* LINK POSTS */
6712 /*============*/
6714 .post.link-post a.link-post-link {
6715 text-decoration: none;
6716 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6717 font-weight: 600;
6719 .post.link-post a.link-post-link:hover {
6720 color: #00a9ed;
6722 .post.link-post a.link-post-link:hover::before {
6723 color: #670;
6724 text-shadow:
6725 0.5px 0.5px 0 #000,
6726 -0.5px -0.5px 0 #000,
6727 0 0 2px #000,
6728 0 0 3px #54d400;
6730 .post.link-post a.link-post-link:focus {
6731 color: #777;
6732 border-bottom: 2px dotted #777;
6735 /*==========*/
6736 /* COMMENTS */
6737 /*==========*/
6739 .comments::before {
6740 border-top: 1px solid #fff;
6741 box-shadow: 0 3px 4px -4px #fff inset;
6743 @-moz-document url-prefix() {
6744 .comments::before {
6745 box-shadow: 0 3px 3px -4px #fff inset;
6748 #content > .comment-thread .comment-meta a.date:focus,
6749 #content > .comment-thread .comment-meta a.permalink:focus {
6750 color: #666;
6751 outline: 2px dotted #575756;
6752 position: relative;
6753 background-color: #000;
6755 #content > .comment-thread .comment-meta a.date:focus {
6756 padding: 0 4px;
6757 left: -4px;
6759 #content > .comment-thread .comment-meta a.date:focus + * {
6760 margin-left: -8px;
6762 #content > .comment-thread .comment-meta a.permalink:focus {
6763 padding: 0 5px;
6764 left: -5px;
6766 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6767 margin-left: -10px;
6769 .comment-item {
6770 border: 1px solid #2c2c2c;
6771 background-color: var(--GW-comment-background-color);
6773 .comment-parent-link::after {
6774 box-shadow:
6775 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6776 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6777 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6780 /*================================*/
6781 /* DEEP COMMENT THREAD COLLAPSING */
6782 /*================================*/
6784 .comment-item input[id^="expand"] + label::after {
6785 color: #0cc800;
6786 font-weight: 600;
6788 .comment-item input[id^="expand"] + label:hover::after {
6789 color: #00a9ed;
6791 .comment-item input[id^="expand"] + label:active::after,
6792 .comment-item input[id^="expand"] + label:focus::after{
6793 color: #00a9ed;
6795 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6796 border-width: 1px 0 0 0;
6799 /*==============*/
6800 /* COMMENT-META */
6801 /*==============*/
6803 .comment-meta .author {
6804 font-weight: bold;
6805 font-size: 1.25em;
6806 color: #fff;
6808 .comment-meta .author:hover {
6809 text-decoration: none;
6810 color: #9740cb;
6812 .comment-item .author:not(.redacted).original-poster::after {
6813 opacity: 0.5;
6816 .comment-item .karma.active-controls::after,
6817 .comment-item .karma .karma-value::after,
6818 .post .karma.active-controls::after,
6819 .post .karma .karma-value::after,
6820 .author::before {
6821 background-color: #000;
6822 color: #575756;
6823 border-radius: 4px;
6824 box-shadow: 0 0 0 1px #1f1f1f inset;
6826 .comment-item .karma.active-controls::after,
6827 .post .karma.active-controls::after {
6828 padding: 6px 4px 4px 4px;
6829 bottom: -44px;
6831 .comment-item .karma .karma-value::after,
6832 .post .karma .karma-value::after {
6833 padding: 2px 8px 1px 8px;
6834 top: -25px;
6835 min-width: 56px;
6838 /*====================*/
6839 /* ANTI-KIBITZER MODE */
6840 /*====================*/
6842 .author.redacted,
6843 .inline-author.redacted {
6844 opacity: 0.6;
6845 font-weight: 400;
6848 .karma-value.redacted {
6849 opacity: 0.4;
6852 .link-post-domain.redacted {
6853 opacity: 0.4;
6856 /*===========================*/
6857 /* COMMENT THREAD NAVIGATION */
6858 /*===========================*/
6860 div.comment-parent-link {
6861 font-weight: 600;
6863 a.comment-parent-link {
6864 font-weight: 400;
6866 a.comment-parent-link::before {
6867 color: #393939;
6869 a.comment-parent-link:hover::before {
6870 background-color: #00001e;
6871 color: #575756;
6874 div.comment-child-links {
6875 font-weight: 600;
6877 div.comment-child-links a {
6878 font-weight: 400;
6880 .comment-child-link::before {
6881 color: #484848;
6884 .comment-item-highlight {
6885 box-shadow:
6886 0 0 2px #0047b5,
6887 0 0 3px #0047b5,
6888 0 0 5px #0047b5,
6889 0 0 7px #0047b5,
6890 0 0 10px #0047b5;
6891 border: 1px solid #0047b5;
6893 .comment-item-highlight-faint {
6894 box-shadow:
6895 0 0 2px #00193b,
6896 0 0 3px #00193b,
6897 0 0 5px #00193b,
6898 0 0 7px #00193b,
6899 0 0 10px #00193b;
6900 border: 1px solid #00193b;
6903 .comment-popup {
6904 background-color: #000;
6907 /*=======================*/
6908 /* COMMENTS COMPACT VIEW */
6909 /*=======================*/
6911 #comments-list-mode-selector button {
6912 box-shadow:
6913 0 0 0 4px #000 inset,
6914 0 0 0 5px #393939 inset;
6916 #comments-list-mode-selector button:hover,
6917 #comments-list-mode-selector button.selected {
6918 box-shadow:
6919 0 0 0 5px #393939 inset;
6921 #content.compact > .comment-thread .comment-item::after {
6922 color: #0cc800;
6923 background: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
6926 @media only screen and (hover: hover) {
6927 #content.compact > .comment-thread .comment-item:hover .comment,
6928 #content.compact > .comment-thread .comment-item.expanded .comment {
6929 background-color: #000;
6930 outline: 3px solid #54d400;
6932 #content.compact > .comment-thread .comment-item:hover .comment::before,
6933 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6934 background-color: #000;
6935 box-shadow:
6936 0 0 3px #000,
6937 0 0 5px #000,
6938 0 0 7px #000,
6939 0 0 10px #000,
6940 0 0 20px #000,
6941 0 0 30px #000,
6942 0 0 40px #000;
6945 @media only screen and (hover: none) {
6946 #content.compact > .comment-thread.expanded .comment-item .comment {
6947 background-color: #000;
6948 outline: 3px solid #54d400;
6950 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6951 background-color: #000;
6952 box-shadow:
6953 0 0 3px #000,
6954 0 0 5px #000,
6955 0 0 7px #000,
6956 0 0 10px #000,
6957 0 0 20px #000,
6958 0 0 30px #000,
6959 0 0 40px #000;
6963 #content.user-page.compact > h1.listing {
6964 margin-top: 0.5rem;
6966 #content.user-page.compact > h1.listing + .post-meta {
6967 margin-bottom: 0.5rem;
6970 /*===========================*/
6971 /* HIGHLIGHTING NEW COMMENTS */
6972 /*===========================*/
6974 .new-comment::before {
6975 outline: 2px solid #7f3b92;
6976 box-shadow:
6977 0 0 6px -2px #7f3b92 inset,
6978 0 0 4px #7f3b92,
6979 0 0 6px #7f3b92;
6982 /*=================================*/
6983 /* COMMENT THREAD MINIMIZE BUTTONS */
6984 /*=================================*/
6986 .comment-minimize-button {
6987 color: #2c2c2c;
6989 .comment-minimize-button:hover {
6990 color: #484848;
6991 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6993 .comment-minimize-button::after {
6994 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6995 color: #777;
6997 .comment-minimize-button.maximized::after {
6998 color: #2c2c2c;
7001 /*==============*/
7002 /* VOTE BUTTONS */
7003 /*==============*/
7005 .vote::before {
7006 content: "";
7007 border-radius: 50%;
7008 background-size: 17px 17px;
7009 width: 17px;
7010 height: 17px;
7011 display: inline-block;
7012 position: relative;
7013 top: 2.5px;
7016 .vote:disabled {
7017 visibility: unset;
7019 .karma button.downvote:disabled::before {
7020 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7021 filter: brightness(50%);
7023 .karma button.upvote:disabled::before {
7024 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTE0NCAyNzZjMCA2LjYtNS40IDEyLTEyIDEyaC05MnY5MmMwIDYuNi01LjQgMTItMTIgMTJoLTU2Yy02LjYgMC0xMi01LjQtMTItMTJ2LTkyaC05MmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoOTJ2LTkyYzAtNi42IDUuNC0xMiAxMi0xMmg1NmM2LjYgMCAxMiA1LjQgMTIgMTJ2OTJoOTJjNi42IDAgMTIgNS40IDEyIDEydjU2eiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7025 filter: brightness(50%);
7028 .vote:active {
7029 transform: none;
7031 .vote.selected::before,
7032 .vote.clicked-once::before,
7033 .vote.clicked-twice::before {
7034 filter: drop-shadow(0 0 1px #fff);
7037 .upvote::before,
7038 .waiting .upvote.big-vote.clicked-twice::before {
7039 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7040 filter: grayscale(100%) brightness(128%);
7042 .downvote::before,
7043 .waiting .downvote.big-vote.clicked-twice::before {
7044 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7045 filter: grayscale(100%) brightness(188%);
7048 .vote.clicked-once::before,
7049 .vote.big-vote.clicked-once::before {
7050 box-shadow:
7051 0 0 0 1px #000,
7052 0 0 0 4px #2f2f2f,
7053 0 0 0 5px transparent;
7056 .vote.big-vote.clicked-twice::before,
7057 .waiting .vote.big-vote:not(.clicked-twice)::before,
7058 .waiting .vote:not(.big-vote).clicked-once::before {
7059 box-shadow: none;
7062 .upvote.clicked-twice::before,
7063 .upvote.big-vote::before {
7064 box-shadow:
7065 0 0 0 1px #000,
7066 0 0 0 4px #6200ad,
7067 0 0 0 5px transparent;
7070 .downvote.clicked-twice::before,
7071 .downvote.big-vote::before {
7072 box-shadow:
7073 0 0 0 1px #000,
7074 0 0 0 4px #0084c2,
7075 0 0 0 5px transparent;
7078 /*===========================*/
7079 /* COMMENTING AND POSTING UI */
7080 /*===========================*/
7082 .posting-controls input[type='submit'] {
7083 background-color: #000;
7084 border: 1px solid #484848;
7085 font-weight: bold;
7087 .posting-controls input[type='submit']:hover,
7088 .posting-controls input[type='submit']:focus {
7089 background-color: #1f1f1f;
7090 border: 1px solid #575756;
7093 .comment-controls .cancel-comment-button {
7094 font-weight: 600;
7095 color: #00a9ed;
7096 text-shadow:
7097 0 0 1px #000,
7098 0 0 2px #000;
7100 .comment-controls .cancel-comment-button:hover {
7101 color: #0090e0;
7102 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7105 .new-comment-button {
7106 font-weight: 600;
7109 .comment-controls .delete-button,
7110 .comment-controls .retract-button {
7111 color: #00bbf5;
7112 opacity: 0.85;
7114 .comment-controls .edit-button,
7115 .comment-controls .unretract-button {
7116 color: #9740cb;
7118 .comment-controls .action-button:hover {
7119 color: #0090e0;
7120 opacity: 1.0;
7123 .button.edit-post-link:not(:hover) {
7124 color: #9740cb;
7127 .posting-controls textarea {
7128 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
7129 color: #fff;
7130 background-color: #000;
7131 border-color: #484848;
7132 box-shadow:
7133 0 0 0 1px #131313 inset;
7135 .posting-controls textarea:focus {
7136 background-color: #00001e;
7137 border-color: #0cc800;
7138 box-shadow:
7139 0 0 0 1px #1d1f00 inset,
7140 0 0 0 1px #000,
7141 0 0 0 2px #0cc800;
7143 .posting-controls.edit-existing-post textarea:focus,
7144 .posting-controls form.edit-existing-comment textarea:focus {
7145 border-color: #9740cb;
7146 box-shadow:
7147 0 0 0 1px #3d0061 inset,
7148 0 0 0 1px #000,
7149 0 0 0 2px #9740cb;
7152 /*= Scroll bars =*/
7154 .posting-controls textarea::-webkit-scrollbar {
7155 width: 16px;
7156 background-color: transparent;
7158 .posting-controls textarea::-webkit-scrollbar-track {
7159 background-color: #131313;
7160 border-left: 1px solid #484848;
7161 border-top: 1px solid #131313;
7163 .posting-controls textarea:focus::-webkit-scrollbar-track {
7164 border-left: 1px solid #0cc800;
7165 border-top: 1px solid #1d1f00;
7167 .posting-controls textarea::-webkit-scrollbar-thumb {
7168 background-color: #484848;
7169 box-shadow: 0 0 0 1px #131313 inset;
7170 border-left: 1px solid #484848;
7172 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7173 border-left: 1px solid #0cc800;
7174 background-color: #40a800;
7175 box-shadow:
7176 0 1px 0 0 #1d1f00 inset,
7177 0 0 0 1px #131313 inset;
7180 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7181 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7182 border-left: 1px solid #9740cb;
7184 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7185 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7186 border-left: 1px solid #9740cb;
7187 background-color: #8533c2;
7190 /* GUIEdit buttons */
7192 .guiedit-buttons-container {
7193 background-image: linear-gradient(to bottom, #000 0%, #1d1f00 50%, #252c00 75%, #344700 100%);
7196 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7197 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7198 color: #ce92ee;
7200 .guiedit-buttons-container button {
7201 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
7204 .guiedit::after {
7205 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7206 color: #777;
7207 text-shadow: none;
7210 /* Markdown hints */
7212 #markdown-hints-checkbox + label {
7213 color: #0cc800;
7215 #markdown-hints-checkbox + label:hover {
7216 color: #0098e4;
7217 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7219 #markdown-hints {
7220 border: 1px solid #00a9ed;
7221 background-color: #000340;
7224 /*================*/
7225 /* EDIT POST FORM */
7226 /*================*/
7228 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7229 top: -1px;
7231 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7232 border-radius: 3px;
7233 border: 1px solid #1f1f1f;
7234 color: #777;
7236 @media only screen and (hover:hover) {
7237 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7238 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7239 text-shadow:
7240 0 0 1px #000,
7241 0 0 2px #000,
7242 0 0 2.5px #484848;
7244 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7245 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7246 border-color: #484848;
7249 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7250 content: "\F00C";
7252 #edit-post-form input[type='radio'] + label {
7253 color: #777;
7254 border-color: #1f1f1f;
7255 padding: 4px 12px 5px 12px;
7257 #edit-post-form input[type='radio'][value='all'] + label {
7258 border-radius: 8px 0 0 8px;
7259 border-width: 1px;
7261 #edit-post-form input[type='radio'][value='drafts'] + label {
7262 border-radius: 0 8px 8px 0;
7264 @media only screen and (hover:hover) {
7265 #edit-post-form input[type='radio'] + label:hover,
7266 #edit-post-form input[type='radio']:focus + label {
7267 background-color: #1f1f1f;
7268 color: #fff;
7271 #edit-post-form input[type='radio']:focus + label {
7272 color: #fff;
7273 box-shadow:
7274 0 0 0 1px #484848;
7276 #edit-post-form input[type='radio']:checked + label {
7277 background-color: #1f1f1f;
7278 border-color: #1f1f1f;
7279 color: #fff;
7280 text-shadow:
7281 0 -1px 0 #000,
7282 0 0.5px 0.5px #fff;
7285 /*=======*/
7286 /* LINKS */
7287 /*=======*/
7290 text-decoration: none;
7291 color: #0cc800;
7293 a:visited {
7294 color: #76cc54;
7296 a:hover {
7297 text-decoration: underline;
7300 /*=========*/
7301 /* BUTTONS */
7302 /*=========*/
7304 button,
7305 input[type='submit'] {
7306 color: #0cc800;
7309 button:active,
7310 input[type='submit']:active {
7311 color: #0090e0;
7312 transform: scale(0.9);
7314 .button:visited {
7315 color: #0cc800;
7317 .button:active {
7318 transform: scale(0.9);
7320 @-moz-document url-prefix() {
7321 .button:active {
7322 transform: none;
7326 @media only screen and (hover:hover) {
7327 button:hover,
7328 input[type='submit']:hover,
7329 button:focus,
7330 input[type='submit']:focus {
7331 color: #0090e0;
7332 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7335 .button:hover {
7336 color: #0090e0;
7337 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7338 text-decoration: none;
7340 .button:focus:not(:hover) {
7341 transform: none;
7345 /*==========*/
7346 /* HEADINGS */
7347 /*==========*/
7349 .body-text h1,
7350 .body-text h2,
7351 .body-text h4 {
7352 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7354 .body-text h3,
7355 .body-text h5,
7356 .body-text h6 {
7357 font-weight: 600;
7358 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, sans-serif;
7360 .body-text h6 {
7361 color: #9b9b9b;
7363 .body-text h1 {
7364 border-bottom: 1px solid #484848;
7367 /*========*/
7368 /* QUOTES */
7369 /*========*/
7371 blockquote {
7372 border-left: 5px solid #2c2c2c;
7375 /*========*/
7376 /* IMAGES */
7377 /*========*/
7379 #content img,
7380 #content figure.image img {
7381 border: 1px solid #2c2c2c;
7383 #content figure img {
7384 border: 1px solid #fff;
7386 #content img[src$='.svg'],
7387 #content figure img[src$='.svg'] {
7388 border: none;
7390 #content img[style^='float'] {
7391 border: 1px solid transparent;
7394 /*========*/
7395 /* TABLES */
7396 /*========*/
7398 #content:not(.tag-index-page) .body-text table,
7399 #content:not(.tag-index-page) .body-text table th,
7400 #content:not(.tag-index-page) .body-text table td {
7401 border: 1px solid #2c2c2c;
7404 /*======*/
7405 /* MISC */
7406 /*======*/
7408 hr {
7409 border-bottom: 1px solid #575756;
7412 code {
7413 background-color: #0b0b00;
7414 border: 1px solid #1d1f00;
7415 border-radius: 4px;
7418 input[type='text'],
7419 input[type='search'],
7420 input[type='password'] {
7421 background-color: #000;
7422 border: 1px solid #1f1f1f;
7423 color: #fff;
7425 input[type='text']:focus,
7426 input[type='search']:focus,
7427 input[type='password']:focus {
7428 background-color: #00001e;
7429 border: 1px solid #393939;
7430 box-shadow: 0 0 1px #393939;
7433 select {
7434 color: #fff;
7437 @-moz-document url-prefix() {
7438 h1.listing s,
7439 .post > h1:first-of-type s {
7440 position: relative;
7441 text-decoration: none;
7443 h1.listing s::after,
7444 .post > h1:first-of-type s::after {
7445 position: absolute;
7446 border-bottom: 3px solid #fff;
7447 content: "";
7448 top: 0;
7449 left: 0;
7450 width: 100%;
7451 height: 50%;
7454 /*============*/
7455 /* ABOUT PAGE */
7456 /*============*/
7458 .about-page mark {
7459 background-color: #191919;
7460 text-decoration: none;
7461 box-shadow:
7462 0 -1px 0 0 #fff inset,
7463 0 -3px 1px -2px #fff inset;
7464 padding: 0 1px;
7467 #content.about-page .accesskey-table {
7468 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7469 border-color: #1f1f1f;
7472 #content.about-page img {
7473 border: 1px solid #fff;
7476 /*========================*/
7477 /* QUALIFIED HYPERLINKING */
7478 /*========================*/
7480 #aux-about-link a {
7481 color: #777;
7483 #aux-about-link a:hover {
7484 opacity: 1.0;
7485 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7488 .qualified-linking label {
7489 color: #0cc800;
7491 .qualified-linking label:hover {
7492 text-shadow:
7493 0 0 1px #000,
7494 0 0 3px #000,
7495 0 0 5px #0cc800;
7498 .qualified-linking-toolbar {
7499 border: 1px solid #fff;
7500 background-color: #000;
7502 .qualified-linking-toolbar a {
7503 background-color: #131313;
7504 border: 1px solid #2c2c2c;
7505 border-radius: 4px;
7507 .qualified-linking-toolbar a:visited {
7508 color: #0cc800;
7510 .qualified-linking-toolbar a:hover {
7511 text-decoration: none;
7512 background-color: #1f1f1f;
7513 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
7515 .qualified-linking label::after {
7516 background-color: #232323;
7517 opacity: 0.8;
7520 /*======*/
7521 /* MATH */
7522 /*======*/
7524 .mathjax-block-container::-webkit-scrollbar {
7525 height: 12px;
7526 background-color: #0b0b00;
7527 border-radius: 6px;
7528 border: 1px solid #1d1f00;
7530 .mathjax-block-container::-webkit-scrollbar-thumb {
7531 background-color: #1e1f13;
7532 border-radius: 6px;
7533 border: 1px solid #282c11;
7535 .mathjax-inline-container::-webkit-scrollbar {
7536 height: 8px;
7537 background-color: #0b0b00;
7538 border-radius: 4px;
7539 border: 1px solid #1d1f00;
7541 .mathjax-inline-container::-webkit-scrollbar-thumb {
7542 background-color: #1e1f13;
7543 border-radius: 4px;
7544 border: 1px solid #282c11;
7547 /*=================*/
7548 /* ALIGNMENT FORUM */
7549 /*=================*/
7551 #content.alignment-forum-index-page::before {
7552 background-color: #131100;
7554 #content.alignment-forum-index-page::after {
7555 font-family: "Concourse SmallCaps";
7556 font-weight: bold;
7557 background-color: #658100;
7558 -webkit-background-clip: text;
7559 color: transparent;
7560 text-shadow:
7561 rgba(0, 0, 0, 0.5) 0px 3px 3px;;
7563 @media only screen and (hover: hover) {
7564 #content.alignment-forum-index-page h1.listing a:hover,
7565 #content.alignment-forum-index-page h1.listing a:focus {
7566 background-color: rgba(19, 17, 0, 0.85);
7570 /*====================*/
7571 /* FOR NARROW SCREENS */
7572 /*====================*/
7574 @media only screen and (max-width: 1440px) {
7575 #hns-date-picker {
7576 background-color: #232323;
7577 opacity: 1.0;
7579 #hns-date-picker::before {
7580 border: 1px solid #575756;
7581 border-width: 1px 0 1px 1px;
7584 @media only screen and (max-width: 1160px) {
7585 #theme-selector:hover::after {
7586 background-color: #575756;
7589 @media only screen and (max-width: 1080px) {
7590 #text-size-adjustment-ui button {
7591 border: 1px solid #575756;
7592 padding: 0 0 0 1px;
7593 border-radius: 50%;
7594 box-shadow:
7595 0 0 6px #575756 inset,
7596 0 0 0 1px transparent;
7598 #theme-tweaker-toggle button {
7599 border: 1px solid #575756;
7600 box-shadow:
7601 0 0 10px #575756 inset,
7602 0 0 0 1px transparent;
7603 border-radius: 50%;
7604 transform: scale(0.8);
7607 @media only screen and (max-width: 1020px) {
7608 #quick-nav-ui a {
7609 box-shadow:
7610 0 0 0 1px #575756,
7611 0 0 0 2px transparent;
7613 #new-comment-nav-ui .new-comments-count::before {
7614 background-color: #232323;
7615 box-shadow:
7616 0 0 0 1px #575756,
7617 0 0 0 2px transparent;
7618 border-radius: 8px;
7620 #anti-kibitzer-toggle {
7621 box-shadow:
7622 0 0 0 1px #575756,
7623 0 0 0 2px transparent;
7624 background-color: #232323;
7625 border-radius: 6px;
7626 overflow: hidden;
7629 @media only screen and (max-width: 1000px) {
7630 #theme-selector {
7631 background-color: #232323;
7632 box-shadow:
7633 0 0 0 1px #575756,
7634 0 0 0 2px transparent;
7636 #theme-selector:hover::after {
7637 width: calc(6em - 3px);
7638 height: calc(100% - 5px);
7639 top: 3px;
7640 left: 100%;
7642 #text-size-adjustment-ui button {
7643 background-color: #1f1f1f;
7645 #text-size-adjustment-ui button:hover {
7646 background-color: #131313;
7648 #theme-tweaker-toggle button {
7649 background-color: #1f1f1f;
7653 /*========*/
7654 /* MOBILE */
7655 /*========*/
7657 /**************************************************************************/
7658 @media only screen and (max-width: 1160px) {
7659 /**************************************************************************/
7661 #ui-elements-container > div[id$='-ui-toggle'] button {
7662 color: #666;
7663 text-shadow:
7664 0 0 1px #000,
7665 0 0 3px #000,
7666 0 0 5px #000,
7667 0 0 10px #000,
7668 0 0 20px #000,
7669 0 0 30px #000;
7672 #theme-selector {
7673 background-color: #232323;
7674 box-shadow:
7675 0 0 0 1px #575756,
7676 0 0 1px 3px #000,
7677 0 0 3px 3px #000,
7678 0 0 5px 3px #000,
7679 0 0 10px 3px #000,
7680 0 0 20px 3px #000;
7681 border-radius: 12px;
7683 #theme-selector::before,
7684 #theme-selector .theme-selector-close-button {
7685 color: #888;
7686 text-shadow: 0.5px 0.5px 0 #000;
7688 #theme-selector button {
7689 background-color: #191919;
7690 border-radius: 10px;
7692 #theme-selector button::after {
7693 color: #fff;
7694 padding-bottom: 2px;
7695 max-width: calc(100% - 3.25em);
7696 overflow: hidden;
7697 text-overflow: ellipsis;
7699 #theme-selector button.selected::after {
7700 text-shadow:
7701 0 -1px 0 #000,
7702 0 0.5px 0.5px #fff;
7705 #quick-nav-ui {
7706 background-color: #000;
7708 #quick-nav-ui,
7709 #new-comment-nav-ui,
7710 #hns-date-picker {
7711 box-shadow:
7712 0 0 1px 3px #000,
7713 0 0 3px 3px #000,
7714 0 0 5px 3px #000,
7715 0 0 10px 3px #000,
7716 0 0 20px 3px #000;
7718 #quick-nav-ui a::after,
7719 #new-comment-nav-ui::before {
7720 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7721 font-weight: 600;
7722 box-shadow:
7723 0 0 1px 0 #000,
7724 0 0 3px 0 #000,
7725 0 0 5px 0 #000;
7726 background-color: #000;
7727 border-radius: 4px;
7729 #quick-nav-ui,
7730 #new-comment-nav-ui {
7731 border-radius: 8px;
7733 #new-comment-nav-ui {
7734 background-color: #232323;
7735 border: 1px solid #575756;
7737 #new-comment-nav-ui::before {
7738 color: #777;
7740 #new-comment-nav-ui .new-comment-sequential-nav-button {
7741 box-shadow: 0 0 0 1px #575756;
7742 color: #777;
7744 #new-comment-nav-ui .new-comments-count {
7745 background-color: inherit;
7746 box-shadow: 0 -1px 0 0 #575756;
7748 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7749 color: #393939;
7751 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7752 border-radius: 7px 0 0 7px;
7754 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7755 border-radius: 0 7px 7px 0;
7757 #new-comment-nav-ui button::after {
7758 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7761 /*****************************************/
7762 @media only screen and (max-width: 900px) {
7763 /*****************************************/
7764 h1.listing {
7765 font-size: 1.75rem;
7766 line-height: 1;
7768 h1.listing .link-post-link {
7769 top: 2px;
7771 h1.listing + .post-meta .karma-value,
7772 h1.listing + .post-meta .comment-count,
7773 h1.listing + .post-meta .lw2-link,
7774 h1.listing + .post-meta .read-time {
7775 bottom: 0;
7777 h1.listing + .post-meta .post-section::before {
7778 position: unset;
7780 h1.listing + .post-meta .post-section {
7781 overflow: visible;
7782 order: 1;
7784 h1.listing + .post-meta .link-post-domain {
7785 order: 2;
7786 line-height: 1;
7787 flex-basis: 100%;
7789 h1.listing + .post-meta::after {
7790 bottom: -10px;
7792 #content.user-page h1.listing + .post-meta {
7793 margin-bottom: 1em;
7795 #content.user-page h1.link-post-listing::after {
7796 height: calc(100% + 2em);
7799 #nav-item-search button::before {
7800 color: #0cc800;
7803 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7804 background-color: #484848;
7807 .comment-item .comment-item {
7808 margin: 0.75em 2px 4px 6px;
7809 box-shadow:
7810 0 0 2px #2c2c2c,
7811 0 0 4px #2c2c2c,
7812 0 0 7px #2c2c2c;
7814 .comment-item .comment-item + .comment-item {
7815 margin: 1.5em 2px 4px 6px;
7817 .comment-body {
7818 font-size: 1.125rem;
7821 a.comment-parent-link:hover::before {
7822 background-color: unset;
7825 .sublevel-nav:not(.sort) .sublevel-item,
7826 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7827 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7828 border-radius: 8px;
7829 border-width: 1px;
7830 margin: 2px;
7832 /*******************************************/
7833 } @media only screen and (max-width: 720px) {
7834 /*******************************************/
7835 h1.listing {
7836 margin: 10px 6px 6px 6px;
7837 max-width: calc(100% - 12px);
7838 font-size: 1.5rem;
7839 padding-right: 35px;
7841 #content.conversations-user-page h1.listing {
7842 font-size: 1.5rem;
7844 h1.listing + .post-meta {
7845 margin: 0 6px 0 7px;
7846 clear: both;
7848 h1.listing + .post-meta {
7849 padding: .25em 254px 0 0;
7851 h1.listing + .post-meta::after {
7852 bottom: -2px;
7854 h1.listing + .post-meta > * {
7855 line-height: 1;
7856 display: block;
7858 #content.conversations-user-page h1.listing + .post-meta > * {
7859 line-height: 1.5;
7861 h1.listing + .post-meta .date,
7862 h1.listing + .post-meta .author {
7863 line-height: 1.3;
7865 h1.listing + .post-meta .karma-value,
7866 h1.listing + .post-meta .comment-count,
7867 h1.listing + .post-meta .lw2-link,
7868 h1.listing + .post-meta .read-time {
7869 top: unset;
7870 font-size: 1rem;
7871 box-shadow: none;
7873 h1.listing + .post-meta .karma-value::before,
7874 h1.listing + .post-meta .comment-count::before,
7875 h1.listing + .post-meta .lw2-link::before,
7876 h1.listing + .post-meta .read-time::before {
7877 box-shadow: none;
7879 h1.listing + .post-meta .karma-value,
7880 h1.listing + .post-meta .comment-count,
7881 h1.listing + .post-meta .read-time,
7882 h1.listing + .post-meta .lw2-link {
7883 bottom: 4px;
7886 h1.listing + .post-meta .karma-value {
7887 right: 192px;
7889 h1.listing + .post-meta .karma-value::before {
7890 text-shadow: 0.5px 0.5px 0.5px #575756;
7892 h1.listing + .post-meta .comment-count {
7893 right: 132px;
7895 h1.listing + .post-meta .read-time {
7896 right: 56px;
7898 h1.listing + .post-meta .lw2-link {
7899 opacity: 1;
7900 right: 0;
7902 h1.listing + .post-meta .link-post-domain {
7903 margin: 0;
7904 line-height: 1.3;
7905 overflow: hidden;
7906 text-overflow: ellipsis;
7908 h1.listing + .post-meta .post-section::before {
7909 position: absolute;
7910 left: unset;
7911 right: 0;
7912 bottom: 30px;
7913 top: unset;
7915 h1.listing a {
7916 display: inline;
7918 /*******************************************/
7919 } @media only screen and (max-width: 520px) {
7920 /*******************************************/
7921 h1.listing + .post-meta {
7922 padding: .25em 144px 0 0;
7923 flex-flow: column;
7925 #content.conversations-user-page h1.listing + .post-meta {
7926 flex-flow: row wrap;
7928 h1.listing + .post-meta .date {
7929 margin: 0.375em 0 0.25em 0;
7930 line-height: 1;
7932 #content.user-page h1.listing::after {
7933 height: calc(100% + 2.125em);
7935 #content.user-page h1.link-post-listing::after {
7936 height: calc(100% + 3.125em);
7938 #content.user-page:not(.conversations-user-page) h1.listing + .post-meta {
7939 padding: 0.25em 144px 0.5em 36px;
7941 #content.conversations-user-page h1.listing + .post-meta .date {
7942 margin: 0 0 0 1em;
7945 h1.listing + .post-meta .karma-value {
7946 bottom: 28px;
7947 right: 56px;
7949 h1.listing + .post-meta .comment-count {
7950 bottom: 28px;
7951 right: 0;
7953 h1.listing + .post-meta .read-time {
7954 right: 56px;
7955 bottom: 4px;
7957 h1.listing + .post-meta .lw2-link {
7958 right: 0;
7959 bottom: 4px;
7961 h1.listing + .post-meta .link-post-domain {
7962 max-width: 100%;
7964 h1.listing + .post-meta .post-section::before {
7965 right: 120px;
7968 #content.compact > .comment-thread .comment-item {
7969 max-height: 110px;
7972 .textarea-container:focus-within button:active {
7973 background-color: #2c2c2c;
7975 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7976 background-color: #131313;
7977 border: 1px solid #1f1f1f;
7978 border-radius: 6px;
7980 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7981 border-color: #00a9ed;
7982 box-shadow:
7983 0 0 0 1px #000,
7984 0 0 0 2px #00a9ed;
7985 color: #00a9ed;
7986 font-weight: 600;
7988 #content.conversation-page .textarea-container:focus-within::after {
7989 background-color: #000;
7991 .textarea-container:focus-within .guiedit-buttons-container {
7992 background-color: white;
7993 border-top: 1px solid #1d1f00;
7995 .textarea-container:focus-within button.guiedit {
7996 background-color: #131313;
7997 border: 1px solid #1f1f1f;
7998 border-radius: 6px;
8000 #markdown-hints::after {
8001 color: #9740cb;
8004 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8005 top: 2px;
8007 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8008 top: 1px;
8010 /*******************************************/
8011 } @media only screen and (max-width: 320px) {
8012 /*******************************************/
8013 h1.listing {
8014 font-size: 1.25rem;
8016 #content.user-page h1.listing::after {
8017 height: calc(100% + 2.625em);
8019 #content.user-page h1.link-post-listing::after {
8020 height: calc(100% + 3.75em);
8026 /*************/
8027 /* ACCORDIUS */
8028 /*************/
8030 /*======*/
8031 /* TAGS */
8032 /*======*/
8034 #tags {
8035 order: 12;
8036 display: flex;
8037 flex-basis: 100%;
8038 justify-content: center;
8039 margin: 0;
8040 flex-flow: row wrap;
8041 align-items: flex-start;
8044 /*===============*/
8045 /* DEFAULT THEME */
8046 /*===============*/
8048 /*++++++*/
8049 /* TAGS */
8050 /*++++++*/
8052 #tags {
8053 padding: 0.5em;
8055 #tags::before {
8056 content: "Tags:";
8057 margin: 0 0.25em 0 0;
8058 opacity: 0.5;
8059 line-height: 1;
8060 align-self: center;
8062 #tags a {
8063 border-radius: 8px;
8064 background-color: #110c06;
8065 border: 1px solid #2e2416;
8066 padding: 4px 8px 5px 8px;
8067 line-height: 1;
8068 margin: 0.25em;
8069 font-size: 0.9375em;
8071 #tags a:hover {
8072 text-decoration: none;
8073 background-color: #221806;
8075 #tags a:active {
8076 color: #00a1e8;