Dark mode selector, part VII
[lw2-viewer.git] / www / css / style.mac.css
blob4e535a7e1baf516bef6efef04432f08d55cbd80e
2 /*************/
3 /* VARIABLES */
4 /*************/
6 :root {
7 --GW-comment-background-color-odd: transparent;
8 --GW-comment-background-color-even: transparent;
9 --GW-comment-background-color-target: transparent;
11 --inverted-display: none;
14 /***************/
15 /* BASE LAYOUT */
16 /***************/
18 html {
19 box-sizing: border-box;
20 font-size: 16px;
22 *, *::before, *::after {
23 box-sizing: inherit;
25 script {
26 display: none !important;
29 /*=------=*/
30 /*= Body =*/
31 /*=------=*/
33 body {
34 padding: 0;
35 margin: 0;
37 body::before {
38 background-color: inherit;
39 position: fixed;
40 width: 100%;
41 height: 100%;
44 body.no-scroll {
45 overflow-y: scroll;
46 position: fixed;
47 width: 100%;
50 /*=----------------------------=*/
51 /*= Immediate children of body =*/
52 /*=----------------------------=*/
54 body > * {
55 max-width: 900px;
58 /* Special styles for special browsers.
59 (This one is a fix for Firefox’s built-in screenshot feature.)
61 body > iframe[id^='firefox-screenshots'] {
62 max-width: unset;
65 #content {
66 margin: 0 auto;
67 padding: 0 30px;
68 position: relative;
69 overflow: visible;
70 display: grid;
71 grid-template-columns: 2fr 1fr 2fr;
73 #content::before {
74 content: "";
75 display: block;
76 position: absolute;
77 top: 0;
78 left: 0;
79 width: 100%;
80 height: 100%;
81 z-index: -1;
82 pointer-events: none;
85 /*=---------=*/
86 /*= Content =*/
87 /*=---------=*/
89 #content > * {
90 grid-column: 1 / span 3;
93 /*=----------------------=*/
94 /*= Floating UI elements =*/
95 /*=----------------------=*/
97 #ui-elements-container {
98 position: fixed;
99 height: 100vh;
100 top: 0;
101 left: 0;
102 right: 0;
103 margin: auto;
104 z-index: 10000;
105 pointer-events: none;
107 #ui-elements-container > * {
108 pointer-events: auto;
111 /*=----------------=*/
112 /*= Images overlay =*/
113 /*=----------------=*/
114 /* (To exclude images in posts from theme tweaks) */
116 #images-overlay {
117 position: absolute;
118 z-index: 1;
119 left: 0;
120 right: 0;
121 margin: auto;
124 /***********/
125 /* NAV BAR */
126 /***********/
128 .nav-bar {
129 margin: 0 -30px;
130 display: flex;
131 order: -11;
132 z-index: 1;
135 /*=---------------=*/
136 /*= Nav bar items =*/
137 /*=---------------=*/
139 .nav-item {
140 flex: 1 1 auto;
142 .nav-item * {
143 text-overflow: ellipsis;
144 white-space: nowrap;
145 overflow: hidden;
147 .nav-inner {
148 padding: 12px 30px;
149 text-align: center;
150 display: block;
151 position: relative;
152 line-height: inherit;
153 width: 100%;
154 background: unset;
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: #bbb;
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: #f00;
338 text-shadow:
339 0 0 1px #777,
340 0.5px 0.5px 1px #777;
342 a#inbox-indicator:hover::before {
343 color: #fff;
344 text-shadow:
345 0 0 1px #000,
346 0 0 2px #000,
347 0 0 4px #000,
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 #f00,
354 0 0 2px #f00,
355 0 0 4px #f00,
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;
557 /**********************/
558 /* DARK MODE SELECTOR */
559 /**********************/
561 #dark-mode-selector {
562 position: absolute;
563 top: 4px;
564 right: -78px;
565 display: flex;
566 opacity: 0.4;
568 #dark-mode-selector:hover {
569 opacity: 1.0;
572 /*=---------=*/
573 /*= Buttons =*/
574 /*=---------=*/
576 #dark-mode-selector button {
577 font-family: "Font Awesome", "Font Awesome 5 Free";
578 font-size: 1.125rem;
579 width: 24px;
580 height: 24px;
581 padding: 0;
582 line-height: 1;
583 font-weight: 400;
585 #dark-mode-selector button.select-mode-auto {
587 #dark-mode-selector button.select-mode-light {
588 font-size: 1.25rem;
589 padding: 1px 0 0 1px;
591 #dark-mode-selector button.select-mode-dark {
592 font-weight: 300;
593 font-size: 1.25rem;
594 padding: 1px 0 0 4px;
596 #dark-mode-selector button.select-mode-dark.selected {
597 font-weight: 400;
599 #dark-mode-selector button:disabled:hover {
600 cursor: default;
603 /*=----------------=*/
604 /*= Hover tooltips =*/
605 /*=----------------=*/
607 #dark-mode-selector button::after {
608 content: attr(data-name);
609 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
610 font-weight: normal;
611 position: absolute;
612 display: block;
613 left: 0;
614 width: 100%;
615 text-align: center;
616 top: 92px;
617 font-size: 1rem;
618 visibility: hidden;
620 #dark-mode-selector button.selected::after {
621 content: attr(data-name) " (selected)";
623 #dark-mode-selector button:hover:not(:active)::after {
624 visibility: visible;
628 /******************/
629 /* WIDTH SELECTOR */
630 /******************/
632 #width-selector {
633 position: absolute;
634 top: 40px;
635 right: -78px;
637 #width-selector button {
638 width: 22px;
639 height: 22px;
640 padding: 6px;
641 margin: 1px;
642 overflow: hidden;
643 background-repeat: no-repeat;
644 background-size: 100%;
645 background-origin: content-box;
647 #width-selector button,
648 #width-selector button:active,
649 #width-selector button:focus {
650 text-shadow: none;
651 color: transparent;
653 #width-selector button:disabled {
654 cursor: auto;
656 #width-selector button.select-width-normal {
657 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
659 #width-selector button.select-width-wide {
660 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
662 #width-selector button.select-width-fluid {
663 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
666 /*=----------------=*/
667 /*= Hover tooltips =*/
668 /*=----------------=*/
670 #width-selector button::after {
671 content: attr(data-name);
672 position: absolute;
673 display: block;
674 left: 0;
675 width: 100%;
676 text-align: center;
677 top: 56px;
678 visibility: hidden;
680 #width-selector button.selected::after {
681 content: attr(data-name) " (selected)";
683 #width-selector button:hover:not(:active)::after {
684 visibility: visible;
687 head.content-width-normal + body > * {
688 max-width: 900px;
690 head.content-width-wide + body > * {
691 max-width: 1150px;
693 head.content-width-fluid + body > * {
694 max-width: calc(100% - 300px);
697 /******************/
698 /* THEME SELECTOR */
699 /******************/
701 #theme-selector {
702 position: absolute;
703 top: 3px;
704 left: -41px;
705 opacity: 0.4;
706 display: table;
707 max-width: 40px;
709 #theme-selector:hover {
710 opacity: 1.0;
713 /*=----------------------=*/
714 /*= Theme select buttons =*/
715 /*=----------------------=*/
717 .theme-selector button {
718 display: table-cell;
719 width: 26px;
720 height: 26px;
721 padding: 5px;
722 margin: 1px 7px 0 7px;
723 color: transparent;
724 background-size: 16px 16px;
725 background-origin: content-box;
727 .theme-selector button,
728 .theme-selector button:hover,
729 .theme-selector button:active,
730 .theme-selector button:focus {
731 text-shadow: none;
732 color: transparent;
734 .theme-selector button:disabled {
735 cursor: auto;
738 /*=----------------------------=*/
739 /*= Pre-rendered button images =*/
740 /*=----------------------------=*/
741 /* (Each is just a capital letter A through whatever) */
743 .theme-selector button:nth-of-type(1) {
744 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
746 .theme-selector button:nth-of-type(2) {
747 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
749 .theme-selector button:nth-of-type(3) {
750 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=');
752 .theme-selector button:nth-of-type(4) {
753 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
755 .theme-selector button:nth-of-type(5) {
756 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
758 .theme-selector button:nth-of-type(6) {
759 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
761 .theme-selector button:nth-of-type(7) {
762 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
764 .theme-selector button:nth-of-type(8) {
765 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
767 .theme-selector button:nth-of-type(9) {
768 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
771 /*=------------------------------=*/
772 /*= Theme select button tooltips =*/
773 /*=------------------------------=*/
774 /* (with the name & description of the theme that each button selects) */
776 #theme-selector button {
777 position: relative;
778 z-index: 1;
780 #theme-selector button::before {
781 content: attr(data-theme-name);
782 position: absolute;
783 top: 0;
784 right: 100%;
785 padding: 5px 6px 6px 6px;
786 line-height: 1;
787 width: 6em;
788 text-align: right;
789 z-index: 1;
790 visibility: hidden;
792 #theme-selector:hover button::before {
793 visibility: visible;
795 #theme-selector:hover ~ #theme-tweaker-toggle,
796 #theme-selector:active ~ #theme-tweaker-toggle {
797 z-index: -1;
800 /************************/
801 /* THEME TWEAKER TOGGLE */
802 /************************/
804 #theme-tweaker-toggle {
805 position: absolute;
806 top: 7px;
807 left: -75px;
809 #theme-tweaker-toggle button {
810 font-family: "Font Awesome", "Font Awesome 5 Free";
811 font-weight: 900;
812 font-size: 1.25rem;
813 opacity: 0.4;
814 z-index: 1;
816 #theme-tweaker-toggle button:hover {
817 opacity: 1.0;
820 /*******************/
821 /* QUICKNAV WIDGET */
822 /*******************/
824 #quick-nav-ui {
825 position: absolute;
826 right: -67px;
827 bottom: 20px;
829 #quick-nav-ui a {
830 font-family: "Font Awesome", "Font Awesome 5 Free";
831 font-weight: 900;
832 font-size: 1.5rem;
833 line-height: 1.7;
834 text-align: center;
835 display: block;
836 width: 40px;
837 height: 40px;
838 margin: 10px 0 0 0;
840 #quick-nav-ui a[href='#comments'].no-comments {
841 pointer-events: none;
843 #quick-nav-ui a {
844 visibility: hidden;
846 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
847 visibility: visible;
850 /************************/
851 /* NEW COMMENT QUICKNAV */
852 /************************/
854 #new-comment-nav-ui {
855 position: absolute;
856 right: -112px;
857 bottom: 42px;
859 #new-comment-nav-ui > * {
860 display: block;
861 position: relative;
863 #new-comment-nav-ui.no-comments {
864 display: none;
867 /*=--------------------=*/
868 /*= New comments count =*/
869 /*=--------------------=*/
871 #new-comment-nav-ui .new-comments-count {
872 width: 2em;
873 font-size: 1.25rem;
874 line-height: 1.1;
875 text-align: center;
876 left: 1px;
877 cursor: pointer;
879 #new-comment-nav-ui .new-comments-count::selection {
880 background-color: transparent;
882 #new-comment-nav-ui .new-comments-count::after {
883 content: "NEW";
884 display: block;
885 font-size: 0.625rem;
888 /*=-----------------------------------=*/
889 /*= Next/previous new comment buttons =*/
890 /*=-----------------------------------=*/
892 #new-comment-nav-ui .new-comment-sequential-nav-button {
893 font-size: 1.75rem;
894 font-family: "Font Awesome", "Font Awesome 5 Free";
895 font-weight: 900;
896 width: 1.5em;
897 z-index: 5001;
899 #new-comment-nav-ui .new-comment-previous {
900 top: 8px;
902 #new-comment-nav-ui .new-comment-next {
903 bottom: 6px;
905 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
906 cursor: auto;
907 pointer-events: none;
910 /*******************/
911 /* HNS DATE PICKER */
912 /*******************/
914 #hns-date-picker {
915 position: absolute;
916 bottom: 72px;
917 right: -253px;
918 opacity: 0.6;
920 #hns-date-picker:hover,
921 #hns-date-picker:focus-within {
922 opacity: 1.0;
924 #hns-date-picker.no-comments {
925 display: none;
928 /*=---------------=*/
929 /*= "Since" label =*/
930 /*=---------------=*/
932 #hns-date-picker span {
933 display: block;
934 font-size: 0.75rem;
935 text-transform: uppercase;
938 /*=--------------------=*/
939 /*= "Since" text field =*/
940 /*=--------------------=*/
942 #hns-date-picker input {
943 margin-top: 1px;
944 padding: 1px 3px;
945 width: 140px;
946 text-align: center;
947 box-shadow: 0 0 0 1px transparent;
950 /************************/
951 /* ANTI-KIBITZER TOGGLE */
952 /************************/
954 #anti-kibitzer-toggle {
955 position: absolute;
956 right: -67px;
957 bottom: 225px;
959 #anti-kibitzer-toggle button {
960 display: block;
961 width: 40px;
962 height: 54px;
963 padding: 0;
965 #anti-kibitzer-toggle button::before,
966 #anti-kibitzer-toggle button::after {
967 font-family: "Font Awesome", "Font Awesome 5 Free";
969 #anti-kibitzer-toggle button::before {
970 content: "\F06E";
971 display: block;
972 font-size: 1.75em;
973 font-weight: 400;
975 #anti-kibitzer-toggle button::after {
976 content: "\F007\2004\F164";
977 font-size: 0.875em;
978 font-weight: 900;
980 #anti-kibitzer-toggle.engaged button::before {
981 content: "\F070";
984 /************************/
985 /* TEXT SIZE ADJUSTMENT */
986 /************************/
988 #text-size-adjustment-ui {
989 position: absolute;
990 top: 64px;
991 right: -78px;
992 opacity: 0.4;
994 #text-size-adjustment-ui:hover {
995 opacity: 1.0;
998 /* This doesn't work in Mozilla browsers, so hide it */
999 @-moz-document url-prefix() {
1000 #text-size-adjustment-ui {
1001 display: none;
1005 /*=---------=*/
1006 /*= Buttons =*/
1007 /*=---------=*/
1009 #text-size-adjustment-ui button {
1010 font-weight: 900;
1011 font-family: "Font Awesome", "Font Awesome 5 Free";
1012 font-size: 0.75rem;
1013 width: 24px;
1014 height: 24px;
1015 padding: 0;
1017 #text-size-adjustment-ui button.default {
1018 font-family: inherit;
1019 font-size: 1.125rem;
1020 position: relative;
1021 top: 1px;
1023 #text-size-adjustment-ui button:disabled {
1024 opacity: 0.5;
1026 #text-size-adjustment-ui button:disabled:hover {
1027 cursor: default;
1030 /*=----------------=*/
1031 /*= Hover tooltips =*/
1032 /*=----------------=*/
1034 #text-size-adjustment-ui::after {
1035 content: "Adjust text size";
1036 position: absolute;
1037 display: block;
1038 left: 0;
1039 width: 100%;
1040 text-align: center;
1041 top: 32px;
1042 visibility: hidden;
1043 font-size: 0.9em;
1045 #text-size-adjustment-ui:hover::after {
1046 visibility: visible;
1049 /*******************************/
1050 /* COMMENTS VIEW MODE SELECTOR */
1051 /*******************************/
1053 #comments-view-mode-selector {
1054 position: absolute;
1055 bottom: 30px;
1056 left: -40px;
1057 opacity: 0.6;
1059 #comments-view-mode-selector:hover {
1060 opacity: 1.0;
1063 /*=---------=*/
1064 /*= Buttons =*/
1065 /*=---------=*/
1067 #comments-view-mode-selector a {
1068 display: block;
1069 font-family: "Font Awesome", "Font Awesome 5 Free";
1070 font-size: 1.25rem;
1071 text-align: center;
1072 opacity: 0.4;
1073 padding: 0.25em;
1074 z-index: 1;
1076 #comments-view-mode-selector a.threaded {
1077 transform: scaleY(-1);
1078 font-weight: 900;
1080 #comments-view-mode-selector a.chrono {
1081 font-weight: normal;
1083 #comments-view-mode-selector a.selected,
1084 #comments-view-mode-selector a:hover {
1085 opacity: 1.0;
1086 text-decoration: none;
1088 #comments-view-mode-selector a.selected {
1089 cursor: default;
1092 /*****************/
1093 /* KEYBOARD HELP */
1094 /*****************/
1096 #keyboard-help-overlay {
1097 width: 100vw;
1098 height: 100vh;
1099 background-color: rgba(0,0,0,0.7);
1100 position: fixed;
1101 left: 0;
1102 top: 0;
1103 z-index: 5001;
1105 display: flex;
1106 justify-content: center;
1107 align-items: center;
1108 padding: 20px 30px 30px 20px;
1110 visibility: hidden;
1113 #keyboard-help-overlay .keyboard-help-container {
1114 background-color: #fff;
1115 filter: drop-shadow(4px 4px 2px #000);
1116 flex: 1 1 auto;
1117 max-width: 1500px;
1118 max-height: 100%;
1119 overflow-y: auto;
1120 position: relative;
1122 #keyboard-help-overlay .keyboard-help-container h1 {
1123 text-align: center;
1124 border-bottom: 1px solid #ddd;
1125 margin: 0;
1126 padding: 10px 20px;
1128 #keyboard-help-overlay .keyboard-help-container .note {
1129 margin: 0.5em auto;
1130 padding: 0 1em;
1131 width: fit-content;
1133 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1134 column-width: 21em;
1135 column-count: auto;
1136 column-gap: 1.5em;
1137 border-top: 1px solid #ddd;
1138 padding: 15px 20px;
1140 #keyboard-help-overlay .keyboard-help-container ul {
1141 list-style-type: none;
1142 margin: 0;
1143 padding: 0;
1144 break-inside: avoid;
1145 white-space: nowrap;
1147 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1148 margin: 20px 0 0 0;
1150 #keyboard-help-overlay .keyboard-help-container ul li.section {
1151 font-weight: bold;
1152 font-size: 1.125rem;
1153 break-after: avoid;
1155 #keyboard-help-overlay .keyboard-help-container .keys {
1156 margin: 0 0.5em 0 0;
1157 min-width: 4.5em;
1158 display: inline-block;
1160 #keyboard-help-overlay .keyboard-help-container .keys code {
1161 margin: 0 6px 0 0;
1163 #keyboard-help-overlay .keyboard-help-container code {
1164 display: inline-block;
1165 background-color: #eee;
1166 border: 1px solid #ccc;
1167 padding: 3px 8px 4px 8px;
1168 margin: 0 1px;
1170 #keyboard-help-overlay .keyboard-help-container code.ak {
1171 background-color: #ffeb83;
1172 border-color: #d4a500;
1174 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1175 content: "ak+";
1176 opacity: 0.3;
1179 #nav-item-about button.open-keyboard-help {
1180 display: none;
1182 @media only screen and (hover:hover) and (pointer:fine) {
1183 #nav-item-about {
1184 position: relative;
1185 padding-right: 0.25em;
1187 #nav-item-about button.open-keyboard-help {
1188 font-family: "Font Awesome", "Font Awesome 5 Free";
1189 font-weight: 900;
1190 position: absolute;
1191 top: 0;
1192 right: 0;
1193 height: 100%;
1194 padding: 8px;
1195 display: initial;
1196 line-height: 1;
1197 background-color: transparent;
1201 #keyboard-help-overlay button.close-keyboard-help {
1202 position: absolute;
1203 right: 0;
1204 top: 0;
1205 font-family: "Font Awesome", "Font Awesome 5 Free";
1206 font-size: 1.5rem;
1207 padding: 10px 12px;
1210 /************/
1211 /* ARCHIVES */
1212 /************/
1214 .archive-nav {
1215 margin: 1.25em 0.5em 0 0.5em;
1216 padding: 0.25em;
1218 .archive-nav > * {
1219 display: flex;
1221 .archive-nav *[class^='archive-nav-item'] {
1222 line-height: 1;
1223 flex: 1 1 5%;
1224 text-align: center;
1225 padding: 6px 4px 4px 4px;
1226 max-width: 8%;
1228 @-moz-document url-prefix() {
1229 .archive-nav *[class^='archive-nav-item'] {
1230 padding: 5px 4px;
1233 .archive-nav-days .archive-nav-item-day {
1234 font-size: 0.8em;
1235 padding: 7px 0 5px 0;
1236 max-width: 4%;
1238 .archive-nav-days .archive-nav-item-day:first-child {
1239 flex-basis: 10%;
1242 /************/
1243 /* ARCHIVES */
1244 /************/
1246 .archive-nav {
1247 margin: 1.25em 0.5em 0 0.5em;
1248 padding: 0.25em;
1250 .archive-nav > * {
1251 display: flex;
1253 .archive-nav *[class^='archive-nav-item'] {
1254 line-height: 1;
1255 flex: 1 1 5%;
1256 text-align: center;
1257 padding: 6px 4px 4px 4px;
1258 max-width: 8%;
1260 @-moz-document url-prefix() {
1261 .archive-nav *[class^='archive-nav-item'] {
1262 padding: 5px 4px;
1265 .archive-nav-days .archive-nav-item-day {
1266 font-size: 0.8em;
1267 padding: 7px 0 5px 0;
1268 max-width: 4%;
1270 .archive-nav-days .archive-nav-item-day:first-child {
1271 flex-basis: 10%;
1274 /************/
1275 /* LISTINGS */
1276 /************/
1278 h1.listing {
1279 font-size: 1.875rem;
1280 line-height: 1.15;
1281 max-height: 1.15em;
1282 position: relative;
1285 h1.listing a {
1286 position: relative;
1289 /* Links to link-posts (not the link-post links themselves; that's below) */
1290 h1.listing .link-post-link + a {
1291 margin-left: 0.25em;
1294 h1.listing .link-post-link {
1295 font-size: 0.8em;
1296 display: inline;
1297 vertical-align: top;
1298 position: relative;
1299 top: 4px;
1302 /*=----------------------=*/
1303 /*= Listing hover reveal =*/
1304 /*=----------------------=*/
1305 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1307 @media only screen and (min-width: 1160px) {
1308 h1.listing a {
1309 max-width: 100%;
1310 display: inline-block;
1311 white-space: nowrap;
1312 text-overflow: ellipsis;
1313 overflow: hidden;
1314 border-bottom: 1px solid transparent;
1315 -webkit-hyphens: auto;
1316 -moz-hyphens: auto;
1317 -ms-hyphens: auto;
1318 hyphens: auto;
1319 z-index: 1;
1320 padding: 0 0 1px 1px;
1322 h1.listing .link-post-link + a {
1323 max-width: calc(100% - 40px);
1325 h1.listing a:hover,
1326 h1.listing a:focus {
1327 text-decoration: dotted underline;
1328 white-space: initial;
1329 overflow: visible;
1330 z-index: 2;
1332 h1.listing:focus-within::before {
1333 content: "\F105";
1334 font-family: "Font Awesome", "Font Awesome 5 Free";
1335 display: block;
1336 position: absolute;
1337 left: -0.75em;
1340 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1341 mouse movements) */
1343 h1.listing a:not(.edit-post-link):hover::before {
1344 content: "";
1345 position: absolute;
1346 top: -10px;
1347 right: -10px;
1348 bottom: -10px;
1349 left: -10px;
1350 z-index: -1;
1352 h1.listing .link-post-link:hover {
1353 text-decoration: none;
1357 /*=-----------------------=*/
1358 /*= In-listing edit links =*/
1359 /*=-----------------------=*/
1361 h1.listing .edit-post-link {
1362 position: absolute;
1363 margin: 0;
1366 /*=---------------------------------=*/
1367 /*= Error messages on listing pages =*/
1368 /*=---------------------------------=*/
1370 .listing-message {
1371 width: 100%;
1372 text-align: center;
1373 padding: 1.25em 0 1.25em 0;
1374 font-size: 1.375em;
1377 /*********************/
1378 /* LISTING POST-META */
1379 /*********************/
1381 h1.listing + .post-meta {
1382 position: relative;
1383 justify-content: flex-start;
1384 margin: 0 20px 0 21px;
1387 h1.listing + .post-meta > * {
1388 margin: 0 1em 0 0;
1391 h1.listing + .post-meta .post-section {
1392 width: 0;
1393 margin: 0;
1394 overflow: hidden;
1396 h1.listing + .post-meta .post-section::before {
1397 position: absolute;
1398 left: -36px;
1401 h1.listing + .post-meta .read-time {
1402 cursor: default;
1405 /********************/
1406 /* SEQUENCES & TAGS */
1407 /********************/
1409 .sequence-text, .tag-description {
1410 font-size: 1.2rem;
1411 padding: 0 22px;
1414 #content.tag-index-page .tag-description {
1415 margin: 1em 0 0;
1418 section {
1419 margin-top: 2em;
1420 margin-bottom: 4em;
1423 h1.sequence-chapter {
1424 font-size: 2.3rem;
1427 article {
1428 max-width: 100%;
1431 .post-meta + .comments {
1432 margin-top: 3em;
1435 .tag-list {
1436 column-count: auto;
1437 column-width: 15em;
1438 margin-top: 0;
1439 border-bottom: 1px solid #999;
1440 padding-bottom: 1em;
1441 margin-bottom: 0;
1444 /**************/
1445 /* USER PAGES */
1446 /**************/
1448 /*=---------------------=*/
1449 /*= User's display name =*/
1450 /*=---------------------=*/
1452 #content.user-page h1.page-main-heading {
1453 margin: 0.25em 0 0 0;
1454 line-height: 1.1;
1455 grid-column: 1 / span 2;
1456 order: -2;
1459 #content.user-page h1.page-main-heading .user-full-name {
1460 font-size: 1rem;
1461 font-weight: normal;
1462 padding-left: 0.5em;
1465 /*=--------------------=*/
1466 /*= User's karma total =*/
1467 /*=--------------------=*/
1469 #content.user-page .user-stats {
1470 grid-column: 3;
1471 order: -2;
1472 text-align: right;
1473 align-self: end;
1476 #content.user-page .user-stats .karma-type {
1477 white-space: nowrap;
1480 /*=----------------------=*/
1481 /*= Expanded vs. compact =*/
1482 /*=----------------------=*/
1484 #content.user-page #comments-list-mode-selector {
1485 grid-row: span 2;
1487 #content.user-page #comments-list-mode-selector button {
1488 display: block;
1491 /*=----------------------------------------------------=*/
1492 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1493 /*=----------------------------------------------------=*/
1495 #content.user-page .sublevel-nav {
1496 margin-bottom: 0.5em;
1499 /*=--------------=*/
1500 /*= User's posts =*/
1501 /*=--------------=*/
1503 #content.user-page h1.listing {
1504 margin: 0.5em 0 0 0;
1507 #content.user-page .user-bio :first-child {
1508 margin-top: 0.5em;
1511 /*****************/
1512 /* CONVERSATIONS */
1513 /*****************/
1515 /*=----------------------=*/
1516 /*= List of participants =*/
1517 /*=----------------------=*/
1519 #content.conversation-page .conversation-participants {
1520 grid-column: 2 / span 2;
1521 text-align: right;
1522 margin: 0.5em 0 0 0;
1524 .post-meta > .conversation-participants {
1525 white-space: normal;
1527 .conversation-participants ul,
1528 .conversation-participants li {
1529 list-style-type: none;
1530 display: inline-block;
1531 margin: 0;
1532 padding: 0;
1534 .conversation-participants li {
1535 margin-left: 0.375em;
1537 .conversation-participants li:not(:last-of-type)::after {
1538 content: ",";
1541 /*=-------------------------=*/
1542 /*= Posting controls (form) =*/
1543 /*=-------------------------=*/
1545 #content.conversation-page .posting-controls {
1546 padding: 0 0 1em 0;
1548 #content.conversation-page .post-meta-fields {
1549 overflow: auto;
1550 display: flex;
1551 flex-flow: row wrap;
1553 .posting-controls.standalone textarea {
1554 margin-top: 0.375em;
1556 .posting-controls.standalone form {
1557 padding: 0 1em;
1559 #content.conversation-page .posting-controls.standalone form {
1560 padding: 0 1em 3em 1em;
1562 .posting-controls.standalone input[type='text'],
1563 .posting-controls.standalone label {
1564 margin: 0.25em 0;
1566 .posting-controls.standalone label {
1567 width: 4em;
1568 text-align: right;
1569 padding: 2px 6px;
1570 border: 1px solid transparent;
1572 .posting-controls.standalone input[type='text'] {
1573 width: calc(100% - 4em);
1574 padding: 0.25em;
1576 .posting-controls.standalone input[type='submit'] {
1577 float: right;
1579 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1580 white-space: nowrap;
1582 .posting-controls.standalone #markdown-hints {
1583 top: calc(100% + 2em);
1586 /*=--------------------=*/
1587 /*= Conversation title =*/
1588 /*=--------------------=*/
1590 #content.conversation-page h1.page-main-heading {
1591 text-align: center;
1592 margin: 0.5em 0;
1593 line-height: 1.15;
1596 /*=----------=*/
1597 /*= Messages =*/
1598 /*=----------=*/
1600 #content.conversation-page > ul.comment-thread:last-of-type {
1601 margin-bottom: 2em;
1604 /******************/
1605 /* SEARCH RESULTS */
1606 /******************/
1608 #content.search-results-page h1.listing,
1609 #content.sequence-page h1.listing,
1610 #content.post-page h1.listing {
1611 font-size: 1.625em;
1614 /**************/
1615 /* LOGIN PAGE */
1616 /**************/
1618 .login-container {
1619 margin: 2em 0;
1620 padding: 1em;
1621 display: flex;
1622 flex-flow: row wrap;
1625 .login-container form {
1626 flex-basis: 50%;
1627 display: grid;
1628 grid-row-gap: 0.5em;
1629 align-content: start;
1631 .login-container form label {
1632 text-align: right;
1633 padding: 0.25em 0.5em;
1634 white-space: nowrap;
1635 grid-column: 1;
1637 .login-container form input {
1638 grid-column: 2;
1639 padding: 0.25em;
1641 .login-container form input[type='submit'],
1642 .login-container form a {
1643 grid-column: 2;
1644 justify-self: center;
1646 .login-container form input[type='submit'] {
1647 width: 10em;
1648 padding: 0.35em;
1649 line-height: 1;
1650 margin: 0.5em 0 0 0;
1652 .login-container form h1 {
1653 text-align: center;
1654 margin: 0;
1655 grid-column: 2;
1658 /* “Log in” form */
1660 #login-form {
1661 grid-template-columns: 5.5em 1fr;
1662 padding: 0.5em 2em 0.5em 0;
1665 /* “Create account” form */
1667 #signup-form {
1668 font-size: 0.9em;
1669 grid-template-columns: 8.5em 1fr;
1670 padding: 0.5em 1em 1em 1em;
1672 #signup-form h1 {
1673 font-size: 1.7em;
1675 #signup-form input[type='submit'] {
1676 padding: 0.4em 0.5em 0.5em 0.5em;
1679 /* Log in tip */
1681 .login-container .login-tip {
1682 padding: 0.5em 0.5em 0.5em 3em;
1683 margin: 2em 4em 0 4em;
1684 text-indent: -2em;
1685 line-height: 1.4;
1687 .login-container .login-tip span {
1688 font-weight: bold;
1691 /* Message box */
1693 #content.login-page .error-box {
1694 margin: 1.5em 0.875em -1.5em 0.875em;
1696 .error-box, .success-box {
1697 padding: 0.25em;
1698 text-align: center;
1701 /***********************/
1702 /* PASSWORD RESET PAGE */
1703 /***********************/
1705 .reset-password-container {
1706 margin-bottom: 2em;
1708 .reset-password-container input[type='submit'] {
1709 padding: 0.2em 0.5em;
1710 width: unset;
1712 .reset-password-container input {
1713 margin-left: 0.5em;
1714 width: 12em;
1716 .reset-password-container label {
1717 display: inline-block;
1718 width: 9em;
1720 .reset-password-container form > div {
1721 margin: 0.2em;
1723 .reset-password-container .action-container {
1724 padding-left: 11em;
1725 padding-top: 0.2em;
1727 .reset-password-container .error-box {
1728 margin: unset;
1731 /*********************/
1732 /* TABLE OF CONTENTS */
1733 /*********************/
1735 .contents {
1736 float: right;
1737 min-width: 6em;
1738 max-width: 40%;
1739 margin: 1.25em 0 0.75em 1.25em;
1740 padding: 7px 14px 10px 10px;
1741 position: relative;
1742 z-index: 1;
1745 .contents-head {
1746 text-align: center;
1747 margin-bottom: 0.25em;
1750 .post-body .contents ul {
1751 list-style-type: none;
1752 margin: 0 0 0 0.5em;
1753 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1754 padding-left: 1em;
1755 font-size: 0.75em;
1757 .post-body .contents li {
1758 margin: 0.15em 0 0.3em 1em;
1759 text-align: left;
1760 text-indent: -1em;
1761 line-height: 1.2;
1762 position: relative;
1764 .post-body .contents li::before {
1765 position: absolute;
1766 width: 3em;
1767 display: block;
1768 text-align: right;
1769 left: -4.5em;
1771 .contents .toc-item-1 {
1772 counter-increment: toc-item-1;
1773 counter-reset: toc-item-2 toc-item-3;
1775 .contents .toc-item-1::before {
1776 content: counter(toc-item-1);
1778 .contents .toc-item-1 ~ .toc-item-2 {
1779 margin-left: 2.9em;
1780 font-size: 0.95em;
1782 .contents .toc-item-2 {
1783 counter-increment: toc-item-2;
1784 counter-reset: toc-item-3;
1786 .contents .toc-item-1 ~ .toc-item-2::before {
1787 content: counter(toc-item-1) "." counter(toc-item-2);
1789 .contents .toc-item-2::before {
1790 content: counter(toc-item-2);
1792 .contents .toc-item-1 + .toc-item-3 {
1793 counter-increment: toc-item-2 toc-item-3;
1795 .contents .toc-item-2 ~ .toc-item-3,
1796 .contents .toc-item-1 ~ .toc-item-3 {
1797 margin-left: 2.9em;
1798 font-size: 0.95em;
1800 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1801 margin-left: 5.7em;
1802 font-size: 0.9em;
1804 .contents .toc-item-3 {
1805 counter-increment: toc-item-3;
1807 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1808 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1810 .contents .toc-item-1 ~ .toc-item-3::before {
1811 content: counter(toc-item-1) "." counter(toc-item-3);
1813 .contents .toc-item-2 ~ .toc-item-3::before {
1814 content: counter(toc-item-2) "." counter(toc-item-3);
1816 .contents .toc-item-3::before {
1817 content: counter(toc-item-3);
1819 .contents .toc-item-4,
1820 .contents .toc-item-5,
1821 .contents .toc-item-6 {
1822 display: none;
1825 /********************/
1826 /* POSTS & COMMENTS */
1827 /********************/
1829 .post-meta > *,
1830 .comment-meta > * {
1831 display: inline-block;
1832 margin-right: 1em;
1833 font-size: 1.0625em;
1835 .body-text {
1836 overflow-wrap: break-word;
1837 text-align: justify;
1839 .body-text p {
1840 margin: 1em 0;
1842 .retracted .body-text {
1843 text-decoration: line-through;
1846 .bare-url {
1847 word-break: break-all;
1848 hyphens: auto;
1850 .body-text a:not([href]),
1851 .body-text a:not([href]):hover,
1852 .body-text a:not([href])::before,
1853 .body-text a:not([href])::after {
1854 text-decoration: none;
1855 text-shadow: unset;
1856 border: unset;
1857 color: unset;
1858 content: unset;
1860 /*************/
1861 /* POST-META */
1862 /*************/
1864 .post-meta {
1865 display: flex;
1866 flex-flow: row wrap;
1867 justify-content: center;
1869 .post-meta .lw2-link {
1870 opacity: 0.5;
1871 order: 1;
1873 .post-meta > *,
1874 .post-meta .post-section::before {
1875 margin: 0 0.5em;
1877 .post-meta .post-section {
1878 order: -1;
1879 margin: 0;
1880 visibility: hidden;
1882 .post-meta .post-section::before,
1883 .comment-meta .alignment-forum {
1884 visibility: visible;
1885 font-family: "Font Awesome", "Font Awesome 5 Free";
1886 font-weight: 900;
1888 .post-section.frontpage::before {
1889 content: "\F015";
1891 .post-section.featured::before {
1892 content: "\F005";
1894 .post-section.meta::before {
1895 content: "\F077";
1897 .post-section.events::before {
1898 content: "\F5A0";
1900 .post-section.personal::before {
1901 content: "\F007";
1903 .post-section.draft::before {
1904 content: "\F15B";
1906 .post-section.alignment-forum::before,
1907 .comment-meta .alignment-forum {
1908 content: "AF";
1909 font-family: Concourse, 'Changa One';
1912 /*= Karma controls hover tooltips =*/
1914 @media only screen and (pointer: fine) {
1915 .post .voting-controls,
1916 .comment-item .voting-controls {
1917 position: relative;
1919 .post .karma.active-controls::after,
1920 .comment-item .karma.active-controls::after {
1921 content: "Double-click for strong vote";
1922 position: absolute;
1923 pointer-events: none;
1924 display: block;
1925 left: 6px;
1926 width: 100%;
1927 line-height: 1.15;
1928 white-space: normal;
1929 text-align: center;
1930 font-size: 0.875rem;
1931 opacity: 0;
1932 transition: opacity 0.2s ease;
1934 .post .voting-controls.active-controls:hover::after,
1935 .comment-item .voting-controls.active-controls:hover::after {
1936 opacity: 1.0;
1939 .post .voting-controls .karma-value::after,
1940 .comment-item .voting-controls .karma-value::after {
1941 content: attr(title);
1942 position: absolute;
1943 pointer-events: none;
1944 display: block;
1945 left: 50%;
1946 transform: translateX(-50%);
1947 white-space: pre-wrap;
1948 width: max-content;
1949 text-align: center;
1950 font-size: 0.875rem;
1951 color: #bbb;
1952 opacity: 0;
1953 transition: opacity 0.2s ease;
1955 .post .voting-controls.agreement .karma-value:hover::after,
1956 .comment-item .voting-controls.agreement .karma-value:hover::after {
1957 top: unset;
1958 bottom: 100%;
1960 .post .voting-controls .karma-value:hover::after,
1961 .comment-item .voting-controls .karma-value:hover::after {
1962 opacity: 1.0;
1964 .post .voting-controls.waiting .karma-value:hover::after,
1965 .comment-item .voting-controls.waiting .karma-value:hover::after {
1966 display: none;
1968 .comment-item .voting-controls .karma-value:hover::after {
1969 z-index: 5001;
1972 .author {
1973 position: relative;
1975 .author:not(.redacted)::before {
1976 content: attr(data-full-name);
1977 position: absolute;
1978 pointer-events: none;
1979 display: block;
1980 padding: 0 1em;
1981 left: 50%;
1982 bottom: 2em;
1983 transform: translateX(-50%);
1984 white-space: nowrap;
1985 text-align: center;
1986 font-size: 0.875rem;
1987 font-weight: normal;
1988 opacity: 0;
1989 transition: opacity 0.2s ease;
1990 z-index: 5001;
1992 .author:hover::before {
1993 opacity: 1.0;
1997 /*********/
1998 /* POSTS */
1999 /*********/
2001 .post {
2002 max-width: 100%;
2005 .post-body {
2006 min-height: 8em;
2007 padding: 0 30px;
2008 line-height: 1.5;
2009 font-size: 1.3rem;
2010 overflow: auto;
2011 margin: 0.5em 0 0 0;
2013 h1.post-title {
2014 margin: 1.1em 0 0.35em 0;
2015 padding: 0 30px;
2016 text-align: center;
2017 font-size: 2.5em;
2018 line-height: 1;
2020 .post .post-meta {
2021 text-align: center;
2022 position: relative;
2023 z-index: 2;
2025 .post .top-post-meta:last-child {
2026 margin-bottom: 40px;
2028 .post .bottom-post-meta {
2029 margin: 0;
2030 padding: 20px 0;
2032 .bottom-post-meta {
2033 border-style: solid;
2034 border-width: 1px 0;
2037 /**********/
2038 /* EVENTS */
2039 /**********/
2041 .event-info .map {
2042 position: relative;
2043 width: 100%;
2044 margin: 2em 0 1em;
2047 .event-info .map::before {
2048 content: "";
2049 display: block;
2050 padding-bottom: 50%;
2053 .event-info .map iframe {
2054 width: 100%;
2055 height: 100%;
2056 border: 1px solid #000;
2057 position: absolute;
2058 top: 0;
2059 left: 0;
2062 .event-info ul {
2063 list-style: none;
2064 padding: 0;
2065 text-align: center;
2068 /*******************/
2069 /* POST NAVIGATION */
2070 /*******************/
2072 .post-nav-item {
2073 display: grid;
2074 grid-template: 100% / 32% 36% 32%;
2075 grid-template-areas:
2076 "prev seq next";
2078 .post-nav {
2079 display: flex;
2080 flex-flow: column;
2081 justify-content: flex-end;
2082 padding: 0.5em;
2085 .post-nav-title {
2086 font-size: 1.125em;
2087 line-height: 1.15;
2088 display: inline;
2089 border-top: 1px solid transparent;
2091 .post-nav.prev .post-nav-title,
2092 .post-nav.next .post-nav-title {
2093 border-bottom: 1px solid transparent;
2096 .sequence-title {
2097 align-items: center;
2098 text-align: center;
2099 grid-area: seq;
2101 .sequence-title .post-nav-title {
2102 font-size: 1.5em;
2105 .post-nav.prev {
2106 grid-area: prev;
2107 align-items: flex-start;
2109 .post-nav.prev .post-nav-title::before {
2110 content: "\F0D9\2005";
2112 .post-nav.next {
2113 grid-area: next;
2114 text-align: right;
2115 align-items: flex-end;
2117 .post-nav.prev .post-nav-label,
2118 .post-nav.next .post-nav-label {
2119 display: none;
2121 .post-nav.next .post-nav-title::after {
2122 content: "\2004\F0DA";
2124 .post-nav.prev .post-nav-title::before,
2125 .post-nav.next .post-nav-title::after {
2126 font-family: Font Awesome;
2127 font-weight: 900;
2128 vertical-align: text-bottom;
2129 opacity: 0.75;
2131 .post-nav-links {
2132 max-width: 100%;
2135 @media only screen and (max-width: 900px) {
2136 .post-nav-item {
2137 font-size: 0.875em;
2138 grid-template: auto auto / 50% 50%;
2139 grid-template-areas:
2140 "prev next"
2141 "seq seq";
2143 .post-nav.prev .post-nav-title,
2144 .post-nav.next .post-nav-title {
2145 border-bottom: none;
2147 .post-nav.prev {
2148 margin: 0 0 0 -1px;
2149 position: relative;
2150 left: 1px;
2152 .sequence-title {
2153 padding: 0.75em 0;
2156 @media only screen and (max-width: 520px) {
2157 .post-nav-links + .comments {
2158 padding: 1em 0 0 0;
2162 .related-posts, .related-post-group {
2163 padding-bottom: 1em;
2165 .related-post-type {
2166 font-size: 1.2em;
2167 font-weight: 600;
2168 margin-top: 0.5em;
2169 margin-bottom: -0.5em;
2170 list-style-type: disc;
2171 margin-left: -0.5em;
2172 opacity: 0.7;
2174 .related-post-type::before {
2175 content: "\269c";
2176 font-size: 1.375em;
2177 font-weight: normal;
2178 margin-right: 0.15em;
2179 position: relative;
2180 vertical-align: baseline;
2181 top: 0.05em;
2183 .related-posts .post-type-prefix {
2184 display: none;
2187 /**************/
2188 /* LINK POSTS */
2189 /**************/
2191 .post.link-post > .post-body > p:first-child {
2192 text-align: center;
2193 font-size: 1.125em;
2194 margin: 0.5em 0 0 0;
2196 .post.link-post > .post-body > p:only-child {
2197 font-size: 1.5em;
2198 margin: 1em 0;
2200 .post.link-post a.link-post-link::before {
2201 content: "\F0C1";
2202 font-family: "Font Awesome", "Font Awesome 5 Free";
2203 font-weight: 900;
2204 font-size: 0.75em;
2205 position: relative;
2206 top: -2px;
2207 margin-right: 0.25em;
2210 /************/
2211 /* COMMENTS */
2212 /************/
2214 .comments {
2215 max-width: 100%;
2216 padding: 0 0 1px 0;
2217 position: relative;
2219 .comments::before {
2220 content: "";
2221 position: absolute;
2222 display: block;
2223 top: 0;
2224 left: 0;
2225 width: 100%;
2226 height: 100%;
2227 pointer-events: none;
2229 ul.comment-thread {
2230 list-style-type: none;
2231 padding: 0;
2232 max-width: 100%;
2234 .comments .comment-thread > li {
2235 position: relative;
2237 #content > #top-nav-bar + .comment-thread .comment-item {
2238 margin-top: 0;
2241 .comment-item {
2242 margin: 2em 0 0 0;
2244 .comment-item .comment-item {
2245 margin: 1em 8px 8px 16px;
2247 .comment-item .comment-item + .comment-item {
2248 margin: 2em 8px 8px 16px;
2251 .comment-body {
2252 line-height: 1.45;
2253 font-size: 1.2rem;
2254 padding: 10px;
2256 .comment-body ul {
2257 list-style-type: circle;
2259 .comment-body > *:first-child {
2260 margin-top: 0;
2262 .comment-body > *:last-child {
2263 margin-bottom: 0;
2266 .comments-empty-message {
2267 width: 100%;
2268 text-align: center;
2269 padding: 0.75em 0 0.9em 0;
2270 font-size: 1.375em;
2273 /**********************************/
2274 /* DEEP COMMENT THREAD COLLAPSING */
2275 /**********************************/
2277 .comment-item > input[id^="expand"] {
2278 display: none;
2280 .comment-item > input[id^="expand"] + label {
2281 display: block;
2282 visibility: hidden;
2283 position: relative;
2284 margin: 8px 9px;
2286 .comment-item > input[id^="expand"] + label::after {
2287 content: "(Expand " attr(data-child-count) " below)";
2288 visibility: visible;
2289 position: absolute;
2290 left: 0;
2291 white-space: nowrap;
2292 cursor: pointer;
2294 .comment-item > input[id^="expand"]:checked + label::after {
2295 content: "(Collapse " attr(data-child-count) " below)";
2297 .comment-item > input[id^="expand"] ~ .comment-thread {
2298 max-height: 34px;
2299 overflow: hidden;
2301 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2302 margin-top: 0;
2304 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2305 max-height: 1000000px;
2308 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2309 margin: 0;
2311 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2312 display: none;
2315 /*************/
2316 /* BACKLINKS */
2317 /*************/
2319 .backlinks > input {
2320 display: none;
2323 .backlinks > label {
2324 margin-left: 10px;
2325 display: block;
2326 color: #00f;
2327 cursor: pointer;
2330 .backlinks > label::before {
2331 content: " ";
2332 border-left: 5px solid currentColor;
2333 border-top: 5px solid transparent;
2334 border-bottom: 5px solid transparent;
2335 transition: transform 0.25s ease-out;
2336 transform-origin: 29% 55%;
2337 display: inline-block;
2338 padding-right: 0.5em;
2341 .backlinks > input:checked + label::before {
2342 transform: rotate(90deg);
2345 .backlinks li {
2346 margin-top: 0;
2349 .backlinks > ul {
2350 height: 0;
2351 perspective-origin: top;
2352 transform: perspective(100em) rotateX(-90deg);
2353 transform-origin: center top;
2354 opacity: 0;
2355 margin-top: 0.5em;
2356 margin-bottom: 0.5em;
2359 .backlinks > input:checked ~ ul {
2360 height: auto;
2361 transform: perspective(100em) rotateX(0deg);
2362 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2363 opacity: 1;
2366 /****************/
2367 /* COMMENT-META */
2368 /****************/
2370 .comment-meta {
2371 padding: 2px 24px 2px 10px;
2372 margin: 0 -1px;
2373 border: none;
2374 display: flex;
2375 flex-flow: row wrap;
2376 align-items: baseline;
2378 .user-page .comment-meta,
2379 .conversation-page .comment-meta {
2380 padding-right: 10px;
2382 .comment-meta .comment-post-title {
2383 flex-basis: 100%;
2384 overflow: hidden;
2385 text-overflow: ellipsis;
2386 white-space: nowrap;
2387 line-height: 1.3;
2389 .conversation-page .comment-meta .comment-post-title {
2390 margin: 0;
2391 flex-basis: unset;
2392 flex: 1 0 auto;
2393 text-align: right;
2394 display: none; /* Not sure if we need to display this... */
2396 .comment-item .author:not(.redacted).original-poster::after {
2397 content: "\2004(OP)";
2398 font-size: 0.75em;
2401 /*****************************/
2402 /* COMMENT THREAD NAVIGATION */
2403 /*****************************/
2405 a.comment-parent-link:not(.inline-author),
2406 a.comment-parent-link.inline-author::before {
2407 opacity: 0.5;
2409 a.comment-parent-link:hover {
2410 opacity: 1.0;
2412 a.comment-parent-link::before {
2413 content: "\F062";
2414 font-family: "Font Awesome", "Font Awesome 5 Free";
2415 font-weight: 900;
2416 font-size: 0.75rem;
2417 line-height: 1;
2418 position: absolute;
2419 z-index: 1;
2420 display: block;
2421 padding: 3px 3px 0 3px;
2422 width: 16px;
2423 height: calc(100% + 2px);
2424 top: -1px;
2425 left: -17px;
2427 a.comment-parent-link::after {
2428 content: "";
2429 position: absolute;
2430 z-index: 0;
2431 display: block;
2432 width: calc(100% + 26px);
2433 height: calc(100% + 38px);
2434 top: -29px;
2435 left: -17px;
2436 pointer-events: none;
2437 overflow: hidden;
2438 visibility: hidden;
2440 a.comment-parent-link:hover::after {
2441 visibility: visible;
2444 .comment-child-links {
2445 flex-basis: 100%;
2447 .comment-child-link {
2448 margin: 0 0.25em;
2449 display: inline-block;
2451 .comment-child-link::before {
2452 content: ">";
2453 display: inline-block;
2454 margin: 0 2px 0 0;
2457 .comment-popup {
2458 position: fixed;
2459 top: 10%;
2460 right: 10%;
2461 max-width: 700px;
2462 z-index: 10001;
2463 font-size: 1rem;
2464 white-space: unset;
2465 pointer-events: none;
2467 .comment-popup .comment-parent-link {
2468 display: none;
2470 .comment-popup .comment-body {
2471 font-size: 1.0625rem;
2474 .comment-item.depth-odd {
2475 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2476 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2478 .comment-item.depth-even {
2479 --GW-comment-background-color: var(--GW-comment-background-color-even);
2480 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2483 .comment-item:target {
2484 --GW-comment-background-color: var(--GW-comment-background-color-target);
2486 .comment-item:target > .comment-thread > .comment-item {
2487 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2490 /**********************/
2491 /* COMMENT PERMALINKS */
2492 /**********************/
2493 /********************/
2494 /* COMMENT LW LINKS */
2495 /********************/
2497 .comment-meta .permalink::before,
2498 .comment-meta .lw2-link::before,
2499 .individual-thread-page a.comment-parent-link:empty::before {
2500 content: "";
2501 display: inline-block;
2502 width: 1rem;
2503 height: 1rem;
2504 border-radius: 3px;
2505 box-shadow:
2506 0 0 0 1px #fff,
2507 0 0 0 2px #00e,
2508 0 0 0 3px transparent;
2509 padding: 0 0 0 2px;
2510 background-size: 100%;
2511 position: relative;
2512 top: 2px;
2513 opacity: 0.5;
2515 .comment-meta .permalink::before {
2516 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');
2518 .comment-meta .lw2-link::before {
2519 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==');
2521 .individual-thread-page a.comment-parent-link:empty::before {
2522 left: unset;
2523 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==');
2525 .comment-meta .permalink:hover::before {
2526 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');
2528 .comment-meta .lw2-link:hover::before {
2529 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==');
2531 .individual-thread-page a.comment-parent-link:empty:hover::before {
2532 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=');
2534 .comment-meta .permalink:hover::before,
2535 .comment-meta .lw2-link:hover::before,
2536 .individual-thread-page a.comment-parent-link:empty:hover::before {
2537 box-shadow:
2538 0 0 0 2px #00e,
2539 0 0 0 3px transparent;
2540 opacity: 1.0;
2541 filter: unset;
2543 .comment-meta .permalink:active::before,
2544 .comment-meta .lw2-link:active::before,
2545 .individual-thread-page a.comment-parent-link:empty:active::before {
2546 transform: scale(0.9);
2549 .comment-meta .permalink,
2550 .comment-meta .lw2-link,
2551 .individual-thread-page .comment-parent-link:empty {
2552 position: relative;
2553 opacity: 1.0;
2555 .comment-meta .permalink::after,
2556 .comment-meta .lw2-link::after,
2557 .individual-thread-page .comment-parent-link:empty::after {
2558 content: "";
2559 width: 30px;
2560 height: 30px;
2561 display: block;
2562 position: absolute;
2563 top: -2px;
2564 left: -7px;
2565 box-shadow: none;
2566 pointer-events: auto;
2567 visibility: visible;
2570 /*************************/
2571 /* COMMENTS COMPACT VIEW */
2572 /*************************/
2574 #comments-list-mode-selector,
2575 #content.index-page #comments-list-mode-selector,
2576 #content.user-page #comments-list-mode-selector {
2577 padding-top: 6px;
2578 grid-column: 1;
2579 position: unset;
2580 z-index: 1;
2581 justify-self: start;
2582 align-self: start;
2584 #comments-list-mode-selector button {
2585 color: transparent;
2586 width: 32px;
2587 height: 32px;
2588 padding: 6px;
2589 margin: 1px;
2590 overflow: hidden;
2591 background-repeat: no-repeat;
2592 background-size: 100%;
2593 background-origin: content-box;
2595 #comments-list-mode-selector button:disabled {
2596 cursor: auto;
2598 #comments-list-mode-selector button.expanded {
2599 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2601 #comments-list-mode-selector button.compact {
2602 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2604 @media only screen and (max-resolution: 1dppx) {
2605 #comments-list-mode-selector button.expanded {
2606 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2608 #comments-list-mode-selector button.compact {
2609 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2613 #content > ul.comment-thread > li.comment-item,
2614 #content.compact > ul.comment-thread > li.comment-item {
2615 margin: 0;
2618 #content > .comment-thread {
2619 margin: 1em 0;
2621 #content.compact > .comment-thread {
2622 font-size: 0.9375rem;
2623 margin: 0.5em 0;
2625 #content.compact > .comment-thread:hover {
2626 z-index: 1;
2628 #content.compact > .comment-thread .comment-body {
2629 font-size: 1.0625rem;
2631 #content.compact > .comment-thread .comment-item,
2632 #content.index-page .comment-item.ignored,
2633 #content.inbox-user-page .comment-item.ignored {
2634 max-height: 61px;
2635 margin-top: 1em;
2636 overflow: hidden;
2637 position: relative;
2639 #content.compact > .comment-thread .comment-item {
2640 pointer-events: none;
2642 #content.compact > .comment-thread .comment-item::after {
2643 content: "…";
2644 position: absolute;
2645 right: 0;
2646 bottom: 0;
2647 font-size: 2rem;
2648 line-height: 1;
2649 padding: 0 16px 10px 64px;
2650 pointer-events: auto;
2652 @media only screen and (hover: hover) {
2653 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2654 #content.compact > .comment-thread .comment-item.expanded {
2655 overflow: visible;
2656 pointer-events: auto;
2657 z-index: 10;
2660 @media only screen and (hover: none) {
2661 #content.compact > .comment-thread.expanded .comment-item {
2662 overflow: visible;
2663 pointer-events: auto;
2664 z-index: 10;
2667 #content.compact > .comment-thread .comment-item .comment-meta {
2668 white-space: nowrap;
2669 overflow: hidden;
2670 text-overflow: ellipsis;
2671 padding: 2px 10px;
2673 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2674 white-space: unset;
2676 #content.compact > .comment-thread .comment-item .comment-meta a {
2677 pointer-events: auto;
2679 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2680 display: inline;
2682 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2683 margin-left: 0.75em;
2685 @media only screen and (hover: hover) {
2686 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2687 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2688 max-height: unset;
2690 #content.compact > .comment-thread .comment-item:hover .comment,
2691 #content.compact > .comment-thread .comment-item.expanded .comment {
2692 position: relative;
2693 z-index: 1;
2694 margin-bottom: 2em;
2695 bottom: 0;
2697 #content.compact > .comment-thread .comment-item:hover .comment::before,
2698 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2699 content: "";
2700 position: absolute;
2701 display: block;
2702 width: calc(100% + 20px);
2703 height: calc(100% + 20px);
2704 z-index: -1;
2705 top: -10px;
2706 left: -10px;
2708 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2709 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2710 margin: 0;
2713 @media only screen and (hover: none) {
2714 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2715 max-height: unset;
2717 #content.compact > .comment-thread.expanded .comment-item .comment {
2718 position: relative;
2719 z-index: 1;
2720 margin-bottom: 2em;
2721 bottom: 0;
2723 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2724 content: "";
2725 position: absolute;
2726 display: block;
2727 width: calc(100% + 14px);
2728 height: calc(100% + 20px);
2729 z-index: -1;
2730 top: -10px;
2731 left: -10px;
2733 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2734 margin: 0;
2736 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2737 content: "";
2738 display: block;
2739 position: fixed;
2740 top: 0;
2741 left: 0;
2742 width: 100%;
2743 height: 100%;
2744 z-index: -2;
2745 background-color: rgba(0,0,0,0.5);
2749 /*****************************/
2750 /* HIGHLIGHTING NEW COMMENTS */
2751 /*****************************/
2753 .new-comment::before {
2754 content: "";
2755 position: absolute;
2756 width: 100%;
2757 height: 100%;
2758 z-index: 5000;
2759 pointer-events: none;
2762 /***********************************/
2763 /* COMMENT THREAD MINIMIZE BUTTONS */
2764 /***********************************/
2766 .comment-minimize-button {
2767 font-family: "Font Awesome", "Font Awesome 5 Free";
2768 font-weight: 900;
2769 font-size: 1.25rem;
2770 line-height: 1;
2771 position: absolute;
2772 right: 1px;
2773 top: 1px;
2774 width: 18px;
2775 margin: 0;
2776 cursor: pointer;
2778 .comment-minimize-button:active {
2779 transform: scale(0.9);
2781 .comment-minimize-button::after {
2782 content: attr(data-child-count);
2783 font-weight: normal;
2784 font-size: 0.8125rem;
2785 position: absolute;
2786 left: 0;
2787 width: 100%;
2788 text-align: center;
2789 top: 21px;
2791 #content.individual-thread-page .comment-minimize-button {
2792 display: none;
2795 /*****************/
2796 /* IGNORE SYSTEM */
2797 /*****************/
2799 #content.comment-thread-page .comment-item.ignored {
2800 height: 38px;
2801 overflow: hidden;
2803 .comment-item.ignored > .comment > .comment-meta > .author {
2804 text-decoration: line-through;
2807 /***********************************/
2808 /* INDIVIDUAL COMMENT THREAD PAGES */
2809 /***********************************/
2811 .individual-thread-page > h1 {
2812 line-height: 1;
2813 margin: 0.75em 0 3px 0;
2815 .individual-thread-page .comments {
2816 border: none;
2819 /*************/
2820 /* SHORTFORM */
2821 /*************/
2823 .shortform-index-page .comments::before {
2824 border: none;
2825 box-shadow: none;
2828 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2829 margin-top: 0;
2832 /****************/
2833 /* VOTE BUTTONS */
2834 /****************/
2836 .vote {
2837 margin: 0;
2839 .vote {
2840 font-family: "Font Awesome", "Font Awesome 5 Free";
2841 font-weight: 900;
2842 border: none;
2845 .vote:disabled {
2846 visibility: hidden;
2847 cursor: default;
2850 @keyframes waiting {
2851 0% {background-position: 200% 0%}
2852 100% {background-position: 0% 0%}
2855 .voting-controls .karma-value {
2856 opacity: 1;
2857 transition: opacity 0.5s linear;
2860 .voting-controls.waiting .karma-value {
2861 opacity: 0.5;
2862 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2863 background-clip: text;
2864 -webkit-background-clip: text;
2865 color: transparent;
2866 background-position: 200% 0%;
2867 background-size: 200% 100%;
2868 animation: waiting 1s linear infinite;
2871 /* Replicated karma controls at bottom of comments. */
2872 .comment-controls .voting-controls {
2873 float: left;
2874 font-size: 0.9375em;
2877 .comment-controls .voting-controls:first-of-type {
2878 margin-left: -14px;
2881 /*****************************/
2882 /* COMMENTING AND POSTING UI */
2883 /*****************************/
2885 .comment-controls {
2886 text-align: right;
2887 margin: 0 8px 8px 16px;
2888 position: relative;
2889 z-index: 9999;
2891 .comment-thread .comment-controls + .comment-thread > li:first-child {
2892 margin-top: 8px;
2894 .comments > .comment-controls {
2895 margin: 8px 0 0 0;
2897 .comments > .comment-controls:last-child {
2898 margin: 8px 0 16px 0;
2901 .posting-controls input[type='submit'] {
2902 margin: 6px;
2903 padding: 4px 10px;
2904 font-size: 1.125rem;
2907 .comment-controls .cancel-comment-button {
2908 position: absolute;
2909 right: 0;
2910 margin: 0;
2911 height: 27px;
2912 font-size: inherit;
2913 padding: 4px 8px 2px 4px;
2914 z-index: 1;
2916 .comment-controls .cancel-comment-button::before {
2917 font-family: "Font Awesome", "Font Awesome 5 Free";
2918 margin-right: 3px;
2919 content: '\F00D';
2920 font-weight: 900;
2921 font-size: 0.9em;
2922 opacity: 0.7;
2925 .comment + .comment-controls .action-button {
2926 font-weight: normal;
2927 font-size: 1.0625em;
2928 padding: 1px 6px;
2930 .comment-controls .action-button::before {
2931 font-family: "Font Awesome", "Font Awesome 5 Free";
2932 margin-right: 3px;
2934 .new-comment-button {
2935 font-size: 1.5rem;
2936 margin: 0 0.25em;
2938 .comment-controls .reply-button::before {
2939 content: '\F3E5';
2940 font-weight: 900;
2941 font-size: 0.9em;
2942 opacity: 0.6;
2944 .comment-meta .replied::before {
2945 content: '\F3E5';
2946 font-family: "Font Awesome", "Font Awesome 5 Free";
2947 color: #090;
2948 font-weight: 900;
2949 font-size: 0.9em;
2950 opacity: 0.6;
2953 .post-controls {
2954 text-align: right;
2955 margin: 0.75em 0 0 0;
2956 align-self: start;
2957 justify-self: end;
2959 .edit-post-link {
2960 display: inline-block;
2961 margin-bottom: 0.25em;
2962 font-size: 1.125rem;
2964 .edit-post-link::before {
2965 margin-right: 0.3em;
2967 .comment-controls .edit-button::before,
2968 .edit-post-link::before {
2969 content: '\F303';
2970 font-family: "Font Awesome", "Font Awesome 5 Free";
2971 font-weight: 900;
2972 font-size: 0.75em;
2973 position: relative;
2974 top: -1px;
2977 .comment-controls .delete-button {
2978 margin-right: 0.25em;
2980 .comment-controls .edit-button,
2981 .comment-controls .retract-button,
2982 .comment-controls .unretract-button {
2983 margin-right: 1em;
2985 .comment-controls .retract-button::before {
2986 content: '\F4B3';
2987 opacity: 0.6;
2989 .comment-controls .unretract-button::before {
2990 content: '\F075';
2991 opacity: 0.9;
2993 .comment-controls .delete-button::before {
2994 content: '\F05E';
2995 opacity: 0.7;
2997 .comment-controls .retract-button::before,
2998 .comment-controls .unretract-button::before,
2999 .comment-controls .delete-button::before {
3000 font-weight: 900;
3001 font-size: 0.9em;
3004 .comment-controls form {
3005 position: relative;
3007 .textarea-container {
3008 position: relative;
3010 .posting-controls textarea {
3011 display: block;
3012 width: 100%;
3013 height: 15em;
3014 min-height: 15em;
3015 max-height: calc(100vh - 6em);
3016 margin: 2px 0 0 0;
3017 padding: 4px 5px;
3018 font-size: 1.2rem;
3019 border-style: solid;
3020 border-width: 29px 1px 1px 1px;
3021 resize: none;
3024 /* GUIEdit buttons */
3026 .guiedit-buttons-container {
3027 position: absolute;
3028 left: 1px;
3029 top: 1px;
3030 width: calc(100% - 2px);
3031 height: 28px;
3032 text-align: left;
3033 padding: 1px 4px 0 4px;
3034 overflow: hidden;
3036 .comment-thread-page .guiedit-buttons-container {
3037 padding-right: 60px;
3039 .guiedit-buttons-container button {
3040 height: 26px;
3041 padding: 0 7px;
3042 font-weight: 900;
3043 font-size: 0.875rem;
3044 line-height: 1;
3045 position: static;
3047 .guiedit-buttons-container button:active {
3048 transform: none;
3050 .guiedit-buttons-container button:active div {
3051 transform: scale(0.9);
3053 .guiedit-buttons-container button sup {
3054 font-weight: bold;
3056 .guiedit::after {
3057 content: attr(data-tooltip);
3058 position: absolute;
3059 font-weight: normal;
3060 font-size: 1rem;
3061 top: 2px;
3062 left: 464px;
3063 height: 25px;
3064 padding: 4px 0;
3065 white-space: nowrap;
3066 visibility: hidden;
3068 .guiedit:hover::after {
3069 visibility: visible;
3072 /* Markdown hints */
3074 .posting-controls .markdown-reference-link {
3075 float: left;
3076 padding: 1px 0 0 6px;
3078 .posting-controls .markdown-reference-link a {
3079 padding-right: 1.5em;
3080 margin-right: 0.15em;
3081 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');
3082 background-size: 1.25em;
3083 background-repeat: no-repeat;
3084 background-position: right center;
3087 #markdown-hints-checkbox + label {
3088 float: left;
3089 margin: 2px 0 0 1em;
3090 line-height: 1.3;
3091 cursor: pointer;
3093 #edit-post-form #markdown-hints-checkbox + label {
3094 padding: 0;
3096 #markdown-hints-checkbox {
3097 visibility: hidden;
3098 float: left;
3100 #markdown-hints-checkbox + label::after {
3101 content: "(Show Markdown help)";
3103 #markdown-hints-checkbox:checked + label::after {
3104 content: "(Hide Markdown help)";
3106 #markdown-hints-checkbox + label::before {
3107 content: '\F059';
3108 font-family: "Font Awesome", "Font Awesome 5 Free";
3109 font-weight: 900;
3110 margin-right: 3px;
3112 #markdown-hints-checkbox:checked + label::before {
3113 font-weight: normal;
3115 #markdown-hints {
3116 margin: 4px 0 0 4px;
3117 padding: 4px 8px;
3118 position: absolute;
3119 text-align: left;
3120 top: calc(100% - 1em);
3121 z-index: 1;
3122 display: none;
3124 .comment-controls #markdown-hints {
3125 top: calc(100% + 1.75em);
3127 #markdown-hints-checkbox:checked ~ #markdown-hints {
3128 display: table;
3130 .markdown-hints-row {
3131 display: table-row;
3133 #markdown-hints .markdown-hints-row span,
3134 #markdown-hints .markdown-hints-row code {
3135 float: none;
3136 display: table-cell;
3137 border: none;
3138 background-color: inherit;
3139 padding: 0 12px 0 0;
3142 /******************/
3143 /* EDIT POST FORM */
3144 /******************/
3146 #edit-post-form {
3147 padding: 1em 1em 4em 1em;
3149 #edit-post-form .post-meta-fields {
3150 display: grid;
3151 grid-template-columns: 5em auto auto auto 1fr auto;
3152 margin-bottom: 0.625em;
3155 #edit-post-form label[for='title'],
3156 #edit-post-form label[for='url'],
3157 #edit-post-form label[for='section'] {
3158 grid-column: 1;
3160 #edit-post-form input[type='text'] {
3161 padding: 0.25em;
3162 grid-column: 2 / span 4;
3163 margin-bottom: 0.5em;
3166 #edit-post-form .link-post-checkbox,
3167 #edit-post-form .link-post-checkbox + label {
3168 grid-row: 1;
3169 grid-column: 6;
3171 #edit-post-form .question-checkbox,
3172 #edit-post-form .question-checkbox + label {
3173 grid-row: 3;
3174 grid-column: 5;
3175 justify-self: start;
3176 margin-left: 1.5em;
3179 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3180 grid-row: 4;
3181 grid-column: 2 / span 4;
3182 text-align: left;
3183 margin-top: 8px;
3186 #edit-post-form .post-meta-fields input[type='checkbox'] {
3187 height: 0;
3188 opacity: 0;
3189 pointer-events: none;
3191 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3192 white-space: nowrap;
3193 position: relative;
3194 cursor: pointer;
3195 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3196 align-self: start;
3198 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3199 content: "";
3200 font-family: "Font Awesome", "Font Awesome 5 Free";
3201 font-size: 1.375rem;
3202 line-height: 0.7;
3203 text-indent: 1px;
3204 font-weight: 900;
3205 position: absolute;
3206 width: 20px;
3207 height: 20px;
3208 left: 5px;
3210 #edit-post-form label[for='url'],
3211 #edit-post-form input[name='url'] {
3212 display: none;
3214 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3215 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3216 display: initial;
3218 #edit-post-form label {
3219 line-height: normal;
3220 border: 1px solid transparent;
3221 text-align: right;
3222 padding: 0.25em 0.5em;
3223 white-space: nowrap;
3225 #edit-post-form input[type='radio'] {
3226 width: 0;
3227 margin: 0;
3228 opacity: 0;
3229 pointer-events: none;
3231 #edit-post-form input[type='radio'] + label {
3232 padding: 4px 12px;
3233 text-align: center;
3234 border-style: solid;
3235 border-width: 1px 1px 1px 0;
3236 cursor: pointer;
3238 #edit-post-form input[type='radio']:checked + label {
3239 cursor: default;
3242 #edit-post-form label[for='section'] {
3243 grid-row: 3;
3245 #edit-post-form input[type='radio'] + label {
3246 grid-row: 3;
3248 @supports (width: -moz-fit-content) {
3249 #edit-post-form input[type='radio'] + label {
3250 width: -moz-fit-content;
3253 @supports (width: fit-content) {
3254 #edit-post-form input[type='radio'] + label {
3255 width: fit-content;
3259 #edit-post-form textarea {
3260 min-height: 24em;
3263 #edit-post-form input[type='submit'] {
3264 padding: 6px 12px;
3265 float: right;
3267 #edit-post-form #markdown-hints {
3268 top: calc(100% + 2em);
3271 #edit-post-form button.guiedit div {
3272 overflow: visible;
3274 .guiedit-mobile-auxiliary-button {
3275 display: none;
3278 /***********/
3279 /* BUTTONS */
3280 /***********/
3282 button,
3283 input[type='submit'] {
3284 font-family: inherit;
3285 font-size: inherit;
3286 background-color: inherit;
3287 cursor: pointer;
3288 border: none;
3289 border-radius: 0;
3292 /************/
3293 /* HEADINGS */
3294 /************/
3296 .body-text h1,
3297 .body-text h2,
3298 .body-text h3,
3299 .body-text h4,
3300 .body-text h5,
3301 .body-text h6 {
3302 line-height: 1.1;
3303 margin: 1em 0 0.75em 0;
3304 text-align: left;
3307 .post-body h5,
3308 .post-body h6 {
3309 font-size: 1em;
3311 .post-body h4 {
3312 font-size: 1.2em;
3314 .post-body h3 {
3315 font-size: 1.4em;
3317 .post-body h2 {
3318 font-size: 1.75em;
3320 .post-body h1 {
3321 font-size: 2.1em;
3324 .comment-body h5,
3325 .comment-body h6 {
3326 font-size: 1em;
3328 .comment-body h4 {
3329 font-size: 1.15em;
3331 .comment-body h3 {
3332 font-size: 1.3em;
3334 .comment-body h2 {
3335 font-size: 1.5em;
3337 .comment-body h1 {
3338 font-size: 1.75em;
3341 /**********/
3342 /* QUOTES */
3343 /**********/
3345 blockquote,
3346 .post-body .comment-box .comment-body {
3347 font-size: 0.9em;
3348 margin: 1em 0;
3349 padding-left: 0.5em;
3350 margin-left: 1px;
3351 padding-bottom: 3px;
3353 blockquote *:first-child {
3354 margin-top: 0;
3356 blockquote *:last-child {
3357 margin-bottom: 0;
3359 blockquote blockquote {
3360 font-size: 0.95em;
3363 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3365 .post-body .comment-box .user-name {
3366 font-style: italic;
3368 .post-body .comment-box .user-name::after {
3369 content: ":";
3371 .post-body .comment-box {
3372 zoom: 1.25;
3375 /**********/
3376 /* IMAGES */
3377 /**********/
3379 #content img, #content figure {
3380 max-width: 100%;
3383 .prediction-poll > svg {
3384 width: 700px;
3385 max-width: 100%;
3388 img.inline-latex {
3389 position: relative;
3390 top: 2.5px;
3391 margin: 0 2px;
3394 #content figure {
3395 text-align: center;
3396 margin: 1.5em auto;
3399 p.imgonly,
3400 div.imgonly,
3401 figure {
3402 text-align: center;
3403 margin: auto;
3404 clear: both;
3407 .imgonly iframe {
3408 display: block;
3409 width: 100%;
3410 height: 250px;
3411 border: 0;
3414 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3416 [style*="--aspect-ratio"] > * {
3417 width: 100%;
3419 [style*="--aspect-ratio"] > img {
3420 height: auto;
3422 @supports (--custom:property) {
3423 [style*="--aspect-ratio"] {
3424 position: relative;
3426 [style*="--aspect-ratio"]::before {
3427 content: "";
3428 display: block;
3429 padding-bottom: calc(100% / (var(--aspect-ratio)));
3431 [style*="--aspect-ratio"] > * {
3432 position: absolute;
3433 top: 0;
3434 left: 0;
3435 height: 100%;
3439 /**********/
3440 /* TABLES */
3441 /**********/
3443 .body-text table {
3444 border-collapse: collapse;
3445 font-size: 0.875em;
3447 .body-text table th,
3448 .body-text table td {
3449 text-align: left;
3450 padding: 4px 6px;
3451 line-height: 1.3;
3453 .body-text table .numeric {
3454 text-align: right;
3455 font-family: Inconsolata, Menlo, monospace;
3457 .body-text table caption {
3458 margin: 0 0 0.25em 0;
3459 font-weight: bold;
3460 font-size: 1.125em;
3463 /********/
3464 /* MISC */
3465 /********/
3467 /*= Superscripts & subscripts =*/
3469 /* Make sure superscripts and subscripts do not affect line spacing. */
3470 sup, sub {
3471 vertical-align: baseline;
3472 position: relative;
3473 top: -0.5em;
3474 left: 0.05em;
3475 font-size: 0.8em;
3477 sub {
3478 top: 0.3em;
3481 /*= Code blocks & other "unstyled" text. =*/
3483 pre,
3484 code {
3485 font-family: Inconsolata, Menlo, monospace;
3487 pre {
3488 white-space: pre-wrap;
3490 .body-text pre {
3491 text-align: left;
3493 code {
3494 font-size: 0.95em;
3495 display: inline-block;
3496 padding: 0 4px 1px 5px;
3498 pre > code {
3499 display: block;
3500 border-radius: 0;
3501 padding: 3px 4px 5px 8px;
3502 tab-size: 4;
3505 /*= Fractions =*/
3507 .frac::after {
3508 content: "\200B";
3511 /*= Removing browser default styling of various elements =*/
3513 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3514 :focus {
3515 outline: none;
3518 /* Remove "embossed" appearance of horizontal rules. */
3519 hr {
3520 border: none;
3523 input,
3524 button,
3525 textarea {
3526 -webkit-appearance: none;
3527 -moz-appearance: none;
3528 appearance: none;
3531 input {
3532 font-family: inherit;
3533 font-size: inherit;
3534 font-weight: inherit;
3537 /*************/
3538 /* FOOTNOTES */
3539 /*************/
3541 ol {
3542 counter-reset: ordered-list;
3544 .footnote-definition {
3545 font-size: 0.9em;
3546 list-style-type: none;
3547 counter-increment: ordered-list;
3548 position: relative;
3550 .footnote-definition p {
3551 font-size: inherit !important;
3553 .footnote-definition::before {
3554 content: counter(ordered-list) ".";
3555 position: absolute;
3556 left: -2.5em;
3557 font-weight: bold;
3558 text-align: right;
3559 width: 2em;
3562 /*= LW Docs footnotes =*/
3564 .footnote-item {
3565 display: flex;
3568 .footnote-item > :not(.nothing) {
3569 margin: 0 0.2em;
3572 .footnote-item > :first-child {
3573 margin-left: -0.2em;
3574 margin-right: 0;
3577 .footnote-back-link a:not(.nothing) {
3578 font-size: 0;
3579 text-decoration: none;
3580 border: none;
3583 .footnote-back-link a:not(.nothing):hover {
3584 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3585 border: none;
3586 text-decoration: none;
3589 .footnote-back-link a::after {
3590 content: '\F106';
3591 font-family: Font Awesome;
3592 font-size: 1rem;
3593 padding: 0.2em;
3594 text-decoration: none;
3595 font-weight: bold;
3598 .footnote-content > :first-child {
3599 margin-top: 0;
3602 /*********/
3603 /* LISTS */
3604 /*********/
3606 li {
3607 margin-bottom: 0.5em;
3610 .body-text ol p,
3611 .body-text ul p {
3612 margin: 0.5em 0;
3615 .body-text ol {
3616 list-style: none;
3617 padding: 0;
3618 counter-reset: ol;
3620 .body-text ol > li {
3621 position: relative;
3622 counter-increment: ol;
3623 padding: 0 0 0 2.5em;
3624 margin: 0.25em 0 0 0;
3626 .body-text ol > li::before {
3627 content: counter(ol) ".";
3628 position: absolute;
3629 width: 2em;
3630 text-align: right;
3631 left: 0;
3633 .body-text ul {
3634 list-style: none;
3635 padding: 0;
3637 .body-text ul:not(.contents-list) > li:empty {
3638 padding-bottom: 1.25em;
3640 .body-text ul:not(.contents-list) > li {
3641 position: relative;
3642 padding: 0 0 0 1.75em;
3643 margin: 0.25em 0 0 0;
3645 .body-text ul:not(.contents-list) > li ul > li {
3646 padding: 0 0 0 2em;
3648 .body-text ul:not(.contents-list) > li::before {
3649 content: "•";
3650 position: absolute;
3651 width: 1.25em;
3652 text-align: right;
3653 left: 0;
3655 .body-text ul:not(.contents-list) > li ul > li::before {
3656 width: 1.5em;
3658 .body-text li > ul:first-child > li {
3659 padding-left: 0;
3661 .body-text li > ul:first-child > li::before {
3662 content: none;
3665 /**************/
3666 /* ERROR PAGE */
3667 /**************/
3669 .error-retry-form {
3670 margin: 0.5em 0;
3673 .error-retry-form input[type="submit"] {
3674 border: 1px solid #aaa;
3675 font-weight: bold;
3676 font-size: 1.125rem;
3677 padding: 0.5em 1.25em;
3680 /**************/
3681 /* ABOUT PAGE */
3682 /**************/
3684 #content.about-page .contents {
3685 margin-top: 0.25em;
3687 #content.about-page .accesskey-table {
3688 border-collapse: collapse;
3689 margin: auto;
3691 #content.about-page .accesskey-table th,
3692 #content.about-page .accesskey-table td {
3693 padding: 2px 6px;
3695 #content.about-page .accesskey-table td:first-child {
3696 padding-right: 1.5em;
3698 #content.about-page .accesskey-table td:last-child {
3699 text-align: center;
3700 font-family: Inconsolata, Menlo, monospace;
3702 #content.about-page h3:nth-of-type(n+2) {
3703 clear: both;
3706 /******************/
3707 /* IMAGES OVERLAY */
3708 /******************/
3710 #images-overlay + #content .post-body img {
3711 visibility: hidden;
3714 #images-overlay div {
3715 position: absolute;
3717 #images-overlay div::after {
3718 content: "Click to enlarge";
3719 display: block;
3720 position: absolute;
3721 margin: auto;
3722 left: 0;
3723 right: 0;
3724 bottom: 10px;
3725 padding: 6px 10px;
3726 font-size: 1.25rem;
3727 background-color: rgba(0,0,0,0.6);
3728 color: #fff;
3729 border-radius: 5px;
3730 opacity: 0.0;
3731 transition: opacity 0.15s ease;
3732 pointer-events: none;
3734 @supports (width: -moz-fit-content) {
3735 #images-overlay div::after {
3736 width: -moz-fit-content;
3739 @supports (width: fit-content) {
3740 #images-overlay div::after {
3741 width: fit-content;
3744 #images-overlay div:hover::after {
3745 opacity: 1.0;
3748 #images-overlay img {
3749 width: 100%;
3752 /***************/
3753 /* IMAGE FOCUS */
3754 /***************/
3756 /*=--------------=*/
3757 /*= Hover styles =*/
3758 /*=--------------=*/
3760 #content img:hover,
3761 #images-overlay img:hover {
3762 filter: drop-shadow(0 0 3px #777);
3763 cursor: zoom-in;
3765 #content img:active,
3766 #images-overlay img:active {
3767 transform: scale(0.975);
3770 /*=---------=*/
3771 /*= Overlay =*/
3772 /*=---------=*/
3774 #image-focus-overlay {
3775 position: fixed;
3776 top: 0;
3777 right: 0;
3778 bottom: 0;
3779 left: 0;
3780 z-index: 2;
3781 display: none;
3782 cursor: zoom-out;
3784 #image-focus-overlay::before {
3785 content: "";
3786 display: block;
3787 position: absolute;
3788 top: 0;
3789 right: 0;
3790 bottom: 0;
3791 left: 0;
3792 background-color: #000;
3793 opacity: 0.5;
3794 z-index: -1;
3796 #image-focus-overlay.engaged {
3797 display: initial;
3800 #image-focus-overlay img {
3801 margin: auto;
3802 position: absolute;
3803 left: 50%;
3804 top: 50%;
3805 transform: translateX(-50%) translateY(-50%);
3808 /*=-------------------=*/
3809 /*= Single-image mode =*/
3810 /*=-------------------=*/
3812 #image-focus-overlay:not(.slideshow) .image-number,
3813 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3814 visibility: hidden;
3817 /*=---------=*/
3818 /*= Caption =*/
3819 /*=---------=*/
3821 #image-focus-overlay .caption {
3822 position: absolute;
3823 bottom: 0.75em;
3824 background-color: rgba(0,0,0,0.7);
3825 left: 9em;
3826 right: 9em;
3827 margin: auto;
3828 max-width: calc(100% - 18em);
3829 text-align: center;
3830 font-size: 1.375em;
3831 border-radius: 8px;
3832 z-index: 1;
3833 transition:
3834 bottom 0.2s ease;
3836 @supports (width: -moz-fit-content) {
3837 #image-focus-overlay .caption {
3838 width: -moz-fit-content;
3841 @supports (width: fit-content) {
3842 #image-focus-overlay .caption {
3843 width: fit-content;
3846 #image-focus-overlay .caption.hidden {
3847 bottom: -5em;
3848 transition:
3849 bottom 0.5s ease;
3852 #image-focus-overlay .caption p {
3853 margin: 1em 1.25em;
3854 color: #fff;
3857 #image-focus-overlay .caption:not(:empty)::before {
3858 content: "";
3859 display: block;
3860 position: absolute;
3861 width: 100vw;
3862 height: calc(100% + 1.5em);
3863 z-index: -1;
3864 top: -0.75em;
3865 left: calc(-50vw + 50%);
3869 /*=--------------=*/
3870 /*= Help overlay =*/
3871 /*=--------------=*/
3873 #image-focus-overlay .help-overlay {
3874 position: absolute;
3875 display: flex;
3876 flex-flow: column;
3877 z-index: 2;
3878 font-size: 1.5rem;
3879 padding: 1em;
3880 border-radius: 10px;
3881 bottom: 1em;
3882 right: 1em;
3883 overflow: hidden;
3884 white-space: nowrap;
3885 color: transparent;
3886 cursor: default;
3887 visibility: hidden;
3888 transition:
3889 visibility 1s ease,
3890 color 1s ease,
3891 background-color 1s ease,
3892 bottom 0.3s ease;
3894 #image-focus-overlay .help-overlay:hover {
3895 max-width: 24em;
3896 max-height: 14em;
3897 background-color: rgba(0,0,0,0.85);
3898 color: #fff;
3899 visibility: visible;
3900 transition:
3901 visibility 0.2s ease 0.3s,
3902 color 0.2s ease 0.3s,
3903 background-color 0.2s ease 0.3s;
3906 #image-focus-overlay .help-overlay::after {
3907 content: "\F128";
3908 font-family: "Font Awesome", "Font Awesome 5 Free";
3909 font-weight: 900;
3910 font-size: 2rem;
3911 position: absolute;
3912 right: 0;
3913 bottom: 0;
3914 padding: 10px;
3915 color: #000;
3916 filter: drop-shadow(0 0 6px #fff);
3917 visibility: visible;
3918 opacity: 0.85;
3919 transition:
3920 visibility 1s ease;
3922 #image-focus-overlay .help-overlay:hover::after {
3923 visibility: hidden;
3924 transition:
3925 visibility 0.2s ease 0.3s;
3928 #image-focus-overlay .help-overlay p {
3929 margin: 0;
3930 text-indent: -2em;
3931 padding-left: 2em;
3932 max-width: 100%;
3933 overflow: hidden;
3935 #image-focus-overlay .help-overlay p + p {
3936 margin: 0.75em 0 0 0;
3938 #image-focus-overlay .help-overlay.hidden {
3939 bottom: -2em;
3942 /*=--------------=*/
3943 /*= Slide number =*/
3944 /*=--------------=*/
3946 #image-focus-overlay .image-number {
3947 position: absolute;
3948 z-index: 2;
3949 font-size: 1.75rem;
3950 left: 1em;
3951 bottom: 1em;
3952 font-weight: 600;
3953 text-shadow:
3954 0 0 3px #fff,
3955 0 0 5px #fff,
3956 0 0 8px #fff,
3957 0 0 13px #fff;
3958 width: 1.5em;
3959 text-align: right;
3960 white-space: nowrap;
3961 transition: bottom 0.3s ease;
3963 #image-focus-overlay .image-number::before {
3964 content: "#";
3965 opacity: 0.3;
3967 #image-focus-overlay .image-number::after {
3968 content: " of " attr(data-number-of-images);
3969 opacity: 0.3;
3971 #image-focus-overlay .image-number:hover::before,
3972 #image-focus-overlay .image-number:hover::after {
3973 opacity: 1.0;
3975 #image-focus-overlay .image-number.hidden {
3976 bottom: -1.25em;
3979 /*=-------------------=*/
3980 /*= Slideshow buttons =*/
3981 /*=-------------------=*/
3983 #image-focus-overlay .slideshow-buttons {
3984 position: absolute;
3985 top: 0;
3986 left: 0;
3987 width: 100%;
3988 height: 100%;
3989 z-index: 1;
3990 display: flex;
3991 justify-content: space-between;
3992 pointer-events: none;
3994 #image-focus-overlay .slideshow-buttons button {
3995 font-family: "Font Awesome", "Font Awesome 5 Free";
3996 font-weight: 900;
3997 font-size: 3rem;
3998 padding: 0.5em;
3999 color: #ddd;
4000 position: relative;
4001 left: 0;
4002 transition:
4003 left 0.3s ease;
4004 pointer-events: auto;
4006 #image-focus-overlay .slideshow-buttons button::selection {
4007 background-color: transparent;
4009 @media only screen and (hover: hover) {
4010 #image-focus-overlay .slideshow-buttons button:hover {
4011 background-color: rgba(0,0,0,0.1);
4012 color: #777;
4015 #image-focus-overlay .slideshow-buttons button:active {
4016 transform: none;
4017 color: #888;
4019 #image-focus-overlay .slideshow-buttons button:disabled {
4020 text-shadow: none;
4021 background-color: transparent;
4022 color: #ddd;
4023 cursor: default;
4024 opacity: 0.4;
4026 #image-focus-overlay .slideshow-button.previous.hidden {
4027 left: -1.75em;
4029 #image-focus-overlay .slideshow-button.next.hidden {
4030 left: 1.75em;
4033 /*=-----------------=*/
4034 /*= Background blur =*/
4035 /*=-----------------=*/
4037 .blurred {
4038 filter: blur(3px);
4041 /**************************/
4042 /* QUALIFIED HYPERLINKING */
4043 /**************************/
4045 #content.no-nav-bars {
4046 margin: 8px auto;
4048 #content.no-nav-bars + #ui-elements-container > * {
4049 padding-top: 8px;
4052 #aux-about-link {
4053 position: fixed;
4054 top: 40px;
4055 left: calc((100% - 900px) / 2 - 69px);
4056 width: 1.5em;
4057 height: 1.5em;
4058 text-align: center;
4059 display: table;
4061 #aux-about-link a {
4062 display: table-cell;
4063 width: 100%;
4064 vertical-align: middle;
4065 font-family: "Font Awesome", "Font Awesome 5 Free";
4066 font-weight: 900;
4067 font-size: 1.25rem;
4068 opacity: 0.4;
4069 z-index: 1;
4072 .qualified-linking {
4073 margin: 0;
4074 position: relative;
4076 .qualified-linking input[type='checkbox'] {
4077 visibility: hidden;
4078 width: 0;
4079 height: 0;
4080 margin: 0;
4082 .qualified-linking label {
4083 font-family: "Font Awesome", "Font Awesome 5 Free";
4084 font-weight: 900;
4085 font-size: 1rem;
4086 padding: 0 0.5em;
4087 display: inline-block;
4088 margin-left: 0.25em;
4090 .qualified-linking label:hover {
4091 cursor: pointer;
4093 .qualified-linking label:active span {
4094 display: inline-block;
4095 transform: scale(0.9);
4097 .qualified-linking label::selection {
4098 background-color: transparent;
4101 .qualified-linking label::after {
4102 content: "";
4103 width: 100vw;
4104 height: 0;
4105 left: 0;
4106 top: 0;
4107 position: fixed;
4108 z-index: 1;
4109 cursor: default;
4111 .qualified-linking input[type='checkbox']:checked + label::after {
4112 height: 100vh;
4115 .qualified-linking-toolbar {
4116 position: absolute;
4117 right: 0.25em;
4118 top: 110%;
4119 z-index: 1;
4121 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4122 display: none;
4124 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4125 display: block;
4127 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4128 top: unset;
4129 bottom: 125%;
4132 .qualified-linking-toolbar a {
4133 display: block;
4134 padding: 0 6px;
4135 margin: 4px;
4137 .qualified-linking-toolbar a::selection {
4138 background-color: transparent;
4141 /*****************/
4142 /* HOVER PREVIEW */
4143 /*****************/
4145 #preview-popup-toggle {
4146 position: absolute;
4147 right: -67px;
4148 bottom: 285px;
4149 cursor: pointer;
4150 color: var(--GW-toggle-widget-color, #888);
4152 #preview-popup-toggle:hover {
4153 color: var(--GW-toggle-widget-hover-color, #444);
4156 #content.preview:not(not) {
4157 padding: 0;
4159 #content.preview > .comment-thread {
4160 margin: 2px;
4162 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4163 border: none;
4165 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4166 padding: 0 8px;
4168 #content.preview.user-page .page-main-heading {
4169 margin-left: 8px;
4171 #content.preview.not(not) .body-text {
4172 margin-left: 8px;
4173 margin-right: 8px;
4175 #content.preview.user-page .user-stats {
4176 margin-right: 32px;
4178 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4179 display: none;
4181 #content.preview button.vote {
4182 display: none;
4184 #content.preview > h1.listing {
4185 max-height: unset;
4187 #content.preview.user-page > .comment-thread {
4188 margin: 0.5em 0;
4190 #content.preview > .post {
4191 margin: 0 18px;
4193 #content.preview .post-title {
4194 margin-top: 0.5em;
4196 #content.preview .post-meta {
4197 line-height: 1.0;
4199 #content.preview .body-text {
4200 font-size: 1em;
4202 #content.preview nav.contents,
4203 #content.preview .lw2-link {
4204 display: none;
4207 .preview-popup {
4208 position: fixed;
4209 transform-origin: top;
4210 top: 10%;
4211 right: 10%;
4212 max-width: 700px;
4213 z-index: 10001;
4214 background-color: #eee;
4215 border: 1px solid #ccc;
4216 box-shadow: 2px 6px 20px -4px #000;
4217 transition: height 0.2s ease, top 0.2s ease;
4219 .popup-hide-button {
4220 position: fixed;
4221 top: 4px;
4222 right: 4px;
4223 color: #000;
4224 background-color: #fff;
4225 width: 28px;
4226 height: 28px;
4227 display: flex;
4228 font-family: "Font Awesome";
4229 font-size: 14px;
4230 line-height: 1;
4231 border: 1px solid #bbb;
4232 border-radius: 28px;
4233 align-items: center;
4234 justify-content: center;
4235 //padding-bottom: 2px;
4236 padding-left: 1.5px;
4237 font-family: "Font Awesome", "Font Awesome 5 Free";
4238 cursor: pointer;
4240 .popup-hide-button:hover::before {
4241 content: "Turn off preview popups";
4242 display: block;
4243 position: absolute;
4244 width: max-content;
4245 right: 32px;
4246 color #000;
4247 background-color: #fff;
4248 border: 1px solid #eee;
4249 border-radius: 2px;
4250 padding: 4px;
4253 /********/
4254 /* MATH */
4255 /********/
4257 .mathjax-block-container {
4258 display: block;
4259 overflow-y: hidden;
4260 border-radius: 6px;
4261 margin: 1em 0 1.5em 0;
4263 .mathjax-inline-container {
4264 max-width: 100%;
4265 overflow-x: auto;
4266 overflow-y: hidden;
4267 position: relative;
4268 padding: 0 1px;
4270 #content .mathjax-inline-container,
4271 #content .mathjax-inline-container .mjpage,
4272 #content .mathjax-inline-container .mjx-chtml,
4273 #content .mathjax-inline-container .mjx-math,
4274 #content .mathjax-inline-container .mjx-mrow {
4275 display: inline;
4276 white-space: normal;
4278 .post .mathjax-inline-container {
4279 line-height: 1;
4281 .comment .mathjax-inline-container {
4282 line-height: 1;
4284 .mathjax-inline-container .mjx-chtml {
4285 padding: 0;
4288 /************/
4289 /* SPOILERS */
4290 /************/
4292 .spoiler {
4293 color: #000;
4294 background-color: currentColor;
4295 transition: none;
4296 text-shadow: none;
4297 margin: 1em 0;
4298 box-shadow: 0 0 0 1px currentColor inset;
4299 overflow: auto;
4301 .spoiler:not(:last-child) {
4302 margin-bottom: 0;
4304 #content .spoiler * {
4305 color: inherit;
4306 border: none;
4308 .spoiler:hover {
4309 color: unset;
4310 background-color: unset;
4311 text-shadow: unset;
4312 transition:
4313 color 0.1s ease-out 0.1s,
4314 background-color 0.1s ease-out 0.1s,
4315 text-shadow 0.1s ease-out 0.1s;
4317 .spoiler::selection,
4318 .spoiler ::selection {
4319 color: #fff;
4320 background-color: #000;
4322 .spoiler:not(:hover)::selection,
4323 .spoiler:not(:hover) ::selection {
4324 background-color: transparent;
4327 /*= Fix for LessWrong being weird =*/
4329 .spoiler > p {
4330 padding: 0 7px;
4332 .spoiler > p:first-child {
4333 margin-top: 0.25em;
4335 .spoiler > p:last-child {
4336 margin-bottom: 0;
4337 padding-bottom: 0.25em;
4339 .spoiler > p:hover ~ p {
4340 background-color: currentColor;
4342 .spoiler > p + p {
4343 margin-top: -1em;
4345 .spoiler > p:not(:first-child) {
4346 padding-top: 0.5em;
4348 .spoiler > p:not(:last-child) {
4349 padding-bottom: 0.5em;
4352 .spoiler:not(:hover) pre,
4353 .spoiler:not(:hover) code {
4354 background-color: inherit;
4355 box-shadow: none;
4357 #content .spoiler pre {
4358 border-color: currentColor;
4359 border-style: solid;
4360 border-width: 0 1px;
4361 border-radius: 0;
4364 /*******************/
4365 /* PAGE LIST INDEX */
4366 /*******************/
4368 .page-list-index {
4369 margin: 1em 30px;
4370 line-height: 1.2;
4373 .page-list-index > p {
4374 font-weight: bold;
4375 font-size: 1.2em;
4378 .page-list-index > ul * {
4379 margin: 0;
4382 .page-list-index ul {
4383 padding-left: 1.5em;
4386 .page-list-index li {
4387 margin-top: 0.67em;
4390 .page-list-index li > a {
4391 display: block;
4392 font-size: 1.1em;
4393 font-weight: bold;
4394 margin: 0.33em 0;
4397 .page-list-index li > a:last-child {
4398 margin-bottom: 1em;
4401 /*******************/
4402 /* ALIGNMENT FORUM */
4403 /*******************/
4405 #content.alignment-forum-index-page::after {
4406 content: "Alignment Forum";
4407 font-size: 1.5rem;
4408 margin: 0.375em 0 0 -0.375em;
4409 order: -1;
4412 /**********************/
4413 /* FOR NARROW SCREENS */
4414 /**********************/
4416 @media only screen and (max-width: 1440px) {
4417 #hns-date-picker {
4418 right: -81px;
4419 padding: 8px 10px 10px 10px;
4420 bottom: 62px;
4421 display: none;
4423 #hns-date-picker::before {
4424 content: "";
4425 position: absolute;
4426 display: block;
4427 z-index: -1;
4428 height: calc(100% + 2px);
4429 top: -1px;
4430 left: -1px;
4431 width: 50%;
4434 @media only screen and (max-width: 1160px) {
4435 #new-comment-nav-ui {
4436 bottom: 180px;
4437 right: -68px;
4439 #hns-date-picker {
4440 bottom: 200px;
4441 right: -36px;
4443 #hns-date-picker::before {
4444 width: calc(100% - 35px);
4446 #theme-selector button::before {
4447 right: unset;
4448 left: 100%;
4450 #theme-selector:hover::after {
4451 content: "";
4452 display: block;
4453 position: absolute;
4454 width: calc(6em - 7px);
4455 height: calc(100% + 2px);
4456 top: 0;
4457 left: calc(100% + 1px);
4459 #anti-kibitzer-toggle {
4460 bottom: 330px;
4463 @media only screen and (max-width: 1080px) {
4464 #width-selector {
4465 right: -30px;
4467 #width-selector button {
4468 display: block;
4470 #text-size-adjustment-ui {
4471 top: 90px;
4472 right: -30px;
4474 #text-size-adjustment-ui button {
4475 display: block;
4476 position: relative;
4478 #text-size-adjustment-ui button.increase {
4479 bottom: 48px;
4481 #text-size-adjustment-ui button.decrease {
4482 top: 50px;
4484 #theme-selector {
4485 top: 46px;
4486 left: -44px;
4488 #theme-tweaker-toggle {
4489 left: -44px;
4490 top: 2px;
4492 #theme-tweaker-toggle button {
4493 height: 2em;
4494 width: 2em;
4495 padding: 7px;
4497 #quick-nav-ui {
4498 right: -54px;
4500 #new-comment-nav-ui {
4501 right: -55px;
4503 #hns-date-picker {
4504 right: -23px;
4506 #hns-date-picker::before {
4507 width: calc(100% - 22px);
4509 #anti-kibitzer-toggle {
4510 right: -54px;
4513 @media only screen and (max-width: 1040px) {
4514 #quick-nav-ui {
4515 right: -49px;
4517 #new-comment-nav-ui {
4518 right: -50px;
4520 #hns-date-picker {
4521 right: -18px;
4523 #hns-date-picker::before {
4524 width: calc(100% - 17px);
4526 #anti-kibitzer-toggle {
4527 right: -50px;
4530 @media only screen and (max-width: 1020px) {
4531 #quick-nav-ui {
4532 right: -20px;
4534 #new-comment-nav-ui {
4535 right: -21px;
4537 #new-comment-nav-ui .new-comments-count::before {
4538 content: "";
4539 position: absolute;
4540 width: 100%;
4541 height: calc(100% + 45px);
4542 z-index: -1;
4543 left: 0;
4544 top: -22px;
4546 #hns-date-picker {
4547 right: 19px;
4549 #hns-date-picker::before {
4550 width: 100%;
4552 #anti-kibitzer-toggle {
4553 right: -20px;
4556 @media only screen and (max-width: 1000px) {
4557 #theme-selector {
4558 left: -17px;
4559 top: 120px;
4560 padding: 3px 0;
4561 max-width: 32px;
4563 #theme-selector button {
4564 margin: 1px 4px;
4566 #text-size-adjustment-ui {
4567 top: 100px;
4568 right: -12px;
4570 @media not screen and (hover: none) {
4571 #quick-nav-ui,
4572 #new-comment-nav-ui,
4573 #new-comment-nav-ui + #hns-date-picker,
4574 #anti-kibitzer-toggle {
4575 opacity: 0.4;
4577 #quick-nav-ui:hover,
4578 #new-comment-nav-ui:hover,
4579 #new-comment-nav-ui + #hns-date-picker:hover,
4580 #new-comment-nav-ui + #hns-date-picker:focus-within,
4581 #new-comment-nav-ui:hover + #hns-date-picker,
4582 #anti-kibitzer-toggle:hover {
4583 opacity: 1.0;
4586 #theme-tweaker-toggle {
4587 top: 70px;
4588 left: -21px;
4592 /**************/
4593 /* PRINT VIEW */
4594 /**************/
4596 @media only print {
4597 .nav-bar {
4598 visibility: hidden;
4599 max-height: 0;
4600 overflow: hidden;
4602 #ui-elements-container {
4603 display: none;
4605 #images-overlay {
4606 display: none;
4608 #images-overlay + #content .post-body img {
4609 visibility: visible;
4611 .comment-controls {
4612 display: none;
4614 #comments-sort-mode-selector {
4615 display: none;
4617 .comment-minimize-button {
4618 display: none;
4620 .post-meta .qualified-linking,
4621 .post-meta .lw2-link {
4622 display: none;
4624 .comment-meta .permalink,
4625 .comment-meta .lw2-link,
4626 .comment-meta .comment-parent-link {
4627 display: none;
4629 .new-comment::before {
4630 display: none;
4632 #content::before {
4633 box-shadow: none;
4637 /*****************/
4638 /* MOBILE LAYOUT */
4639 /*****************/
4641 /* Hide the mobile elements on desktop screens: */
4643 @media only screen and (max-width: 1160px) {
4644 #post-nav-ui-toggle,
4645 #appearance-adjust-ui-toggle {
4646 display: none;
4650 @media only screen and (max-width: 1160px) {
4652 /*====================*/
4653 /* MOBILE UI ELEMENTS */
4654 /*====================*/
4656 #ui-elements-container {
4657 height: unset !important;
4658 position: unset;
4660 #ui-elements-container > * {
4661 position: fixed;
4662 visibility: hidden;
4663 opacity: 1.0;
4664 z-index: 10000;
4667 #ui-elements-container > div[id$='-ui-toggle'] {
4668 visibility: visible;
4669 display: inline-block;
4670 border-radius: 50%;
4671 z-index: 10000;
4673 #ui-elements-container > div[id$='-ui-toggle'] button,
4674 #theme-selector .theme-selector-close-button {
4675 font-family: Font Awesome;
4676 font-weight: 900;
4677 font-size: 32px;
4678 padding: 10px;
4679 opacity: 0.8;
4680 -webkit-tap-highlight-color: transparent;
4681 transition: transform 0.2s ease;
4683 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4684 #theme-selector .theme-selector-close-button::selection {
4685 background-color: transparent;
4687 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4688 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4689 border: none;
4691 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4692 transform: rotate(-90deg);
4693 opacity: 1.0;
4696 #appearance-adjust-ui-toggle {
4697 bottom: 10px;
4698 left: 10px;
4701 #post-nav-ui-toggle {
4702 bottom: 10px;
4703 right: 10px;
4706 #theme-selector.engaged,
4707 #quick-nav-ui.engaged,
4708 #new-comment-nav-ui.engaged,
4709 #hns-date-picker.engaged {
4710 visibility: visible;
4713 #image-focus-overlay.engaged {
4714 visibility: visible;
4716 #image-focus-overlay .help-overlay {
4717 display: none;
4720 /*=========*/
4721 /* GENERAL */
4722 /*=========*/
4724 @media only screen and (max-width: 900px) {
4725 #content,
4726 #images-overlay,
4727 #ui-elements-container {
4728 min-width: unset;
4729 width: unset;
4731 #content {
4732 padding: 0 4px;
4736 /*================*/
4737 /* THEME SELECTOR */
4738 /*================*/
4740 #theme-selector {
4741 display: flex;
4742 flex-flow: column;
4743 background-color: #fff;
4744 width: calc(100vw - 20px);
4745 max-width: 360px;
4746 padding: 0 0 3px 0;
4747 overflow: hidden;
4748 max-height: 0;
4749 transition:
4750 top 0.2s ease,
4751 max-height 0.2s ease,
4752 visibility 0.2s ease;
4753 top: calc(100% + 10px);
4754 left: 0;
4755 right: 0;
4756 margin: auto;
4758 #theme-selector.engaged {
4759 max-height: 1000px;
4760 top: 10px;
4761 z-index: 10001;
4763 #theme-selector::before {
4764 content: "Select theme";
4765 white-space: nowrap;
4766 display: block;
4767 font-weight: 600;
4768 font-size: 2rem;
4769 margin: 0.375em 1em 0.5em 1em;
4770 text-align: center;
4772 #theme-selector button {
4773 width: calc(100% - 0.5em);
4774 background-repeat: no-repeat;
4775 padding: 1em 0.875em;
4776 margin: 1px 4px;
4777 line-height: 1;
4778 height: unset;
4779 position: relative;
4781 #theme-selector button::after {
4782 content: attr(data-theme-description);
4783 color: #000;
4784 white-space: nowrap;
4785 position: absolute;
4786 text-align: left;
4787 left: 2.5em;
4788 top: 1em;
4790 @media only screen and (max-height: 675px) {
4791 #theme-selector button {
4792 padding: 0.875em;
4794 #theme-selector button::after {
4795 top: 0.875em;
4798 #theme-selector .theme-selector-close-button {
4799 position: absolute;
4800 width: unset;
4801 background-color: transparent;
4802 top: 0;
4803 right: -3px;
4805 #theme-selector .theme-selector-close-button,
4806 #theme-selector .theme-selector-close-button:focus,
4807 #theme-selector .theme-selector-close-button:active,
4808 #theme-selector .theme-selector-close-button:hover {
4809 box-shadow: none;
4812 /*===============*/
4813 /* THEME TWEAKER */
4814 /*===============*/
4816 #theme-selector {
4817 padding: 0 0 64px 0;
4819 #theme-selector ~ #theme-tweaker-toggle {
4820 top: 100%;
4822 #theme-selector ~ #theme-tweaker-toggle::after {
4823 content: "Open theme tweaker";
4824 position: absolute;
4825 font-size: 0.625em;
4826 white-space: nowrap;
4827 left: -50%;
4828 top: 100%;
4830 #theme-selector.engaged ~ #theme-tweaker-toggle {
4831 visibility: visible;
4832 top: 530px;
4833 left: 0;
4834 right: 0;
4835 margin: auto;
4836 z-index: 11111;
4837 transition:
4838 top 0.2s ease,
4839 visibility 0.2s ease;
4841 @media only screen and (max-height: 675px) {
4842 #theme-selector.engaged ~ #theme-tweaker-toggle {
4843 top: 492px;
4846 @supports (width: -moz-fit-content) {
4847 #theme-selector.engaged ~ #theme-tweaker-toggle {
4848 width: -moz-fit-content;
4851 @supports (width: fit-content) {
4852 #theme-selector.engaged ~ #theme-tweaker-toggle {
4853 width: fit-content;
4856 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4857 opacity: 1.0;
4860 #theme-tweaker-ui {
4861 visibility: visible;
4864 /*======================*/
4865 /* ANTI-KIBITZER TOGGLE */
4866 /*======================*/
4868 #theme-selector ~ #anti-kibitzer-toggle {
4869 top: 100%;
4870 bottom: unset;
4871 left: 0;
4872 right: 0;
4873 margin: auto;
4874 box-shadow: none;
4875 width: calc(100vw - 44px);
4876 max-width: 330px;
4877 text-align: right;
4878 pointer-events: none;
4880 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4881 visibility: visible;
4882 z-index: 11110;
4883 top: 530px;
4884 transition:
4885 top 0.2s ease,
4886 visibility 0.2s ease;
4888 @media only screen and (max-height: 675px) {
4889 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4890 top: 492px;
4893 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4894 pointer-events: auto;
4895 display: inline-block;
4898 /*=================*/
4899 /* QUICKNAV WIDGET */
4900 /*=================*/
4902 #quick-nav-ui {
4903 max-width: 0px;
4904 transition:
4905 max-width 0.2s ease,
4906 visibility 0.2s ease;
4907 display: flex;
4908 right: 72px;
4909 bottom: 14px;
4911 #quick-nav-ui.engaged {
4912 max-width: 1000px;
4914 #quick-nav-ui a {
4915 position: relative;
4916 margin: 2px;
4918 #quick-nav-ui a + a {
4919 margin-left: 5px;
4921 #quick-nav-ui a::after {
4922 position: absolute;
4923 top: calc(100% + 2px);
4924 font-size: 0.375rem;
4925 left: 0;
4926 right: 0;
4927 margin: auto;
4928 line-height: 1;
4929 padding: 2px;
4930 text-transform: uppercase;
4931 z-index: -1;
4933 @supports (width: -moz-fit-content) {
4934 #quick-nav-ui a::after {
4935 width: -moz-fit-content;
4938 @supports (width: fit-content) {
4939 #quick-nav-ui a::after {
4940 width: fit-content;
4943 #quick-nav-ui a[href='#top']::after {
4944 content: "Top";
4945 left: -1px;
4947 #quick-nav-ui a[href='#comments']::after {
4948 content: "Comments";
4950 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4951 visibility: hidden;
4952 transition: visibility 0.2s ease;
4954 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4955 visibility: visible;
4957 #quick-nav-ui a[href='#bottom-bar']::after {
4958 content: "Bottom";
4961 /*======================*/
4962 /* NEW COMMENT QUICKNAV */
4963 /*======================*/
4965 #new-comment-nav-ui {
4966 max-width: 0px;
4967 max-height: 0px;
4968 transition:
4969 max-width 0.2s ease,
4970 max-height 0.2s ease,
4971 visibility 0.2s ease;
4972 display: flex;
4973 right: 78px;
4974 bottom: 70px;
4976 #new-comment-nav-ui::before {
4977 content: "New Comments";
4978 position: absolute;
4979 bottom: 100%;
4980 font-size: 0.5625rem;
4981 left: 0;
4982 right: 0;
4983 margin: auto;
4984 padding: 2px 3px;
4985 text-transform: uppercase;
4986 z-index: -1;
4988 @supports (width: -moz-fit-content) {
4989 #new-comment-nav-ui::before {
4990 width: -moz-fit-content;
4993 @supports (width: fit-content) {
4994 #new-comment-nav-ui::before {
4995 width: fit-content;
4998 #new-comment-nav-ui.engaged {
4999 max-width: 1000px;
5000 max-height: 1000px;
5002 #new-comment-nav-ui .new-comment-sequential-nav-button {
5003 top: unset;
5004 bottom: unset;
5005 padding: 2px 7px;
5007 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5008 padding: 2px 7px 3px 7px;
5010 #new-comment-nav-ui .new-comments-count {
5011 padding: 4px 0 5px 0;
5013 #new-comment-nav-ui .new-comments-count::before {
5014 display: none;
5016 #new-comment-nav-ui button::after {
5017 position: absolute;
5018 font-size: 0.375rem;
5019 left: 0;
5020 right: 0;
5021 margin: auto;
5022 line-height: 1;
5023 text-transform: uppercase;
5024 pointer-events: none;
5026 #new-comment-nav-ui button.new-comment-previous::after {
5027 content: "Previous";
5028 bottom: 5px;
5030 #new-comment-nav-ui button.new-comment-next::after {
5031 content: "Next";
5032 top: 7px;
5035 /*=================*/
5036 /* HNS DATE PICKER */
5037 /*=================*/
5039 #hns-date-picker {
5040 max-height: 0px;
5041 bottom: 132px;
5042 right: 62px;
5043 transition:
5044 max-height 0.2s ease,
5045 visibility 0.2s ease;
5047 #hns-date-picker.engaged {
5048 max-height: 1000px;
5050 #hns-date-picker::before {
5051 width: calc(100% + 2px);
5052 border-width: 1px !important;
5055 /*=========*/
5056 /* NAV BAR */
5057 /*=========*/
5059 #bottom-bar {
5060 margin-left: auto;
5061 margin-right: auto;
5062 width: calc(100% - 9rem + 8px);
5063 background: rgba(255,255,255,0.85);
5064 backdrop-filter: blur(1px);
5066 #content.index-page #bottom-bar {
5067 z-index: 10001;
5069 #bottom-bar .nav-item {
5070 box-shadow: none;
5071 position: relative;
5073 #bottom-bar .nav-inner {
5074 font-size: 2rem;
5075 padding: 1rem 0 1.25rem 0;
5076 visibility: hidden;
5077 position: static;
5078 width: 0;
5080 #content #bottom-bar .nav-item .nav-inner::before {
5081 margin: 0;
5082 visibility: visible;
5083 position: absolute;
5084 width: 100%;
5085 height: 100%;
5086 left: 0;
5087 top: 0;
5088 padding: 1rem 0;
5090 #bottom-bar .nav-inner::after {
5091 display: block;
5092 visibility: visible;
5093 text-transform: uppercase;
5094 color: unset;
5095 font-size: 0.75rem;
5096 top: unset;
5097 left: 0;
5098 bottom: 1rem;
5099 width: 100%;
5101 #bottom-bar #nav-item-first .nav-inner::after {
5102 content: "First Page";
5104 #bottom-bar #nav-item-prev .nav-inner::after {
5105 content: "Prev. Page";
5107 #bottom-bar #nav-item-top .nav-inner::after {
5108 content: "Top";
5110 #bottom-bar #nav-item-next .nav-inner::after {
5111 content: "Next Page";
5113 #bottom-bar #nav-item-last .nav-inner::after {
5114 content: "Last Page";
5117 @media only screen and (max-width: 900px) {
5118 .nav-bar-top {
5119 font-size: 0.75rem;
5121 .nav-bar {
5122 width: calc(100% + 8px);
5123 margin: 0 -4px;
5125 .nav-bar .nav-inner::after {
5126 display: none;
5129 #primary-bar .nav-item {
5130 flex: 1 1 100%;
5132 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5133 flex: 1 1 60px;
5135 .nav-bar-top:not(#anything) .nav-inner {
5136 text-transform: uppercase;
5137 padding: 6px;
5139 .nav-bar-top .nav-inner::before {
5140 display: block;
5141 font-family: "Font Awesome";
5142 font-size: 2em;
5143 font-weight: 900;
5146 #nav-item-home .nav-inner::before {
5147 content: "\F015";
5149 #nav-item-featured .nav-inner::before {
5150 content: "\F005";
5152 #nav-item-all .nav-inner::before {
5153 content: "\F069";
5155 #nav-item-meta .nav-inner::before {
5156 content: "\F077";
5158 #nav-item-tags .nav-inner::before {
5159 content: "\F02C";
5161 #nav-item-recent-comments > * > span {
5162 display: none;
5164 #nav-item-recent-comments .nav-inner::before,
5165 #nav-item-alignment-forum-comments .nav-inner::before {
5166 content: "\F036";
5168 #nav-item-alignment-forum .nav-inner::before {
5169 content: "AF";
5170 font-family: Concourse, 'Changa One';
5172 #nav-item-questions .nav-inner::before {
5173 content: "?";
5174 font-family: Concourse, 'Changa One';
5176 #nav-item-events .nav-inner::before {
5177 content: "\F5A0";
5179 #nav-item-shortform .nav-inner::before {
5180 content: "\F2F2";
5182 #nav-item-archive .nav-inner::before {
5183 content: "\F187";
5185 #nav-item-about .nav-inner::before {
5186 content: "\F129";
5188 #nav-item-search {
5189 font-size: 2em;
5190 padding: 10px;
5192 #nav-item-search .nav-inner::before {
5193 content: none;
5195 #nav-item-search .nav-inner {
5196 height: 100%;
5197 display: flex;
5199 #nav-item-search input {
5200 width: 100%;
5201 height: 100%;
5203 #nav-item-search button {
5204 height: 100%;
5205 padding: 5px 5px 5px 10px;
5206 width: 40px;
5207 overflow: visible;
5208 visibility: hidden;
5210 #nav-item-search button::before {
5211 content: "\F002";
5212 font-family: Font Awesome;
5213 font-weight: 900;
5214 visibility: visible;
5216 #nav-item-login {
5217 padding: 0;
5219 #nav-item-login .nav-inner::before {
5220 content: "\F007";
5223 @media only screen and (max-width: 520px) {
5224 .nav-bar-top {
5225 font-size: 0.5rem;
5228 #nav-item-search,
5229 #nav-item-search .nav-inner {
5230 padding: 0;
5232 #nav-item-search button {
5233 width: 31px;
5236 #bottom-bar #nav-item-first .nav-inner::after {
5237 content: "First";
5239 #bottom-bar #nav-item-prev .nav-inner::after {
5240 content: "Prev";
5242 #bottom-bar #nav-item-next .nav-inner::after {
5243 content: "Next";
5245 #bottom-bar #nav-item-last .nav-inner::after {
5246 content: "Last";
5250 /*=================*/
5251 /* INBOX INDICATOR */
5252 /*=================*/
5254 @media only screen and (max-width: 900px) {
5255 #inbox-indicator {
5256 width: 100%;
5257 top: 0;
5258 pointer-events: none;
5260 #inbox-indicator::before {
5261 width: 100%;
5262 font-size: 1rem;
5263 text-align: right;
5264 padding: 1px 6px;
5266 #inbox-indicator.new-messages {
5267 pointer-events: auto;
5269 #inbox-indicator.new-messages::before {
5270 box-shadow: 0 0 8px 1px #f00 inset;
5273 @media only screen and (max-width: 520px) {
5274 #inbox-indicator::before {
5275 font-size: 0.75rem;
5276 padding: 2px 5px;
5279 @media only screen and (max-width: 374px) {
5280 #inbox-indicator::before {
5281 font-size: 0.625rem;
5285 /*===================*/
5286 /* TOP PAGINATION UI */
5287 /*===================*/
5289 #top-nav-bar {
5290 font-size: 1.75rem;
5293 /*==============*/
5294 /* PAGE TOOLBAR */
5295 /*==============*/
5297 @media only screen and (max-width: 900px) {
5298 #content > .page-toolbar {
5299 font-size: 1rem;
5300 margin-right: 0;
5302 #content.user-page > .page-toolbar {
5303 grid-column: 2 / span 2;
5304 margin: 0 0 6px 0;
5307 @media only screen and (max-width: 520px) {
5308 #content:not(.user-page) .page-toolbar {
5309 display: flex;
5310 flex-direction: column-reverse;
5311 text-align: right;
5312 align-self: start;
5313 padding: 4px 0 0 0;
5315 #content.user-page .page-toolbar {
5316 display: flex;
5317 flex-flow: row;
5318 justify-content: flex-end;
5319 padding: 2px 0 0 0;
5321 #content.user-page .page-toolbar > form,
5322 #content.user-page .page-toolbar > .button {
5323 text-align: center;
5324 flex-basis: 25%;
5325 margin-left: 1.5em;
5327 #content.user-page .page-toolbar .button {
5328 text-transform: uppercase;
5329 font-size: 0.625rem;
5331 #content.user-page .page-toolbar .button::before {
5332 font-size: 1.375rem;
5333 display: block;
5334 padding: 0;
5336 #content.user-page .page-toolbar .rss {
5337 white-space: nowrap;
5338 margin: 0 0 0 1.5em;
5340 .page-toolbar > * {
5341 line-height: 1.15;
5342 padding: 6px 0;
5343 margin: 0;
5347 /*==============*/
5348 /* SUBLEVEL NAV */
5349 /*==============*/
5351 @media only screen and (max-width: 900px) {
5352 .sublevel-nav:not(.sort) {
5353 flex-wrap: wrap;
5354 width: calc(100vw - 200px);
5356 .sublevel-nav:not(.sort) .sublevel-item {
5357 margin: 1px;
5358 flex-basis: 7em;
5361 @media only screen and (max-width: 520px) {
5362 .sublevel-nav:not(.sort) .sublevel-item {
5363 font-size: 1rem;
5367 /*=====================*/
5368 /* SORT ORDER SELECTOR */
5369 /*=====================*/
5371 @media only screen and (max-width: 720px) {
5372 #content.index-page > .sublevel-nav.sort {
5373 flex-flow: column;
5374 margin-left: 4px;
5378 /*==========*/
5379 /* ARCHIVES */
5380 /*==========*/
5382 @media only screen and (max-width: 900px) {
5383 div[class^='archive-nav-'] {
5384 flex-wrap: wrap;
5385 justify-content: flex-start;
5387 .archive-nav *[class^='archive-nav-item'],
5388 .archive-nav *[class^='archive-nav-item']:first-child {
5389 padding: 10px;
5390 margin: 2px;
5391 max-width: unset;
5392 flex: 0 1 calc((100% / 8) - 4px);
5394 .archive-nav .archive-nav-item-day,
5395 .archive-nav .archive-nav-item-day:first-child {
5396 flex-basis: calc((100% / 16) - 4px);
5398 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5399 margin-top: 8px;
5400 position: relative;
5402 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5403 content: "";
5404 display: block;
5405 position: absolute;
5406 height: 1px;
5407 width: calc(100% + 8px);
5408 left: -4px;
5409 top: -4px;
5412 @media only screen and (max-width: 720px) {
5413 .archive-nav .archive-nav-item-day,
5414 .archive-nav .archive-nav-item-day:first-child {
5415 flex-basis: calc((100% / 12) - 4px);
5418 @media only screen and (max-width: 520px) {
5419 .archive-nav *[class^='archive-nav-item'],
5420 .archive-nav *[class^='archive-nav-item']:first-child {
5421 flex-basis: calc((100% / 5) - 4px);
5423 .archive-nav .archive-nav-item-day,
5424 .archive-nav .archive-nav-item-day:first-child {
5425 flex-basis: calc((100% / 8) - 4px);
5429 /*==========*/
5430 /* LISTINGS */
5431 /*==========*/
5433 h1.listing {
5434 max-height: unset;
5437 /*============*/
5438 /* USER PAGES */
5439 /*============*/
5441 #content.user-page h1.page-main-heading {
5442 align-self: end;
5444 @media only screen and (max-width: 520px) {
5445 #content.user-page h1.page-main-heading {
5446 overflow: hidden;
5447 text-overflow: ellipsis;
5449 #content.user-page .user-stats .karma-type {
5450 display: block;
5454 /*============*/
5455 /* LOGIN PAGE */
5456 /*============*/
5458 @media only screen and (max-width: 640px) {
5459 .login-container {
5460 flex-flow: column;
5461 margin: 0 auto 3em auto;
5462 max-width: 400px;
5464 .login-container #login-form,
5465 .login-container #signup-form {
5466 padding: 0 1em 1.25em 1em;
5467 grid-row-gap: 0;
5469 .login-container #signup-form {
5470 padding-top: 1em;
5472 .login-container #login-form > *,
5473 .login-container #signup-form > * {
5474 grid-column: 1 / span 2;
5476 .login-container form label {
5477 text-align: left;
5478 padding: 0;
5479 line-height: 1;
5481 .login-container form input {
5482 margin: 0.25em 0 0.75em 0;
5483 padding: 0.5em;
5485 .login-container form h1 {
5486 grid-column: 1 / span 2;
5487 margin: 0 0 0.25em 0;
5489 .login-container form a {
5490 margin: 0.75em 0 0 0;
5492 .login-container .login-tip {
5493 margin: 1.5em 1em 0 1em;
5497 /*==================*/
5498 /* POSTS & COMMENTS */
5499 /*==================*/
5501 @media only screen and (max-width: 720px) {
5502 .body-text ol > li {
5503 padding: 0 0 0 2.25em;
5505 .body-text ol > li::before {
5506 width: 1.75em;
5508 .body-text ul:not(.contents-list) > li,
5509 .body-text ul:not(.contents-list) > li ul > li {
5510 padding: 0 0 0 0.75em;
5512 .body-text ul:not(.contents-list) > li::before,
5513 .body-text ul:not(.contents-list) > li ul > li::before {
5514 width: 0.125em;
5515 margin-left: -0.06em;
5519 /*===========*/
5520 /* POST-META */
5521 /*===========*/
5523 .post-meta {
5524 line-height: 1.9;
5526 @media only screen and (max-width: 720px) {
5527 .post-meta .lw2-link span,
5528 .post-meta .karma-value span,
5529 .post-meta .comment-count span {
5530 display: none;
5532 .post-meta .comment-count::before {
5533 content: "\F086";
5534 font-family: Font Awesome;
5535 font-size: 0.875em;
5536 margin: 0 0.25em 0 0;
5537 font-weight: 400;
5541 /*===================*/
5542 /* POSTS & BODY TEXT */
5543 /*===================*/
5545 @media only screen and (max-width: 900px) {
5546 .post-body,
5547 h1.post-title,
5548 .tag-description,
5549 .sequence-text {
5550 padding: 0 6px;
5553 @media only screen and (max-width: 520px) {
5554 .post-body {
5555 font-size: 1.2rem;
5556 line-height: 1.45;
5558 h1.post-title {
5559 font-size: 2em;
5563 /*==============*/
5564 /* COMMENT-META */
5565 /*==============*/
5567 a.comment-parent-link::after {
5568 display: none;
5570 @media only screen and (max-width: 900px) {
5571 .comment-meta {
5572 padding: 2px 40px 2px 10px;
5575 @media only screen and (max-width: 720px) {
5576 .comment .karma-value span {
5577 display: none;
5579 .comment-meta .comment-parent-link {
5580 opacity: 1.0;
5583 @media only screen and (max-width: 520px) {
5584 .comment-meta {
5585 padding: 2px 24px 2px 10px;
5586 position: relative;
5588 .comment-meta > * {
5589 order: 3;
5591 .comment-meta > :not(.author) {
5592 line-height: 1.8;
5594 .comment-meta .author,
5595 .comment-meta .date {
5596 order: 1;
5598 .comment-meta:before {
5599 content: "";
5600 order: 2;
5601 flex-basis: 100%;
5603 .comment-post-title2 {
5604 display: block;
5605 text-overflow: ellipsis;
5606 overflow: hidden;
5608 .comment-meta .lw2-link {
5609 display: none;
5613 /*=======================*/
5614 /* COMMENTS COMPACT VIEW */
5615 /*=======================*/
5617 /*===========================*/
5618 /* COMMENT THREAD NAVIGATION */
5619 /*===========================*/
5621 @media only screen and (max-width: 900px) {
5622 a.comment-parent-link {
5623 width: 0;
5624 visibility: hidden;
5625 position: relative;
5627 a.comment-parent-link::before {
5628 padding: 0;
5629 font-size: 1em;
5630 left: 0;
5631 top: 0;
5632 line-height: inherit;
5633 visibility: visible;
5634 content: "\F3BF";
5635 transform: scaleX(-1);
5636 width: 2em;
5637 text-align: center;
5640 @media only screen and (max-width: 520px) {
5641 a.comment-parent-link {
5642 position: static;
5644 a.comment-parent-link::before {
5645 padding: 6px;
5646 left: unset;
5647 right: 0;
5648 top: unset;
5649 bottom: 0;
5650 height: 2em;
5654 /*=================================*/
5655 /* COMMENT THREAD MINIMIZE BUTTONS */
5656 /*=================================*/
5658 @media only screen and (max-width: 520px) {
5659 .comment-minimize-button{
5660 right: 2px;
5664 /*===========================*/
5665 /* COMMENTING AND POSTING UI */
5666 /*===========================*/
5668 @media only screen and (max-width: 900px) {
5669 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5670 font-size: 0;
5672 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5673 font-size: 0.9rem;
5675 .comment-controls .cancel-comment-button {
5676 max-width: 1.3em;
5677 overflow: hidden;
5678 margin-right: 0.125em;
5680 .comment-controls .edit-button::before {
5681 font-size: 0.9375rem;
5683 .comments > .comment-controls .cancel-comment-button {
5684 right: 8px;
5686 .comment-controls .cancel-comment-button::before {
5687 font-size: 1.25rem;
5690 @media only screen and (max-width: 520px) {
5691 .comment-controls {
5692 position: static;
5694 .comment-controls:focus-within {
5695 z-index: 10001;
5697 .comment-controls .cancel-comment-button {
5698 right: 10px;
5700 .textarea-container:focus-within textarea {
5701 position: fixed;
5702 top: 0;
5703 left: 2px;
5704 width: calc(100vw - 4px);
5705 height: calc(100% - 100px);
5706 min-height: unset;
5707 max-height: unset;
5708 border-width: 1px;
5709 z-index: 11001;
5711 #content.conversation-page .textarea-container:focus-within textarea {
5712 height: calc(100% - 54px);
5714 #content.conversation-page .textarea-container:focus-within::after {
5715 content: "";
5716 display: block;
5717 width: 100%;
5718 height: 50px;
5719 position: fixed;
5720 left: 0;
5721 bottom: 0;
5722 z-index: 11000;
5724 .textarea-container:focus-within .guiedit-buttons-container {
5725 position: fixed;
5726 z-index: 11002;
5727 left: 0;
5728 width: 100vw;
5729 height: auto;
5730 background-image: none;
5731 padding: 3px 4px 4px 4px;
5732 margin: 0;
5733 text-align: center;
5734 top: auto;
5735 bottom: 0;
5737 .textarea-container:focus-within button.guiedit {
5738 font-size: 0.9375rem;
5739 line-height: 1.5;
5740 height: auto;
5741 width: calc((100% / 10) - 2px);
5742 padding: 10px 1px 8px 0;
5743 position: relative;
5744 margin: 1px;
5746 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5747 z-index: 11011;
5748 position: fixed;
5749 bottom: 7px;
5750 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5751 font-size: 1.25rem;
5752 padding: 5px 5px 6px 5px;
5753 display: block;
5755 .textarea-container:focus-within button.guiedit sup {
5756 position: absolute;
5757 left: calc(50% + 0.65em);
5758 top: calc(50% - 1.3em);
5760 .textarea-container:focus-within .guiedit-mobile-help-button {
5761 left: 8px;
5763 .textarea-container:focus-within .guiedit-mobile-exit-button {
5764 right: 8px;
5766 .guiedit::after {
5767 display: none;
5770 #markdown-hints,
5771 #edit-post-form #markdown-hints {
5772 z-index: 11111;
5773 position: fixed;
5774 top: 40px;
5775 left: 0;
5776 right: 0;
5777 margin: auto;
5778 padding: 4px 0 4px 8px;
5779 width: 310px;
5780 border-width: 3px;
5781 border-style: double;
5782 pointer-events: none;
5784 #markdown-hints::after {
5785 content: "(Type to hide this help box.)";
5786 color: #090;
5787 display: block;
5788 margin: 12px 18px 13px 10px;
5789 padding: 5px;
5790 font-size: 0.9em;
5791 text-align: center;
5795 /*================*/
5796 /* EDIT POST FORM */
5797 /*================*/
5799 @media only screen and (max-width: 520px) {
5800 #edit-post-form {
5801 padding-bottom: 0;
5803 #edit-post-form .post-meta-fields {
5804 grid-template-columns: 4.5em auto auto auto 1fr auto;
5806 #edit-post-form label[for='url'],
5807 #edit-post-form label[for='section'],
5808 #edit-post-form label[for='title'] {
5809 padding-left: 0;
5811 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5812 white-space: normal;
5813 line-height: 0.9;
5814 top: -1px;
5815 font-family: Font Awesome;
5816 font-weight: 900;
5817 justify-self: start;
5819 #edit-post-form .post-meta-fields .question-checkbox,
5820 #edit-post-form .post-meta-fields .question-checkbox + label {
5821 grid-column: 6;
5822 margin-left: unset;
5824 #edit-post-form .post-meta-fields input[type='radio'] + label {
5825 align-self: start;
5827 #edit-post-form .textarea-container:focus-within textarea {
5828 height: calc(100% - 101px);
5829 min-height: unset;
5832 #markdown-hints-checkbox,
5833 #markdown-hints-checkbox + label {
5834 display: none;
5837 #edit-post-form div:last-child {
5838 clear: both;
5839 overflow: auto;
5841 #edit-post-form input[type='submit'] {
5842 float: none;
5843 display: block;
5844 font-size: 1.5rem;
5845 margin: 1rem auto 1.5rem auto;
5846 padding: 6px 12px 8px 12px;
5850 /*===================*/
5851 /* TABLE OF CONTENTS */
5852 /*===================*/
5854 @media only screen and (max-width: 900px) {
5855 .contents {
5856 float: none;
5857 display: table;
5858 max-width: none;
5859 margin-left: auto;
5860 margin-right: auto;
5863 @media only screen and (max-width: 520px) {
5864 .contents {
5865 max-width: 100%;
5866 margin: 1em auto 0 auto;
5867 display: table;
5869 .contents-head {
5870 font-size: 1.2em;
5872 div.post-body .contents ul {
5873 font-size: unset;
5877 /*========================*/
5878 /* QUALIFIED HYPERLINKING */
5879 /*========================*/
5881 @media only screen and (max-width: 520px) {
5882 .qualified-linking-toolbar {
5883 right: -5em;
5887 } /* END MOBILE LAYOUT */
5890 /*****************/
5891 /* DEFAULT THEME */
5892 /*****************/
5894 /*===========*/
5895 /* VARIABLES */
5896 /*===========*/
5898 /* Color scheme.
5900 :root {
5901 --GW-comment-background-color-odd: #eee;
5902 --GW-comment-background-color-even: #fff;
5903 --GW-comment-background-color-target: #ffd;
5905 --GW-toggle-widget-color: #888;
5906 --GW-toggle-widget-hover-color: #444;
5907 --GW-toggle-widget-shadow-color: rgba(255, 255, 255, 0.5);
5910 /*======*/
5911 /* BASE */
5912 /*======*/
5914 body {
5915 color: #000;
5916 background-color: #d8d8d8;
5917 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
5918 font-feature-settings: 'ss07';
5920 #content {
5921 line-height: 1.55;
5923 #content::before {
5924 background-color: #fff;
5925 box-shadow: 0px 0px 10px #555;
5928 /*=========*/
5929 /* NAV BAR */
5930 /*=========*/
5932 .nav-inner {
5933 font-size: 1.375em;
5934 font-weight: 600;
5936 .nav-bar-top:not(#primary-bar) .nav-inner {
5937 font-size: 1em;
5940 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5941 #bottom-bar a:hover,
5942 #nav-item-search:not(.nav-current):focus-within {
5943 background-color: #ddd;
5945 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5946 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5947 background-color: #d8d8d8;
5950 .nav-bar a:visited {
5951 color: #00e;
5953 .nav-bar a:hover,
5954 .nav-bar a:focus {
5955 text-decoration: none;
5956 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5959 #bottom-bar.decorative::before,
5960 #bottom-bar.decorative::after {
5961 content: "GW";
5962 display: block;
5963 text-align: center;
5964 padding: 0.25em 0 1em 0;
5966 #bottom-bar.decorative::before {
5967 width: 100%;
5968 color: transparent;
5969 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5970 background-repeat: repeat-x;
5971 background-position: center 35%;
5972 margin: 0 30px;
5974 #bottom-bar.decorative::after {
5975 color: #d8d8d8;
5976 position: absolute;
5977 left: 0;
5978 right: 0;
5979 margin: auto;
5980 background-color: #fff;
5981 padding-right: 4px;
5982 padding-left: 4px;
5984 @supports (width: -moz-fit-content) {
5985 #bottom-bar.decorative::after {
5986 width: -moz-fit-content;
5989 @supports (width: fit-content) {
5990 #bottom-bar.decorative::after {
5991 width: fit-content;
5995 /* Accesskey hints */
5997 .nav-inner::after {
5998 display: block;
5999 position: absolute;
6000 left: 5px;
6001 top: -2px;
6002 font-weight: 400;
6003 font-size: 0.7em;
6004 color: #d8d8d8;
6006 .inactive-bar .nav-inner::after {
6007 color: #ccc;
6009 .nav-inner:hover::after {
6010 color: #bbb;
6013 /* This makes the navbar items look like tabs: */
6015 .nav-inactive {
6016 box-shadow:
6017 0 -1px #d8d8d8 inset,
6018 1px 0 #fff inset;
6020 .nav-inactive:first-child {
6021 box-shadow: 0 -1px #d8d8d8 inset;
6023 .inactive-bar .nav-inactive {
6024 background-color: #e4e4e4;
6026 .active-bar .nav-inactive {
6027 background-color: #eee;
6029 .nav-bar + .nav-bar {
6030 position: relative;
6033 /* For Webkit: */
6034 .nav-bar:not(#bottom-bar) {
6035 box-shadow: 0 -3px 8px -2px #ccc;
6037 .active-bar .nav-inactive {
6038 box-shadow:
6039 0 -4px 8px -4px #bbb inset,
6040 1px 0 #fff inset;
6042 .active-bar .nav-inactive:first-child {
6043 box-shadow:
6044 0 -4px 8px -4px #bbb inset;
6046 .active-bar .nav-current + .nav-inactive {
6047 box-shadow:
6048 5px -4px 8px -4px #bbb inset;
6050 .active-bar .nav-item-last-before-current {
6051 box-shadow:
6052 -5px -4px 8px -4px #bbb inset,
6053 1px 0 #fff inset;
6055 .active-bar .nav-item-last-before-current:first-child {
6056 box-shadow:
6057 -5px -4px 8px -4px #bbb inset;
6059 /* And for Gecko: */
6060 @-moz-document url-prefix() {
6061 .nav-bar:not(#bottom-bar) {
6062 box-shadow: 0 -3px 4px -2px #ccc;
6065 .active-bar .nav-inactive {
6066 box-shadow:
6067 0 -4px 4px -4px #bbb inset,
6068 1px 0 #fff inset;
6070 .active-bar .nav-inactive:first-child {
6071 box-shadow:
6072 0 -4px 4px -4px #bbb inset;
6074 .active-bar .nav-current + .nav-inactive {
6075 box-shadow:
6076 5px -4px 4px -4px #bbb inset;
6078 .active-bar .nav-item-last-before-current {
6079 box-shadow:
6080 -5px -4px 4px -4px #bbb inset,
6081 1px 0 #fff inset;
6083 .active-bar .nav-item-last-before-current:first-child {
6084 box-shadow:
6085 -5px -4px 4px -4px #bbb inset;
6089 /* Search tab */
6091 #nav-item-search button {
6092 border: none;
6093 font-weight: inherit;
6095 #nav-item-search input::placeholder {
6096 color: #d00;
6097 font-weight: normal;
6100 /*= Top pagination UI hover tooltips =*/
6102 #top-nav-bar a::after,
6103 #bottom-bar a::after {
6104 color: #000;
6107 /*==============*/
6108 /* PAGE TOOLBAR */
6109 /*==============*/
6111 .button.new-post:not(:hover),
6112 .button.new-private-message:not(:hover),
6113 .button.unignore-button:not(:hover){
6114 color: #090;
6116 .button.logout-button, .button.ignore-button {
6117 color: #d33;
6120 /*==============*/
6121 /* SUBLEVEL NAV */
6122 /*==============*/
6124 .sublevel-nav .sublevel-item {
6125 color: #777;
6126 background-color: #fff;
6128 .sublevel-nav .sublevel-item:not(.selected):hover {
6129 background-color: #ddd;
6130 color: #000;
6131 text-decoration: none;
6132 text-shadow: none;
6134 .sublevel-nav .sublevel-item:not(.selected):active,
6135 .sublevel-nav .sublevel-item.selected {
6136 background-color: #ddd;
6137 color: #000;
6138 text-shadow:
6139 0 -1px 0 #fff,
6140 0 0.5px 0.5px #000;
6143 .sublevel-nav:not(.sort) .sublevel-item {
6144 border-style: solid;
6145 border-color: #ddd;
6146 border-width: 1px 0 1px 1px;
6148 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6149 border-radius: 8px 0 0 8px;
6151 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6152 border-width: 1px;
6153 border-radius: 0 8px 8px 0;
6156 /*=====================*/
6157 /* SORT ORDER SELECTOR */
6158 /*=====================*/
6160 .sublevel-nav.sort .sublevel-item {
6161 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6162 letter-spacing: 0.5px;
6163 padding: 7px 7px 5px 7px;
6164 text-transform: uppercase;
6165 pointer-events: auto;
6166 box-shadow: 1px 1px 0 0 #aaa inset;
6168 .sublevel-nav.sort {
6169 border: 2px solid transparent;
6170 padding: 18px 0 0 0;
6171 border-radius: 8px;
6172 pointer-events: none;
6173 background-color: #bbb;
6175 .sublevel-nav.sort::before {
6176 text-transform: uppercase;
6177 font-weight: 600;
6178 color: #444;
6179 text-shadow: 0.5px 0.5px 0 #fff;
6180 z-index: 1;
6182 .sublevel-nav.sort::after {
6183 content: "";
6184 position: absolute;
6185 display: block;
6186 top: 0;
6187 left: 0;
6188 width: 100%;
6189 height: 100%;
6190 border-radius: 6px;
6191 box-shadow:
6192 0 18px 0 0 #bbb inset,
6193 0 0 0 1px #aaa inset,
6194 0 18px 0 1px #aaa inset,
6195 0 0 0 2px #bbb;
6198 /*================*/
6199 /* WIDTH SELECTOR */
6200 /*================*/
6201 /* THEME SELECTOR */
6202 /*================*/
6204 #width-selector button,
6205 #theme-selector button {
6206 box-shadow:
6207 0 0 0 4px #d8d8d8 inset,
6208 0 0 0 5px #bbb inset;
6210 #width-selector button:hover,
6211 #width-selector button.selected,
6212 #theme-selector button:hover,
6213 #theme-selector button.selected {
6214 box-shadow:
6215 0 0 0 5px #bbb inset;
6218 #theme-selector button::before {
6219 color: #999;
6220 background-color: #d8d8d8;
6222 #theme-selector button:hover::before,
6223 #theme-selector button.selected::before {
6224 color: #666;
6226 #width-selector button::after {
6227 color: #999;
6230 /*======================*/
6231 /* THEME TWEAKER TOGGLE */
6232 /*======================*/
6234 #theme-tweaker-toggle button {
6235 color: #777;
6238 /*=================*/
6239 /* QUICKNAV WIDGET */
6240 /*=================*/
6242 #quick-nav-ui a {
6243 color: #999;
6244 background-color: #e4e4e4;
6245 border-radius: 4px;
6246 text-decoration: none;
6248 #quick-nav-ui a[href='#bottom-bar'] {
6249 line-height: 1.8;
6251 #quick-nav-ui a:active {
6252 transform: scale(0.9);
6254 #quick-nav-ui a[href='#comments'].no-comments {
6255 opacity: 0.4;
6256 color: #bbb;
6258 @media only screen and (hover:hover) {
6259 #quick-nav-ui a:hover {
6260 color: #000;
6261 background-color: #eee;
6263 #quick-nav-ui a:focus:not(:hover) {
6264 transform: none;
6265 text-shadow: none;
6269 /*======================*/
6270 /* NEW COMMENT QUICKNAV */
6271 /*======================*/
6273 #new-comment-nav-ui .new-comments-count {
6274 font-weight: 600;
6275 color: #666;
6276 text-shadow: 0.5px 0.5px 0 #fff;
6278 #new-comment-nav-ui .new-comments-count::after {
6279 font-weight: 600;
6280 color: #777;
6282 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6283 color: #bbb;
6284 text-shadow: none;
6286 @media only screen and (hover:hover) {
6287 #new-comment-nav-ui .new-comments-count:hover {
6288 text-shadow:
6289 0 0 1px #fff,
6290 0 0 3px #fff,
6291 0 0 5px #fff,
6292 0 0 8px #fff,
6293 0.5px 0.5px 0 #fff;
6295 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6296 color: #d00;
6297 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6301 /*=================*/
6302 /* HNS DATE PICKER */
6303 /*=================*/
6305 #hns-date-picker span {
6306 color: #777;
6307 text-shadow: 0.5px 0.5px 0 #fff;
6308 font-weight: 600;
6310 #hns-date-picker input {
6311 border: 1px solid #777;
6312 background-color: transparent;
6313 color: #666;
6314 box-shadow: 0 0 0 1px transparent;
6316 #hns-date-picker input:focus {
6317 color: #000;
6320 /*======================*/
6321 /* ANTI-KIBITZER TOGGLE */
6322 /*======================*/
6324 #anti-kibitzer-toggle button::before,
6325 #anti-kibitzer-toggle button::after {
6326 background-color: var(--GW-toggle-widget-color);
6327 -webkit-background-clip: text;
6328 color: transparent;
6329 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
6331 #anti-kibitzer-toggle button:hover::before,
6332 #anti-kibitzer-toggle button:hover::after {
6333 background-color: var(--GW-toggle-widget-hover-color);
6336 /*====================*/
6337 /* DARK MODE SELECTOR */
6338 /*====================*/
6340 #dark-mode-selector {
6341 outline: 1px solid #999;
6343 #dark-mode-selector button {
6344 color: #777;
6346 #dark-mode-selector button.selected {
6347 background-color: #999;
6348 color: #fff;
6350 #dark-mode-selector button:not(.selected) + button:not(.selected) {
6351 box-shadow: 1px 0 0 0 #999 inset;
6353 #dark-mode-selector button:disabled:hover {
6354 text-shadow: none;
6356 #dark-mode-selector button::after {
6357 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6358 color: #999;
6359 text-shadow: none;
6362 /*======================*/
6363 /* TEXT SIZE ADJUSTMENT */
6364 /*======================*/
6366 #text-size-adjustment-ui button {
6367 color: #777;
6369 #text-size-adjustment-ui button.default {
6370 font-weight: 600;
6372 #text-size-adjustment-ui button:disabled:hover {
6373 text-shadow: none;
6375 #text-size-adjustment-ui::after {
6376 color: #999;
6379 /*=============================*/
6380 /* COMMENTS VIEW MODE SELECTOR */
6381 /*=============================*/
6383 #comments-view-mode-selector a {
6384 color: #777;
6387 /*==========*/
6388 /* ARCHIVES */
6389 /*==========*/
6391 .archive-nav {
6392 border: 1px solid #aaa;
6394 .archive-nav *[class^='archive-nav-item'] {
6395 border-style: solid;
6396 border-color: #ddd;
6397 border-width: 1px 0 1px 1px;
6398 background-color: #eee;
6400 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6401 border-top-width: 0;
6402 border-bottom-width: 0;
6404 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6405 border-bottom-width: 1px;
6407 .archive-nav *[class^='archive-nav-item']:last-child {
6408 border-right-width: 1px;
6410 .archive-nav span[class^='archive-nav-item'] {
6411 font-weight: bold;
6412 background-color: #ddd;
6415 .archive-nav a:link,
6416 .archive-nav a:visited {
6417 color: rgba(0, 0, 238, 0.7);
6419 .archive-nav a:hover {
6420 text-decoration: none;
6421 color: #c00;
6422 background-color: #e0e0e0;
6423 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6425 .archive-nav a:active {
6426 transform: scale(0.9);
6428 .archive-nav a:focus:not(:hover) {
6429 transform: none;
6431 .archive-nav a.archive-nav-item-day:hover {
6432 background-color: #ddd;
6435 /*==========*/
6436 /* LISTINGS */
6437 /*==========*/
6439 h1.listing {
6440 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
6441 font-weight: 700;
6442 margin: 0.7em 20px 0 20px;
6443 max-width: calc(100% - 40px);
6444 top: 0; ;
6447 h1.listing .post-title-link {
6448 color: #000;
6450 h1.listing .link-post-link {
6451 color: #00c;
6454 @media only screen and (hover: hover) {
6455 h1.listing a:hover,
6456 h1.listing a:focus {
6457 color: #777;
6458 background-color: rgba(255,255,255,0.85);
6460 h1.listing:focus-within::before {
6461 color: #00f;
6462 left: -0.625em;
6464 h1.listing .link-post-link:hover {
6465 color: #4879ec;
6466 text-shadow:
6467 0.5px 0.5px 0 #fff,
6468 -0.5px -0.5px 0 #fff,
6469 0 0 2px #fff,
6470 0 0 3px #00c;
6474 h1.listing .edit-post-link {
6475 padding: 5px 3px 12px 0.5em;
6476 top: 0;
6477 right: 0;
6479 h1.listing .edit-post-link:hover {
6480 text-decoration: none;
6482 #content.user-page h1.listing .edit-post-link {
6483 background-color: #eee;
6486 /*======*/
6487 /* SPAM */
6488 /*======*/
6490 h1.listing.spam {
6491 opacity: 0.15;
6493 h1.listing.spam + .post-meta {
6494 opacity: 0.4;
6496 h1.listing.spam:hover,
6497 h1.listing.spam + .post-meta:hover,
6498 h1.listing.spam:hover + .post-meta {
6499 opacity: 1.0;
6502 /*===================*/
6503 /* LISTING POST-META */
6504 /*===================*/
6506 h1.listing + .post-meta {
6507 padding-right: 330px;
6509 h1.listing + .post-meta .karma-value,
6510 h1.listing + .post-meta .comment-count,
6511 h1.listing + .post-meta .lw2-link,
6512 h1.listing + .post-meta .read-time {
6513 border-radius: 4px;
6514 padding: 0 4px 0 2px;
6515 text-shadow: 0.5px 0.5px 0.5px #999;
6516 margin: 0 0.25em 0 0.5em;
6517 position: absolute;
6518 line-height: 1.15;
6519 bottom: -6px;
6521 h1.listing + .post-meta .karma-value span,
6522 h1.listing + .post-meta .comment-count span,
6523 h1.listing + .post-meta .lw2-link span,
6524 h1.listing + .post-meta .read-time span {
6525 display: none;
6527 h1.listing + .post-meta .karma-value::before,
6528 h1.listing + .post-meta .comment-count::before,
6529 h1.listing + .post-meta .lw2-link::before,
6530 h1.listing + .post-meta .read-time::before {
6531 color: #fff;
6532 font-family: 'Font Awesome', 'Font Awesome 5 Free';
6533 font-weight: 900;
6534 margin: 0 8px 0 0;
6535 box-shadow: 0 0 0 2px #ddd;
6537 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
6538 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
6539 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
6540 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
6541 text-shadow: 0 0 3px #999;
6544 h1.listing + .post-meta .karma {
6545 margin: 0;
6547 h1.listing + .post-meta .karma-value {
6548 box-shadow:
6549 22px 0 0 0 #ddd inset,
6550 0 0 0 3px #ddd;
6551 cursor: default;
6552 color: #c00;
6553 right: 264px;
6555 h1.listing + .post-meta .karma-value::before {
6556 content: "\F139";
6557 text-shadow: none;
6558 font-size: 0.9375em;
6559 line-height: 1.3;
6562 h1.listing + .post-meta .comment-count::before {
6563 content: "\F086";
6565 h1.listing + .post-meta .comment-count {
6566 box-shadow:
6567 25px 0 0 0 #ddd inset,
6568 0 0 0 3px #ddd;
6569 color: #009100;
6570 right: 176px;
6572 h1.listing + .post-meta .comment-count:hover {
6573 text-decoration: none;
6574 color: #fff;
6575 background-color: #009100;
6577 h1.listing + .post-meta .comment-count:hover::before {
6578 color: #009100;
6580 h1.listing + .post-meta .comment-count.new-comments::before {
6581 color: #009100;
6582 text-shadow: 0.5px 0.5px 0.5px #fff;
6584 h1.listing + .post-meta .comment-count.new-comments:hover::before {
6585 text-shadow: 0.5px 0.5px 0.5px #999;
6589 h1.listing + .post-meta .lw2-link {
6590 box-shadow:
6591 23px 0 0 0 #ddd inset,
6592 0 0 0 3px #ddd;
6593 right: 0;
6595 h1.listing + .post-meta .lw2-link::before {
6596 content: "\F0C1";
6598 h1.listing + .post-meta .lw2-link:hover {
6599 text-decoration: none;
6600 color: #fff;
6601 background-color: #00f;
6603 h1.listing + .post-meta .lw2-link:hover::before {
6604 color: #00f;
6607 h1.listing + .post-meta .read-time {
6608 box-shadow:
6609 21px 0 0 0 #ddd inset,
6610 0 0 0 3px #ddd;
6611 right: 80px;
6613 h1.listing + .post-meta .read-time::before {
6614 content: "\F2F2";
6615 cursor: pointer;
6617 h1.listing + .post-meta .read-time::after {
6618 content: " min";
6620 h1.listing + .post-meta .read-time:hover::before {
6621 color: #777;
6624 h1.listing + .post-meta .word-count {
6625 box-shadow:
6626 22px 0 0 0 #ddd inset,
6627 0 0 0 3px #ddd;
6628 padding: 0 4px 0 4px;
6630 h1.listing + .post-meta .word-count::before {
6631 content: "\F15C";
6632 margin: 0 10px 0 0;
6634 h1.listing + .post-meta .read-time.word-count::after {
6635 content: none;
6638 h1.listing + .post-meta .link-post-domain {
6639 margin: 0 0 0 0.5em;
6642 h1.listing + .post-meta::after {
6643 content: "";
6644 display: block;
6645 height: 1px;
6646 width: 100%;
6647 background-color: #ddd;
6648 position: absolute;
6649 bottom: -14px;
6652 /*============*/
6653 /* USER PAGES */
6654 /*============*/
6656 #content.user-page h1.page-main-heading,
6657 #content.user-page .user-stats {
6658 border-bottom: 1px solid #ccc;
6661 #content.user-page h1.listing,
6662 #content.user-page h1.listing + .post-meta {
6663 background-color: #eee;
6664 border-style: solid;
6665 border-color: #ccc;
6667 #content.user-page h1.listing {
6668 padding: 0 6px;
6669 padding-top: 0.125em;
6670 border-width: 1px 1px 0 1px;
6671 margin: 1rem 0 0 0;
6672 max-width: 100%;
6674 #content.own-user-page h1.listing,
6675 h1.listing.own-post-listing {
6676 padding-right: 36px;
6678 @media only screen and (hover: hover) {
6679 #content.user-page h1.listing a:hover,
6680 #content.user-page h1.listing a:focus {
6681 background-color: #eee;
6683 #content.user-page h1.listing:focus-within::before {
6684 left: -0.625em;
6687 #content.user-page h1.listing + .post-meta {
6688 padding: 0.125em 6px 1em 36px;
6689 border-width: 0 1px 1px 1px;
6690 margin: 0 0 1rem 0;
6692 #content.user-page h1.listing + .post-meta::after {
6693 display: none;
6695 @media only screen and (min-width: 521px) {
6696 #content.user-page h1.listing + .post-meta .karma-value,
6697 #content.user-page h1.listing + .post-meta .comment-count,
6698 #content.user-page h1.listing + .post-meta .lw2-link,
6699 #content.user-page h1.listing + .post-meta .read-time {
6700 bottom: 10px;
6703 #content.user-page h1.listing + .post-meta .post-section::before {
6704 left: -1px;
6707 #content.conversations-user-page h1.listing {
6708 padding: 4px 6px;
6709 font-size: 1.75rem;
6711 #content.conversations-user-page h1.listing + .post-meta {
6712 padding: 6px 4px;
6713 margin: 0 0 0.25rem 0;
6716 .user-stats .karma-total {
6717 font-weight: bold;
6720 /*===============*/
6721 /* CONVERSATIONS */
6722 /*===============*/
6724 /*============*/
6725 /* LOGIN PAGE */
6726 /*============*/
6728 .login-container form input[type='submit'] {
6729 font-weight: bold;
6730 background-color: #eee;
6731 border: 1px solid #ccc;
6733 .login-container form input[type='submit']:hover,
6734 .login-container form input[type='submit']:focus {
6735 background-color: #ddd;
6736 border: 1px solid #aaa;
6739 /* “Create account” form */
6741 #signup-form {
6742 background-color: #f3f3f3;
6743 border: 1px solid #ddd;
6745 #signup-form input[type='submit'] {
6746 background-color: #e4e4e4;
6747 border: 1px solid #ccc;
6749 #signup-form input[type='submit']:hover {
6750 background-color: #d8d8d8;
6751 border: 1px solid #aaa;
6754 /* Log in tip */
6756 .login-container .login-tip {
6757 border: 1px solid #eee;
6760 /* Message box */
6762 .error-box {
6763 border: 1px solid red;
6764 background-color: #faa;
6766 .success-box {
6767 border: 1px solid green;
6768 background-color: #afa;
6771 /*=====================*/
6772 /* PASSWORD RESET PAGE */
6773 /*=====================*/
6775 .reset-password-container input[type='submit'] {
6776 background-color: #e4e4e4;
6777 border: 1px solid #ccc;
6778 font-weight: bold;
6781 /*===================*/
6782 /* TABLE OF CONTENTS */
6783 /*===================*/
6785 .contents {
6786 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6787 border: 1px solid #ddd;
6788 background-color: #eee;
6790 .contents-head {
6791 font-weight: bold;
6793 .post-body .contents li::before {
6794 color: #999;
6795 font-feature-settings: "tnum";
6797 .post-body .contents a,
6798 .post-body .contents a:hover {
6799 border: none;
6801 .post-body .contents a:hover {
6802 text-decoration: underline;
6805 /*==================*/
6806 /* POSTS & COMMENTS */
6807 /*==================*/
6809 .body-text {
6810 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6813 .body-text a {
6814 border-bottom: 1px dotted #bbb;
6816 .body-text a:hover {
6817 text-decoration: none;
6818 border-bottom: 1px solid currentColor;
6821 /*=======*/
6822 /* POSTS */
6823 /*=======*/
6825 h1.post-title {
6826 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6827 font-weight: 700;
6830 /*=================*/
6831 /* POST NAVIGATION */
6832 /*=================*/
6834 .post-nav-links a,
6835 .post-nav-links a:visited {
6836 color: #000;
6838 .post-nav-links a:hover {
6839 text-decoration: none;
6841 .post-nav-title {
6842 font-weight: 600;
6845 .post-nav-label {
6846 color: #777;
6848 .post-nav-links a:hover .post-nav-label {
6849 font-weight: 600;
6850 color: #888;
6852 .post-nav-links a:hover .post-nav-title {
6853 color: #777;
6856 @media only screen and (max-width: 900px) {
6857 .sequence-title {
6858 border-top: 1px dotted #777;
6860 .post-nav.prev {
6861 border-right: 1px dotted #777;
6863 .post-nav.next {
6864 border-left: 1px dotted #777;
6868 /*===========*/
6869 /* POST-META */
6870 /*===========*/
6872 .post-meta .post-section::before,
6873 .comment-meta .alignment-forum {
6874 color: #fff;
6875 text-shadow:
6876 1px 1px 0 #090,
6877 0 1px 0 #090,
6878 0 0 5px #090;
6880 a.post-section:hover {
6881 text-decoration: none;
6883 a.post-section:hover::before {
6884 color: #97ff7c;
6886 .post-meta .post-section.alignment-forum::before,
6887 .comment-meta .alignment-forum {
6888 text-shadow:
6889 1px 1px 0 #626dd7,
6890 0 1px 0 #626dd7,
6891 0 0 5px #626dd7;
6893 a.post-section.alignment-forum:hover::before {
6894 color: #e6e5ff;
6896 .post-meta .date {
6897 color: #888;
6899 .post-meta .author {
6900 color: #090;
6902 .bottom-post-meta {
6903 border-color: #ddd;
6906 /*============*/
6907 /* LINK POSTS */
6908 /*============*/
6910 .post.link-post a.link-post-link {
6911 text-decoration: none;
6912 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6913 font-weight: 600;
6915 .post.link-post a.link-post-link:hover {
6916 color: #c00;
6918 .post.link-post a.link-post-link:hover::before {
6919 color: #4879ec;
6920 text-shadow:
6921 0.5px 0.5px 0 #fff,
6922 -0.5px -0.5px 0 #fff,
6923 0 0 2px #fff,
6924 0 0 3px #00c;
6926 .post.link-post a.link-post-link:focus {
6927 color: #777;
6928 border-bottom: 2px dotted #777;
6931 /*==========*/
6932 /* COMMENTS */
6933 /*==========*/
6935 .comments::before {
6936 border-top: 1px solid #000;
6937 box-shadow: 0 3px 4px -4px #000 inset;
6939 @-moz-document url-prefix() {
6940 .comments::before {
6941 box-shadow: 0 3px 3px -4px #000 inset;
6944 #content > .comment-thread .comment-meta a.date:focus,
6945 #content > .comment-thread .comment-meta a.permalink:focus {
6946 color: #888;
6947 outline: 2px dotted #999;
6948 position: relative;
6949 background-color: #fff;
6951 #content > .comment-thread .comment-meta a.date:focus {
6952 padding: 0 4px;
6953 left: -4px;
6955 #content > .comment-thread .comment-meta a.date:focus + * {
6956 margin-left: -8px;
6958 #content > .comment-thread .comment-meta a.permalink:focus {
6959 padding: 0 5px;
6960 left: -5px;
6962 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6963 margin-left: -10px;
6965 .comment-item {
6966 border: 1px solid #ccc;
6967 background-color: var(--GW-comment-background-color);
6969 .comment-parent-link::after {
6970 box-shadow:
6971 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6972 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6973 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6976 /*================================*/
6977 /* DEEP COMMENT THREAD COLLAPSING */
6978 /*================================*/
6980 .comment-item input[id^="expand"] + label::after {
6981 color: #00e;
6982 font-weight: 600;
6984 .comment-item input[id^="expand"] + label:hover::after {
6985 color: #c00;
6987 .comment-item input[id^="expand"] + label:active::after,
6988 .comment-item input[id^="expand"] + label:focus::after{
6989 color: #c00;
6991 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6992 border-width: 1px 0 0 0;
6995 /*==============*/
6996 /* COMMENT-META */
6997 /*==============*/
6999 .comment-meta .author {
7000 font-weight: bold;
7001 font-size: 1.25em;
7002 color: #000;
7004 .comment-meta .author:hover {
7005 text-decoration: none;
7006 color: #090;
7008 .comment-item .author:not(.redacted).original-poster::after {
7009 opacity: 0.5;
7012 .comment-item .voting-controls.active-controls::after,
7013 .comment-item .voting-controls .karma-value::after,
7014 .post .voting-controls.active-controls::after,
7015 .post .voting-controls .karma-value::after,
7016 .author::before {
7017 background-color: #fff;
7018 color: #999;
7019 border-radius: 4px;
7020 box-shadow: 0 0 0 1px #ddd inset;
7022 .comment-item .voting-controls.active-controls::after,
7023 .post .voting-controls.active-controls::after {
7024 padding: 6px 4px 4px 4px;
7025 bottom: -44px;
7027 .comment-item .voting-controls .karma-value::after,
7028 .post .voting-controls .karma-value::after {
7029 padding: 2px 8px 1px 8px;
7030 top: -25px;
7031 min-width: 56px;
7034 /*====================*/
7035 /* ANTI-KIBITZER MODE */
7036 /*====================*/
7038 .author.redacted,
7039 .inline-author.redacted {
7040 opacity: 0.6;
7041 font-weight: 400;
7044 .karma-value.redacted {
7045 opacity: 0.4;
7048 .link-post-domain.redacted {
7049 opacity: 0.4;
7052 /*===========================*/
7053 /* COMMENT THREAD NAVIGATION */
7054 /*===========================*/
7056 div.comment-parent-link {
7057 font-weight: 600;
7059 a.comment-parent-link {
7060 font-weight: 400;
7062 a.comment-parent-link::before {
7063 color: #bbb;
7065 a.comment-parent-link:hover::before {
7066 background-color: #ffd;
7067 color: #999;
7070 div.comment-child-links {
7071 font-weight: 600;
7073 div.comment-child-links a {
7074 font-weight: 400;
7076 .comment-child-link::before {
7077 color: #aaa;
7080 .comment-item-highlight {
7081 box-shadow:
7082 0 0 2px #e7b200,
7083 0 0 3px #e7b200,
7084 0 0 5px #e7b200,
7085 0 0 7px #e7b200,
7086 0 0 10px #e7b200;
7087 border: 1px solid #e7b200;
7089 .comment-item-highlight-faint {
7090 box-shadow:
7091 0 0 2px #f8e7b5,
7092 0 0 3px #f8e7b5,
7093 0 0 5px #f8e7b5,
7094 0 0 7px #f8e7b5,
7095 0 0 10px #f8e7b5;
7096 border: 1px solid #f8e7b5;
7099 .comment-popup {
7100 background-color: #fff;
7103 /*=======================*/
7104 /* COMMENTS COMPACT VIEW */
7105 /*=======================*/
7107 #comments-list-mode-selector button {
7108 box-shadow:
7109 0 0 0 4px #fff inset,
7110 0 0 0 5px #bbb inset;
7112 #comments-list-mode-selector button:hover,
7113 #comments-list-mode-selector button.selected {
7114 box-shadow:
7115 0 0 0 5px #bbb inset;
7117 #content.compact > .comment-thread .comment-item::after {
7118 color: #00e;
7119 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
7122 @media only screen and (hover: hover) {
7123 #content.compact > .comment-thread .comment-item:hover .comment,
7124 #content.compact > .comment-thread .comment-item.expanded .comment {
7125 background-color: #fff;
7126 outline: 3px solid #00c;
7128 #content.compact > .comment-thread .comment-item:hover .comment::before,
7129 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7130 background-color: #fff;
7131 box-shadow:
7132 0 0 3px #fff,
7133 0 0 5px #fff,
7134 0 0 7px #fff,
7135 0 0 10px #fff,
7136 0 0 20px #fff,
7137 0 0 30px #fff,
7138 0 0 40px #fff;
7141 @media only screen and (hover: none) {
7142 #content.compact > .comment-thread.expanded .comment-item .comment {
7143 background-color: #fff;
7144 outline: 3px solid #00c;
7146 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7147 background-color: #fff;
7148 box-shadow:
7149 0 0 3px #fff,
7150 0 0 5px #fff,
7151 0 0 7px #fff,
7152 0 0 10px #fff,
7153 0 0 20px #fff,
7154 0 0 30px #fff,
7155 0 0 40px #fff;
7159 #content.user-page.compact > h1.listing {
7160 margin-top: 0.5rem;
7162 #content.user-page.compact > h1.listing + .post-meta {
7163 margin-bottom: 0.5rem;
7166 /*===========================*/
7167 /* HIGHLIGHTING NEW COMMENTS */
7168 /*===========================*/
7170 .new-comment::before {
7171 outline: 2px solid #5a5;
7172 box-shadow:
7173 0 0 6px -2px #5a5 inset,
7174 0 0 4px #5a5,
7175 0 0 6px #5a5;
7178 /*=================================*/
7179 /* COMMENT THREAD MINIMIZE BUTTONS */
7180 /*=================================*/
7182 .comment-minimize-button {
7183 color: #ccc;
7185 .comment-minimize-button:hover {
7186 color: #aaa;
7187 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7189 .comment-minimize-button::after {
7190 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7191 color: #777;
7193 .comment-minimize-button.maximized::after {
7194 color: #ccc;
7197 /*==============*/
7198 /* VOTE BUTTONS */
7199 /*==============*/
7201 .vote::before {
7202 content: "";
7203 border-radius: 50%;
7204 background-size: 17px 17px;
7205 width: 17px;
7206 height: 17px;
7207 display: inline-block;
7208 position: relative;
7209 top: 2.5px;
7211 .vote:active {
7212 transform: none;
7215 /**********/
7216 /* States.
7219 /* _ 1
7221 .upvote {
7222 filter: grayscale(100%) brightness(128%);
7224 .downvote {
7225 filter: grayscale(100%) brightness(188%);
7228 /* _ 2
7230 .vote:not(.none) {
7231 filter: drop-shadow(0 0 1px #fff);
7234 /* 1 _
7236 .vote.two-temp::before {
7237 box-shadow:
7238 0 0 0 1px #fff,
7239 0 0 0 4px #c8c8c8,
7240 0 0 0 5px transparent;
7243 /* 2 _
7245 .upvote.two::before {
7246 box-shadow:
7247 0 0 0 1px #fff,
7248 0 0 0 4px var(--GW-upvote-button-color),
7249 0 0 0 5px transparent;
7251 .downvote.two::before {
7252 box-shadow:
7253 0 0 0 1px #fff,
7254 0 0 0 4px var(--GW-downvote-button-color),
7255 0 0 0 5px transparent;
7258 /* Disabled.
7260 .vote:disabled {
7261 visibility: unset;
7262 filter: brightness(50%);
7265 /*********/
7266 /* Icons.
7269 .karma .upvote::before {
7270 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7272 .karma .downvote::before {
7273 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7276 .karma .upvote:disabled::before {
7277 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiBzdHJva2U9IiNEOEQ4RDgiIHN0cm9rZS13aWR0aD0iNCUiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
7279 .karma .downvote:disabled::before {
7280 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7283 .agreement .upvote::before {
7284 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgZmlsbD0iIzAwRDgwMCIvPjwvc3ZnPg==');
7286 .agreement .downvote::before {
7287 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIGZpbGw9IiNFQjRDMkEiLz48L3N2Zz4=');
7290 .agreement .upvote:disabled::before {
7291 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7293 .agreement .downvote:disabled::before {
7294 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7297 /*===========================*/
7298 /* COMMENTING AND POSTING UI */
7299 /*===========================*/
7301 .posting-controls input[type='submit'] {
7302 background-color: #fff;
7303 border: 1px solid #aaa;
7304 font-weight: bold;
7306 .posting-controls input[type='submit']:hover,
7307 .posting-controls input[type='submit']:focus {
7308 background-color: #ddd;
7309 border: 1px solid #999;
7312 .comment-controls .cancel-comment-button {
7313 font-weight: 600;
7314 color: #c00;
7315 text-shadow:
7316 0 0 1px #fff,
7317 0 0 2px #fff;
7319 .comment-controls .cancel-comment-button:hover {
7320 color: #f00;
7321 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7324 .new-comment-button {
7325 font-weight: 600;
7328 .comment-controls .delete-button,
7329 .comment-controls .retract-button {
7330 color: #a00;
7331 opacity: 0.85;
7333 .comment-controls .edit-button,
7334 .comment-controls .unretract-button {
7335 color: #090;
7337 .comment-controls .action-button:hover {
7338 color: #f00;
7339 opacity: 1.0;
7342 .button.edit-post-link:not(:hover) {
7343 color: #090;
7346 .posting-controls textarea {
7347 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
7348 color: #000;
7349 background-color: #fff;
7350 border-color: #aaa;
7351 box-shadow:
7352 0 0 0 1px #eee inset;
7354 .posting-controls textarea:focus {
7355 background-color: #ffd;
7356 border-color: #00e;
7357 box-shadow:
7358 0 0 0 1px #ddf inset,
7359 0 0 0 1px #fff,
7360 0 0 0 2px #00e;
7362 .posting-controls.edit-existing-post textarea:focus,
7363 .posting-controls form.edit-existing-comment textarea:focus {
7364 border-color: #090;
7365 box-shadow:
7366 0 0 0 1px #81ff7f inset,
7367 0 0 0 1px #fff,
7368 0 0 0 2px #090;
7371 /*= Scroll bars =*/
7373 .posting-controls textarea::-webkit-scrollbar {
7374 width: 16px;
7375 background-color: transparent;
7377 .posting-controls textarea::-webkit-scrollbar-track {
7378 background-color: #eee;
7379 border-left: 1px solid #aaa;
7380 border-top: 1px solid #eee;
7382 .posting-controls textarea:focus::-webkit-scrollbar-track {
7383 border-left: 1px solid #00e;
7384 border-top: 1px solid #ddf;
7386 .posting-controls textarea::-webkit-scrollbar-thumb {
7387 background-color: #aaa;
7388 box-shadow: 0 0 0 1px #eee inset;
7389 border-left: 1px solid #aaa;
7391 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7392 border-left: 1px solid #00e;
7393 background-color: #0040ff;
7394 box-shadow:
7395 0 1px 0 0 #ddf inset,
7396 0 0 0 1px #eee inset;
7399 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7400 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7401 border-left: 1px solid #090;
7403 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7404 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7405 border-left: 1px solid #090;
7406 background-color: #28a708;
7409 /* GUIEdit buttons */
7411 .guiedit-buttons-container {
7412 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
7415 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7416 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7417 color: #050;
7419 .guiedit-buttons-container button {
7420 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
7423 .guiedit::after {
7424 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7425 color: #777;
7426 text-shadow: none;
7429 /* Markdown hints */
7431 #markdown-hints-checkbox + label {
7432 color: #00e;
7434 #markdown-hints-checkbox + label:hover {
7435 color: #e00;
7436 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7438 #markdown-hints {
7439 border: 1px solid #c00;
7440 background-color: #ffa;
7443 /*================*/
7444 /* EDIT POST FORM */
7445 /*================*/
7447 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7448 top: -1px;
7450 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7451 border-radius: 3px;
7452 border: 1px solid #ddd;
7453 color: #777;
7455 @media only screen and (hover:hover) {
7456 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7457 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7458 text-shadow:
7459 0 0 1px #fff,
7460 0 0 2px #fff,
7461 0 0 2.5px #aaa;
7463 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7464 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7465 border-color: #aaa;
7468 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7469 content: "\F00C";
7471 #edit-post-form input[type='radio'] + label {
7472 color: #777;
7473 border-color: #ddd;
7474 padding: 4px 12px 5px 12px;
7476 #edit-post-form input[type='radio'][value='all'] + label {
7477 border-radius: 8px 0 0 8px;
7478 border-width: 1px;
7480 #edit-post-form input[type='radio'][value='drafts'] + label {
7481 border-radius: 0 8px 8px 0;
7483 @media only screen and (hover:hover) {
7484 #edit-post-form input[type='radio'] + label:hover,
7485 #edit-post-form input[type='radio']:focus + label {
7486 background-color: #ddd;
7487 color: #000;
7490 #edit-post-form input[type='radio']:focus + label {
7491 color: #000;
7492 box-shadow:
7493 0 0 0 1px #aaa;
7495 #edit-post-form input[type='radio']:checked + label {
7496 background-color: #ddd;
7497 border-color: #ddd;
7498 color: #000;
7499 text-shadow:
7500 0 -1px 0 #fff,
7501 0 0.5px 0.5px #000;
7504 /*=======*/
7505 /* LINKS */
7506 /*=======*/
7509 text-decoration: none;
7510 color: #00e;
7512 a:visited {
7513 color: #551a8b;
7515 a:hover {
7516 text-decoration: underline;
7519 /*=========*/
7520 /* BUTTONS */
7521 /*=========*/
7523 button,
7524 input[type='submit'] {
7525 color: #00e;
7528 button:active,
7529 input[type='submit']:active {
7530 color: #f00;
7531 transform: scale(0.9);
7533 .button:visited {
7534 color: #00e;
7536 .button:active {
7537 transform: scale(0.9);
7539 @-moz-document url-prefix() {
7540 .button:active {
7541 transform: none;
7545 @media only screen and (hover:hover) {
7546 button:hover,
7547 input[type='submit']:hover,
7548 button:focus,
7549 input[type='submit']:focus {
7550 color: #f00;
7551 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7554 .button:hover {
7555 color: #f00;
7556 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7557 text-decoration: none;
7559 .button:focus:not(:hover) {
7560 transform: none;
7564 /*==========*/
7565 /* HEADINGS */
7566 /*==========*/
7568 .body-text h1,
7569 .body-text h2,
7570 .body-text h4 {
7571 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7573 .body-text h3,
7574 .body-text h5,
7575 .body-text h6 {
7576 font-weight: 600;
7577 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7579 .body-text h6 {
7580 color: #555;
7582 .body-text h1 {
7583 border-bottom: 1px solid #aaa;
7586 /*========*/
7587 /* QUOTES */
7588 /*========*/
7590 blockquote {
7591 border-left: 5px solid #ccc;
7594 /*========*/
7595 /* IMAGES */
7596 /*========*/
7598 #content img,
7599 #content figure.image img {
7600 border: 1px solid #ccc;
7602 #content figure img {
7603 border: 1px solid #000;
7605 #content img[src$='.svg'],
7606 #content figure img[src$='.svg'] {
7607 border: none;
7609 #content img[style^='float'] {
7610 border: 1px solid transparent;
7613 /*========*/
7614 /* TABLES */
7615 /*========*/
7617 #content:not(.tag-index-page) .body-text table,
7618 #content:not(.tag-index-page) .body-text table th,
7619 #content:not(.tag-index-page) .body-text table td {
7620 border: 1px solid #ccc;
7623 /*======*/
7624 /* MISC */
7625 /*======*/
7627 hr {
7628 border-bottom: 1px solid #999;
7631 code {
7632 background-color: #f6f6ff;
7633 border: 1px solid #ddf;
7634 border-radius: 4px;
7637 input[type='text'],
7638 input[type='search'],
7639 input[type='password'] {
7640 background-color: #fff;
7641 border: 1px solid #ddd;
7642 color: #000;
7644 input[type='text']:focus,
7645 input[type='search']:focus,
7646 input[type='password']:focus {
7647 background-color: #ffd;
7648 border: 1px solid #bbb;
7649 box-shadow: 0 0 1px #bbb;
7652 select {
7653 color: #000;
7657 /*============*/
7658 /* ABOUT PAGE */
7659 /*============*/
7661 .about-page mark {
7662 background-color: #e6e6e6;
7663 text-decoration: none;
7664 box-shadow:
7665 0 -1px 0 0 #000 inset,
7666 0 -3px 1px -2px #000 inset;
7667 padding: 0 1px;
7670 #content.about-page .accesskey-table {
7671 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7672 border-color: #ddd;
7675 #content.about-page img {
7676 border: 1px solid #000;
7679 /*========================*/
7680 /* QUALIFIED HYPERLINKING */
7681 /*========================*/
7683 #aux-about-link a {
7684 color: #777;
7686 #aux-about-link a:hover {
7687 opacity: 1.0;
7688 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7691 .qualified-linking label {
7692 color: #00e;
7694 .qualified-linking label:hover {
7695 text-shadow:
7696 0 0 1px #fff,
7697 0 0 3px #fff,
7698 0 0 5px #00e;
7701 .qualified-linking-toolbar {
7702 border: 1px solid #000;
7703 background-color: #fff;
7705 .qualified-linking-toolbar a {
7706 background-color: #eee;
7707 border: 1px solid #ccc;
7708 border-radius: 4px;
7710 .qualified-linking-toolbar a:visited {
7711 color: #00e;
7713 .qualified-linking-toolbar a:hover {
7714 text-decoration: none;
7715 background-color: #ddd;
7716 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7718 .qualified-linking label::after {
7719 background-color: #d8d8d8;
7720 opacity: 0.8;
7723 /*======*/
7724 /* MATH */
7725 /*======*/
7727 .mathjax-block-container::-webkit-scrollbar {
7728 height: 12px;
7729 background-color: #f6f6ff;
7730 border-radius: 6px;
7731 border: 1px solid #ddf;
7733 .mathjax-block-container::-webkit-scrollbar-thumb {
7734 background-color: #dde;
7735 border-radius: 6px;
7736 border: 1px solid #cce;
7738 .mathjax-inline-container::-webkit-scrollbar {
7739 height: 8px;
7740 background-color: #f6f6ff;
7741 border-radius: 4px;
7742 border: 1px solid #ddf;
7744 .mathjax-inline-container::-webkit-scrollbar-thumb {
7745 background-color: #dde;
7746 border-radius: 4px;
7747 border: 1px solid #cce;
7750 /*=================*/
7751 /* ALIGNMENT FORUM */
7752 /*=================*/
7754 #content.alignment-forum-index-page::before {
7755 background-color: #eef0ff;
7757 #content.alignment-forum-index-page::after {
7758 font-family: "Concourse SmallCaps";
7759 font-weight: bold;
7760 background-color: #626dd7;
7761 -webkit-background-clip: text;
7762 color: transparent;
7763 text-shadow:
7764 rgba(255,255,255,0.5) 0px 3px 3px;;
7766 @media only screen and (hover: hover) {
7767 #content.alignment-forum-index-page h1.listing a:hover,
7768 #content.alignment-forum-index-page h1.listing a:focus {
7769 background-color: rgba(238,240,255,0.85);
7773 /*====================*/
7774 /* FOR NARROW SCREENS */
7775 /*====================*/
7777 @media only screen and (max-width: 1440px) {
7778 #hns-date-picker {
7779 background-color: #d8d8d8;
7780 opacity: 1.0;
7782 #hns-date-picker::before {
7783 border: 1px solid #999;
7784 border-width: 1px 0 1px 1px;
7787 @media only screen and (max-width: 1160px) {
7788 #theme-selector:hover::after {
7789 background-color: #999;
7792 @media only screen and (max-width: 1080px) {
7793 #text-size-adjustment-ui button {
7794 border: 1px solid #999;
7795 padding: 0 0 0 1px;
7796 border-radius: 50%;
7797 box-shadow:
7798 0 0 6px #999 inset,
7799 0 0 0 1px transparent;
7801 #theme-tweaker-toggle button {
7802 border: 1px solid #999;
7803 box-shadow:
7804 0 0 10px #999 inset,
7805 0 0 0 1px transparent;
7806 border-radius: 50%;
7807 transform: scale(0.8);
7810 @media only screen and (max-width: 1020px) {
7811 #quick-nav-ui a {
7812 box-shadow:
7813 0 0 0 1px #999,
7814 0 0 0 2px transparent;
7816 #new-comment-nav-ui .new-comments-count::before {
7817 background-color: #d8d8d8;
7818 box-shadow:
7819 0 0 0 1px #999,
7820 0 0 0 2px transparent;
7821 border-radius: 8px;
7823 #anti-kibitzer-toggle {
7824 box-shadow:
7825 0 0 0 1px #999,
7826 0 0 0 2px transparent;
7827 background-color: #d8d8d8;
7828 border-radius: 6px;
7829 overflow: hidden;
7832 @media only screen and (max-width: 1000px) {
7833 #theme-selector {
7834 background-color: #d8d8d8;
7835 box-shadow:
7836 0 0 0 1px #999,
7837 0 0 0 2px transparent;
7839 #theme-selector:hover::after {
7840 width: calc(6em - 3px);
7841 height: calc(100% - 5px);
7842 top: 3px;
7843 left: 100%;
7845 #text-size-adjustment-ui button {
7846 background-color: #ddd;
7848 #text-size-adjustment-ui button:hover {
7849 background-color: #eee;
7851 #theme-tweaker-toggle button {
7852 background-color: #ddd;
7856 /*========*/
7857 /* MOBILE */
7858 /*========*/
7860 /**************************************************************************/
7861 @media only screen and (max-width: 1160px) {
7862 /**************************************************************************/
7864 #ui-elements-container > div[id$='-ui-toggle'] button {
7865 color: #888;
7866 text-shadow:
7867 0 0 1px #fff,
7868 0 0 3px #fff,
7869 0 0 5px #fff,
7870 0 0 10px #fff,
7871 0 0 20px #fff,
7872 0 0 30px #fff;
7875 #theme-selector {
7876 background-color: #d8d8d8;
7877 box-shadow:
7878 0 0 0 1px #999,
7879 0 0 1px 3px #fff,
7880 0 0 3px 3px #fff,
7881 0 0 5px 3px #fff,
7882 0 0 10px 3px #fff,
7883 0 0 20px 3px #fff;
7884 border-radius: 12px;
7886 #theme-selector::before,
7887 #theme-selector .theme-selector-close-button {
7888 color: #666;
7889 text-shadow: 0.5px 0.5px 0 #fff;
7891 #theme-selector button {
7892 background-color: #e6e6e6;
7893 border-radius: 10px;
7895 #theme-selector button::after {
7896 color: #000;
7897 padding-bottom: 2px;
7898 max-width: calc(100% - 3.25em);
7899 overflow: hidden;
7900 text-overflow: ellipsis;
7902 #theme-selector button.selected::after {
7903 text-shadow:
7904 0 -1px 0 #fff,
7905 0 0.5px 0.5px #000;
7908 #quick-nav-ui {
7909 background-color: #fff;
7911 #quick-nav-ui,
7912 #new-comment-nav-ui,
7913 #hns-date-picker {
7914 box-shadow:
7915 0 0 1px 3px #fff,
7916 0 0 3px 3px #fff,
7917 0 0 5px 3px #fff,
7918 0 0 10px 3px #fff,
7919 0 0 20px 3px #fff;
7921 #quick-nav-ui a::after,
7922 #new-comment-nav-ui::before {
7923 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7924 font-weight: 600;
7925 box-shadow:
7926 0 0 1px 0 #fff,
7927 0 0 3px 0 #fff,
7928 0 0 5px 0 #fff;
7929 background-color: #fff;
7930 border-radius: 4px;
7932 #quick-nav-ui,
7933 #new-comment-nav-ui {
7934 border-radius: 8px;
7936 #new-comment-nav-ui {
7937 background-color: #d8d8d8;
7938 border: 1px solid #999;
7940 #new-comment-nav-ui::before {
7941 color: #777;
7943 #new-comment-nav-ui .new-comment-sequential-nav-button {
7944 box-shadow: 0 0 0 1px #999;
7945 color: #777;
7947 #new-comment-nav-ui .new-comments-count {
7948 background-color: inherit;
7949 box-shadow: 0 -1px 0 0 #999;
7951 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7952 color: #bbb;
7954 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7955 border-radius: 7px 0 0 7px;
7957 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7958 border-radius: 0 7px 7px 0;
7960 #new-comment-nav-ui button::after {
7961 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7964 /*****************************************/
7965 @media only screen and (max-width: 900px) {
7966 /*****************************************/
7967 h1.listing {
7968 font-size: 1.75rem;
7969 line-height: 1;
7971 h1.listing .link-post-link {
7972 top: 2px;
7974 h1.listing + .post-meta .karma-value,
7975 h1.listing + .post-meta .comment-count,
7976 h1.listing + .post-meta .lw2-link,
7977 h1.listing + .post-meta .read-time {
7978 bottom: 0;
7980 h1.listing + .post-meta .post-section::before {
7981 position: unset;
7983 h1.listing + .post-meta .post-section {
7984 overflow: visible;
7985 order: 1;
7987 h1.listing + .post-meta .link-post-domain {
7988 order: 2;
7989 line-height: 1;
7990 flex-basis: 100%;
7992 h1.listing + .post-meta::after {
7993 bottom: -10px;
7995 #content.user-page h1.listing + .post-meta {
7996 margin-bottom: 1em;
7998 #content.user-page h1.link-post-listing::after {
7999 height: calc(100% + 2em);
8002 #nav-item-search button::before {
8003 color: #00e;
8006 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8007 background-color: #aaa;
8010 .comment-item .comment-item {
8011 margin: 0.75em 2px 4px 6px;
8012 box-shadow:
8013 0 0 2px #ccc,
8014 0 0 4px #ccc,
8015 0 0 7px #ccc;
8017 .comment-item .comment-item + .comment-item {
8018 margin: 1.5em 2px 4px 6px;
8020 .comment-body {
8021 font-size: 1.125rem;
8024 a.comment-parent-link:hover::before {
8025 background-color: unset;
8028 .sublevel-nav:not(.sort) .sublevel-item,
8029 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8030 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8031 border-radius: 8px;
8032 border-width: 1px;
8033 margin: 2px;
8035 /*******************************************/
8036 } @media only screen and (max-width: 720px) {
8037 /*******************************************/
8038 h1.listing {
8039 margin: 10px 6px 6px 6px;
8040 max-width: calc(100% - 12px);
8041 font-size: 1.5rem;
8042 padding-right: 35px;
8044 #content.conversations-user-page h1.listing {
8045 font-size: 1.5rem;
8047 h1.listing + .post-meta {
8048 margin: 0 6px 0 7px;
8049 clear: both;
8051 h1.listing + .post-meta {
8052 padding: .25em 254px 0 0;
8054 h1.listing + .post-meta::after {
8055 bottom: -2px;
8057 h1.listing + .post-meta > * {
8058 line-height: 1;
8059 display: block;
8061 #content.conversations-user-page h1.listing + .post-meta > * {
8062 line-height: 1.5;
8064 h1.listing + .post-meta .date,
8065 h1.listing + .post-meta .author {
8066 line-height: 1.3;
8068 h1.listing + .post-meta .karma-value,
8069 h1.listing + .post-meta .comment-count,
8070 h1.listing + .post-meta .lw2-link,
8071 h1.listing + .post-meta .read-time {
8072 top: unset;
8073 font-size: 1rem;
8074 box-shadow: none;
8076 h1.listing + .post-meta .karma-value::before,
8077 h1.listing + .post-meta .comment-count::before,
8078 h1.listing + .post-meta .lw2-link::before,
8079 h1.listing + .post-meta .read-time::before {
8080 box-shadow: none;
8082 h1.listing + .post-meta .karma-value,
8083 h1.listing + .post-meta .comment-count,
8084 h1.listing + .post-meta .read-time,
8085 h1.listing + .post-meta .lw2-link {
8086 bottom: 4px;
8089 h1.listing + .post-meta .karma-value {
8090 right: 192px;
8092 h1.listing + .post-meta .karma-value::before {
8093 text-shadow: 0.5px 0.5px 0.5px #999;
8095 h1.listing + .post-meta .comment-count {
8096 right: 132px;
8098 h1.listing + .post-meta .read-time {
8099 right: 56px;
8101 h1.listing + .post-meta .lw2-link {
8102 opacity: 1;
8103 right: 0;
8105 h1.listing + .post-meta .link-post-domain {
8106 margin: 0;
8107 line-height: 1.3;
8108 overflow: hidden;
8109 text-overflow: ellipsis;
8111 h1.listing + .post-meta .post-section::before {
8112 position: absolute;
8113 left: unset;
8114 right: 0;
8115 bottom: 30px;
8116 top: unset;
8118 h1.listing a {
8119 display: inline;
8121 /*******************************************/
8122 } @media only screen and (max-width: 520px) {
8123 /*******************************************/
8124 h1.listing + .post-meta {
8125 padding: .25em 144px 0 0;
8126 flex-flow: column;
8128 #content.conversations-user-page h1.listing + .post-meta {
8129 flex-flow: row wrap;
8131 h1.listing + .post-meta .date {
8132 margin: 0.375em 0 0.25em 0;
8133 line-height: 1;
8135 #content.user-page h1.listing::after {
8136 height: calc(100% + 2.125em);
8138 #content.user-page h1.link-post-listing::after {
8139 height: calc(100% + 3.125em);
8141 #content.user-page:not(.conversations-user-page) h1.listing + .post-meta {
8142 padding: 0.25em 144px 0.5em 36px;
8144 #content.conversations-user-page h1.listing + .post-meta .date {
8145 margin: 0 0 0 1em;
8148 h1.listing + .post-meta .karma-value {
8149 bottom: 28px;
8150 right: 56px;
8152 h1.listing + .post-meta .comment-count {
8153 bottom: 28px;
8154 right: 0;
8156 h1.listing + .post-meta .read-time {
8157 right: 56px;
8158 bottom: 4px;
8160 h1.listing + .post-meta .lw2-link {
8161 right: 0;
8162 bottom: 4px;
8164 h1.listing + .post-meta .link-post-domain {
8165 max-width: 100%;
8167 h1.listing + .post-meta .post-section::before {
8168 right: 120px;
8171 #content.compact > .comment-thread .comment-item {
8172 max-height: 110px;
8175 .textarea-container:focus-within button:active {
8176 background-color: #ccc;
8178 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8179 background-color: #eee;
8180 border: 1px solid #ddd;
8181 border-radius: 6px;
8183 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8184 border-color: #c00;
8185 box-shadow:
8186 0 0 0 1px #fff,
8187 0 0 0 2px #c00;
8188 color: #c00;
8189 font-weight: 600;
8191 #content.conversation-page .textarea-container:focus-within::after {
8192 background-color: #fff;
8194 .textarea-container:focus-within .guiedit-buttons-container {
8195 background-color: white;
8196 border-top: 1px solid #ddf;
8198 .textarea-container:focus-within button.guiedit {
8199 background-color: #eee;
8200 border: 1px solid #ddd;
8201 border-radius: 6px;
8203 #markdown-hints::after {
8204 color: #090;
8207 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8208 top: 2px;
8210 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8211 top: 1px;
8213 /*******************************************/
8214 } @media only screen and (max-width: 320px) {
8215 /*******************************************/
8216 h1.listing {
8217 font-size: 1.25rem;
8219 #content.user-page h1.listing::after {
8220 height: calc(100% + 2.625em);
8222 #content.user-page h1.link-post-listing::after {
8223 height: calc(100% + 3.75em);
8229 /*************/
8230 /* ACCORDIUS */
8231 /*************/
8233 /*======*/
8234 /* TAGS */
8235 /*======*/
8237 #tags {
8238 order: 12;
8239 display: flex;
8240 flex-basis: 100%;
8241 justify-content: center;
8242 margin: 0;
8243 flex-flow: row wrap;
8244 align-items: flex-start;
8247 /*===============*/
8248 /* DEFAULT THEME */
8249 /*===============*/
8251 /*++++++*/
8252 /* TAGS */
8253 /*++++++*/
8255 #tags {
8256 padding: 0.5em;
8258 #tags::before {
8259 content: "Tags:";
8260 margin: 0 0.25em 0 0;
8261 opacity: 0.5;
8262 line-height: 1;
8263 align-self: center;
8265 #tags a {
8266 border-radius: 8px;
8267 background-color: #f0f5fa;
8268 border: 1px solid #c5d6e9;
8269 padding: 4px 8px 5px 8px;
8270 line-height: 1;
8271 margin: 0.25em;
8272 font-size: 0.9375em;
8274 #tags a:hover {
8275 text-decoration: none;
8276 background-color: #d5e7fa;
8278 #tags a:active {
8279 color: #d00;