Add support for x-revalidate header.
[lw2-viewer.git] / www / css / style-less.windows.css
blob7925fe76fbd2299c6cfc3d7f330eb0417537c5b8
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 --GW-toggle-widget-color: #888;
12 --GW-toggle-widget-hover-color: #444;
13 --GW-toggle-widget-shadow-color: rgba(255, 255, 255, 0.5);
15 --inverted-display: none;
18 /***************/
19 /* BASE LAYOUT */
20 /***************/
22 html {
23 box-sizing: border-box;
24 font-size: 16px;
26 *, *::before, *::after {
27 box-sizing: inherit;
29 script {
30 display: none !important;
33 /*=------=*/
34 /*= Body =*/
35 /*=------=*/
37 body {
38 padding: 0;
39 margin: 0;
41 body::before {
42 background-color: inherit;
43 position: fixed;
44 width: 100%;
45 height: 100%;
48 body.no-scroll {
49 overflow-y: scroll;
50 position: fixed;
51 width: 100%;
54 /*=----------------------------=*/
55 /*= Immediate children of body =*/
56 /*=----------------------------=*/
58 body > * {
59 max-width: 900px;
62 /* Special styles for special browsers.
63 (This one is a fix for Firefox’s built-in screenshot feature.)
65 body > iframe[id^='firefox-screenshots'] {
66 max-width: unset;
69 #content {
70 margin: 0 auto;
71 padding: 0 30px;
72 position: relative;
73 overflow: visible;
74 display: grid;
75 grid-template-columns: 2fr 1fr 2fr;
77 #content::before {
78 content: "";
79 display: block;
80 position: absolute;
81 top: 0;
82 left: 0;
83 width: 100%;
84 height: 100%;
85 z-index: -1;
86 pointer-events: none;
89 /*=---------=*/
90 /*= Content =*/
91 /*=---------=*/
93 #content > * {
94 grid-column: 1 / span 3;
97 /*=----------------------=*/
98 /*= Floating UI elements =*/
99 /*=----------------------=*/
101 #ui-elements-container {
102 position: fixed;
103 height: 100vh;
104 top: 0;
105 left: 0;
106 right: 0;
107 margin: auto;
108 z-index: 10000;
109 pointer-events: none;
111 #ui-elements-container > * {
112 pointer-events: auto;
115 /*=----------------=*/
116 /*= Images overlay =*/
117 /*=----------------=*/
118 /* (To exclude images in posts from theme tweaks) */
120 #images-overlay {
121 position: absolute;
122 z-index: 1;
123 left: 0;
124 right: 0;
125 margin: auto;
128 /***********/
129 /* NAV BAR */
130 /***********/
132 .nav-bar {
133 margin: 0 -30px;
134 display: flex;
135 order: -11;
136 z-index: 1;
139 /*=---------------=*/
140 /*= Nav bar items =*/
141 /*=---------------=*/
143 .nav-item {
144 flex: 1 1 auto;
146 .nav-item * {
147 text-overflow: ellipsis;
148 white-space: nowrap;
149 overflow: hidden;
151 .nav-inner {
152 padding: 12px 30px;
153 text-align: center;
154 display: block;
155 position: relative;
156 line-height: inherit;
157 width: 100%;
158 background: unset;
160 .nav-bar-top:not(#primary-bar) .nav-inner {
161 padding: 4px 0;
164 #nav-item-sequences .nav-inner::before {
165 font-family: "Font Awesome", "Font Awesome 5 Free";
166 content: "\F5DB";
168 @media only screen and (min-width: 901px) {
169 #nav-item-about .nav-inner {
170 margin-right: 0.5em;
172 #nav-item-sequences .nav-inner::before {
173 font-size: 1rem;
174 display: block;
176 #secondary-bar #nav-item-sequences .nav-inner {
177 font-size: 0;
178 line-height: 1.4;
182 /*=------------=*/
183 /*= Bottom bar =*/
184 /*=------------=*/
186 #bottom-bar {
187 order: 11;
189 h1.listing ~ #bottom-bar {
190 margin-top: 1.25em;
192 #bottom-bar .nav-item {
193 flex: 1 1 0;
196 /*=-----------------=*/
197 /*= Accesskey hints =*/
198 /*=-----------------=*/
200 .nav-inner::after {
201 content: attr(accesskey);
202 display: none;
205 /*=---------------=*/
206 /*= Pagination UI =*/
207 /*=---------------=*/
209 #bottom-bar .nav-item a::before,
210 #top-nav-bar a::before {
211 font-family: "Font Awesome", "Font Awesome 5 Free";
212 font-weight: 900;
213 font-size: 0.8em;
214 position: relative;
215 bottom: 1px;
216 margin-right: 0.5em;
218 #bottom-bar #nav-item-first a::before,
219 #top-nav-bar a.nav-item-first::before {
220 content: "\F33e";
222 #bottom-bar #nav-item-top a::before {
223 content: "\F062";
225 #bottom-bar #nav-item-prev a::before,
226 #top-nav-bar a.nav-item-prev::before {
227 content: "\F060";
229 #bottom-bar #nav-item-next a::before,
230 #top-nav-bar a.nav-item-next::before {
231 content: "\F061";
233 #bottom-bar #nav-item-last a::before,
234 #top-nav-bar a.nav-item-last::before {
235 content: "\F340";
237 #bottom-bar #nav-item-next a::before {
238 margin-left: -2em;
239 margin-right: 0;
240 left: 3.8em;
242 #bottom-bar #nav-item-last a::before {
243 margin-left: -1.8em;
244 margin-right: 0;
245 left: 3.4em;
248 /*= Hover tooltips =*/
250 #top-nav-bar a {
251 position: relative;
253 #top-nav-bar a::after {
254 bottom: calc(100% - 3px);
255 content: attr(data-target-page);
257 #top-nav-bar a::after {
258 display: block;
259 position: absolute;
260 font-size: 0.75rem;
261 width: 100%;
262 line-height: 1;
263 visibility: hidden;
265 #top-nav-bar a:hover::after,
266 #bottom-bar a:hover::after {
267 visibility: visible;
270 /*=-----------------------=*/
271 /*= Decorative bottom bar =*/
272 /*=-----------------------=*/
273 /* (On short pages with no pagination) */
275 #bottom-bar.decorative {
276 position: relative;
278 #bottom-bar.decorative .nav-item {
279 display: none;
282 /*=------------=*/
283 /*= Search tab =*/
284 /*=------------=*/
286 #nav-item-search {
287 flex: 4 1 auto;
289 #nav-item-search form::before {
290 content: "\F002";
291 font-family: "Font Awesome", "Font Awesome 5 Free";
292 font-weight: 900;
293 display: inline-block;
294 vertical-align: top;
295 height: 23px;
296 width: 23px;
298 #nav-item-search input {
299 height: 23px;
300 width: calc(95% - 80px);
301 padding: 1px 4px;
303 #nav-item-search button {
304 height: 21px;
307 /*=-----------=*/
308 /*= Login tab =*/
309 /*=-----------=*/
311 #nav-item-login {
312 position: relative;
313 padding-right: 0.5em;
316 /*******************/
317 /* INBOX INDICATOR */
318 /*******************/
320 #inbox-indicator {
321 position: absolute;
322 top: 1px;
323 right: 0;
324 height: 100%;
325 visibility: hidden;
327 #inbox-indicator::before {
328 content: "\F0E0";
329 font-family: "Font Awesome", "Font Awesome 5 Free";
330 color: #bbb;
331 font-size: 1.1875rem;
332 position: absolute;
333 height: 100%;
334 right: 0;
335 top: 0;
336 padding: 0 0.45em;
337 visibility: visible;
338 font-weight: 900;
340 #inbox-indicator.new-messages::before {
341 color: #f00;
342 text-shadow:
343 0 0 1px #777,
344 0.5px 0.5px 1px #777;
346 a#inbox-indicator:hover::before {
347 color: #fff;
348 text-shadow:
349 0 0 1px #000,
350 0 0 2px #000,
351 0 0 4px #000,
352 0 0 1px #777,
353 0.5px 0.5px 1px #777;
355 a#inbox-indicator.new-messages:hover::before {
356 text-shadow:
357 0 0 1px #f00,
358 0 0 2px #f00,
359 0 0 4px #f00,
360 0 0 1px #777,
361 0.5px 0.5px 1px #777;
364 /****************/
365 /* PAGE TOOLBAR */
366 /****************/
368 .page-toolbar {
369 font-size: 0.9em;
370 line-height: 1.8;
371 text-align: right;
372 margin-right: -20px;
374 #content > .page-toolbar {
375 grid-column: 3;
376 grid-row: span 3;
378 #content.user-page > .page-toolbar {
379 grid-column: 2 / span 2;
380 order: -4;
383 /*=--------------------------=*/
384 /*= Page toolbar items (all) =*/
385 /*=--------------------------=*/
387 .page-toolbar > * {
388 display: inline-block;
389 margin-left: 1.5em;
391 .page-toolbar > form button {
392 padding: 0;
393 text-align: right;
394 white-space: unset;
396 .page-toolbar > form button::before {
397 text-align: center;
399 .page-toolbar .button::before {
400 font-family: "Font Awesome", "Font Awesome 5 Free";
401 font-size: 0.9em;
402 padding-right: 0.3em;
405 /*=-------------------------------=*/
406 /*= Page toolbar items (specific) =*/
407 /*=-------------------------------=*/
409 .new-post::before {
410 content: '\F067';
411 font-weight: 900;
413 .new-private-message::before {
414 content: '\F075';
415 font-weight: 400;
417 .logout-button::before {
418 content: '\F2F5';
419 font-weight: 900;
421 #enable-push-notifications::before {
422 content: '\F0F3';
423 font-weight: 400;
425 .ignore-button::before {
426 content: "\F070";
427 font-weight: 400;
429 .unignore-button::before {
430 content: "\F06E";
431 font-weight: 400;
433 .rss::before {
434 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
435 display: inline-block;
436 width: 1em;
437 padding-right: 0.2em;
438 position: relative;
439 top: 1px;
442 /*********************/
443 /* TOP PAGINATION UI */
444 /*********************/
446 #top-nav-bar {
447 grid-column: 2;
448 margin: 0.25em 0 0 0;
449 padding: 0.75em 0 0 0;
450 text-align: center;
451 font-size: 1.25em;
452 display: flex;
453 justify-content: center;
455 #top-nav-bar a {
456 line-height: 1;
458 #top-nav-bar a.disabled {
459 pointer-events: none;
460 visibility: hidden;
462 #top-nav-bar .page-number {
463 position: relative;
464 display: inline-block;
465 width: 1.5em;
467 #top-nav-bar .page-number-label {
468 position: absolute;
469 font-size: 0.5em;
470 text-transform: uppercase;
471 width: 100%;
472 bottom: 90%;
473 left: 0;
475 #top-nav-bar a::before {
476 margin: 0.5em;
477 display: inline-block;
480 /****************/
481 /* SUBLEVEL NAV */
482 /****************/
484 .sublevel-nav {
485 text-align: center;
486 display: flex;
487 justify-content: center;
488 margin: 1em 0 0 0;
490 #content > .sublevel-nav:not(.sort) {
491 grid-column: 2;
492 align-self: start;
494 .sublevel-nav .sublevel-item {
495 flex: 0 0 6em;
496 padding: 0.125em 0.5em;
497 font-size: 1.125rem;
499 .sublevel-nav .sublevel-item:active {
500 transform: none;
502 .sublevel-nav .sublevel-item.selected {
503 cursor: default;
506 /***********************/
507 /* SORT ORDER SELECTOR */
508 /***********************/
510 .sublevel-nav.sort {
511 position: relative;
512 margin-top: 8px;
513 font-size: 0.75em;
515 #content > .sublevel-nav.sort {
516 grid-column: 3;
517 grid-row: span 2;
518 justify-self: end;
519 align-self: start;
520 flex-flow: column;
522 #content.index-page > .sublevel-nav.sort {
523 grid-column: 1;
524 justify-self: start;
525 flex-flow: row;
528 .sublevel-nav.sort::before {
529 content: "Sort";
530 font-size: 0.75rem;
531 position: absolute;
532 top: 0;
533 left: 0;
534 width: 100%;
536 .sublevel-nav.sort .sublevel-item {
537 line-height: 1;
538 font-size: 0.875rem;
539 flex-basis: unset;
542 /*******************************/
543 /* COMMENTS SORT MODE SELECTOR */
544 /*******************************/
546 .comments > .sublevel-nav.sort {
547 margin: 1em auto 0 auto;
549 @supports (width: -moz-fit-content) {
550 .comments > .sublevel-nav.sort {
551 width: -moz-fit-content;
554 @supports (width: fit-content) {
555 .comments > .sublevel-nav.sort {
556 width: fit-content;
561 /**********************/
562 /* DARK MODE SELECTOR */
563 /**********************/
565 #dark-mode-selector {
566 position: absolute;
567 top: 4px;
568 right: -78px;
569 display: flex;
570 opacity: 0.4;
572 #dark-mode-selector:hover {
573 opacity: 1.0;
576 /*=---------=*/
577 /*= Buttons =*/
578 /*=---------=*/
580 #dark-mode-selector button {
581 font-family: "Font Awesome", "Font Awesome 5 Free";
582 font-size: 1.125rem;
583 width: 24px;
584 height: 24px;
585 padding: 0;
586 line-height: 1;
587 font-weight: 400;
589 #dark-mode-selector button.select-mode-auto {
591 #dark-mode-selector button.select-mode-light {
592 font-size: 1.25rem;
593 padding: 1px 0 0 1px;
595 #dark-mode-selector button.select-mode-dark {
596 font-weight: 300;
597 font-size: 1.25rem;
598 padding: 1px 0 0 4px;
600 #dark-mode-selector button.select-mode-dark.selected {
601 font-weight: 400;
603 #dark-mode-selector button:disabled:active {
604 transform: none;
606 #dark-mode-selector button:disabled:hover {
607 cursor: default;
610 /*=----------------=*/
611 /*= Hover tooltips =*/
612 /*=----------------=*/
614 #dark-mode-selector button::after {
615 content: attr(data-name);
616 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
617 font-weight: normal;
618 position: absolute;
619 display: block;
620 left: 0;
621 width: 100%;
622 text-align: center;
623 top: 92px;
624 font-size: 1rem;
625 visibility: hidden;
627 #dark-mode-selector button.selected::after {
628 content: attr(data-name) " (selected)";
630 #dark-mode-selector button:hover:not(:active)::after {
631 visibility: visible;
635 /******************/
636 /* WIDTH SELECTOR */
637 /******************/
639 #width-selector {
640 position: absolute;
641 top: 40px;
642 right: -78px;
644 #width-selector button {
645 width: 22px;
646 height: 22px;
647 padding: 6px;
648 margin: 1px;
649 overflow: hidden;
650 background-repeat: no-repeat;
651 background-size: 100%;
652 background-origin: content-box;
654 #width-selector button,
655 #width-selector button:active,
656 #width-selector button:focus {
657 text-shadow: none;
658 color: transparent;
660 #width-selector button:disabled {
661 cursor: auto;
663 #width-selector button.select-width-normal {
664 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
666 #width-selector button.select-width-wide {
667 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
669 #width-selector button.select-width-fluid {
670 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
673 /*=----------------=*/
674 /*= Hover tooltips =*/
675 /*=----------------=*/
677 #width-selector button::after {
678 content: attr(data-name);
679 position: absolute;
680 display: block;
681 left: 0;
682 width: 100%;
683 text-align: center;
684 top: 56px;
685 visibility: hidden;
687 #width-selector button.selected::after {
688 content: attr(data-name) " (selected)";
690 #width-selector button:hover:not(:active)::after {
691 visibility: visible;
694 head.content-width-normal + body > * {
695 max-width: 900px;
697 head.content-width-wide + body > * {
698 max-width: 1150px;
700 head.content-width-fluid + body > * {
701 max-width: calc(100% - 300px);
704 /******************/
705 /* THEME SELECTOR */
706 /******************/
708 #theme-selector {
709 position: absolute;
710 top: 3px;
711 left: -41px;
712 opacity: 0.4;
713 display: table;
714 max-width: 40px;
716 #theme-selector:hover {
717 opacity: 1.0;
720 /*=----------------------=*/
721 /*= Theme select buttons =*/
722 /*=----------------------=*/
724 .theme-selector button {
725 display: table-cell;
726 width: 26px;
727 height: 26px;
728 padding: 5px;
729 margin: 1px 7px 0 7px;
730 color: transparent;
731 background-size: 16px 16px;
732 background-origin: content-box;
734 .theme-selector button,
735 .theme-selector button:hover,
736 .theme-selector button:active,
737 .theme-selector button:focus {
738 text-shadow: none;
739 color: transparent;
741 .theme-selector button:disabled {
742 cursor: auto;
745 /*=----------------------------=*/
746 /*= Pre-rendered button images =*/
747 /*=----------------------------=*/
748 /* (Each is just a capital letter A through whatever) */
750 .theme-selector button:nth-of-type(1) {
751 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAAAAAAIwAAPgAAXAAAZAAAdAMchQMedAgyjQg0fA1ZsQ5hsSMAACdyujYAADmDxD0AAUGVzU6VzVoAAV6n4WIAAXIAAn/E64MgA4fE65Q8BJjGsZjN9ZnX/51MBJ5kJKHh/6ZLBadbJLBjJLPr/7l0JLzr/8b1/87Ozs7X4c/s69aXTdn//+CpZOCzZOHh4eL//+mydOvizuvr4ez///TFhfTPl/X///7ssv7su//2xP/2zv//2P//4f//6///9f///9GZfwAAQKS0df9/AABA/7bRmX8AAOB8tHX/fwAAQAoTUf9/AAClfu6S/38AACcAAAAAAAAAIFRt0QEAAABApLR1/38AAFhu75L/fwAAwAoTUf9/AAB6We6S/38AANAKE1H/fwAAelnukv9/AAAIAAAAAAAAAAAAAAAAAAAAw5+/neBPABQAAAAAAAAAALDhvNBmRklHTk9LRwAAAAAAAAAA/38AALJyKw8BAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAIAAgAAAHrIBAgoOEhYaHiImKi4yNjo+QkZKTlJWGMiiZKZaEPRUAoAEmnII2oKcUpEAlp6AIN5w8E60AASScNaEbswASnCOgBDAhoAY0lTsQoAtALqcglTGnF0A5DqAPlR6htz0WoAUwkzrXtK0cky3mtA2SPxrrrQMskTgMoAkqL/szH6cZkVacilAoFygFkHxgONWhUDJQAk480qEMwAFxhUScQqeqo8ePIEOKHElSUCAAOw==');
753 .theme-selector button:nth-of-type(2) {
754 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMerbtOrlvOrq4Orq6uvq6uy8e+zq6u23cu3Bi+3Vzu3e6u3q6u7Lo+/U1/DOzvDq6vLe6vLj6vLq6vO6q/O6tPTI4PTe6vZlCfZqCfaTcvbN6vbT6vdTCfhPCfhTCfh3XPirtPi+4PlPCflTCfllOvlpNPlyVvlyXPlzSPmbq/pPCfpTCfp6gvqMtPtMa/tNSPtNVftOIvtONPtOOvtPCftoVvt4o/uHtPxYgvxbOvxwm/x4owEAAABApLR1/38AACwAAAAAIAAgAAAGn8CBcEgsGo/IpHLJbDqf0Kh0Sq0OE45stqGwDgQcmnhMk6UWVMGFzNYRpmpaDESZZFRjDXz9igwDHWIhezQzFkRrNINScTMSQwhiMRuENDUmKCNjLWmJbDQuD51iOSQkK3I0MBCEM35CDCJiN62HQwdiOGhRjbZCBbm7UI2PQgAeYjuVJx8fJWSLvJ6fNgZwGJ8xLBVe3d7f4OHi4+TeQQA7');
756 .theme-selector button:nth-of-type(3) {
757 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMXVzX3V0X3V1aHV1bHV1dXhxV3h1dYBvS4BwX4BybIB1dYdtR4duS4hycIh1dYxvbIxwbIxydZNxcJhwcKhtX6xrV7BgILBraLBsaLlfHrlpT7lwdbxudcFvdcVgOMpmU8pnV85kU9JjRNtYIdtiS9tobNtocOBocORWHuRaMelQCO1PCO1eW/JPCPJSCPJZSPJbVPJdX/dTOfdbW/tOHvtOIftPCftPKPtRSPxTSPxUSzD4DwEAAABApLR1/38AACwAAAAAIAAgAAAGjkCCcEgsGo/IpHLJbDqf0Kh0Sq0eE5VPCHSJWAmIkW1MtsEUVEZ5rUNLAyvyC0PRoGwmaoZcKjYMUwIqYzFfRAdjNRuGQwtjOQ6MQo42OJGSlJaSBJSQm4g2NB2bgmMzmwQWZCxuQg2tUQAtZDckIikuNidVBbNrY3lVAx6/MhyMDxMQErCozs/Q0dLTT0EAOw==');
759 .theme-selector button:nth-of-type(4) {
760 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQEA5AEA5QEA5wEA6QYh5AYi3go+3BsA6RwY5SoA6TJo0jJu0joX6Txn2z120Ese6U1u1019z1YA6VhR41qFy15t22Ut6WZ1122bxm2byHEc6XObxHupxIZP6YeD3oipxoiywoxP55Ne55SR15tk5ptk55tr5qOhz6TBwamQ3qmoz6qxyKq4wrGJ4rLBwbin1rnBwcC318C4y8HAx8HAzsHBwcHBwsHBxIBYjdOZfwAAQDcTUf9/AACAPPGS/38AACwAAAAAIAAgAAAGkcCacEgsGo/IpHLJbDqf0Kh0Sq0OZaps9rSyCkuDsHgguMCqprE68KGmB43RyPMYg6bvDTF1CBvwYRlFLWIcUm+CRDQSgYeNRDYhYQuOA4lEImERlZdDJGEKnEUzGmEUokQxCWEYqEI3HWEAKJV6Qi8WYg6AAwQTEwxjBS68amEQZ8ViCBUsXs/Q0dLT1NXW0EEAOw==');
762 .theme-selector button:nth-of-type(5) {
763 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAAAANwAAPgAATAMjNyQ0dCQ3Pjc3Nzc7fDhMXD4+Pkw+PltMXGRkZIapsYfD9YsfA5DN9ZQ8BJVMBJjN9bGxsbPh9bu7u8b1/8///9j1/9n//+HX4eHh4eL//+z///Xr4f//9f///zuAzZl/AABgO4DNmX8AAAEAAAAAAAAAwAkTUf9/AABfjBuN/38AAAAAAAAAAAAAAgAAAAEAAAAA3kQRAQAAAAQAAAABAAAAADD4DwEAAABApLR1/38AACwAAAAAIAAgAAAGekCRcEgsGo/IpHLJbDqf0Kh0Sq0SQZ2stsP5VEMQgHgsfnwlZLKZGkIDHJeKvKI5AwYZa7ENEGD0RHwCeYBCfAAGCwqLCB52aQABf2xuBAeXBwUbdoOFhmh+niKCk4WChKZuCQ2sDQwWj5ARXxOQYhSiubq7vL2+v3pBADs=');
765 .theme-selector button:nth-of-type(6) {
766 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVUADlUYkVU5iFU6eVtysVuDw2WMy26My26Vy3OVy6+VoK+foK+oqb+xscDD3cXFusbX7+HX3eHh3eHh7+zr5uz17/HPkfHPmfP/+f//7///+QkTUf9/AAAd8ICJ/38AACwAAAAAIAAgAAAFYaAmjmRpnmiqrmzrvnAsz3RNZpGk79JkW4CgMBjA1C7DYfEYFDwa0IbDhgQgbKbqAVuqXrmjKqFCKVOMzGTQQFUHC23AgLGoKyDxL1ij3Yv6foB7gmBVCX6IiYqLjI2OiSEAOw==');
768 .theme-selector button:nth-of-type(7) {
769 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMUOBp0OFp0R8W0R8YER9PER9S0SDd1J9PFKTwFKYwFKYx2V8PGWAPGaKfGedu2edwHB8PH2oyIB8PIB/PYZ8PYaWYIelrpGDPZKWW5Kdm56WYJ6Zg6u0yLCoora1tLfF1bfg9729u72+tMO1tMPFyMTs/8mxj8rCtMvs/9H1/9W+otf1/9f6/9yubN3b4uPWz+Pg3OTk4uro8PHs8PL///bTovbTp/fXp/fcrvfhtPfx6vfx8Pf19/f69/f6//j///7tz/7t1f/y3P/19//21f//3P//4v//9////3X/fwAA8CwTUf9/AAClfu6S/38AACcAAAAAAAAAEEy/0QEAAABApLR1/38AAFhu75L/fwAAcC0TUf9/AAB6We6S/38AAIAtE1H/fwAAelnukv9/AAAIAAAAAAAAAAAAAAAAAAAAw5+/neBPABQAAAAAAAAAABAGYdFmRklHTk9LRwAAAAAAAAAA/38AALJyKw8BAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAIAAgAAAHwYBIgoOEhYaHiImKi4yNjo+QkZKTlJWGRy8jHiEkLj+WRyYHBKSlBA+fkkATpq0Ik0YSpQYfMTAnGgQgky2lEamDQ5NFEKQKloU5pAIoyIQ2pAHAPD3VPT6SN6QAqTitAyyR2gTcgjXfKZHQBNKCQRsZGKQDK5HKBAIlhcQE9JFGFEglKERkQb96kXqRckBjED9//2QtsyCiQ4V5CCMJudDKlIB0k46oYNCqQAMODS3pkLFjBg9nMGPKnEmzps1IgQAAOw==');
771 .theme-selector button:nth-of-type(8) {
772 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYG3rIG4ioG4joG4koG5hIG5h4G5r4G7r4S4ioS5hIS5h4S6joi4h4i5hIy5hIy6h4y8jo+4hJa4hKm4hKy8hLG8hNXz/9X4/+Hi4uHi6uHl7eji4vHq4vL///b///r////z1v/41v/42v/+2v//9v///xNR/38AAAUAAAAAAAAAwAkTUf9/AABfjBuN/38AAAAAAAAAAAAAAgAAAAEAAAAA3kQRAQAAAAQAAAABAAAAADD4DwEAAABApLR1/38AACwAAAAAIAAgAAAGl8CScEgsGo/IpHLJbDqf0Kh0Sq0KOZjMx7jBaKSkCSFgKYIaBEAnSqoQBGViKEI4eNhueHFOMNyhbW9xQ3x+eIJmdIaAeRdFIw59f0+BBAsQmJgPBJKHnJ+gnYycBQwKpwgJnIuUeYNCIZGsToF6coqTtK57uIe2hL2jv7DBlBSIcrK5TYEDryUiEnXLVtXW19jZ2tvc2EEAOw==');
775 /*=------------------------------=*/
776 /*= Theme select button tooltips =*/
777 /*=------------------------------=*/
778 /* (with the name & description of the theme that each button selects) */
780 #theme-selector button {
781 position: relative;
782 z-index: 1;
784 #theme-selector button::before {
785 content: attr(data-theme-name);
786 position: absolute;
787 top: 0;
788 right: 100%;
789 padding: 5px 6px 6px 6px;
790 line-height: 1;
791 width: 6em;
792 text-align: right;
793 z-index: 1;
794 visibility: hidden;
796 #theme-selector:hover button::before {
797 visibility: visible;
799 #theme-selector:hover ~ #theme-tweaker-toggle,
800 #theme-selector:active ~ #theme-tweaker-toggle {
801 z-index: -1;
804 /************************/
805 /* THEME TWEAKER TOGGLE */
806 /************************/
808 #theme-tweaker-toggle {
809 position: absolute;
810 top: 7px;
811 left: -75px;
813 #theme-tweaker-toggle button {
814 font-family: "Font Awesome", "Font Awesome 5 Free";
815 font-weight: 900;
816 font-size: 1.25rem;
817 opacity: 0.4;
818 z-index: 1;
820 #theme-tweaker-toggle button:hover {
821 opacity: 1.0;
824 /*******************/
825 /* QUICKNAV WIDGET */
826 /*******************/
828 #quick-nav-ui {
829 position: absolute;
830 right: -67px;
831 bottom: 20px;
833 #quick-nav-ui a {
834 font-family: "Font Awesome", "Font Awesome 5 Free";
835 font-weight: 900;
836 font-size: 1.5rem;
837 line-height: 1.7;
838 text-align: center;
839 display: block;
840 width: 40px;
841 height: 40px;
842 margin: 10px 0 0 0;
844 #quick-nav-ui a[href='#comments'].no-comments {
845 pointer-events: none;
847 #quick-nav-ui a {
848 visibility: hidden;
850 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
851 visibility: visible;
854 /************************/
855 /* NEW COMMENT QUICKNAV */
856 /************************/
858 #new-comment-nav-ui {
859 position: absolute;
860 right: -112px;
861 bottom: 42px;
863 #new-comment-nav-ui > * {
864 display: block;
865 position: relative;
867 #new-comment-nav-ui.no-comments {
868 display: none;
871 /*=--------------------=*/
872 /*= New comments count =*/
873 /*=--------------------=*/
875 #new-comment-nav-ui .new-comments-count {
876 width: 2em;
877 font-size: 1.25rem;
878 line-height: 1.1;
879 text-align: center;
880 left: 1px;
881 cursor: pointer;
883 #new-comment-nav-ui .new-comments-count::selection {
884 background-color: transparent;
886 #new-comment-nav-ui .new-comments-count::after {
887 content: "NEW";
888 display: block;
889 font-size: 0.625rem;
892 /*=-----------------------------------=*/
893 /*= Next/previous new comment buttons =*/
894 /*=-----------------------------------=*/
896 #new-comment-nav-ui .new-comment-sequential-nav-button {
897 font-size: 1.75rem;
898 font-family: "Font Awesome", "Font Awesome 5 Free";
899 font-weight: 900;
900 width: 1.5em;
901 z-index: 5001;
903 #new-comment-nav-ui .new-comment-previous {
904 top: 8px;
906 #new-comment-nav-ui .new-comment-next {
907 bottom: 6px;
909 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
910 cursor: auto;
911 pointer-events: none;
914 /*******************/
915 /* HNS DATE PICKER */
916 /*******************/
918 #hns-date-picker {
919 position: absolute;
920 bottom: 72px;
921 right: -253px;
922 opacity: 0.6;
924 #hns-date-picker:hover,
925 #hns-date-picker:focus-within {
926 opacity: 1.0;
928 #hns-date-picker.no-comments {
929 display: none;
932 /*=---------------=*/
933 /*= "Since" label =*/
934 /*=---------------=*/
936 #hns-date-picker span {
937 display: block;
938 font-size: 0.75rem;
939 text-transform: uppercase;
942 /*=--------------------=*/
943 /*= "Since" text field =*/
944 /*=--------------------=*/
946 #hns-date-picker input {
947 margin-top: 1px;
948 padding: 1px 3px;
949 width: 140px;
950 text-align: center;
951 box-shadow: 0 0 0 1px transparent;
954 /************************/
955 /* ANTI-KIBITZER TOGGLE */
956 /************************/
958 #anti-kibitzer-toggle {
959 position: absolute;
960 right: -67px;
961 bottom: 225px;
963 #anti-kibitzer-toggle button {
964 display: block;
965 width: 40px;
966 height: 54px;
967 padding: 0;
969 #anti-kibitzer-toggle button::before,
970 #anti-kibitzer-toggle button::after {
971 font-family: "Font Awesome", "Font Awesome 5 Free";
973 #anti-kibitzer-toggle button::before {
974 content: "\F06E";
975 display: block;
976 font-size: 1.75em;
977 font-weight: 400;
979 #anti-kibitzer-toggle button::after {
980 content: "\F007\2004\F164";
981 font-size: 0.875em;
982 font-weight: 900;
984 #anti-kibitzer-toggle.engaged button::before {
985 content: "\F070";
988 #anti-kibitzer-toggle button::before,
989 #anti-kibitzer-toggle button::after {
990 background-color: var(--GW-toggle-widget-color);
991 -webkit-background-clip: text;
992 color: transparent;
993 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
995 #anti-kibitzer-toggle button:hover::before,
996 #anti-kibitzer-toggle button:hover::after {
997 background-color: var(--GW-toggle-widget-hover-color);
1000 /************************/
1001 /* TEXT SIZE ADJUSTMENT */
1002 /************************/
1004 #text-size-adjustment-ui {
1005 position: absolute;
1006 top: 64px;
1007 right: -78px;
1008 opacity: 0.4;
1010 #text-size-adjustment-ui:hover {
1011 opacity: 1.0;
1014 /* This doesn't work in Mozilla browsers, so hide it */
1015 @supports (-moz-appearance: none) {
1016 #text-size-adjustment-ui {
1017 display: none;
1021 /*=---------=*/
1022 /*= Buttons =*/
1023 /*=---------=*/
1025 #text-size-adjustment-ui button {
1026 font-weight: 900;
1027 font-family: "Font Awesome", "Font Awesome 5 Free";
1028 font-size: 0.75rem;
1029 width: 24px;
1030 height: 24px;
1031 padding: 0;
1033 #text-size-adjustment-ui button.default {
1034 font-family: inherit;
1035 font-size: 1.125rem;
1036 position: relative;
1037 top: 1px;
1039 #text-size-adjustment-ui button:disabled {
1040 opacity: 0.5;
1042 #text-size-adjustment-ui button:disabled:hover {
1043 cursor: default;
1046 /*=----------------=*/
1047 /*= Hover tooltips =*/
1048 /*=----------------=*/
1050 #text-size-adjustment-ui::after {
1051 content: "Adjust text size";
1052 position: absolute;
1053 display: block;
1054 left: 0;
1055 width: 100%;
1056 text-align: center;
1057 top: 32px;
1058 visibility: hidden;
1059 font-size: 0.9em;
1061 #text-size-adjustment-ui:hover::after {
1062 visibility: visible;
1065 /*******************************/
1066 /* COMMENTS VIEW MODE SELECTOR */
1067 /*******************************/
1069 #comments-view-mode-selector {
1070 position: absolute;
1071 bottom: 30px;
1072 left: -40px;
1073 opacity: 0.6;
1075 #comments-view-mode-selector:hover {
1076 opacity: 1.0;
1079 /*=---------=*/
1080 /*= Buttons =*/
1081 /*=---------=*/
1083 #comments-view-mode-selector a {
1084 display: block;
1085 font-family: "Font Awesome", "Font Awesome 5 Free";
1086 font-size: 1.25rem;
1087 text-align: center;
1088 opacity: 0.4;
1089 padding: 0.25em;
1090 z-index: 1;
1092 #comments-view-mode-selector a.threaded {
1093 transform: scaleY(-1);
1094 font-weight: 900;
1096 #comments-view-mode-selector a.chrono {
1097 font-weight: normal;
1099 #comments-view-mode-selector a.selected,
1100 #comments-view-mode-selector a:hover {
1101 opacity: 1.0;
1102 text-decoration: none;
1104 #comments-view-mode-selector a.selected {
1105 cursor: default;
1108 /*****************/
1109 /* KEYBOARD HELP */
1110 /*****************/
1112 #keyboard-help-overlay {
1113 width: 100vw;
1114 height: 100vh;
1115 background-color: rgba(0,0,0,0.7);
1116 position: fixed;
1117 left: 0;
1118 top: 0;
1119 z-index: 5001;
1121 display: flex;
1122 justify-content: center;
1123 align-items: center;
1124 padding: 20px 30px 30px 20px;
1126 visibility: hidden;
1129 #keyboard-help-overlay .keyboard-help-container {
1130 background-color: #fff;
1131 filter: drop-shadow(4px 4px 2px #000);
1132 flex: 1 1 auto;
1133 max-width: 1500px;
1134 max-height: 100%;
1135 overflow-y: auto;
1136 position: relative;
1138 #keyboard-help-overlay .keyboard-help-container h1 {
1139 text-align: center;
1140 border-bottom: 1px solid #ddd;
1141 margin: 0;
1142 padding: 10px 20px;
1144 #keyboard-help-overlay .keyboard-help-container .note {
1145 margin: 0.5em auto;
1146 padding: 0 1em;
1147 width: fit-content;
1149 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1150 column-width: 21em;
1151 column-count: auto;
1152 column-gap: 1.5em;
1153 border-top: 1px solid #ddd;
1154 padding: 15px 20px;
1156 #keyboard-help-overlay .keyboard-help-container ul {
1157 list-style-type: none;
1158 margin: 0;
1159 padding: 0;
1160 break-inside: avoid;
1161 white-space: nowrap;
1163 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1164 margin: 20px 0 0 0;
1166 #keyboard-help-overlay .keyboard-help-container ul li.section {
1167 font-weight: bold;
1168 font-size: 1.125rem;
1169 break-after: avoid;
1171 #keyboard-help-overlay .keyboard-help-container .keys {
1172 margin: 0 0.5em 0 0;
1173 min-width: 4.5em;
1174 display: inline-block;
1176 #keyboard-help-overlay .keyboard-help-container .keys code {
1177 margin: 0 6px 0 0;
1179 #keyboard-help-overlay .keyboard-help-container code {
1180 display: inline-block;
1181 background-color: #eee;
1182 border: 1px solid #ccc;
1183 padding: 3px 8px 4px 8px;
1184 margin: 0 1px;
1186 #keyboard-help-overlay .keyboard-help-container code.ak {
1187 background-color: #ffeb83;
1188 border-color: #d4a500;
1190 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1191 content: "ak+";
1192 opacity: 0.3;
1195 #nav-item-about button.open-keyboard-help {
1196 display: none;
1198 @media only screen and (hover:hover) and (pointer:fine) {
1199 #nav-item-about {
1200 position: relative;
1201 padding-right: 0.25em;
1203 #nav-item-about button.open-keyboard-help {
1204 font-family: "Font Awesome", "Font Awesome 5 Free";
1205 font-weight: 900;
1206 position: absolute;
1207 top: 0;
1208 right: 0;
1209 height: 100%;
1210 padding: 8px;
1211 display: initial;
1212 line-height: 1;
1213 background-color: transparent;
1217 #keyboard-help-overlay button.close-keyboard-help {
1218 position: absolute;
1219 right: 0;
1220 top: 0;
1221 font-family: "Font Awesome", "Font Awesome 5 Free";
1222 font-size: 1.5rem;
1223 padding: 10px 12px;
1226 /************/
1227 /* ARCHIVES */
1228 /************/
1230 .archive-nav {
1231 margin: 1.25em 0.5em 0 0.5em;
1232 padding: 0.25em;
1234 .archive-nav > * {
1235 display: flex;
1237 .archive-nav *[class^='archive-nav-item'] {
1238 line-height: 1;
1239 flex: 1 1 5%;
1240 text-align: center;
1241 padding: 6px 4px 4px 4px;
1242 max-width: 8%;
1244 @supports (-moz-appearance: none) {
1245 .archive-nav *[class^='archive-nav-item'] {
1246 padding: 5px 4px;
1249 .archive-nav-days .archive-nav-item-day {
1250 font-size: 0.8em;
1251 padding: 7px 0 5px 0;
1252 max-width: 4%;
1254 .archive-nav-days .archive-nav-item-day:first-child {
1255 flex-basis: 10%;
1258 /************/
1259 /* ARCHIVES */
1260 /************/
1262 .archive-nav {
1263 margin: 1.25em 0.5em 0 0.5em;
1264 padding: 0.25em;
1266 .archive-nav > * {
1267 display: flex;
1269 .archive-nav *[class^='archive-nav-item'] {
1270 line-height: 1;
1271 flex: 1 1 5%;
1272 text-align: center;
1273 padding: 6px 4px 4px 4px;
1274 max-width: 8%;
1276 @supports (-moz-appearance: none) {
1277 .archive-nav *[class^='archive-nav-item'] {
1278 padding: 5px 4px;
1281 .archive-nav-days .archive-nav-item-day {
1282 font-size: 0.8em;
1283 padding: 7px 0 5px 0;
1284 max-width: 4%;
1286 .archive-nav-days .archive-nav-item-day:first-child {
1287 flex-basis: 10%;
1290 /************/
1291 /* LISTINGS */
1292 /************/
1294 h1.listing {
1295 font-size: 1.875rem;
1296 line-height: 1.15;
1297 max-height: 1.15em;
1298 position: relative;
1301 h1.listing a {
1302 position: relative;
1305 /* Links to link-posts (not the link-post links themselves; that's below) */
1306 h1.listing .link-post-link + a {
1307 margin-left: 0.25em;
1310 h1.listing .link-post-link {
1311 font-size: 0.8em;
1312 display: inline;
1313 vertical-align: top;
1314 position: relative;
1315 top: 4px;
1318 /*=----------------------=*/
1319 /*= Listing hover reveal =*/
1320 /*=----------------------=*/
1321 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1323 @media only screen and (min-width: 1160px) {
1324 h1.listing a {
1325 max-width: 100%;
1326 display: inline-block;
1327 white-space: nowrap;
1328 text-overflow: ellipsis;
1329 overflow: hidden;
1330 border-bottom: 1px solid transparent;
1331 -webkit-hyphens: auto;
1332 -moz-hyphens: auto;
1333 -ms-hyphens: auto;
1334 hyphens: auto;
1335 z-index: 1;
1336 padding: 0 0 1px 1px;
1338 h1.listing .link-post-link + a {
1339 max-width: calc(100% - 40px);
1341 h1.listing a:hover,
1342 h1.listing a:focus {
1343 text-decoration: dotted underline;
1344 white-space: initial;
1345 overflow: visible;
1346 z-index: 2;
1348 h1.listing:focus-within::before {
1349 content: "\F105";
1350 font-family: "Font Awesome", "Font Awesome 5 Free";
1351 display: block;
1352 position: absolute;
1353 left: -0.75em;
1356 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1357 mouse movements) */
1359 h1.listing a:not(.edit-post-link):hover::before {
1360 content: "";
1361 position: absolute;
1362 top: -10px;
1363 right: -10px;
1364 bottom: -10px;
1365 left: -10px;
1366 z-index: -1;
1368 h1.listing .link-post-link:hover {
1369 text-decoration: none;
1373 /*=-----------------------=*/
1374 /*= In-listing edit links =*/
1375 /*=-----------------------=*/
1377 h1.listing .edit-post-link {
1378 position: absolute;
1379 margin: 0;
1382 /*=---------------------------------=*/
1383 /*= Error messages on listing pages =*/
1384 /*=---------------------------------=*/
1386 .listing-message {
1387 width: 100%;
1388 text-align: center;
1389 padding: 1.25em 0 1.25em 0;
1390 font-size: 1.375em;
1393 /*********************/
1394 /* LISTING POST-META */
1395 /*********************/
1397 h1.listing + .post-meta {
1398 position: relative;
1399 justify-content: flex-start;
1400 margin: 0 20px 0 21px;
1403 h1.listing + .post-meta > * {
1404 margin: 0 1em 0 0;
1407 h1.listing + .post-meta .post-section {
1408 width: 0;
1409 margin: 0;
1410 overflow: hidden;
1412 h1.listing + .post-meta .post-section::before {
1413 position: absolute;
1414 left: -36px;
1417 h1.listing + .post-meta .read-time {
1418 cursor: default;
1421 /********************/
1422 /* SEQUENCES & TAGS */
1423 /********************/
1425 .sequence-text, .tag-description {
1426 font-size: 1.2rem;
1427 padding: 0 22px;
1430 #content.tag-index-page .tag-description {
1431 margin: 1em 0 0;
1434 section {
1435 max-width: 100%;
1436 margin-top: 2em;
1437 margin-bottom: 4em;
1440 h1.sequence-chapter {
1441 font-size: 2.3rem;
1444 article {
1445 max-width: 100%;
1448 .index-page .post-meta + .comments {
1449 margin-top: 3em;
1452 .tag-list {
1453 column-count: auto;
1454 column-width: 15em;
1455 margin-top: 0;
1456 border-bottom: 1px solid #999;
1457 padding-bottom: 1em;
1458 margin-bottom: 0;
1461 #content.sequence-page h1 {
1462 margin-top: 0.1em;
1465 /**************/
1466 /* USER PAGES */
1467 /**************/
1469 /*=---------------------=*/
1470 /*= User's display name =*/
1471 /*=---------------------=*/
1473 #content.user-page h1.page-main-heading {
1474 margin: 0.25em 0 0 0;
1475 line-height: 1.1;
1476 grid-column: 1 / span 2;
1477 order: -2;
1480 #content.user-page h1.page-main-heading .user-full-name {
1481 font-size: 1rem;
1482 font-weight: normal;
1483 padding-left: 0.5em;
1486 /*=--------------------=*/
1487 /*= User's karma total =*/
1488 /*=--------------------=*/
1490 #content.user-page .user-stats {
1491 grid-column: 3;
1492 order: -2;
1493 text-align: right;
1494 align-self: end;
1497 #content.user-page .user-stats .karma-type {
1498 white-space: nowrap;
1501 /*=----------------------=*/
1502 /*= Expanded vs. compact =*/
1503 /*=----------------------=*/
1505 #content.user-page #comments-list-mode-selector {
1506 grid-row: span 2;
1508 #content.user-page #comments-list-mode-selector button {
1509 display: block;
1512 /*=----------------------------------------------------=*/
1513 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1514 /*=----------------------------------------------------=*/
1516 #content.user-page .sublevel-nav {
1517 margin-bottom: 0.5em;
1520 /*=--------------=*/
1521 /*= User's posts =*/
1522 /*=--------------=*/
1524 #content.user-page h1.listing {
1525 margin: 0.5em 0 0 0;
1528 #content.user-page .user-bio :first-child {
1529 margin-top: 0.5em;
1532 /*****************/
1533 /* CONVERSATIONS */
1534 /*****************/
1536 /*=----------------------=*/
1537 /*= List of participants =*/
1538 /*=----------------------=*/
1540 #content.conversation-page .conversation-participants {
1541 grid-column: 2 / span 2;
1542 text-align: right;
1543 margin: 0.5em 0 0 0;
1545 .post-meta > .conversation-participants {
1546 white-space: normal;
1548 .conversation-participants ul,
1549 .conversation-participants li {
1550 list-style-type: none;
1551 display: inline-block;
1552 margin: 0;
1553 padding: 0;
1555 .conversation-participants li {
1556 margin-left: 0.375em;
1558 .conversation-participants li:not(:last-of-type)::after {
1559 content: ",";
1562 /*=-------------------------=*/
1563 /*= Posting controls (form) =*/
1564 /*=-------------------------=*/
1566 #content.conversation-page .posting-controls {
1567 padding: 0 0 1em 0;
1569 #content.conversation-page .post-meta-fields {
1570 overflow: auto;
1571 display: flex;
1572 flex-flow: row wrap;
1574 .posting-controls.standalone textarea {
1575 margin-top: 0.375em;
1577 .posting-controls.standalone form {
1578 padding: 0 1em;
1580 #content.conversation-page .posting-controls.standalone form {
1581 padding: 0 1em 3em 1em;
1583 .posting-controls.standalone input[type='text'],
1584 .posting-controls.standalone label {
1585 margin: 0.25em 0;
1587 .posting-controls.standalone label {
1588 width: 4em;
1589 text-align: right;
1590 padding: 2px 6px;
1591 border: 1px solid transparent;
1593 .posting-controls.standalone input[type='text'] {
1594 width: calc(100% - 4em);
1595 padding: 0.25em;
1597 .posting-controls.standalone input[type='submit'] {
1598 float: right;
1600 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1601 white-space: nowrap;
1603 .posting-controls.standalone #markdown-hints {
1604 top: calc(100% + 2em);
1607 /*=--------------------=*/
1608 /*= Conversation title =*/
1609 /*=--------------------=*/
1611 #content.conversation-page h1.page-main-heading {
1612 text-align: center;
1613 margin: 0.5em 0;
1614 line-height: 1.15;
1617 /*=----------=*/
1618 /*= Messages =*/
1619 /*=----------=*/
1621 #content.conversation-page > ul.comment-thread:last-of-type {
1622 margin-bottom: 2em;
1625 /******************/
1626 /* SEARCH RESULTS */
1627 /******************/
1629 #content.search-results-page h1.listing,
1630 #content.sequence-page h1.listing,
1631 #content.post-page h1.listing {
1632 font-size: 1.625em;
1635 /**************/
1636 /* LOGIN PAGE */
1637 /**************/
1639 .login-container {
1640 margin: 2em 0;
1641 padding: 1em;
1642 display: flex;
1643 flex-flow: row wrap;
1646 .login-container form {
1647 flex-basis: 50%;
1648 display: grid;
1649 grid-row-gap: 0.5em;
1650 align-content: start;
1652 .login-container form label {
1653 text-align: right;
1654 padding: 0.25em 0.5em;
1655 white-space: nowrap;
1656 grid-column: 1;
1658 .login-container form input {
1659 grid-column: 2;
1660 padding: 0.25em;
1662 .login-container form input[type='submit'],
1663 .login-container form a {
1664 grid-column: 2;
1665 justify-self: center;
1667 .login-container form input[type='submit'] {
1668 width: 10em;
1669 padding: 0.35em;
1670 line-height: 1;
1671 margin: 0.5em 0 0 0;
1673 .login-container form h1 {
1674 text-align: center;
1675 margin: 0;
1676 grid-column: 2;
1679 /* “Log in” form */
1681 #login-form {
1682 grid-template-columns: 5.5em 1fr;
1683 padding: 0.5em 2em 0.5em 0;
1686 /* “Create account” form */
1688 #signup-form {
1689 font-size: 0.9em;
1690 grid-template-columns: 8.5em 1fr;
1691 padding: 0.5em 1em 1em 1em;
1693 #signup-form h1 {
1694 font-size: 1.7em;
1696 #signup-form input[type='submit'] {
1697 padding: 0.4em 0.5em 0.5em 0.5em;
1700 /* Log in tip */
1702 .login-container .login-tip {
1703 padding: 0.5em 0.5em 0.5em 3em;
1704 margin: 2em 4em 0 4em;
1705 text-indent: -2em;
1706 line-height: 1.4;
1708 .login-container .login-tip span {
1709 font-weight: bold;
1712 /* Message box */
1714 #content.login-page .error-box {
1715 margin: 1.5em 0.875em -1.5em 0.875em;
1717 .error-box, .success-box {
1718 padding: 0.25em;
1719 text-align: center;
1722 /***********************/
1723 /* PASSWORD RESET PAGE */
1724 /***********************/
1726 .reset-password-container {
1727 margin-bottom: 2em;
1729 .reset-password-container input[type='submit'] {
1730 padding: 0.2em 0.5em;
1731 width: unset;
1733 .reset-password-container input {
1734 margin-left: 0.5em;
1735 width: 12em;
1737 .reset-password-container label {
1738 display: inline-block;
1739 width: 9em;
1741 .reset-password-container form > div {
1742 margin: 0.2em;
1744 .reset-password-container .action-container {
1745 padding-left: 11em;
1746 padding-top: 0.2em;
1748 .reset-password-container .error-box {
1749 margin: unset;
1753 /*********************/
1754 /* TABLE OF CONTENTS */
1755 /*********************/
1757 .contents {
1758 float: right;
1759 min-width: 6em;
1760 max-width: 40%;
1761 margin: 1.25em 0 0.75em 1.25em;
1762 padding: 7px 14px 10px 10px;
1763 position: relative;
1764 z-index: 1;
1767 .collection-page .contents {
1768 margin-top: 0;
1771 .contents-head {
1772 text-align: center;
1773 margin-bottom: 0.25em;
1776 .body-text .contents ul {
1777 list-style-type: none;
1778 margin: 0 0 0 0.5em;
1779 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1780 padding-left: 1em;
1781 font-size: 0.75em;
1783 .body-text .contents li {
1784 margin: 0.15em 0 0.3em 1em;
1785 text-align: left;
1786 text-indent: -1em;
1787 line-height: 1.2;
1788 position: relative;
1790 .body-text .contents li::before {
1791 position: absolute;
1792 width: 3em;
1793 display: block;
1794 text-align: right;
1795 left: -4.5em;
1797 .contents .toc-item-1 {
1798 counter-increment: toc-item-1;
1799 counter-reset: toc-item-2 toc-item-3;
1801 .contents .toc-item-1::before {
1802 content: counter(toc-item-1);
1804 .contents .toc-item-1 ~ .toc-item-2 {
1805 margin-left: 2.9em;
1806 font-size: 0.95em;
1808 .contents .toc-item-2 {
1809 counter-increment: toc-item-2;
1810 counter-reset: toc-item-3;
1812 .contents .toc-item-1 ~ .toc-item-2::before {
1813 content: counter(toc-item-1) "." counter(toc-item-2);
1815 .contents .toc-item-2::before {
1816 content: counter(toc-item-2);
1818 .contents .toc-item-1 + .toc-item-3 {
1819 counter-increment: toc-item-2 toc-item-3;
1821 .contents .toc-item-2 ~ .toc-item-3,
1822 .contents .toc-item-1 ~ .toc-item-3 {
1823 margin-left: 2.9em;
1824 font-size: 0.95em;
1826 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1827 margin-left: 5.7em;
1828 font-size: 0.9em;
1830 .contents .toc-item-3 {
1831 counter-increment: toc-item-3;
1833 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1834 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1836 .contents .toc-item-1 ~ .toc-item-3::before {
1837 content: counter(toc-item-1) "." counter(toc-item-3);
1839 .contents .toc-item-2 ~ .toc-item-3::before {
1840 content: counter(toc-item-2) "." counter(toc-item-3);
1842 .contents .toc-item-3::before {
1843 content: counter(toc-item-3);
1845 .contents .toc-item-4,
1846 .contents .toc-item-5,
1847 .contents .toc-item-6 {
1848 display: none;
1851 .contents.collapsed {
1852 margin-bottom: 0.25em;
1853 padding-left: 1em;
1854 padding-right: 1.75em;
1857 .contents.collapsed .contents-head {
1858 margin: 0;
1860 .contents.collapsed .contents-list {
1861 display: none;
1864 .contents .toc-collapse-toggle-button {
1865 position: absolute;
1866 top: 1px;
1867 right: 1.5px;
1868 font-family: "Font Awesome", "Font Awesome 5 Free";
1869 font-weight: 900;
1870 font-size: 1.5rem;
1871 padding: 0;
1873 .contents .toc-collapse-toggle-button:active {
1874 transform: translateX(1px) translateY(1px);
1877 .contents.collapsed .toc-collapse-toggle-button {
1878 width: calc(100% - 3px);
1879 height: calc(100% - 2px);
1880 background-color: transparent;
1881 display: flex;
1882 justify-content: flex-end;
1883 align-items: flex-start;
1887 /********************/
1888 /* POSTS & COMMENTS */
1889 /********************/
1891 .post-meta > *,
1892 .comment-meta > * {
1893 display: inline-block;
1894 margin-right: 1em;
1895 font-size: 1.0625em;
1897 .body-text {
1898 overflow-wrap: break-word;
1899 text-align: justify;
1901 .body-text p {
1902 margin: 1em 0;
1904 .retracted .body-text {
1905 text-decoration: line-through;
1908 .bare-url {
1909 word-break: break-all;
1910 hyphens: auto;
1912 .body-text a:not([href]),
1913 .body-text a:not([href]):hover,
1914 .body-text a:not([href])::before,
1915 .body-text a:not([href])::after {
1916 text-decoration: none;
1917 text-shadow: unset;
1918 border: unset;
1919 color: unset;
1920 content: unset;
1922 /*************/
1923 /* POST-META */
1924 /*************/
1926 .post-meta {
1927 display: flex;
1928 flex-flow: row wrap;
1929 justify-content: center;
1931 .post-meta .lw2-link {
1932 opacity: 0.5;
1933 order: 1;
1935 .post-meta > *,
1936 .post-meta .post-section::before {
1937 margin: 0 0.5em;
1939 .post-meta .post-section {
1940 order: -1;
1941 margin: 0;
1942 visibility: hidden;
1944 .post-meta .post-section::before,
1945 .comment-meta .alignment-forum {
1946 visibility: visible;
1947 font-family: "Font Awesome", "Font Awesome 5 Free";
1948 font-weight: 900;
1950 .post-section.frontpage::before {
1951 content: "\F015";
1953 .post-section.featured::before {
1954 content: "\F005";
1956 .post-section.meta::before {
1957 content: "\F077";
1959 .post-section.events::before {
1960 content: "\F5A0";
1962 .post-section.personal::before {
1963 content: "\F007";
1965 .post-section.draft::before {
1966 content: "\F15B";
1968 .post-section.alignment-forum::before,
1969 .comment-meta .alignment-forum {
1970 content: "AF";
1971 font-family: Concourse, 'Changa One';
1974 /*= Karma controls hover tooltips =*/
1976 @media only screen and (pointer: fine) {
1977 .post .voting-controls,
1978 .comment-item .voting-controls {
1979 position: relative;
1981 .post .karma.active-controls::after,
1982 .comment-item .karma.active-controls::after {
1983 content: "Double-click for strong vote";
1984 position: absolute;
1985 pointer-events: none;
1986 display: block;
1987 left: 6px;
1988 width: 100%;
1989 line-height: 1.15;
1990 white-space: normal;
1991 text-align: center;
1992 font-size: 0.875rem;
1993 opacity: 0;
1994 transition: opacity 0.2s ease;
1996 .post .voting-controls.active-controls:hover::after,
1997 .comment-item .voting-controls.active-controls:hover::after {
1998 opacity: 1.0;
2001 .post .voting-controls .karma-value::after,
2002 .comment-item .voting-controls .karma-value::after {
2003 content: attr(title);
2004 position: absolute;
2005 pointer-events: none;
2006 display: block;
2007 left: 50%;
2008 transform: translateX(-50%);
2009 white-space: pre-wrap;
2010 width: max-content;
2011 text-align: center;
2012 font-size: 0.875rem;
2013 color: #bbb;
2014 opacity: 0;
2015 transition: opacity 0.2s ease;
2017 .post .voting-controls.agreement .karma-value:hover::after,
2018 .comment-item .voting-controls.agreement .karma-value:hover::after {
2019 top: unset;
2020 bottom: 100%;
2022 .post .voting-controls .karma-value:hover::after,
2023 .comment-item .voting-controls .karma-value:hover::after {
2024 opacity: 1.0;
2026 .post .voting-controls.waiting .karma-value:hover::after,
2027 .comment-item .voting-controls.waiting .karma-value:hover::after {
2028 display: none;
2030 .comment-item .voting-controls .karma-value:hover::after {
2031 z-index: 5001;
2034 .author {
2035 position: relative;
2037 .author:not(.redacted)::before {
2038 content: attr(data-full-name);
2039 position: absolute;
2040 pointer-events: none;
2041 display: block;
2042 padding: 0 1em;
2043 left: 50%;
2044 bottom: 2em;
2045 transform: translateX(-50%);
2046 white-space: nowrap;
2047 text-align: center;
2048 font-size: 0.875rem;
2049 font-weight: normal;
2050 opacity: 0;
2051 transition: opacity 0.2s ease;
2052 z-index: 5001;
2054 .author:hover::before {
2055 opacity: 1.0;
2059 /*********/
2060 /* POSTS */
2061 /*********/
2063 .post {
2064 max-width: 100%;
2067 .post-body {
2068 min-height: 8em;
2069 padding: 0 30px;
2070 line-height: 1.5;
2071 font-size: 1.3rem;
2072 overflow: auto;
2073 margin: 0.5em 0 0 0;
2075 h1.post-title {
2076 margin: 1.1em 0 0.35em 0;
2077 padding: 0 30px;
2078 text-align: center;
2079 font-size: 2.5em;
2080 line-height: 1;
2082 .post .post-meta {
2083 text-align: center;
2084 position: relative;
2085 z-index: 2;
2087 .post .top-post-meta:last-child {
2088 margin-bottom: 40px;
2090 .post .bottom-post-meta {
2091 margin: 0;
2092 padding: 20px 0;
2094 .bottom-post-meta {
2095 border-style: solid;
2096 border-width: 1px 0;
2099 /**********/
2100 /* EVENTS */
2101 /**********/
2103 .event-info .map {
2104 position: relative;
2105 width: 100%;
2106 margin: 2em 0 1em;
2109 .event-info .map::before {
2110 content: "";
2111 display: block;
2112 padding-bottom: 50%;
2115 .event-info .map iframe {
2116 width: 100%;
2117 height: 100%;
2118 border: 1px solid #000;
2119 position: absolute;
2120 top: 0;
2121 left: 0;
2124 .event-info ul {
2125 list-style: none;
2126 padding: 0;
2127 text-align: center;
2130 /*******************/
2131 /* POST NAVIGATION */
2132 /*******************/
2134 .post-nav-item {
2135 display: grid;
2136 grid-template: 100% / 32% 36% 32%;
2137 grid-template-areas:
2138 "prev seq next";
2140 .post-nav {
2141 display: flex;
2142 flex-flow: column;
2143 justify-content: flex-end;
2144 padding: 0.5em;
2147 .post-nav-title {
2148 font-size: 1.125em;
2149 line-height: 1.15;
2150 display: inline;
2151 border-top: 1px solid transparent;
2153 .post-nav.prev .post-nav-title,
2154 .post-nav.next .post-nav-title {
2155 border-bottom: 1px solid transparent;
2158 .sequence-title {
2159 align-items: center;
2160 text-align: center;
2161 grid-area: seq;
2163 .sequence-title .post-nav-title {
2164 font-size: 1.5em;
2167 .post-nav.prev {
2168 grid-area: prev;
2169 align-items: flex-start;
2171 .post-nav.prev .post-nav-title::before {
2172 content: "\F0D9\2005";
2174 .post-nav.next {
2175 grid-area: next;
2176 text-align: right;
2177 align-items: flex-end;
2179 .post-nav.prev .post-nav-label,
2180 .post-nav.next .post-nav-label {
2181 display: none;
2183 .post-nav.next .post-nav-title::after {
2184 content: "\2004\F0DA";
2186 .post-nav.prev .post-nav-title::before,
2187 .post-nav.next .post-nav-title::after {
2188 font-family: Font Awesome;
2189 font-weight: 900;
2190 vertical-align: text-bottom;
2191 opacity: 0.75;
2193 .post-nav-links {
2194 max-width: 100%;
2197 @media only screen and (max-width: 900px) {
2198 .post-nav-item {
2199 font-size: 0.875em;
2200 grid-template: auto auto / 50% 50%;
2201 grid-template-areas:
2202 "prev next"
2203 "seq seq";
2205 .post-nav.prev .post-nav-title,
2206 .post-nav.next .post-nav-title {
2207 border-bottom: none;
2209 .post-nav.prev {
2210 margin: 0 0 0 -1px;
2211 position: relative;
2212 left: 1px;
2214 .sequence-title {
2215 padding: 0.75em 0;
2218 @media only screen and (max-width: 520px) {
2219 .post-nav-links + .comments {
2220 padding: 1em 0 0 0;
2224 .related-posts, .related-post-group {
2225 padding-bottom: 1em;
2227 .related-post-type {
2228 font-size: 1.2em;
2229 font-weight: 600;
2230 margin-top: 0.5em;
2231 margin-bottom: -0.5em;
2232 list-style-type: disc;
2233 margin-left: -0.5em;
2234 opacity: 0.7;
2236 .related-post-type::before {
2237 content: "\269c";
2238 font-size: 1.375em;
2239 font-weight: normal;
2240 margin-right: 0.15em;
2241 position: relative;
2242 vertical-align: baseline;
2243 top: 0.05em;
2245 .related-posts .post-type-prefix {
2246 display: none;
2249 .crosspost {
2250 padding: 0.1em 1em;
2251 margin: 1em auto;
2254 /**************/
2255 /* LINK POSTS */
2256 /**************/
2258 .post.link-post > .post-body > p:first-child {
2259 text-align: center;
2260 font-size: 1.125em;
2261 margin: 0.5em 0 0 0;
2263 .post.link-post > .post-body > p:only-child {
2264 font-size: 1.5em;
2265 margin: 1em 0;
2267 .post.link-post a.link-post-link::before {
2268 content: "\F0C1";
2269 font-family: "Font Awesome", "Font Awesome 5 Free";
2270 font-weight: 900;
2271 font-size: 0.75em;
2272 position: relative;
2273 top: -2px;
2274 margin-right: 0.25em;
2277 /************/
2278 /* COMMENTS */
2279 /************/
2281 .comments {
2282 max-width: 100%;
2283 padding: 0 0 1px 0;
2284 position: relative;
2286 .comments::before {
2287 content: "";
2288 position: absolute;
2289 display: block;
2290 top: 0;
2291 left: 0;
2292 width: 100%;
2293 height: 100%;
2294 pointer-events: none;
2296 ul.comment-thread {
2297 list-style-type: none;
2298 padding: 0;
2299 max-width: 100%;
2301 .comments .comment-thread > li {
2302 position: relative;
2304 #content > #top-nav-bar + .comment-thread .comment-item {
2305 margin-top: 0;
2308 .comment-item {
2309 margin: 2em 0 0 0;
2311 .comment-item .comment-item {
2312 margin: 1em 8px 8px 16px;
2314 .comment-item .comment-item + .comment-item {
2315 margin: 2em 8px 8px 16px;
2318 .comment-body {
2319 line-height: 1.45;
2320 font-size: 1.2rem;
2321 padding: 10px;
2323 .comment-body ul {
2324 list-style-type: circle;
2326 .comment-body > *:first-child {
2327 margin-top: 0;
2329 .comment-body > *:last-child {
2330 margin-bottom: 0;
2333 .comments-empty-message {
2334 width: 100%;
2335 text-align: center;
2336 padding: 0.75em 0 0.9em 0;
2337 font-size: 1.375em;
2340 /**********************************/
2341 /* DEEP COMMENT THREAD COLLAPSING */
2342 /**********************************/
2344 .comment-item > input[id^="expand"] {
2345 display: none;
2347 .comment-item > input[id^="expand"] + label {
2348 display: block;
2349 visibility: hidden;
2350 position: relative;
2351 margin: 8px 9px;
2353 .comment-item > input[id^="expand"] + label::after {
2354 content: "(Expand " attr(data-child-count) " below)";
2355 visibility: visible;
2356 position: absolute;
2357 left: 0;
2358 white-space: nowrap;
2359 cursor: pointer;
2361 .comment-item > input[id^="expand"]:checked + label::after {
2362 content: "(Collapse " attr(data-child-count) " below)";
2364 .comment-item > input[id^="expand"] ~ .comment-thread {
2365 max-height: 34px;
2366 overflow: hidden;
2368 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2369 margin-top: 0;
2371 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2372 max-height: 1000000px;
2375 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2376 margin: 0;
2378 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2379 display: none;
2382 /*************/
2383 /* BACKLINKS */
2384 /*************/
2386 .backlinks > input {
2387 display: none;
2390 .backlinks > label {
2391 margin-left: 10px;
2392 display: block;
2393 color: #00f;
2394 cursor: pointer;
2397 .backlinks > label::before {
2398 content: " ";
2399 border-left: 5px solid currentColor;
2400 border-top: 5px solid transparent;
2401 border-bottom: 5px solid transparent;
2402 transition: transform 0.25s ease-out;
2403 transform-origin: 29% 55%;
2404 display: inline-block;
2405 padding-right: 0.5em;
2408 .backlinks > input:checked + label::before {
2409 transform: rotate(90deg);
2412 .backlinks li {
2413 margin-top: 0;
2416 .backlinks > ul {
2417 height: 0;
2418 perspective-origin: top;
2419 transform: perspective(100em) rotateX(-90deg);
2420 transform-origin: center top;
2421 opacity: 0;
2422 margin-top: 0.5em;
2423 margin-bottom: 0.5em;
2426 .backlinks > input:checked ~ ul {
2427 height: auto;
2428 transform: perspective(100em) rotateX(0deg);
2429 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2430 opacity: 1;
2433 /****************/
2434 /* COMMENT-META */
2435 /****************/
2437 .comment-meta {
2438 padding: 2px 24px 2px 10px;
2439 margin: 0 -1px;
2440 border: none;
2441 display: flex;
2442 flex-flow: row wrap;
2443 align-items: baseline;
2445 .user-page .comment-meta,
2446 .conversation-page .comment-meta {
2447 padding-right: 10px;
2449 .comment-meta .comment-post-title {
2450 flex-basis: 100%;
2451 overflow: hidden;
2452 text-overflow: ellipsis;
2453 white-space: nowrap;
2454 line-height: 1.3;
2456 .conversation-page .comment-meta .comment-post-title {
2457 margin: 0;
2458 flex-basis: unset;
2459 flex: 1 0 auto;
2460 text-align: right;
2461 display: none; /* Not sure if we need to display this... */
2463 .comment-item .author:not(.redacted).original-poster::after {
2464 content: "\2004(OP)";
2465 font-size: 0.75em;
2468 /*****************************/
2469 /* COMMENT THREAD NAVIGATION */
2470 /*****************************/
2472 a.comment-parent-link:not(.inline-author),
2473 a.comment-parent-link.inline-author::before {
2474 opacity: 0.5;
2476 a.comment-parent-link:hover {
2477 opacity: 1.0;
2479 a.comment-parent-link::before {
2480 content: "\F062";
2481 font-family: "Font Awesome", "Font Awesome 5 Free";
2482 font-weight: 900;
2483 font-size: 0.75rem;
2484 line-height: 1;
2485 position: absolute;
2486 z-index: 1;
2487 display: block;
2488 padding: 3px 3px 0 3px;
2489 width: 16px;
2490 height: calc(100% + 2px);
2491 top: -1px;
2492 left: -17px;
2494 a.comment-parent-link::after {
2495 content: "";
2496 position: absolute;
2497 z-index: 0;
2498 display: block;
2499 width: calc(100% + 26px);
2500 height: calc(100% + 38px);
2501 top: -29px;
2502 left: -17px;
2503 pointer-events: none;
2504 overflow: hidden;
2505 visibility: hidden;
2507 a.comment-parent-link:hover::after {
2508 visibility: visible;
2511 .comment-child-links {
2512 flex-basis: 100%;
2514 .comment-child-link {
2515 margin: 0 0.25em;
2516 display: inline-block;
2518 .comment-child-link::before {
2519 content: ">";
2520 display: inline-block;
2521 margin: 0 2px 0 0;
2524 .comment-popup {
2525 position: fixed;
2526 top: 10%;
2527 right: 10%;
2528 max-width: 700px;
2529 z-index: 10001;
2530 font-size: 1rem;
2531 white-space: unset;
2532 pointer-events: none;
2534 .comment-popup .comment-parent-link {
2535 display: none;
2537 .comment-popup .comment-body {
2538 font-size: 1.0625rem;
2541 .comment-item.depth-odd {
2542 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2543 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2545 .comment-item.depth-even {
2546 --GW-comment-background-color: var(--GW-comment-background-color-even);
2547 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2550 .comment-item:target {
2551 --GW-comment-background-color: var(--GW-comment-background-color-target);
2553 .comment-item:target > .comment-thread > .comment-item {
2554 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2557 /**********************/
2558 /* COMMENT PERMALINKS */
2559 /**********************/
2560 /********************/
2561 /* COMMENT LW LINKS */
2562 /********************/
2564 .comment-meta .permalink::before,
2565 .comment-meta .lw2-link::before,
2566 .individual-thread-page a.comment-parent-link:empty::before {
2567 content: "";
2568 display: inline-block;
2569 width: 1rem;
2570 height: 1rem;
2571 border-radius: 3px;
2572 box-shadow:
2573 0 0 0 1px #fff,
2574 0 0 0 2px #00e,
2575 0 0 0 3px transparent;
2576 padding: 0 0 0 2px;
2577 background-size: 100%;
2578 position: relative;
2579 top: 2px;
2580 opacity: 0.5;
2582 .comment-meta .permalink::before {
2583 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');
2585 .comment-meta .lw2-link::before {
2586 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==');
2588 .individual-thread-page a.comment-parent-link:empty::before {
2589 left: unset;
2590 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==');
2592 .comment-meta .permalink:hover::before {
2593 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');
2595 .comment-meta .lw2-link:hover::before {
2596 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==');
2598 .individual-thread-page a.comment-parent-link:empty:hover::before {
2599 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=');
2601 .comment-meta .permalink:hover::before,
2602 .comment-meta .lw2-link:hover::before,
2603 .individual-thread-page a.comment-parent-link:empty:hover::before {
2604 box-shadow:
2605 0 0 0 2px #00e,
2606 0 0 0 3px transparent;
2607 opacity: 1.0;
2608 filter: unset;
2610 .comment-meta .permalink:active::before,
2611 .comment-meta .lw2-link:active::before,
2612 .individual-thread-page a.comment-parent-link:empty:active::before {
2613 transform: scale(0.9);
2616 .comment-meta .permalink,
2617 .comment-meta .lw2-link,
2618 .individual-thread-page .comment-parent-link:empty {
2619 position: relative;
2620 opacity: 1.0;
2622 .comment-meta .permalink::after,
2623 .comment-meta .lw2-link::after,
2624 .individual-thread-page .comment-parent-link:empty::after {
2625 content: "";
2626 width: 30px;
2627 height: 30px;
2628 display: block;
2629 position: absolute;
2630 top: -2px;
2631 left: -7px;
2632 box-shadow: none;
2633 pointer-events: auto;
2634 visibility: visible;
2637 /*************************/
2638 /* COMMENTS COMPACT VIEW */
2639 /*************************/
2641 #comments-list-mode-selector,
2642 #content.index-page #comments-list-mode-selector,
2643 #content.user-page #comments-list-mode-selector {
2644 padding-top: 6px;
2645 grid-column: 1;
2646 position: unset;
2647 z-index: 1;
2648 justify-self: start;
2649 align-self: start;
2651 #comments-list-mode-selector button {
2652 color: transparent;
2653 width: 32px;
2654 height: 32px;
2655 padding: 6px;
2656 margin: 1px;
2657 overflow: hidden;
2658 background-repeat: no-repeat;
2659 background-size: 100%;
2660 background-origin: content-box;
2662 #comments-list-mode-selector button:disabled {
2663 cursor: auto;
2665 #comments-list-mode-selector button.expanded {
2666 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2668 #comments-list-mode-selector button.compact {
2669 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2671 @media only screen and (max-resolution: 1dppx) {
2672 #comments-list-mode-selector button.expanded {
2673 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2675 #comments-list-mode-selector button.compact {
2676 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2680 #content > ul.comment-thread > li.comment-item,
2681 #content.compact > ul.comment-thread > li.comment-item {
2682 margin: 0;
2685 #content > .comment-thread {
2686 margin: 1em 0;
2688 #content.compact > .comment-thread {
2689 font-size: 0.9375rem;
2690 margin: 0.5em 0;
2692 #content.compact > .comment-thread:hover {
2693 z-index: 1;
2695 #content.compact > .comment-thread .comment-body {
2696 font-size: 1.0625rem;
2698 #content.compact > .comment-thread .comment-item,
2699 #content.index-page .comment-item.ignored,
2700 #content.inbox-user-page .comment-item.ignored {
2701 max-height: 61px;
2702 margin-top: 1em;
2703 overflow: hidden;
2704 position: relative;
2706 #content.compact > .comment-thread .comment-item {
2707 pointer-events: none;
2709 #content.compact > .comment-thread .comment-item::after {
2710 content: "…";
2711 position: absolute;
2712 right: 0;
2713 bottom: 0;
2714 font-size: 2rem;
2715 line-height: 1;
2716 padding: 0 16px 10px 64px;
2717 pointer-events: auto;
2719 @media only screen and (hover: hover) {
2720 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2721 #content.compact > .comment-thread .comment-item.expanded {
2722 overflow: visible;
2723 pointer-events: auto;
2724 z-index: 10;
2727 @media only screen and (hover: none) {
2728 #content.compact > .comment-thread.expanded .comment-item {
2729 overflow: visible;
2730 pointer-events: auto;
2731 z-index: 10;
2734 #content.compact > .comment-thread .comment-item .comment-meta {
2735 white-space: nowrap;
2736 overflow: hidden;
2737 text-overflow: ellipsis;
2738 padding: 2px 10px;
2740 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2741 white-space: unset;
2743 #content.compact > .comment-thread .comment-item .comment-meta a {
2744 pointer-events: auto;
2746 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2747 display: inline;
2749 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2750 margin-left: 0.75em;
2752 @media only screen and (hover: hover) {
2753 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2754 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2755 max-height: unset;
2757 #content.compact > .comment-thread .comment-item:hover .comment,
2758 #content.compact > .comment-thread .comment-item.expanded .comment {
2759 position: relative;
2760 z-index: 1;
2761 margin-bottom: 2em;
2762 bottom: 0;
2764 #content.compact > .comment-thread .comment-item:hover .comment::before,
2765 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2766 content: "";
2767 position: absolute;
2768 display: block;
2769 width: calc(100% + 20px);
2770 height: calc(100% + 20px);
2771 z-index: -1;
2772 top: -10px;
2773 left: -10px;
2775 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2776 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2777 margin: 0;
2780 @media only screen and (hover: none) {
2781 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2782 max-height: unset;
2784 #content.compact > .comment-thread.expanded .comment-item .comment {
2785 position: relative;
2786 z-index: 1;
2787 margin-bottom: 2em;
2788 bottom: 0;
2790 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2791 content: "";
2792 position: absolute;
2793 display: block;
2794 width: calc(100% + 14px);
2795 height: calc(100% + 20px);
2796 z-index: -1;
2797 top: -10px;
2798 left: -10px;
2800 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2801 margin: 0;
2803 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2804 content: "";
2805 display: block;
2806 position: fixed;
2807 top: 0;
2808 left: 0;
2809 width: 100%;
2810 height: 100%;
2811 z-index: -2;
2812 background-color: rgba(0,0,0,0.5);
2816 /*****************************/
2817 /* HIGHLIGHTING NEW COMMENTS */
2818 /*****************************/
2820 .new-comment::before {
2821 content: "";
2822 position: absolute;
2823 width: 100%;
2824 height: 100%;
2825 z-index: 5000;
2826 pointer-events: none;
2829 /***********************************/
2830 /* COMMENT THREAD MINIMIZE BUTTONS */
2831 /***********************************/
2833 .comment-minimize-button {
2834 font-family: "Font Awesome", "Font Awesome 5 Free";
2835 font-weight: 900;
2836 font-size: 1.25rem;
2837 line-height: 1;
2838 position: absolute;
2839 right: 1px;
2840 top: 1px;
2841 width: 18px;
2842 margin: 0;
2843 cursor: pointer;
2845 .comment-minimize-button:active {
2846 transform: scale(0.9);
2848 .comment-minimize-button::after {
2849 content: attr(data-child-count);
2850 font-weight: normal;
2851 font-size: 0.8125rem;
2852 position: absolute;
2853 left: 0;
2854 width: 100%;
2855 text-align: center;
2856 top: 21px;
2858 #content.individual-thread-page .comment-minimize-button {
2859 display: none;
2862 /*****************/
2863 /* IGNORE SYSTEM */
2864 /*****************/
2866 #content.comment-thread-page .comment-item.ignored {
2867 height: 38px;
2868 overflow: hidden;
2870 .comment-item.ignored > .comment > .comment-meta > .author {
2871 text-decoration: line-through;
2874 /***********************************/
2875 /* INDIVIDUAL COMMENT THREAD PAGES */
2876 /***********************************/
2878 .individual-thread-page > h1 {
2879 line-height: 1;
2880 margin: 0.75em 0 3px 0;
2882 .individual-thread-page .comments {
2883 border: none;
2886 /*************/
2887 /* SHORTFORM */
2888 /*************/
2890 .shortform-index-page .comments::before {
2891 border: none;
2892 box-shadow: none;
2895 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2896 margin-top: 0;
2899 /****************/
2900 /* VOTE BUTTONS */
2901 /****************/
2903 .vote {
2904 margin: 0;
2906 .vote {
2907 font-family: "Font Awesome", "Font Awesome 5 Free";
2908 font-weight: 900;
2909 border: none;
2912 .vote:disabled {
2913 visibility: hidden;
2914 cursor: default;
2917 @keyframes waiting {
2918 0% {background-position: 200% 0%}
2919 100% {background-position: 0% 0%}
2922 .voting-controls .karma-value {
2923 opacity: 1;
2924 transition: opacity 0.5s linear;
2927 .voting-controls.waiting .karma-value {
2928 opacity: 0.5;
2929 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2930 background-clip: text;
2931 -webkit-background-clip: text;
2932 color: transparent;
2933 background-position: 200% 0%;
2934 background-size: 200% 100%;
2935 animation: waiting 1s linear infinite;
2938 /* Replicated karma controls at bottom of comments. */
2939 .comment-controls .voting-controls {
2940 float: left;
2941 font-size: 0.9375em;
2944 .comment-controls .voting-controls:first-of-type {
2945 margin-left: -14px;
2948 /*****************************/
2949 /* COMMENTING AND POSTING UI */
2950 /*****************************/
2952 .comment-controls {
2953 text-align: right;
2954 margin: 0 8px 8px 16px;
2955 position: relative;
2956 z-index: 9999;
2958 .comment-thread .comment-controls + .comment-thread > li:first-child {
2959 margin-top: 8px;
2961 .comments > .comment-controls {
2962 margin: 8px 0 0 0;
2964 .comments > .comment-controls:last-child {
2965 margin: 8px 0 16px 0;
2968 .posting-controls input[type='submit'] {
2969 margin: 6px;
2970 padding: 4px 10px;
2971 font-size: 1.125rem;
2974 .comment-controls .cancel-comment-button {
2975 position: absolute;
2976 right: 0;
2977 margin: 0;
2978 height: 27px;
2979 font-size: inherit;
2980 padding: 4px 8px 2px 4px;
2981 z-index: 1;
2983 .comment-controls .cancel-comment-button::before {
2984 font-family: "Font Awesome", "Font Awesome 5 Free";
2985 margin-right: 3px;
2986 content: '\F00D';
2987 font-weight: 900;
2988 font-size: 0.9em;
2989 opacity: 0.7;
2992 .comment + .comment-controls .action-button {
2993 font-weight: normal;
2994 font-size: 1.0625em;
2995 padding: 1px 6px;
2997 .comment-controls .action-button::before {
2998 font-family: "Font Awesome", "Font Awesome 5 Free";
2999 margin-right: 3px;
3001 .new-comment-button {
3002 font-size: 1.5rem;
3003 margin: 0 0.25em;
3005 .comment-controls .reply-button::before {
3006 content: '\F3E5';
3007 font-weight: 900;
3008 font-size: 0.9em;
3009 opacity: 0.6;
3011 .comment-meta .replied::before {
3012 content: '\F3E5';
3013 font-family: "Font Awesome", "Font Awesome 5 Free";
3014 color: #090;
3015 font-weight: 900;
3016 font-size: 0.9em;
3017 opacity: 0.6;
3020 .post-controls {
3021 text-align: right;
3022 margin: 0.75em 0 0 0;
3023 align-self: start;
3024 justify-self: end;
3026 .edit-post-link {
3027 display: inline-block;
3028 margin-bottom: 0.25em;
3029 font-size: 1.125rem;
3031 .edit-post-link::before {
3032 margin-right: 0.3em;
3034 .comment-controls .edit-button::before,
3035 .edit-post-link::before {
3036 content: '\F303';
3037 font-family: "Font Awesome", "Font Awesome 5 Free";
3038 font-weight: 900;
3039 font-size: 0.75em;
3040 position: relative;
3041 top: -1px;
3044 .comment-controls .delete-button {
3045 margin-right: 0.25em;
3047 .comment-controls .edit-button,
3048 .comment-controls .retract-button,
3049 .comment-controls .unretract-button {
3050 margin-right: 1em;
3052 .comment-controls .retract-button::before {
3053 content: '\F4B3';
3054 opacity: 0.6;
3056 .comment-controls .unretract-button::before {
3057 content: '\F075';
3058 opacity: 0.9;
3060 .comment-controls .delete-button::before {
3061 content: '\F05E';
3062 opacity: 0.7;
3064 .comment-controls .retract-button::before,
3065 .comment-controls .unretract-button::before,
3066 .comment-controls .delete-button::before {
3067 font-weight: 900;
3068 font-size: 0.9em;
3071 .comment-controls form {
3072 position: relative;
3074 .textarea-container {
3075 position: relative;
3077 .posting-controls textarea {
3078 display: block;
3079 width: 100%;
3080 height: 15em;
3081 min-height: 15em;
3082 max-height: calc(100vh - 6em);
3083 margin: 2px 0 0 0;
3084 padding: 4px 5px;
3085 font-size: 1.2rem;
3086 border-style: solid;
3087 border-width: 29px 1px 1px 1px;
3088 resize: none;
3091 /* GUIEdit buttons */
3093 .guiedit-buttons-container {
3094 position: absolute;
3095 left: 1px;
3096 top: 1px;
3097 width: calc(100% - 2px);
3098 height: 28px;
3099 text-align: left;
3100 padding: 1px 4px 0 4px;
3101 overflow: hidden;
3103 .comment-thread-page .guiedit-buttons-container {
3104 padding-right: 60px;
3106 .guiedit-buttons-container button {
3107 height: 26px;
3108 padding: 0 7px;
3109 font-weight: 900;
3110 font-size: 0.875rem;
3111 line-height: 1;
3112 position: static;
3114 .guiedit-buttons-container button:active {
3115 transform: none;
3117 .guiedit-buttons-container button:active div {
3118 transform: scale(0.9);
3120 .guiedit-buttons-container button sup {
3121 font-weight: bold;
3123 .guiedit::after {
3124 content: attr(data-tooltip);
3125 position: absolute;
3126 font-weight: normal;
3127 font-size: 1rem;
3128 top: 2px;
3129 left: 464px;
3130 height: 25px;
3131 padding: 4px 0;
3132 white-space: nowrap;
3133 visibility: hidden;
3135 .guiedit:hover::after {
3136 visibility: visible;
3139 /* Markdown hints */
3141 .posting-controls .markdown-reference-link {
3142 float: left;
3143 padding: 1px 0 0 6px;
3145 .posting-controls .markdown-reference-link a {
3146 padding-right: 1.5em;
3147 margin-right: 0.15em;
3148 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');
3149 background-size: 1.25em;
3150 background-repeat: no-repeat;
3151 background-position: right center;
3154 #markdown-hints-checkbox + label {
3155 float: left;
3156 margin: 2px 0 0 1em;
3157 line-height: 1.3;
3158 cursor: pointer;
3160 #edit-post-form #markdown-hints-checkbox + label {
3161 padding: 0;
3163 #markdown-hints-checkbox {
3164 visibility: hidden;
3165 float: left;
3167 #markdown-hints-checkbox + label::after {
3168 content: "(Show Markdown help)";
3170 #markdown-hints-checkbox:checked + label::after {
3171 content: "(Hide Markdown help)";
3173 #markdown-hints-checkbox + label::before {
3174 content: '\F059';
3175 font-family: "Font Awesome", "Font Awesome 5 Free";
3176 font-weight: 900;
3177 margin-right: 3px;
3179 #markdown-hints-checkbox:checked + label::before {
3180 font-weight: normal;
3182 #markdown-hints {
3183 margin: 4px 0 0 4px;
3184 padding: 4px 8px;
3185 position: absolute;
3186 text-align: left;
3187 top: calc(100% - 1em);
3188 z-index: 1;
3189 display: none;
3191 .comment-controls #markdown-hints {
3192 top: calc(100% + 1.75em);
3194 #markdown-hints-checkbox:checked ~ #markdown-hints {
3195 display: table;
3197 .markdown-hints-row {
3198 display: table-row;
3200 #markdown-hints .markdown-hints-row span,
3201 #markdown-hints .markdown-hints-row code {
3202 float: none;
3203 display: table-cell;
3204 border: none;
3205 background-color: inherit;
3206 padding: 0 12px 0 0;
3209 /******************/
3210 /* EDIT POST FORM */
3211 /******************/
3213 #edit-post-form {
3214 padding: 1em 1em 4em 1em;
3216 #edit-post-form .post-meta-fields {
3217 display: grid;
3218 grid-template-columns: 5em auto auto auto 1fr auto;
3219 margin-bottom: 0.625em;
3222 #edit-post-form label[for='title'],
3223 #edit-post-form label[for='url'],
3224 #edit-post-form label[for='section'] {
3225 grid-column: 1;
3227 #edit-post-form input[type='text'] {
3228 padding: 0.25em;
3229 grid-column: 2 / span 4;
3230 margin-bottom: 0.5em;
3233 #edit-post-form .link-post-checkbox,
3234 #edit-post-form .link-post-checkbox + label {
3235 grid-row: 1;
3236 grid-column: 6;
3238 #edit-post-form .question-checkbox,
3239 #edit-post-form .question-checkbox + label {
3240 grid-row: 3;
3241 grid-column: 5;
3242 justify-self: start;
3243 margin-left: 1.5em;
3246 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3247 grid-row: 4;
3248 grid-column: 2 / span 4;
3249 text-align: left;
3250 margin-top: 8px;
3253 #edit-post-form .post-meta-fields input[type='checkbox'] {
3254 height: 0;
3255 opacity: 0;
3256 pointer-events: none;
3258 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3259 white-space: nowrap;
3260 position: relative;
3261 cursor: pointer;
3262 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3263 align-self: start;
3265 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3266 content: "";
3267 font-family: "Font Awesome", "Font Awesome 5 Free";
3268 font-size: 1.375rem;
3269 line-height: 0.7;
3270 text-indent: 1px;
3271 font-weight: 900;
3272 position: absolute;
3273 width: 20px;
3274 height: 20px;
3275 left: 5px;
3277 #edit-post-form label[for='url'],
3278 #edit-post-form input[name='url'] {
3279 display: none;
3281 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3282 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3283 display: initial;
3285 #edit-post-form label {
3286 line-height: normal;
3287 border: 1px solid transparent;
3288 text-align: right;
3289 padding: 0.25em 0.5em;
3290 white-space: nowrap;
3292 #edit-post-form input[type='radio'] {
3293 width: 0;
3294 margin: 0;
3295 opacity: 0;
3296 pointer-events: none;
3298 #edit-post-form input[type='radio'] + label {
3299 padding: 4px 12px;
3300 text-align: center;
3301 border-style: solid;
3302 border-width: 1px 1px 1px 0;
3303 cursor: pointer;
3305 #edit-post-form input[type='radio']:checked + label {
3306 cursor: default;
3309 #edit-post-form label[for='section'] {
3310 grid-row: 3;
3312 #edit-post-form input[type='radio'] + label {
3313 grid-row: 3;
3315 @supports (width: -moz-fit-content) {
3316 #edit-post-form input[type='radio'] + label {
3317 width: -moz-fit-content;
3320 @supports (width: fit-content) {
3321 #edit-post-form input[type='radio'] + label {
3322 width: fit-content;
3326 #edit-post-form textarea {
3327 min-height: 24em;
3330 #edit-post-form input[type='submit'] {
3331 padding: 6px 12px;
3332 float: right;
3334 #edit-post-form #markdown-hints {
3335 top: calc(100% + 2em);
3338 #edit-post-form button.guiedit div {
3339 overflow: visible;
3341 .guiedit-mobile-auxiliary-button {
3342 display: none;
3345 /***********/
3346 /* BUTTONS */
3347 /***********/
3349 button,
3350 input[type='submit'] {
3351 font-family: inherit;
3352 font-size: inherit;
3353 background-color: inherit;
3354 cursor: pointer;
3355 border: none;
3356 border-radius: 0;
3359 /************/
3360 /* HEADINGS */
3361 /************/
3363 .body-text h1,
3364 .body-text h2,
3365 .body-text h3,
3366 .body-text h4,
3367 .body-text h5,
3368 .body-text h6 {
3369 line-height: 1.1;
3370 margin: 1em 0 0.75em 0;
3371 text-align: left;
3374 .post-body h5,
3375 .post-body h6 {
3376 font-size: 1em;
3378 .post-body h4,
3379 .body-text h4 {
3380 font-size: 1.2em;
3382 .post-body h3,
3383 .body-text h3 {
3384 font-size: 1.4em;
3386 .post-body h2,
3387 .body-text h2 {
3388 font-size: 1.75em;
3390 .post-body h1,
3391 .body-text h1 {
3392 font-size: 2.1em;
3395 .comment-body h5,
3396 .comment-body h6 {
3397 font-size: 1em;
3399 .comment-body h4 {
3400 font-size: 1.15em;
3402 .comment-body h3 {
3403 font-size: 1.3em;
3405 .comment-body h2 {
3406 font-size: 1.5em;
3408 .comment-body h1 {
3409 font-size: 1.75em;
3412 /**********/
3413 /* QUOTES */
3414 /**********/
3416 blockquote,
3417 .post-body .comment-box .comment-body {
3418 font-size: 0.9em;
3419 margin: 1em 0;
3420 padding-left: 0.5em;
3421 margin-left: 1px;
3422 padding-bottom: 3px;
3424 blockquote *:first-child {
3425 margin-top: 0;
3427 blockquote *:last-child {
3428 margin-bottom: 0;
3430 blockquote blockquote {
3431 font-size: 0.95em;
3434 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3436 .post-body .comment-box .user-name {
3437 font-style: italic;
3439 .post-body .comment-box .user-name::after {
3440 content: ":";
3442 .post-body .comment-box {
3443 zoom: 1.25;
3446 /**********/
3447 /* IMAGES */
3448 /**********/
3450 #content img, #content figure {
3451 max-width: 100%;
3454 .prediction-poll > svg {
3455 width: 700px;
3456 max-width: 100%;
3459 img.inline-latex {
3460 position: relative;
3461 top: 2.5px;
3462 margin: 0 2px;
3465 #content figure {
3466 text-align: center;
3467 margin: 1.5em auto;
3470 p.imgonly,
3471 div.imgonly,
3472 figure {
3473 text-align: center;
3474 margin: auto;
3475 clear: both;
3478 .imgonly iframe {
3479 display: block;
3480 width: 100%;
3481 height: 250px;
3482 border: 0;
3485 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3487 [style*="--aspect-ratio"] > * {
3488 width: 100%;
3490 [style*="--aspect-ratio"] > img {
3491 height: auto;
3493 @supports (--custom:property) {
3494 [style*="--aspect-ratio"] {
3495 position: relative;
3497 [style*="--aspect-ratio"]::before {
3498 content: "";
3499 display: block;
3500 padding-bottom: calc(100% / (var(--aspect-ratio)));
3502 [style*="--aspect-ratio"] > * {
3503 position: absolute;
3504 top: 0;
3505 left: 0;
3506 height: 100%;
3510 /**********/
3511 /* TABLES */
3512 /**********/
3514 .body-text table {
3515 border-collapse: collapse;
3516 font-size: 0.875em;
3518 .body-text table th,
3519 .body-text table td {
3520 text-align: left;
3521 padding: 4px 6px;
3522 line-height: 1.3;
3524 .body-text table .numeric {
3525 text-align: right;
3526 font-family: Inconsolata, Menlo, monospace;
3528 .body-text table caption {
3529 margin: 0 0 0.25em 0;
3530 font-weight: bold;
3531 font-size: 1.125em;
3534 /********/
3535 /* MISC */
3536 /********/
3538 /*= Superscripts & subscripts =*/
3540 /* Make sure superscripts and subscripts do not affect line spacing. */
3541 sup, sub {
3542 vertical-align: baseline;
3543 position: relative;
3544 top: -0.5em;
3545 left: 0.05em;
3546 font-size: 0.8em;
3548 sub {
3549 top: 0.3em;
3552 /*= Code blocks & other "unstyled" text. =*/
3554 pre,
3555 code {
3556 font-family: Inconsolata, Menlo, monospace;
3558 pre {
3559 white-space: pre-wrap;
3561 .body-text pre {
3562 text-align: left;
3564 code {
3565 font-size: 0.95em;
3566 display: inline-block;
3567 padding: 0 4px 1px 5px;
3569 pre > code {
3570 display: block;
3571 border-radius: 0;
3572 padding: 3px 4px 5px 8px;
3573 tab-size: 4;
3576 /*= Fractions =*/
3578 .frac::after {
3579 content: "\200B";
3582 /*= Removing browser default styling of various elements =*/
3584 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3585 :focus {
3586 outline: none;
3589 /* Remove "embossed" appearance of horizontal rules. */
3590 hr {
3591 border: none;
3594 input,
3595 button,
3596 textarea {
3597 -webkit-appearance: none;
3598 -moz-appearance: none;
3599 appearance: none;
3602 input {
3603 font-family: inherit;
3604 font-size: inherit;
3605 font-weight: inherit;
3608 /*************/
3609 /* FOOTNOTES */
3610 /*************/
3612 ol {
3613 counter-reset: ordered-list;
3615 .footnote-definition {
3616 font-size: 0.9em;
3617 list-style-type: none;
3618 counter-increment: ordered-list;
3619 position: relative;
3621 .footnote-definition p {
3622 font-size: inherit !important;
3624 .footnote-definition::before {
3625 content: counter(ordered-list) ".";
3626 position: absolute;
3627 left: -2.5em;
3628 font-weight: bold;
3629 text-align: right;
3630 width: 2em;
3633 /*= LW Docs footnotes =*/
3635 .footnote-item {
3636 display: flex;
3639 .footnote-item > :not(.nothing) {
3640 margin: 0 0.2em;
3643 .footnote-item > :first-child {
3644 margin-left: -0.2em;
3645 margin-right: 0;
3648 .footnote-back-link a:not(.nothing) {
3649 font-size: 0;
3650 text-decoration: none;
3651 border: none;
3654 .footnote-back-link a:not(.nothing):hover {
3655 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3656 border: none;
3657 text-decoration: none;
3660 .footnote-back-link a::after {
3661 content: '\F106';
3662 font-family: Font Awesome;
3663 font-size: 1rem;
3664 padding: 0.2em;
3665 text-decoration: none;
3666 font-weight: bold;
3669 .footnote-content > :first-child {
3670 margin-top: 0;
3673 /*********/
3674 /* LISTS */
3675 /*********/
3677 li {
3678 margin-bottom: 0.5em;
3681 .body-text ol p,
3682 .body-text ul p {
3683 margin: 0.5em 0;
3686 .body-text ol {
3687 list-style: none;
3688 padding: 0;
3689 counter-reset: ol;
3691 .body-text ol > li {
3692 position: relative;
3693 counter-increment: ol;
3694 padding: 0 0 0 2.5em;
3695 margin: 0.25em 0 0 0;
3697 .body-text ol > li::before {
3698 content: counter(ol) ".";
3699 position: absolute;
3700 width: 2em;
3701 text-align: right;
3702 left: 0;
3704 .body-text ul {
3705 list-style: none;
3706 padding: 0;
3708 .body-text ul:not(.contents-list) > li:empty {
3709 padding-bottom: 1.25em;
3711 .body-text ul:not(.contents-list) > li {
3712 position: relative;
3713 padding: 0 0 0 1.75em;
3714 margin: 0.25em 0 0 0;
3716 .body-text ul:not(.contents-list) > li ul > li {
3717 padding: 0 0 0 2em;
3719 .body-text ul:not(.contents-list) > li::before {
3720 content: "•";
3721 position: absolute;
3722 width: 1.25em;
3723 text-align: right;
3724 left: 0;
3726 .body-text ul:not(.contents-list) > li ul > li::before {
3727 width: 1.5em;
3729 .body-text li > ul:first-child > li {
3730 padding-left: 0;
3732 .body-text li > ul:first-child > li::before {
3733 content: none;
3736 /**************/
3737 /* ERROR PAGE */
3738 /**************/
3740 .error-retry-form {
3741 margin: 0.5em 0;
3744 .error-retry-form input[type="submit"] {
3745 border: 1px solid #aaa;
3746 font-weight: bold;
3747 font-size: 1.125rem;
3748 padding: 0.5em 1.25em;
3751 /**************/
3752 /* ABOUT PAGE */
3753 /**************/
3755 #content.about-page .contents {
3756 margin-top: 0.25em;
3758 #content.about-page .accesskey-table {
3759 border-collapse: collapse;
3760 margin: auto;
3762 #content.about-page .accesskey-table th,
3763 #content.about-page .accesskey-table td {
3764 padding: 2px 6px;
3766 #content.about-page .accesskey-table td:first-child {
3767 padding-right: 1.5em;
3769 #content.about-page .accesskey-table td:last-child {
3770 text-align: center;
3771 font-family: Inconsolata, Menlo, monospace;
3773 #content.about-page h3:nth-of-type(n+2) {
3774 clear: both;
3777 /******************/
3778 /* IMAGES OVERLAY */
3779 /******************/
3781 #images-overlay + #content .post-body img {
3782 visibility: hidden;
3785 #images-overlay div {
3786 position: absolute;
3788 #images-overlay div::after {
3789 content: "Click to enlarge";
3790 display: block;
3791 position: absolute;
3792 margin: auto;
3793 left: 0;
3794 right: 0;
3795 bottom: 10px;
3796 padding: 6px 10px;
3797 font-size: 1.25rem;
3798 background-color: rgba(0,0,0,0.6);
3799 color: #fff;
3800 border-radius: 5px;
3801 opacity: 0.0;
3802 transition: opacity 0.15s ease;
3803 pointer-events: none;
3805 @supports (width: -moz-fit-content) {
3806 #images-overlay div::after {
3807 width: -moz-fit-content;
3810 @supports (width: fit-content) {
3811 #images-overlay div::after {
3812 width: fit-content;
3815 #images-overlay div:hover::after {
3816 opacity: 1.0;
3819 #images-overlay img {
3820 width: 100%;
3823 /***************/
3824 /* IMAGE FOCUS */
3825 /***************/
3827 /*=--------------=*/
3828 /*= Hover styles =*/
3829 /*=--------------=*/
3831 #content img:hover,
3832 #images-overlay img:hover {
3833 filter: drop-shadow(0 0 3px #777);
3834 cursor: zoom-in;
3836 #content img:active,
3837 #images-overlay img:active {
3838 transform: scale(0.975);
3841 /*=---------=*/
3842 /*= Overlay =*/
3843 /*=---------=*/
3845 #image-focus-overlay {
3846 position: fixed;
3847 top: 0;
3848 right: 0;
3849 bottom: 0;
3850 left: 0;
3851 z-index: 2;
3852 display: none;
3853 cursor: zoom-out;
3855 #image-focus-overlay::before {
3856 content: "";
3857 display: block;
3858 position: absolute;
3859 top: 0;
3860 right: 0;
3861 bottom: 0;
3862 left: 0;
3863 background-color: #000;
3864 opacity: 0.5;
3865 z-index: -1;
3867 #image-focus-overlay.engaged {
3868 display: initial;
3871 #image-focus-overlay img {
3872 margin: auto;
3873 position: absolute;
3874 left: 50%;
3875 top: 50%;
3876 transform: translateX(-50%) translateY(-50%);
3879 /*=-------------------=*/
3880 /*= Single-image mode =*/
3881 /*=-------------------=*/
3883 #image-focus-overlay:not(.slideshow) .image-number,
3884 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3885 visibility: hidden;
3888 /*=---------=*/
3889 /*= Caption =*/
3890 /*=---------=*/
3892 #image-focus-overlay .caption {
3893 position: absolute;
3894 bottom: 0.75em;
3895 background-color: rgba(0,0,0,0.7);
3896 left: 9em;
3897 right: 9em;
3898 margin: auto;
3899 max-width: calc(100% - 18em);
3900 text-align: center;
3901 font-size: 1.375em;
3902 border-radius: 8px;
3903 z-index: 1;
3904 transition:
3905 bottom 0.2s ease;
3907 @supports (width: -moz-fit-content) {
3908 #image-focus-overlay .caption {
3909 width: -moz-fit-content;
3912 @supports (width: fit-content) {
3913 #image-focus-overlay .caption {
3914 width: fit-content;
3917 #image-focus-overlay .caption.hidden {
3918 bottom: -5em;
3919 transition:
3920 bottom 0.5s ease;
3923 #image-focus-overlay .caption p {
3924 margin: 1em 1.25em;
3925 color: #fff;
3928 #image-focus-overlay .caption:not(:empty)::before {
3929 content: "";
3930 display: block;
3931 position: absolute;
3932 width: 100vw;
3933 height: calc(100% + 1.5em);
3934 z-index: -1;
3935 top: -0.75em;
3936 left: calc(-50vw + 50%);
3940 /*=--------------=*/
3941 /*= Help overlay =*/
3942 /*=--------------=*/
3944 #image-focus-overlay .help-overlay {
3945 position: absolute;
3946 display: flex;
3947 flex-flow: column;
3948 z-index: 2;
3949 font-size: 1.5rem;
3950 padding: 1em;
3951 border-radius: 10px;
3952 bottom: 1em;
3953 right: 1em;
3954 overflow: hidden;
3955 white-space: nowrap;
3956 color: transparent;
3957 cursor: default;
3958 visibility: hidden;
3959 transition:
3960 visibility 1s ease,
3961 color 1s ease,
3962 background-color 1s ease,
3963 bottom 0.3s ease;
3965 #image-focus-overlay .help-overlay:hover {
3966 max-width: 24em;
3967 max-height: 14em;
3968 background-color: rgba(0,0,0,0.85);
3969 color: #fff;
3970 visibility: visible;
3971 transition:
3972 visibility 0.2s ease 0.3s,
3973 color 0.2s ease 0.3s,
3974 background-color 0.2s ease 0.3s;
3977 #image-focus-overlay .help-overlay::after {
3978 content: "\F128";
3979 font-family: "Font Awesome", "Font Awesome 5 Free";
3980 font-weight: 900;
3981 font-size: 2rem;
3982 position: absolute;
3983 right: 0;
3984 bottom: 0;
3985 padding: 10px;
3986 color: #000;
3987 filter: drop-shadow(0 0 6px #fff);
3988 visibility: visible;
3989 opacity: 0.85;
3990 transition:
3991 visibility 1s ease;
3993 #image-focus-overlay .help-overlay:hover::after {
3994 visibility: hidden;
3995 transition:
3996 visibility 0.2s ease 0.3s;
3999 #image-focus-overlay .help-overlay p {
4000 margin: 0;
4001 text-indent: -2em;
4002 padding-left: 2em;
4003 max-width: 100%;
4004 overflow: hidden;
4006 #image-focus-overlay .help-overlay p + p {
4007 margin: 0.75em 0 0 0;
4009 #image-focus-overlay .help-overlay.hidden {
4010 bottom: -2em;
4013 /*=--------------=*/
4014 /*= Slide number =*/
4015 /*=--------------=*/
4017 #image-focus-overlay .image-number {
4018 position: absolute;
4019 z-index: 2;
4020 font-size: 1.75rem;
4021 left: 1em;
4022 bottom: 1em;
4023 font-weight: 600;
4024 text-shadow:
4025 0 0 3px #fff,
4026 0 0 5px #fff,
4027 0 0 8px #fff,
4028 0 0 13px #fff;
4029 width: 1.5em;
4030 text-align: right;
4031 white-space: nowrap;
4032 transition: bottom 0.3s ease;
4034 #image-focus-overlay .image-number::before {
4035 content: "#";
4036 opacity: 0.3;
4038 #image-focus-overlay .image-number::after {
4039 content: " of " attr(data-number-of-images);
4040 opacity: 0.3;
4042 #image-focus-overlay .image-number:hover::before,
4043 #image-focus-overlay .image-number:hover::after {
4044 opacity: 1.0;
4046 #image-focus-overlay .image-number.hidden {
4047 bottom: -1.25em;
4050 /*=-------------------=*/
4051 /*= Slideshow buttons =*/
4052 /*=-------------------=*/
4054 #image-focus-overlay .slideshow-buttons {
4055 position: absolute;
4056 top: 0;
4057 left: 0;
4058 width: 100%;
4059 height: 100%;
4060 z-index: 1;
4061 display: flex;
4062 justify-content: space-between;
4063 pointer-events: none;
4065 #image-focus-overlay .slideshow-buttons button {
4066 font-family: "Font Awesome", "Font Awesome 5 Free";
4067 font-weight: 900;
4068 font-size: 3rem;
4069 padding: 0.5em;
4070 color: #ddd;
4071 position: relative;
4072 left: 0;
4073 transition:
4074 left 0.3s ease;
4075 pointer-events: auto;
4077 #image-focus-overlay .slideshow-buttons button::selection {
4078 background-color: transparent;
4080 @media only screen and (hover: hover) {
4081 #image-focus-overlay .slideshow-buttons button:hover {
4082 background-color: rgba(0,0,0,0.1);
4083 color: #777;
4086 #image-focus-overlay .slideshow-buttons button:active {
4087 transform: none;
4088 color: #888;
4090 #image-focus-overlay .slideshow-buttons button:disabled {
4091 text-shadow: none;
4092 background-color: transparent;
4093 color: #ddd;
4094 cursor: default;
4095 opacity: 0.4;
4097 #image-focus-overlay .slideshow-button.previous.hidden {
4098 left: -1.75em;
4100 #image-focus-overlay .slideshow-button.next.hidden {
4101 left: 1.75em;
4104 /*=-----------------=*/
4105 /*= Background blur =*/
4106 /*=-----------------=*/
4108 .blurred {
4109 filter: blur(3px);
4112 /**************************/
4113 /* QUALIFIED HYPERLINKING */
4114 /**************************/
4116 #content.no-nav-bars {
4117 margin: 8px auto;
4119 #content.no-nav-bars + #ui-elements-container > * {
4120 padding-top: 8px;
4123 #aux-about-link {
4124 position: fixed;
4125 top: 40px;
4126 left: calc((100% - 900px) / 2 - 69px);
4127 width: 1.5em;
4128 height: 1.5em;
4129 text-align: center;
4130 display: table;
4132 #aux-about-link a {
4133 display: table-cell;
4134 width: 100%;
4135 vertical-align: middle;
4136 font-family: "Font Awesome", "Font Awesome 5 Free";
4137 font-weight: 900;
4138 font-size: 1.25rem;
4139 opacity: 0.4;
4140 z-index: 1;
4143 .qualified-linking {
4144 margin: 0;
4145 position: relative;
4147 .qualified-linking input[type='checkbox'] {
4148 visibility: hidden;
4149 width: 0;
4150 height: 0;
4151 margin: 0;
4153 .qualified-linking label {
4154 font-family: "Font Awesome", "Font Awesome 5 Free";
4155 font-weight: 900;
4156 font-size: 1rem;
4157 padding: 0 0.5em;
4158 display: inline-block;
4159 margin-left: 0.25em;
4161 .qualified-linking label:hover {
4162 cursor: pointer;
4164 .qualified-linking label:active span {
4165 display: inline-block;
4166 transform: scale(0.9);
4168 .qualified-linking label::selection {
4169 background-color: transparent;
4172 .qualified-linking label::after {
4173 content: "";
4174 width: 100vw;
4175 height: 0;
4176 left: 0;
4177 top: 0;
4178 position: fixed;
4179 z-index: 1;
4180 cursor: default;
4182 .qualified-linking input[type='checkbox']:checked + label::after {
4183 height: 100vh;
4186 .qualified-linking-toolbar {
4187 position: absolute;
4188 right: 0.25em;
4189 top: 110%;
4190 z-index: 1;
4192 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4193 display: none;
4195 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4196 display: block;
4198 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4199 top: unset;
4200 bottom: 125%;
4203 .qualified-linking-toolbar a {
4204 display: block;
4205 padding: 0 6px;
4206 margin: 4px;
4208 .qualified-linking-toolbar a::selection {
4209 background-color: transparent;
4212 /*****************/
4213 /* HOVER PREVIEW */
4214 /*****************/
4216 #preview-popup-toggle {
4217 position: absolute;
4218 right: -67px;
4219 bottom: 285px;
4220 cursor: pointer;
4221 color: var(--GW-toggle-widget-color, #888);
4223 #preview-popup-toggle:hover {
4224 color: var(--GW-toggle-widget-hover-color, #444);
4227 #content.preview:not(not) {
4228 padding: 0;
4230 #content.preview > .comment-thread {
4231 margin: 2px;
4233 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4234 border: none;
4236 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4237 padding: 0 8px;
4239 #content.preview.user-page .page-main-heading {
4240 margin-left: 8px;
4242 #content.preview.not(not) .body-text {
4243 margin-left: 8px;
4244 margin-right: 8px;
4246 #content.preview.user-page .user-stats {
4247 margin-right: 32px;
4249 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4250 display: none;
4252 #content.preview button.vote {
4253 display: none;
4255 #content.preview > h1.listing {
4256 max-height: unset;
4258 #content.preview.user-page > .comment-thread {
4259 margin: 0.5em 0;
4261 #content.preview > .post {
4262 margin: 0 18px;
4264 #content.preview .post-title {
4265 margin-top: 0.5em;
4267 #content.preview .post-meta {
4268 line-height: 1.0;
4270 #content.preview .body-text {
4271 font-size: 1em;
4273 #content.preview nav.contents,
4274 #content.preview .lw2-link {
4275 display: none;
4278 .preview-popup {
4279 position: fixed;
4280 transform-origin: top;
4281 top: 10%;
4282 right: 10%;
4283 max-width: 700px;
4284 z-index: 10001;
4285 background-color: #eee;
4286 border: 1px solid #ccc;
4287 box-shadow: 2px 6px 20px -4px #000;
4288 transition: height 0.2s ease, top 0.2s ease;
4290 .popup-hide-button {
4291 position: fixed;
4292 top: 4px;
4293 right: 4px;
4294 color: #000;
4295 background-color: #fff;
4296 width: 28px;
4297 height: 28px;
4298 display: flex;
4299 font-family: "Font Awesome";
4300 font-size: 14px;
4301 line-height: 1;
4302 border: 1px solid #bbb;
4303 border-radius: 28px;
4304 align-items: center;
4305 justify-content: center;
4306 //padding-bottom: 2px;
4307 padding-left: 1.5px;
4308 font-family: "Font Awesome", "Font Awesome 5 Free";
4309 cursor: pointer;
4311 .popup-hide-button:hover::before {
4312 content: "Turn off preview popups";
4313 display: block;
4314 position: absolute;
4315 width: max-content;
4316 right: 32px;
4317 color #000;
4318 background-color: #fff;
4319 border: 1px solid #eee;
4320 border-radius: 2px;
4321 padding: 4px;
4324 /********/
4325 /* MATH */
4326 /********/
4328 .mathjax-block-container {
4329 display: block;
4330 overflow-y: hidden;
4331 border-radius: 6px;
4332 margin: 1em 0 1.5em 0;
4334 .mathjax-inline-container {
4335 max-width: 100%;
4336 overflow-x: auto;
4337 overflow-y: hidden;
4338 position: relative;
4339 padding: 0 1px;
4341 #content .mathjax-inline-container,
4342 #content .mathjax-inline-container .mjpage,
4343 #content .mathjax-inline-container .mjx-chtml,
4344 #content .mathjax-inline-container .mjx-math,
4345 #content .mathjax-inline-container .mjx-mrow {
4346 display: inline;
4347 white-space: normal;
4349 .post .mathjax-inline-container {
4350 line-height: 1;
4352 .comment .mathjax-inline-container {
4353 line-height: 1;
4355 .mathjax-inline-container .mjx-chtml {
4356 padding: 0;
4359 /************/
4360 /* SPOILERS */
4361 /************/
4363 .spoiler {
4364 color: #000; /* invert-override: #666 */
4365 background-color: currentColor;
4366 transition: none;
4367 text-shadow: none;
4368 margin: 1em 0;
4369 box-shadow: 0 0 0 1px currentColor inset;
4370 overflow: auto;
4372 .spoiler:not(:last-child) {
4373 margin-bottom: 0;
4375 #content .spoiler * {
4376 color: inherit;
4377 border: none;
4379 .spoiler:hover {
4380 color: unset;
4381 background-color: unset;
4382 text-shadow: unset;
4383 transition:
4384 color 0.1s ease-out 0.1s,
4385 background-color 0.1s ease-out 0.1s,
4386 text-shadow 0.1s ease-out 0.1s;
4388 .spoiler::selection,
4389 .spoiler ::selection {
4390 color: #fff;
4391 background-color: #000; /* invert-override: #666 */
4393 .spoiler:not(:hover)::selection,
4394 .spoiler:not(:hover) ::selection {
4395 background-color: transparent;
4398 /*= Fix for LessWrong being weird =*/
4400 .spoiler > p {
4401 padding: 0 7px;
4403 .spoiler > p:first-child {
4404 margin-top: 0.25em;
4406 .spoiler > p:last-child {
4407 margin-bottom: 0;
4408 padding-bottom: 0.25em;
4410 #content .spoiler > p:hover ~ p {
4411 color: #000; /* invert-override: #666 */
4412 background-color: currentColor;
4414 .spoiler > p + p {
4415 margin-top: -1em;
4417 .spoiler > p:not(:first-child) {
4418 padding-top: 0.5em;
4420 .spoiler > p:not(:last-child) {
4421 padding-bottom: 0.5em;
4424 .spoiler:not(:hover) pre,
4425 .spoiler:not(:hover) code {
4426 background-color: inherit;
4427 box-shadow: none;
4429 #content .spoiler pre {
4430 border-color: currentColor;
4431 border-style: solid;
4432 border-width: 0 1px;
4433 border-radius: 0;
4436 /*******************/
4437 /* PAGE LIST INDEX */
4438 /*******************/
4440 .page-list-index {
4441 margin: 1em 30px;
4442 line-height: 1.2;
4445 .page-list-index > p {
4446 font-weight: bold;
4447 font-size: 1.2em;
4450 .page-list-index > ul * {
4451 margin: 0;
4454 .page-list-index ul {
4455 padding-left: 1.5em;
4458 .page-list-index li {
4459 margin-top: 0.67em;
4462 .page-list-index li > a {
4463 display: block;
4464 font-size: 1.1em;
4465 font-weight: bold;
4466 margin: 0.33em 0;
4469 .page-list-index li > a:last-child {
4470 margin-bottom: 1em;
4474 /*****************/
4475 /* USER MENTIONS */
4476 /*****************/
4478 .textarea-container .autocomplete-container {
4479 position: absolute;
4480 overflow-y: auto;
4481 font-size: 1.125rem;
4482 cursor: default;
4483 backdrop-filter: blur(2px);
4484 width: 360px;
4486 .textarea-container .autocomplete-container:empty {
4487 display: none;
4490 @media only screen and (min-width: 521px) {
4491 .textarea-container .autocomplete-container.inside {
4492 max-height: calc(100% - 36px);
4493 top: 32px;
4495 .textarea-container .autocomplete-container.outside {
4496 max-height: calc(100% - 28px);
4497 top: 28px;
4498 z-index: 10001;
4501 .textarea-container .autocomplete-container.inside.right {
4502 right: 18px;
4504 .textarea-container .autocomplete-container.inside.left {
4505 left: 18px;
4507 .textarea-container .autocomplete-container.outside.right {
4508 left: calc(100% + 3px);
4510 .textarea-container .autocomplete-container.outside.left {
4511 right: calc(100% + 3px);
4514 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4515 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4517 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4518 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4520 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4521 max-width: calc((300px + 40px * 2) / 2);
4525 .textarea-container .autocomplete-container div {
4526 padding: 2px 8px 0 8px;
4527 white-space: nowrap;
4528 display: flex;
4529 justify-content: flex-end;
4532 .textarea-container .autocomplete-container div span.name {
4533 flex: 1 1 auto;
4534 width: calc(100% - 9em);
4535 overflow: hidden;
4536 text-overflow: ellipsis;
4538 .textarea-container .autocomplete-container div span.name:hover {
4539 overflow: visible;
4540 z-index: 1;
4542 .textarea-container .autocomplete-container div span.age,
4543 .textarea-container .autocomplete-container div span.karma {
4544 font-size: 0.9em;
4545 text-align: right;
4547 .textarea-container .autocomplete-container div span.age {
4548 flex: 0 0 3em;
4550 .textarea-container .autocomplete-container div span.karma {
4551 flex: 0 0 6em;
4555 /***************/
4556 /* COLLECTIONS */
4557 /***************/
4559 h2.sequence-chapter,
4560 h3.sequence-chapter,
4561 h4.sequence-chapter {
4562 text-align: center;
4564 h2.sequence-chapter::before,
4565 h3.sequence-chapter::before,
4566 h4.sequence-chapter::before {
4567 display: block;
4568 clear: both;
4569 margin: 1.5em 0 0.75em 0;
4570 font-style: normal;
4571 font-weight: normal;
4572 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
4574 h2.sequence-chapter::before {
4575 content: '\25A3';
4577 h3.sequence-chapter::before {
4578 content: '\25AA\2004\25AA';
4580 h4.sequence-chapter::before {
4581 content: '\00B7\2004\00B7\2004\00B7';
4585 /*******************/
4586 /* ALIGNMENT FORUM */
4587 /*******************/
4589 #content.alignment-forum-index-page::after {
4590 content: "Alignment Forum";
4591 font-size: 1.5rem;
4592 margin: 0.375em 0 0 -0.375em;
4593 order: -1;
4596 /**********************/
4597 /* FOR NARROW SCREENS */
4598 /**********************/
4600 @media only screen and (max-width: 1440px) {
4601 #hns-date-picker {
4602 right: -81px;
4603 padding: 8px 10px 10px 10px;
4604 bottom: 62px;
4605 display: none;
4607 #hns-date-picker::before {
4608 content: "";
4609 position: absolute;
4610 display: block;
4611 z-index: -1;
4612 height: calc(100% + 2px);
4613 top: -1px;
4614 left: -1px;
4615 width: 50%;
4618 @media only screen and (max-width: 1160px) {
4619 #new-comment-nav-ui {
4620 bottom: 180px;
4621 right: -68px;
4623 #hns-date-picker {
4624 bottom: 200px;
4625 right: -36px;
4627 #hns-date-picker::before {
4628 width: calc(100% - 35px);
4630 #theme-selector button::before {
4631 right: unset;
4632 left: 100%;
4634 #theme-selector:hover::after {
4635 content: "";
4636 display: block;
4637 position: absolute;
4638 width: calc(6em - 7px);
4639 height: calc(100% + 2px);
4640 top: 0;
4641 left: calc(100% + 1px);
4643 #anti-kibitzer-toggle {
4644 bottom: 330px;
4647 @media only screen and (max-width: 1080px) {
4648 #width-selector {
4649 right: -30px;
4651 #width-selector button {
4652 display: block;
4654 #text-size-adjustment-ui {
4655 top: 90px;
4656 right: -30px;
4658 #text-size-adjustment-ui button {
4659 display: block;
4660 position: relative;
4662 #text-size-adjustment-ui button.increase {
4663 bottom: 48px;
4665 #text-size-adjustment-ui button.decrease {
4666 top: 50px;
4668 #theme-selector {
4669 top: 46px;
4670 left: -44px;
4672 #theme-tweaker-toggle {
4673 left: -44px;
4674 top: 2px;
4676 #theme-tweaker-toggle button {
4677 height: 2em;
4678 width: 2em;
4679 padding: 7px;
4681 #quick-nav-ui {
4682 right: -54px;
4684 #new-comment-nav-ui {
4685 right: -55px;
4687 #hns-date-picker {
4688 right: -23px;
4690 #hns-date-picker::before {
4691 width: calc(100% - 22px);
4693 #anti-kibitzer-toggle {
4694 right: -54px;
4697 @media only screen and (max-width: 1040px) {
4698 #quick-nav-ui {
4699 right: -49px;
4701 #new-comment-nav-ui {
4702 right: -50px;
4704 #hns-date-picker {
4705 right: -18px;
4707 #hns-date-picker::before {
4708 width: calc(100% - 17px);
4710 #anti-kibitzer-toggle {
4711 right: -50px;
4714 @media only screen and (max-width: 1020px) {
4715 #quick-nav-ui {
4716 right: -20px;
4718 #new-comment-nav-ui {
4719 right: -21px;
4721 #new-comment-nav-ui .new-comments-count::before {
4722 content: "";
4723 position: absolute;
4724 width: 100%;
4725 height: calc(100% + 45px);
4726 z-index: -1;
4727 left: 0;
4728 top: -22px;
4730 #hns-date-picker {
4731 right: 19px;
4733 #hns-date-picker::before {
4734 width: 100%;
4736 #anti-kibitzer-toggle {
4737 right: -20px;
4740 @media only screen and (max-width: 1000px) {
4741 #theme-selector {
4742 left: -17px;
4743 top: 120px;
4744 padding: 3px 0;
4745 max-width: 32px;
4747 #theme-selector button {
4748 margin: 1px 4px;
4750 #text-size-adjustment-ui {
4751 top: 100px;
4752 right: -12px;
4754 @media not screen and (hover: none) {
4755 #quick-nav-ui,
4756 #new-comment-nav-ui,
4757 #new-comment-nav-ui + #hns-date-picker,
4758 #anti-kibitzer-toggle {
4759 opacity: 0.4;
4761 #quick-nav-ui:hover,
4762 #new-comment-nav-ui:hover,
4763 #new-comment-nav-ui + #hns-date-picker:hover,
4764 #new-comment-nav-ui + #hns-date-picker:focus-within,
4765 #new-comment-nav-ui:hover + #hns-date-picker,
4766 #anti-kibitzer-toggle:hover {
4767 opacity: 1.0;
4770 #theme-tweaker-toggle {
4771 top: 70px;
4772 left: -21px;
4776 /**************/
4777 /* PRINT VIEW */
4778 /**************/
4780 @media only print {
4781 .nav-bar {
4782 visibility: hidden;
4783 max-height: 0;
4784 overflow: hidden;
4786 #ui-elements-container {
4787 display: none;
4789 #images-overlay {
4790 display: none;
4792 #images-overlay + #content .post-body img {
4793 visibility: visible;
4795 .comment-controls {
4796 display: none;
4798 #comments-sort-mode-selector {
4799 display: none;
4801 .comment-minimize-button {
4802 display: none;
4804 .post-meta .qualified-linking,
4805 .post-meta .lw2-link {
4806 display: none;
4808 .comment-meta .permalink,
4809 .comment-meta .lw2-link,
4810 .comment-meta .comment-parent-link {
4811 display: none;
4813 .new-comment::before {
4814 display: none;
4816 #content::before {
4817 box-shadow: none;
4821 /*****************/
4822 /* MOBILE LAYOUT */
4823 /*****************/
4825 /* Hide the mobile elements on desktop screens: */
4827 @media only screen and (max-width: 1160px) {
4828 #post-nav-ui-toggle,
4829 #appearance-adjust-ui-toggle {
4830 display: none;
4834 @media only screen and (max-width: 1160px) {
4836 /*====================*/
4837 /* MOBILE UI ELEMENTS */
4838 /*====================*/
4840 #ui-elements-container {
4841 height: unset !important;
4842 position: unset;
4844 #ui-elements-container > * {
4845 position: fixed;
4846 visibility: hidden;
4847 opacity: 1.0;
4848 z-index: 10000;
4851 #ui-elements-container > div[id$='-ui-toggle'] {
4852 visibility: visible;
4853 display: inline-block;
4854 border-radius: 50%;
4855 z-index: 10000;
4857 #ui-elements-container > div[id$='-ui-toggle'] button,
4858 #theme-selector .theme-selector-close-button {
4859 font-family: Font Awesome;
4860 font-weight: 900;
4861 font-size: 32px;
4862 padding: 10px;
4863 opacity: 0.8;
4864 -webkit-tap-highlight-color: transparent;
4865 transition: transform 0.2s ease;
4867 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4868 #theme-selector .theme-selector-close-button::selection {
4869 background-color: transparent;
4871 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4872 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4873 border: none;
4875 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4876 transform: rotate(-90deg);
4877 opacity: 1.0;
4880 #appearance-adjust-ui-toggle {
4881 bottom: 10px;
4882 left: 10px;
4885 #post-nav-ui-toggle {
4886 bottom: 10px;
4887 right: 10px;
4890 #theme-selector.engaged,
4891 #quick-nav-ui.engaged,
4892 #new-comment-nav-ui.engaged,
4893 #hns-date-picker.engaged {
4894 visibility: visible;
4897 #image-focus-overlay.engaged {
4898 visibility: visible;
4900 #image-focus-overlay .help-overlay {
4901 display: none;
4904 /*=========*/
4905 /* GENERAL */
4906 /*=========*/
4908 @media only screen and (max-width: 900px) {
4909 #content,
4910 #images-overlay,
4911 #ui-elements-container {
4912 min-width: unset;
4913 width: unset;
4915 #content {
4916 padding: 0 4px;
4920 /*================*/
4921 /* THEME SELECTOR */
4922 /*================*/
4924 #theme-selector {
4925 display: flex;
4926 flex-flow: column;
4927 background-color: #fff;
4928 width: calc(100vw - 20px);
4929 max-width: 360px;
4930 padding: 0;
4931 overflow: hidden;
4932 max-height: 0;
4933 transition:
4934 top 0.2s ease,
4935 max-height 0.2s ease,
4936 visibility 0.2s ease;
4937 top: calc(100% + 10px);
4938 left: 0;
4939 right: 0;
4940 margin: auto;
4942 #theme-selector.engaged {
4943 max-height: 1000px;
4944 top: 10px;
4945 z-index: 10001;
4947 #theme-selector::before {
4948 content: "Select theme";
4949 white-space: nowrap;
4950 display: block;
4951 font-weight: 600;
4952 font-size: 2rem;
4953 margin: 0.375em 1em 0.5em 1em;
4954 text-align: center;
4956 #theme-selector button {
4957 width: calc(100% - 0.5em);
4958 background-repeat: no-repeat;
4959 padding: 1em 0.875em;
4960 margin: 1px 4px;
4961 line-height: 1;
4962 height: unset;
4963 position: relative;
4965 #theme-selector button::after {
4966 content: attr(data-theme-description);
4967 color: #000;
4968 white-space: nowrap;
4969 position: absolute;
4970 text-align: left;
4971 left: 2.5em;
4972 top: 1em;
4974 @media only screen and (max-height: 675px) {
4975 #theme-selector button {
4976 padding: 0.875em;
4978 #theme-selector button::after {
4979 top: 0.875em;
4982 #theme-selector .theme-selector-close-button {
4983 position: absolute;
4984 width: unset;
4985 background-color: transparent;
4986 top: 0;
4987 right: 0;
4988 margin: 0;
4989 font-size: 31px;
4991 #theme-selector .theme-selector-close-button,
4992 #theme-selector .theme-selector-close-button:focus,
4993 #theme-selector .theme-selector-close-button:active,
4994 #theme-selector .theme-selector-close-button:hover {
4995 box-shadow: none;
4998 #theme-selector .interaction-blocker-overlay {
4999 position: fixed;
5000 width: 100%;
5001 height: 100%;
5002 left: 0;
5003 top: 0;
5004 z-index: 1;
5005 pointer-events: auto;
5006 display: none;
5008 #theme-selector .interaction-blocker-overlay.enabled {
5009 display: block;
5012 /*=============================*/
5013 /* THEME SELECTOR AUX CONTROLS */
5014 /*=============================*/
5016 #theme-selector .auxiliary-controls-container {
5017 display: flex;
5018 justify-content: space-between;
5019 align-items: stretch;
5020 padding: 0.75em 0 0 0;
5021 margin: 8px;
5022 border-top: 1px solid #000;
5025 /*===============*/
5026 /* THEME TWEAKER */
5027 /*===============*/
5029 #theme-selector #theme-tweaker-toggle {
5030 position: relative;
5031 top: unset;
5032 left: unset;
5033 padding: 0;
5036 #theme-selector #theme-tweaker-toggle button {
5037 display: block;
5038 width: unset;
5039 margin: 0;
5040 transform: none;
5041 position: relative;
5042 background-image: none;
5043 padding: 0.5em 0.625em 0.375em 0.625em;
5044 margin: 0;
5045 opacity: 1.0;
5047 #theme-selector #theme-tweaker-toggle button::after {
5048 content: "Theme tweaker";
5049 font-size: 0.625em;
5050 white-space: nowrap;
5051 text-align: center;
5052 display: block;
5053 padding: 0;
5054 margin: 0.5em 0 0 0;
5055 max-width: unset;
5056 position: static;
5057 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
5058 font-weight: normal;
5060 #theme-selector #theme-tweaker-toggle button::before {
5061 display: none;
5064 #theme-tweaker-ui {
5065 visibility: visible;
5068 /*======================*/
5069 /* ANTI-KIBITZER TOGGLE */
5070 /*======================*/
5072 #theme-selector #anti-kibitzer-toggle {
5073 position: relative;
5074 top: unset;
5075 bottom: unset;
5076 left: unset;
5077 right: unset;
5078 margin: unset;
5079 box-shadow: unset;
5080 border-radius: unset;
5081 overflow: visible;
5084 #theme-selector #anti-kibitzer-toggle button {
5085 width: 48px;
5086 height: 100%;
5087 padding: 0;
5088 margin: 0;
5089 background-image: unset;
5090 border-radius: 10px;
5092 #theme-selector #anti-kibitzer-toggle button::before {
5093 width: 100%;
5094 visibility: unset;
5095 position: static;
5096 padding: 0;
5097 text-align: center;
5099 #theme-selector #anti-kibitzer-toggle button::after {
5100 content: "\F007\2004\F164";
5101 position: static;
5102 color: transparent;
5105 /*====================*/
5106 /* DARK MODE SELECTOR */
5107 /*====================*/
5109 #theme-selector #dark-mode-selector {
5110 position: static;
5111 opacity: 1.0;
5112 outline: none;
5113 border-radius: 10px;
5116 #theme-selector #dark-mode-selector button {
5117 width: 54px;
5118 height: 100%;
5119 margin: 0;
5120 padding: 0 0 0.75em 0;
5121 border-radius: 0;
5122 background-image: none;
5123 box-shadow: none;
5124 border: none;
5125 background-color: transparent;
5127 #theme-selector #dark-mode-selector button::before {
5128 display: none;
5130 #theme-selector #dark-mode-selector button::after {
5131 content: attr(data-name);
5132 visibility: visible;
5133 max-width: unset;
5134 left: 0;
5135 right: 0;
5136 bottom: 0;
5137 top: unset;
5138 text-shadow: none;
5139 font-size: 0.875rem;
5140 color: inherit;
5141 padding: 0 0.25em 0.5em 0.25em;
5142 text-align: center;
5145 /*=================*/
5146 /* QUICKNAV WIDGET */
5147 /*=================*/
5149 #quick-nav-ui {
5150 max-width: 0px;
5151 transition:
5152 max-width 0.2s ease,
5153 visibility 0.2s ease;
5154 display: flex;
5155 right: 72px;
5156 bottom: 14px;
5158 #quick-nav-ui.engaged {
5159 max-width: 1000px;
5161 #quick-nav-ui a {
5162 position: relative;
5163 margin: 2px;
5165 #quick-nav-ui a + a {
5166 margin-left: 5px;
5168 #quick-nav-ui a::after {
5169 position: absolute;
5170 top: calc(100% + 2px);
5171 font-size: 0.375rem;
5172 left: 0;
5173 right: 0;
5174 margin: auto;
5175 line-height: 1;
5176 padding: 2px;
5177 text-transform: uppercase;
5178 z-index: -1;
5180 @supports (width: -moz-fit-content) {
5181 #quick-nav-ui a::after {
5182 width: -moz-fit-content;
5185 @supports (width: fit-content) {
5186 #quick-nav-ui a::after {
5187 width: fit-content;
5190 #quick-nav-ui a[href='#top']::after {
5191 content: "Top";
5192 left: -1px;
5194 #quick-nav-ui a[href='#comments']::after {
5195 content: "Comments";
5197 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
5198 visibility: hidden;
5199 transition: visibility 0.2s ease;
5201 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
5202 visibility: visible;
5204 #quick-nav-ui a[href='#bottom-bar']::after {
5205 content: "Bottom";
5208 /*======================*/
5209 /* NEW COMMENT QUICKNAV */
5210 /*======================*/
5212 #new-comment-nav-ui {
5213 max-width: 0px;
5214 max-height: 0px;
5215 transition:
5216 max-width 0.2s ease,
5217 max-height 0.2s ease,
5218 visibility 0.2s ease;
5219 display: flex;
5220 right: 78px;
5221 bottom: 70px;
5223 #new-comment-nav-ui::before {
5224 content: "New Comments";
5225 position: absolute;
5226 bottom: 100%;
5227 font-size: 0.5625rem;
5228 left: 0;
5229 right: 0;
5230 margin: auto;
5231 padding: 2px 3px;
5232 text-transform: uppercase;
5233 z-index: -1;
5235 @supports (width: -moz-fit-content) {
5236 #new-comment-nav-ui::before {
5237 width: -moz-fit-content;
5240 @supports (width: fit-content) {
5241 #new-comment-nav-ui::before {
5242 width: fit-content;
5245 #new-comment-nav-ui.engaged {
5246 max-width: 1000px;
5247 max-height: 1000px;
5249 #new-comment-nav-ui .new-comment-sequential-nav-button {
5250 top: unset;
5251 bottom: unset;
5252 padding: 2px 7px;
5254 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5255 padding: 2px 7px 3px 7px;
5257 #new-comment-nav-ui .new-comments-count {
5258 padding: 4px 0 5px 0;
5260 #new-comment-nav-ui .new-comments-count::before {
5261 display: none;
5263 #new-comment-nav-ui button::after {
5264 position: absolute;
5265 font-size: 0.375rem;
5266 left: 0;
5267 right: 0;
5268 margin: auto;
5269 line-height: 1;
5270 text-transform: uppercase;
5271 pointer-events: none;
5273 #new-comment-nav-ui button.new-comment-previous::after {
5274 content: "Previous";
5275 bottom: 5px;
5277 #new-comment-nav-ui button.new-comment-next::after {
5278 content: "Next";
5279 top: 7px;
5282 /*=================*/
5283 /* HNS DATE PICKER */
5284 /*=================*/
5286 #hns-date-picker {
5287 max-height: 0px;
5288 bottom: 132px;
5289 right: 62px;
5290 transition:
5291 max-height 0.2s ease,
5292 visibility 0.2s ease;
5294 #hns-date-picker.engaged {
5295 max-height: 1000px;
5297 #hns-date-picker::before {
5298 width: calc(100% + 2px);
5299 border-width: 1px !important;
5302 /*=========*/
5303 /* NAV BAR */
5304 /*=========*/
5306 #bottom-bar {
5307 margin-left: auto;
5308 margin-right: auto;
5309 width: calc(100% - 9rem + 8px);
5310 background: rgba(255,255,255,0.85);
5311 backdrop-filter: blur(1px);
5313 #content.index-page #bottom-bar {
5314 z-index: 10001;
5316 #bottom-bar .nav-item {
5317 box-shadow: none;
5318 position: relative;
5320 #bottom-bar .nav-inner {
5321 font-size: 2rem;
5322 padding: 1rem 0 1.25rem 0;
5323 visibility: hidden;
5324 position: static;
5325 width: 0;
5327 #content #bottom-bar .nav-item .nav-inner::before {
5328 margin: 0;
5329 visibility: visible;
5330 position: absolute;
5331 width: 100%;
5332 height: 100%;
5333 left: 0;
5334 top: 0;
5335 padding: 1rem 0;
5337 #bottom-bar .nav-inner::after {
5338 display: block;
5339 visibility: visible;
5340 text-transform: uppercase;
5341 color: unset;
5342 font-size: 0.75rem;
5343 top: unset;
5344 left: 0;
5345 bottom: 1rem;
5346 width: 100%;
5348 #bottom-bar #nav-item-first .nav-inner::after {
5349 content: "First Page";
5351 #bottom-bar #nav-item-prev .nav-inner::after {
5352 content: "Prev. Page";
5354 #bottom-bar #nav-item-top .nav-inner::after {
5355 content: "Top";
5357 #bottom-bar #nav-item-next .nav-inner::after {
5358 content: "Next Page";
5360 #bottom-bar #nav-item-last .nav-inner::after {
5361 content: "Last Page";
5364 @media only screen and (max-width: 900px) {
5365 .nav-bar-top {
5366 font-size: 0.75rem;
5368 .nav-bar {
5369 width: calc(100% + 8px);
5370 margin: 0 -4px;
5371 overflow: hidden;
5373 .nav-bar .nav-inner::after {
5374 display: none;
5377 #primary-bar .nav-item {
5378 flex: 1 1 100%;
5380 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5381 flex: 1 1 60px;
5383 .nav-bar-top:not(#anything) .nav-inner {
5384 text-transform: uppercase;
5385 padding: 6px;
5387 .nav-bar-top .nav-inner::before {
5388 display: block;
5389 font-family: "Font Awesome";
5390 font-size: 2em;
5391 font-weight: 900;
5394 #nav-item-home .nav-inner::before {
5395 content: "\F015";
5397 #nav-item-featured .nav-inner::before {
5398 content: "\F005";
5400 #nav-item-all .nav-inner::before {
5401 content: "\F069";
5403 #nav-item-meta .nav-inner::before {
5404 content: "\F077";
5406 #nav-item-tags .nav-inner::before {
5407 content: "\F02C";
5409 #nav-item-recent-comments > * > span {
5410 display: none;
5412 #nav-item-recent-comments .nav-inner::before,
5413 #nav-item-alignment-forum-comments .nav-inner::before {
5414 content: "\F036";
5416 #nav-item-alignment-forum .nav-inner::before {
5417 content: "AF";
5418 font-family: Concourse, 'Changa One';
5420 #nav-item-questions .nav-inner::before {
5421 content: "?";
5422 font-family: Concourse, 'Changa One';
5424 #nav-item-events .nav-inner::before {
5425 content: "\F5A0";
5427 #nav-item-shortform .nav-inner::before {
5428 content: "\F2F2";
5430 #nav-item-archive .nav-inner::before {
5431 content: "\F187";
5433 #nav-item-about .nav-inner::before {
5434 content: "\F129";
5436 #nav-item-search {
5437 font-size: 2em;
5438 padding: 10px;
5440 #nav-item-search .nav-inner::before {
5441 content: none;
5443 #nav-item-search .nav-inner {
5444 height: 100%;
5445 display: flex;
5447 #nav-item-search input {
5448 width: 100%;
5449 height: 100%;
5451 #nav-item-search button {
5452 height: 100%;
5453 padding: 5px 5px 5px 10px;
5454 width: 40px;
5455 overflow: visible;
5456 visibility: hidden;
5458 #nav-item-search button::before {
5459 content: "\F002";
5460 font-family: Font Awesome;
5461 font-weight: 900;
5462 visibility: visible;
5464 #nav-item-login {
5465 padding: 0;
5467 #nav-item-login .nav-inner::before {
5468 content: "\F007";
5471 @media only screen and (max-width: 520px) {
5472 .nav-bar-top {
5473 font-size: 0.5rem;
5476 #nav-item-search,
5477 #nav-item-search .nav-inner {
5478 padding: 0;
5480 #nav-item-search button {
5481 width: 31px;
5484 #bottom-bar #nav-item-first .nav-inner::after {
5485 content: "First";
5487 #bottom-bar #nav-item-prev .nav-inner::after {
5488 content: "Prev";
5490 #bottom-bar #nav-item-next .nav-inner::after {
5491 content: "Next";
5493 #bottom-bar #nav-item-last .nav-inner::after {
5494 content: "Last";
5498 /*=================*/
5499 /* INBOX INDICATOR */
5500 /*=================*/
5502 @media only screen and (max-width: 900px) {
5503 #inbox-indicator {
5504 width: 100%;
5505 top: 0;
5506 pointer-events: none;
5508 #inbox-indicator::before {
5509 width: 100%;
5510 font-size: 1rem;
5511 text-align: right;
5512 padding: 1px 6px;
5514 #inbox-indicator.new-messages {
5515 pointer-events: auto;
5517 #inbox-indicator.new-messages::before {
5518 box-shadow: 0 0 8px 1px #f00 inset;
5521 @media only screen and (max-width: 520px) {
5522 #inbox-indicator::before {
5523 font-size: 0.75rem;
5524 padding: 2px 5px;
5527 @media only screen and (max-width: 374px) {
5528 #inbox-indicator::before {
5529 font-size: 0.625rem;
5533 /*===================*/
5534 /* TOP PAGINATION UI */
5535 /*===================*/
5537 #top-nav-bar {
5538 font-size: 1.75rem;
5541 /*==============*/
5542 /* PAGE TOOLBAR */
5543 /*==============*/
5545 @media only screen and (max-width: 900px) {
5546 #content > .page-toolbar {
5547 font-size: 1rem;
5548 margin-right: 0;
5550 #content.user-page > .page-toolbar {
5551 grid-column: 2 / span 2;
5552 margin: 0 0 6px 0;
5555 @media only screen and (max-width: 520px) {
5556 #content:not(.user-page) .page-toolbar {
5557 display: flex;
5558 flex-direction: column-reverse;
5559 text-align: right;
5560 align-self: start;
5561 padding: 4px 0 0 0;
5563 #content.user-page .page-toolbar {
5564 display: flex;
5565 flex-flow: row;
5566 justify-content: flex-end;
5567 padding: 2px 0 0 0;
5569 #content.user-page .page-toolbar > form,
5570 #content.user-page .page-toolbar > .button {
5571 text-align: center;
5572 flex-basis: 25%;
5573 margin-left: 1.5em;
5575 #content.user-page .page-toolbar .button {
5576 text-transform: uppercase;
5577 font-size: 0.625rem;
5579 #content.user-page .page-toolbar .button::before {
5580 font-size: 1.375rem;
5581 display: block;
5582 padding: 0;
5584 #content.user-page .page-toolbar .rss {
5585 white-space: nowrap;
5586 margin: 0 0 0 1.5em;
5588 .page-toolbar > * {
5589 line-height: 1.15;
5590 padding: 6px 0;
5591 margin: 0;
5595 /*==============*/
5596 /* SUBLEVEL NAV */
5597 /*==============*/
5599 @media only screen and (max-width: 900px) {
5600 .sublevel-nav:not(.sort) {
5601 flex-wrap: wrap;
5602 width: calc(100vw - 200px);
5604 .sublevel-nav:not(.sort) .sublevel-item {
5605 margin: 1px;
5606 flex-basis: 7em;
5609 @media only screen and (max-width: 520px) {
5610 .sublevel-nav:not(.sort) .sublevel-item {
5611 font-size: 1rem;
5615 /*=====================*/
5616 /* SORT ORDER SELECTOR */
5617 /*=====================*/
5619 @media only screen and (max-width: 720px) {
5620 #content.index-page > .sublevel-nav.sort {
5621 flex-flow: column;
5622 margin-left: 4px;
5626 /*==========*/
5627 /* ARCHIVES */
5628 /*==========*/
5630 @media only screen and (max-width: 900px) {
5631 div[class^='archive-nav-'] {
5632 flex-wrap: wrap;
5633 justify-content: flex-start;
5635 .archive-nav *[class^='archive-nav-item'],
5636 .archive-nav *[class^='archive-nav-item']:first-child {
5637 padding: 10px;
5638 margin: 2px;
5639 max-width: unset;
5640 flex: 0 1 calc((100% / 8) - 4px);
5642 .archive-nav .archive-nav-item-day,
5643 .archive-nav .archive-nav-item-day:first-child {
5644 flex-basis: calc((100% / 16) - 4px);
5646 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5647 margin-top: 8px;
5648 position: relative;
5650 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5651 content: "";
5652 display: block;
5653 position: absolute;
5654 height: 1px;
5655 width: calc(100% + 8px);
5656 left: -4px;
5657 top: -4px;
5660 @media only screen and (max-width: 720px) {
5661 .archive-nav .archive-nav-item-day,
5662 .archive-nav .archive-nav-item-day:first-child {
5663 flex-basis: calc((100% / 12) - 4px);
5666 @media only screen and (max-width: 520px) {
5667 .archive-nav *[class^='archive-nav-item'],
5668 .archive-nav *[class^='archive-nav-item']:first-child {
5669 flex-basis: calc((100% / 5) - 4px);
5671 .archive-nav .archive-nav-item-day,
5672 .archive-nav .archive-nav-item-day:first-child {
5673 flex-basis: calc((100% / 8) - 4px);
5677 /*==========*/
5678 /* LISTINGS */
5679 /*==========*/
5681 h1.listing {
5682 max-height: unset;
5685 /*============*/
5686 /* USER PAGES */
5687 /*============*/
5689 #content.user-page h1.page-main-heading {
5690 align-self: end;
5692 @media only screen and (max-width: 520px) {
5693 #content.user-page h1.page-main-heading {
5694 overflow: hidden;
5695 text-overflow: ellipsis;
5697 #content.user-page .user-stats .karma-type {
5698 display: block;
5702 /*============*/
5703 /* LOGIN PAGE */
5704 /*============*/
5706 @media only screen and (max-width: 640px) {
5707 .login-container {
5708 flex-flow: column;
5709 margin: 0 auto 3em auto;
5710 max-width: 400px;
5712 .login-container #login-form,
5713 .login-container #signup-form {
5714 padding: 0 1em 1.25em 1em;
5715 grid-row-gap: 0;
5717 .login-container #signup-form {
5718 padding-top: 1em;
5720 .login-container #login-form > *,
5721 .login-container #signup-form > * {
5722 grid-column: 1 / span 2;
5724 .login-container form label {
5725 text-align: left;
5726 padding: 0;
5727 line-height: 1;
5729 .login-container form input {
5730 margin: 0.25em 0 0.75em 0;
5731 padding: 0.5em;
5733 .login-container form h1 {
5734 grid-column: 1 / span 2;
5735 margin: 0 0 0.25em 0;
5737 .login-container form a {
5738 margin: 0.75em 0 0 0;
5740 .login-container .login-tip {
5741 margin: 1.5em 1em 0 1em;
5745 /*==================*/
5746 /* POSTS & COMMENTS */
5747 /*==================*/
5749 @media only screen and (max-width: 720px) {
5750 .body-text ol > li {
5751 padding: 0 0 0 2.25em;
5753 .body-text ol > li::before {
5754 width: 1.75em;
5756 .body-text ul:not(.contents-list) > li,
5757 .body-text ul:not(.contents-list) > li ul > li {
5758 padding: 0 0 0 0.75em;
5760 .body-text ul:not(.contents-list) > li::before,
5761 .body-text ul:not(.contents-list) > li ul > li::before {
5762 width: 0.125em;
5763 margin-left: -0.06em;
5767 /*===========*/
5768 /* POST-META */
5769 /*===========*/
5771 .post-meta {
5772 line-height: 1.9;
5774 @media only screen and (max-width: 720px) {
5775 .post-meta .lw2-link span,
5776 .post-meta .karma-value span,
5777 .post-meta .comment-count span {
5778 display: none;
5780 .post-meta .comment-count::before {
5781 content: "\F086";
5782 font-family: Font Awesome;
5783 font-size: 0.875em;
5784 margin: 0 0.25em 0 0;
5785 font-weight: 400;
5789 /*===================*/
5790 /* POSTS & BODY TEXT */
5791 /*===================*/
5793 @media only screen and (max-width: 900px) {
5794 .post-body,
5795 h1.post-title,
5796 .tag-description,
5797 .sequence-text {
5798 padding: 0 6px;
5801 @media only screen and (max-width: 520px) {
5802 .post-body {
5803 font-size: 1.2rem;
5804 line-height: 1.45;
5806 h1.post-title {
5807 font-size: 2em;
5811 /*==============*/
5812 /* COMMENT-META */
5813 /*==============*/
5815 a.comment-parent-link::after {
5816 display: none;
5818 @media only screen and (max-width: 900px) {
5819 .comment-meta {
5820 padding: 2px 40px 2px 10px;
5823 @media only screen and (max-width: 720px) {
5824 .comment .karma-value span {
5825 display: none;
5827 .comment-meta .comment-parent-link {
5828 opacity: 1.0;
5831 @media only screen and (max-width: 520px) {
5832 .comment-meta {
5833 padding: 2px 24px 2px 10px;
5834 position: relative;
5836 .comment-meta > * {
5837 order: 3;
5839 .comment-meta > :not(.author) {
5840 line-height: 1.8;
5842 .comment-meta .author,
5843 .comment-meta .date {
5844 order: 1;
5846 .comment-meta:before {
5847 content: "";
5848 order: 2;
5849 flex-basis: 100%;
5851 .comment-post-title2 {
5852 display: block;
5853 text-overflow: ellipsis;
5854 overflow: hidden;
5856 .comment-meta .lw2-link {
5857 display: none;
5861 /*=======================*/
5862 /* COMMENTS COMPACT VIEW */
5863 /*=======================*/
5865 /*===========================*/
5866 /* COMMENT THREAD NAVIGATION */
5867 /*===========================*/
5869 @media only screen and (max-width: 900px) {
5870 a.comment-parent-link {
5871 width: 0;
5872 visibility: hidden;
5873 position: relative;
5875 a.comment-parent-link::before {
5876 padding: 0;
5877 font-size: 1em;
5878 left: 0;
5879 top: 0;
5880 line-height: inherit;
5881 visibility: visible;
5882 content: "\F3BF";
5883 transform: scaleX(-1);
5884 width: 2em;
5885 text-align: center;
5888 @media only screen and (max-width: 520px) {
5889 a.comment-parent-link {
5890 position: static;
5892 a.comment-parent-link::before {
5893 padding: 6px;
5894 left: unset;
5895 right: 0;
5896 top: unset;
5897 bottom: 0;
5898 height: 2em;
5902 /*=================================*/
5903 /* COMMENT THREAD MINIMIZE BUTTONS */
5904 /*=================================*/
5906 @media only screen and (max-width: 520px) {
5907 .comment-minimize-button{
5908 right: 2px;
5912 /*===========================*/
5913 /* COMMENTING AND POSTING UI */
5914 /*===========================*/
5916 @media only screen and (max-width: 900px) {
5917 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5918 font-size: 0;
5920 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5921 font-size: 0.9rem;
5923 .comment-controls .cancel-comment-button {
5924 max-width: 1.3em;
5925 overflow: hidden;
5926 margin-right: 0.125em;
5928 .comment-controls .edit-button::before {
5929 font-size: 0.9375rem;
5931 .comments > .comment-controls .cancel-comment-button {
5932 right: 8px;
5934 .comment-controls .cancel-comment-button::before {
5935 font-size: 1.25rem;
5938 @media only screen and (max-width: 520px) {
5939 .comment-controls {
5940 position: static;
5942 .comment-controls:focus-within {
5943 z-index: 10001;
5945 .comment-controls .cancel-comment-button {
5946 right: 10px;
5948 .textarea-container:focus-within textarea {
5949 position: fixed;
5950 top: 0;
5951 left: 2px;
5952 width: calc(100vw - 4px);
5953 height: calc(100% - 100px);
5954 min-height: unset;
5955 max-height: unset;
5956 border-width: 1px;
5957 z-index: 11001;
5959 #content.conversation-page .textarea-container:focus-within textarea {
5960 height: calc(100% - 54px);
5962 #content.conversation-page .textarea-container:focus-within::after {
5963 content: "";
5964 display: block;
5965 width: 100%;
5966 height: 50px;
5967 position: fixed;
5968 left: 0;
5969 bottom: 0;
5970 z-index: 11000;
5972 .textarea-container:focus-within .guiedit-buttons-container {
5973 position: fixed;
5974 z-index: 11002;
5975 left: 0;
5976 width: 100vw;
5977 height: auto;
5978 background-image: none;
5979 padding: 3px 4px 4px 4px;
5980 margin: 0;
5981 text-align: center;
5982 top: auto;
5983 bottom: 0;
5985 .textarea-container:focus-within button.guiedit {
5986 font-size: 0.9375rem;
5987 line-height: 1.5;
5988 height: auto;
5989 width: calc((100% / 10) - 2px);
5990 padding: 10px 1px 8px 0;
5991 position: relative;
5992 margin: 1px;
5994 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5995 z-index: 11011;
5996 position: fixed;
5997 bottom: 7px;
5998 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5999 font-size: 1.25rem;
6000 padding: 5px 5px 6px 5px;
6001 display: block;
6003 .textarea-container:focus-within button.guiedit sup {
6004 position: absolute;
6005 left: calc(50% + 0.65em);
6006 top: calc(50% - 1.3em);
6008 .textarea-container:focus-within .guiedit-mobile-help-button {
6009 left: 8px;
6011 .textarea-container:focus-within .guiedit-mobile-exit-button {
6012 right: 8px;
6014 .guiedit::after {
6015 display: none;
6018 #markdown-hints,
6019 #edit-post-form #markdown-hints {
6020 z-index: 11111;
6021 position: fixed;
6022 top: 40px;
6023 left: 0;
6024 right: 0;
6025 margin: auto;
6026 padding: 4px 0 4px 8px;
6027 width: 310px;
6028 border-width: 3px;
6029 border-style: double;
6030 pointer-events: none;
6032 #markdown-hints::after {
6033 content: "(Type to hide this help box.)";
6034 color: #090;
6035 display: block;
6036 margin: 12px 18px 13px 10px;
6037 padding: 5px;
6038 font-size: 0.9em;
6039 text-align: center;
6043 /*================*/
6044 /* EDIT POST FORM */
6045 /*================*/
6047 @media only screen and (max-width: 520px) {
6048 #edit-post-form {
6049 padding-bottom: 0;
6051 #edit-post-form .post-meta-fields {
6052 grid-template-columns: 4.5em auto auto auto 1fr auto;
6054 #edit-post-form label[for='url'],
6055 #edit-post-form label[for='section'],
6056 #edit-post-form label[for='title'] {
6057 padding-left: 0;
6059 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
6060 white-space: normal;
6061 line-height: 0.9;
6062 top: -1px;
6063 font-family: Font Awesome;
6064 font-weight: 900;
6065 justify-self: start;
6067 #edit-post-form .post-meta-fields .question-checkbox,
6068 #edit-post-form .post-meta-fields .question-checkbox + label {
6069 grid-column: 6;
6070 margin-left: unset;
6072 #edit-post-form .post-meta-fields input[type='radio'] + label {
6073 align-self: start;
6075 #edit-post-form .textarea-container:focus-within textarea {
6076 height: calc(100% - 101px);
6077 min-height: unset;
6080 #markdown-hints-checkbox,
6081 #markdown-hints-checkbox + label {
6082 display: none;
6085 #edit-post-form div:last-child {
6086 clear: both;
6087 overflow: auto;
6089 #edit-post-form input[type='submit'] {
6090 float: none;
6091 display: block;
6092 font-size: 1.5rem;
6093 margin: 1rem auto 1.5rem auto;
6094 padding: 6px 12px 8px 12px;
6097 #edit-post-form .textarea-container .autocomplete-container,
6098 .comment-controls .textarea-container .autocomplete-container {
6099 max-height: calc(50vh - 101px);
6100 position: fixed;
6101 top: 50vh;
6102 left: 4px;
6103 right: 4px;
6104 width: unset;
6105 z-index: 11002;
6109 /*===================*/
6110 /* TABLE OF CONTENTS */
6111 /*===================*/
6113 @media only screen and (max-width: 900px) {
6114 .contents {
6115 float: none;
6116 display: table;
6117 max-width: none;
6118 margin-left: auto;
6119 margin-right: auto;
6121 .contents.collapsed {
6122 overflow: hidden;
6123 display: block;
6126 @media only screen and (max-width: 520px) {
6127 .contents {
6128 max-width: 100%;
6129 margin: 1em auto 0 auto;
6130 display: table;
6132 .contents.collapsed {
6133 margin-bottom: 0;
6134 display: block;
6136 .contents-head {
6137 font-size: 1.2em;
6139 div.post-body .contents ul {
6140 font-size: unset;
6144 /*========================*/
6145 /* QUALIFIED HYPERLINKING */
6146 /*========================*/
6148 @media only screen and (max-width: 520px) {
6149 .qualified-linking-toolbar {
6150 right: -5em;
6154 } /* END MOBILE LAYOUT */
6157 /**************/
6158 /* THEME LESS */
6159 /**************/
6161 /* default-gamma: 2.6 */
6162 /* default-background-gamma: 2.2 */
6164 /*===========*/
6165 /* VARIABLES */
6166 /*===========*/
6168 /* Color scheme.
6170 :root {
6171 --GW-comment-background-color-odd: #f6f6f6;
6172 --GW-comment-background-color-even: #fff;
6173 --GW-comment-background-color-target: #ffd;
6176 /*======*/
6177 /* BASE */
6178 /*======*/
6180 body {
6181 color: #000;
6182 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
6183 font-weight: 300;
6184 background-color: #fff;
6186 #content {
6187 line-height: 1.55;
6188 padding: 30px 20px 0 90px;
6190 #content.comment-thread-page {
6191 padding: 0 0 0 60px;
6193 #ui-elements-container {
6194 visibility: hidden;
6197 /* Compensating for Linux/Windows being terrible. */
6199 .post-meta > *:not(.post-section),
6200 .comment-meta > *,
6201 #primary-bar a,
6202 #bottom-bar a,
6203 #secondary-bar a,
6204 #secondary-bar button,
6205 #nav-item-search > *,
6206 .page-toolbar > *,
6207 #top-nav-bar > *,
6208 .body-text a {
6209 text-shadow: 0 0 0 #aaa;
6212 /* Compensating for Safari being terrible. */
6214 @media not all and (min-resolution:.001dpcm) { @media {
6215 .post-meta > *:not(.post-section),
6216 .comment-meta > *,
6217 #primary-bar a,
6218 #secondary-bar a,
6219 #secondary-bar button,
6220 #bottom-bar a,
6221 #nav-item-search > *,
6222 .page-toolbar > *,
6223 #top-nav-bar > *,
6224 .body-text a {
6225 text-shadow: 0 0 1px #888;
6229 /*=========*/
6230 /* NAV BAR */
6231 /*=========*/
6233 #tertiary-bar {
6234 display: none; /* FIXME */
6237 /*= Layout (desktop) =*/
6239 @media not screen and (hover: none) {
6240 .nav-inner {
6241 font-size: 1.125em;
6242 padding: 0.5rem 0.75rem;
6243 text-align: right;
6245 #secondary-bar .nav-inner {
6246 font-size: 0.875em;
6247 padding: 0.5rem 0.75rem;
6249 #primary-bar,
6250 #secondary-bar {
6251 margin: 0;
6252 flex-flow: column;
6253 line-height: 1;
6255 #primary-bar {
6256 position: fixed;
6257 width: inherit;
6258 min-width: inherit;
6259 max-width: inherit;
6260 left: 0;
6261 right: 0;
6262 margin: auto;
6263 align-items: flex-start;
6264 pointer-events: none;
6266 #primary-bar > * {
6267 position: relative;
6268 right: 47px;
6269 width: 112px;
6270 pointer-events: auto;
6272 #secondary-bar #nav-item-sequences .nav-inner {
6273 font-size: 0.875em;
6274 line-height: unset;
6275 text-overflow: unset;
6277 #nav-item-sequences .nav-inner::before {
6278 content: unset;
6280 #secondary-bar #nav-item-about {
6281 padding-right: unset;
6283 #secondary-bar #nav-item-about .nav-inner {
6284 margin-right: unset;
6286 #nav-item-archive,
6287 #nav-item-sequences,
6288 #nav-item-about {
6289 position: fixed;
6290 transform: translateX(-121px);
6291 width: 85px;
6293 #content.comment-thread-page #nav-item-archive,
6294 #content.comment-thread-page #nav-item-sequences,
6295 #content.comment-thread-page #nav-item-about {
6296 transform: translateX(-81px);
6299 #nav-item-home {
6300 padding-top: 0.5em;
6303 #bottom-bar .nav-inner {
6304 text-align: center;
6305 padding: 0.75em;
6309 /*= Styling =*/
6311 #bottom-bar .nav-item a::before {
6312 font-weight: 300;
6315 .nav-bar a,
6316 .nav-bar a:visited {
6317 color: #acd2af;
6319 .nav-bar a:hover {
6320 color: #79a97e;
6323 /* Accesskey hints */
6325 .nav-inner::after {
6326 display: none;
6329 /* "Tabs" */
6331 .nav-current {
6332 font-weight: 500;
6335 #nav-item-recent-comments .nav-inner span {
6336 display: none;
6338 #nav-item-login {
6339 position: absolute;
6340 top: 0;
6341 right: 0;
6342 padding-right: 1.5em;
6345 /* Search tab */
6347 #nav-item-search {
6348 position: absolute;
6349 top: 0;
6350 left: 4.75em;
6351 width: 400px;
6353 #nav-item-search .nav-inner {
6354 padding: 1px;
6355 display: flex;
6357 #nav-item-search form::before {
6358 font-size: 1.125em;
6359 color: #e6e6e6;
6360 font-weight: 400;
6361 padding: 5px;
6362 transition: color 0.15s ease;
6364 #nav-item-search form:focus-within::before {
6365 color: #92c396;
6367 #nav-item-search button {
6368 border: none;
6369 font-weight: 300;
6370 padding: 6px;
6371 height: 23px;
6373 #nav-item-search form:not(:focus-within) button:not(:hover) {
6374 color: #ddd;
6376 #nav-item-search input {
6377 width: unset;
6378 flex: 1 0 auto;
6379 font-family: Inconsolata, monospace;
6380 padding: 2px 1px;
6381 margin: 0 0 0 2px;
6383 #nav-item-search input::placeholder {
6384 color: #d00;
6385 font-weight: normal;
6388 /* Inbox indicator */
6390 #inbox-indicator::before {
6391 color: #eaeaea;
6392 top: 3px;
6393 font-size: 1.125em;
6396 /* Decorative bottom bar */
6398 #bottom-bar.decorative {
6399 margin-top: 0.25em;
6401 #bottom-bar.decorative::before,
6402 #bottom-bar.decorative::after {
6403 content: "GW";
6404 display: block;
6405 text-align: center;
6406 padding: 0.25em 0 1em 0;
6408 #bottom-bar.decorative::before {
6409 width: 100%;
6410 color: transparent;
6411 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
6412 background-repeat: repeat-x;
6413 background-position: center 35%;
6414 margin: 0 30px;
6415 filter: opacity(0.5);
6417 #bottom-bar.decorative::after {
6418 color: #eee;
6419 position: absolute;
6420 left: 0;
6421 right: 0;
6422 margin: auto;
6423 background-color: #fff;
6424 padding-right: 4px;
6425 padding-left: 4px;
6427 @supports (width: -moz-fit-content) {
6428 #bottom-bar.decorative::after {
6429 width: -moz-fit-content;
6432 @supports (width: fit-content) {
6433 #bottom-bar.decorative::after {
6434 width: fit-content;
6438 /*= Top pagination UI hover tooltips =*/
6440 #top-nav-bar a::after,
6441 #bottom-bar a::after {
6442 color: #000;
6445 /*==============*/
6446 /* PAGE TOOLBAR */
6447 /*==============*/
6449 .page-toolbar {
6450 padding: 0 0 0 0;
6451 margin: 0;
6452 position: fixed;
6453 width: 120px;
6455 .page-toolbar > * {
6456 display: block;
6457 text-align: right;
6458 line-height: 1;
6459 padding: 0.5rem 0.75rem;
6460 position: relative;
6461 right: 56px;
6463 @media not screen and (hover: none) {
6464 .page-toolbar {
6465 width: inherit;
6466 min-width: inherit;
6467 max-width: inherit;
6468 left: 0;
6469 right: 0;
6470 margin-right: unset;
6471 margin: auto;
6472 align-items: flex-start;
6473 pointer-events: none;
6475 .page-toolbar > * {
6476 right: 47px;
6477 width: 112px;
6478 margin-left: unset;
6479 pointer-events: auto;
6483 .page-toolbar button {
6484 padding: 0;
6487 .page-toolbar .button::before {
6488 font-size: 0.875em;
6489 font-weight: 400;
6492 .new-private-message {
6493 white-space: normal;
6494 line-height: 1.15;
6496 .new-private-message::before {
6497 opacity: 0.7;
6500 .logout-button {
6501 color: #d33;
6502 font-weight: 300;
6505 /*===================*/
6506 /* TOP PAGINATION UI */
6507 /*===================*/
6509 #top-nav-bar {
6510 justify-content: flex-start;
6511 padding: 1em 0 0.25em 0;
6512 font-size: 1em;
6513 margin: 0 0 0 -4px;
6514 grid-column: 1;
6516 #top-nav-bar .page-number {
6517 line-height: 1.5;
6519 #top-nav-bar .page-number span {
6520 display: none;
6522 #top-nav-bar a::before {
6523 font-weight: 400;
6525 #top-nav-bar a.disabled {
6526 visibility: visible;
6527 opacity: 0.4;
6530 #content.user-page > #top-nav-bar {
6531 justify-content: center;
6532 grid-column: 2;
6533 padding: 0;
6535 .archive-nav + #top-nav-bar {
6536 margin: 0.5em 0 0 -4px;
6537 padding: 0 0 0.25em 0;
6540 /*==============*/
6541 /* SUBLEVEL NAV */
6542 /*==============*/
6544 .sublevel-nav .sublevel-item {
6545 color: #92c396;
6546 padding: 4px 10px 1px 10px;
6547 background-color: #fff;
6549 .sublevel-nav .sublevel-item:hover,
6550 .sublevel-nav .sublevel-item.selected {
6551 background-color: #c4dbc4;
6552 color: #fff;
6554 .sublevel-nav .sublevel-item:not(.selected):active {
6555 background-color: #92c396;
6558 .sublevel-nav:not(.sort) .sublevel-item {
6559 border-style: solid;
6560 border-color: #c4dbc4;
6561 border-width: 1px 0 1px 1px;
6563 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6564 border-radius: 8px 0 0 8px;
6566 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6567 border-width: 1px;
6568 border-radius: 0 8px 8px 0;
6571 /*=====================*/
6572 /* SORT ORDER SELECTOR */
6573 /*=====================*/
6574 #content.index-page .sublevel-nav.sort {
6575 grid-row: 2;
6576 grid-column: 3;
6577 justify-self: right;
6580 .sublevel-nav.sort {
6581 padding: 18px 0 0 0;
6582 border-radius: 8px;
6583 pointer-events: none;
6585 .sublevel-nav.sort .sublevel-item {
6586 padding: 7px 8px 3px 7px;
6587 text-transform: uppercase;
6588 pointer-events: auto;
6590 .sublevel-nav.sort::before {
6591 text-transform: uppercase;
6592 color: #444;
6593 z-index: 1;
6595 .sublevel-nav.sort::after {
6596 content: "";
6597 position: absolute;
6598 display: block;
6599 top: 0;
6600 left: 0;
6601 width: 100%;
6602 height: 100%;
6603 border-radius: 6px;
6604 box-shadow:
6605 0 18px 0 0 #fff inset,
6606 0 0 0 1px #c4dbc4 inset,
6607 0 18px 0 1px #c4dbc4 inset,
6608 0 0 0 4px #fff;
6611 /*============*/
6612 /* UI TOGGLES */
6613 /*============*/
6615 @media not screen and (hover: none) {
6616 #site-nav-ui-toggle,
6617 #post-nav-ui-toggle,
6618 #appearance-adjust-ui-toggle {
6619 visibility: visible;
6620 position: absolute;
6621 display: inline-block;
6622 border-radius: 50%;
6623 z-index: 1;
6625 #site-nav-ui-toggle button,
6626 #post-nav-ui-toggle button,
6627 #appearance-adjust-ui-toggle button {
6628 font-family: Font Awesome;
6629 font-weight: 400;
6630 font-size: 32px;
6631 padding: 10px;
6632 opacity: 0.4;
6633 -webkit-tap-highlight-color: transparent;
6634 transition:
6635 transform 0.2s ease,
6636 opacity 0.15s ease;
6638 #site-nav-ui-toggle button:hover,
6639 #post-nav-ui-toggle button:hover,
6640 #appearance-adjust-ui-toggle button:hover {
6641 opacity: 1.0;
6643 #site-nav-ui-toggle button::selection,
6644 #post-nav-ui-toggle button::selection,
6645 #appearance-adjust-ui-toggle button::selection {
6646 background-color: transparent;
6648 #site-nav-ui-toggle button::-moz-focus-inner,
6649 #post-nav-ui-toggle button::-moz-focus-inner,
6650 #appearance-adjust-ui-toggle button::-moz-focus-inner {
6651 border: none;
6653 #post-nav-ui-toggle.highlighted,
6654 #appearance-adjust-ui-toggle.highlighted {
6655 transform: scale(1.33);
6657 #site-nav-ui-toggle.highlighted button {
6658 transform: scale(1.33);
6660 #site-nav-ui-toggle.highlighted button,
6661 #post-nav-ui-toggle.highlighted button,
6662 #appearance-adjust-ui-toggle.highlighted button {
6663 opacity: 1.0;
6664 text-shadow:
6665 0 0 1px #fff,
6666 0 0 1px #64ff4c,
6667 0 0 3px #64ff4c,
6668 0 0 5px #64ff4c,
6669 0 0 8px #64ff4c;
6672 #site-nav-ui-toggle {
6673 top: 0;
6674 left: 12px;
6675 pointer-events: none;
6677 #site-nav-ui-toggle button {
6678 font-weight: 300;
6679 position: relative;
6680 left: 0;
6681 transition:
6682 left 0.2s ease,
6683 opacity 0.2s ease,
6684 width 0.2s ease;
6685 pointer-events: auto;
6687 #site-nav-ui-toggle button:active {
6688 transform: none;
6690 #site-nav-ui-toggle button.engaged {
6691 left: -92px;
6692 width: 2.125rem;
6693 overflow: hidden;
6695 #site-nav-ui-toggle button.engaged::before {
6696 content: "\F00D";
6697 padding: 0 0.25em 0 0;
6700 #primary-bar,
6701 #secondary-bar #nav-item-archive,
6702 #secondary-bar #nav-item-sequences,
6703 #secondary-bar #nav-item-about,
6704 .page-toolbar {
6705 visibility: hidden;
6706 top: 0;
6707 max-height: 0px;
6709 #primary-bar,
6710 #secondary-bar #nav-item-archive,
6711 #secondary-bar #nav-item-sequences,
6712 #secondary-bar #nav-item-about,
6713 .page-toolbar {
6714 opacity: 0.0;
6716 #primary-bar,
6717 #secondary-bar #nav-item-archive,
6718 #secondary-bar #nav-item-sequences,
6719 #secondary-bar #nav-item-about,
6720 .page-toolbar {
6721 transition:
6722 top 0.2s ease,
6723 max-height 0.2s ease,
6724 visibility 0.2s ease,
6725 opacity 0.2s ease;
6727 #nav-item-search,
6728 #nav-item-login {
6729 visibility: visible;
6731 #primary-bar.engaged,
6732 #secondary-bar.engaged #nav-item-archive,
6733 #secondary-bar.engaged #nav-item-sequences,
6734 #secondary-bar.engaged #nav-item-about,
6735 .page-toolbar.engaged {
6736 visibility: visible;
6737 max-height: 1000px;
6739 #primary-bar.engaged,
6740 #secondary-bar.engaged #nav-item-archive,
6741 #secondary-bar.engaged #nav-item-sequences,
6742 #secondary-bar.engaged #nav-item-about,
6743 .page-toolbar.engaged {
6744 opacity: 1.0;
6746 #primary-bar.engaged {
6747 top: 0;
6749 #secondary-bar.engaged #nav-item-archive {
6750 top: 196px;
6752 #secondary-bar.engaged #nav-item-sequences {
6753 top: 230px;
6755 #secondary-bar.engaged #nav-item-about {
6756 top: 264px;
6758 .page-toolbar.engaged {
6759 top: 314px;
6762 #post-nav-ui-toggle {
6763 bottom: 10px;
6764 right: -30px;
6766 #content.comment-thread-page ~ #ui-elements-container #post-nav-ui-toggle {
6767 right: -54px;
6769 #post-nav-ui-toggle button.engaged {
6770 transform: rotate(-90deg);
6773 #quick-nav-ui,
6774 #new-comment-nav-ui,
6775 #hns-date-picker {
6776 bottom: 0;
6777 max-height: 0px;
6778 opacity: 0.0;
6779 transition:
6780 bottom 0.2s ease,
6781 max-height 0.2s ease,
6782 opacity 0.2s ease,
6783 visibility 0.2s ease;
6785 #quick-nav-ui.engaged,
6786 #new-comment-nav-ui.engaged,
6787 #hns-date-picker.engaged {
6788 visibility: visible;
6789 max-height: 1000px;
6790 opacity: 1.0;
6793 #quick-nav-ui {
6794 right: -24px;
6796 #content.post-page ~ #ui-elements-container #quick-nav-ui {
6797 right: -48px;
6799 #quick-nav-ui.engaged {
6800 bottom: 64px;
6802 #quick-nav-ui a {
6803 font-weight: 400;
6806 #new-comment-nav-ui {
6807 right: -49px;
6809 #new-comment-nav-ui.engaged {
6810 bottom: 216px;
6813 #hns-date-picker {
6814 right: -186px;
6816 #hns-date-picker.engaged {
6817 bottom: 247px;
6819 @media only screen and (max-width: 1440px) {
6820 #hns-date-picker {
6821 background-color: rgba(255,255,255,0.95);
6822 right: -18px;
6824 #hns-date-picker::before {
6825 display: none;
6827 #hns-date-picker input {
6828 background-color: #fff;
6830 #hns-date-picker span {
6831 text-shadow:
6832 0 0 1px #fff,
6833 0 0 3px #fff,
6834 0 0 5px #fff,
6835 0 0 8px #fff,
6836 0 0 13px #fff,
6837 0 0 21px #fff;
6839 #hns-date-picker.engaged {
6840 bottom: 238px;
6844 #appearance-adjust-ui-toggle {
6845 bottom: 10px;
6846 left: 10px;
6848 #appearance-adjust-ui-toggle button.engaged {
6849 transform: rotate(-90deg);
6852 #comments-view-mode-selector,
6853 #theme-selector,
6854 #width-selector,
6855 #dark-mode-selector,
6856 #text-size-adjustment-ui,
6857 #theme-tweaker-toggle {
6858 pointer-events: none;
6859 visibility: visible;
6860 opacity: 0.0;
6861 transition:
6862 opacity 0.35s ease;
6864 @supports (width: -moz-fit-content) {
6865 #theme-tweaker-toggle {
6866 width: -moz-fit-content;
6869 @supports (width: fit-content) {
6870 #theme-tweaker-toggle {
6871 width: fit-content;
6874 #comments-view-mode-selector::after,
6875 #theme-selector::after,
6876 #theme-selector::before,
6877 #width-selector::after,
6878 #dark-mode-selector::after,
6879 #text-size-adjustment-ui::after {
6880 content: "";
6881 background-color: #fff;
6882 display: block;
6883 position: absolute;
6884 width: 100%;
6885 height: 100%;
6886 top: 0;
6887 left: 0;
6889 #dark-mode-selector::after {
6890 width: calc(100% + 2px);
6891 height: calc(100% + 2px);
6892 top: -1px;
6893 left: -1px;
6895 #comments-view-mode-selector.engaged,
6896 #theme-selector.engaged,
6897 #width-selector.engaged,
6898 #dark-mode-selector.engaged,
6899 #text-size-adjustment-ui.engaged,
6900 #theme-tweaker-toggle.engaged {
6901 pointer-events: auto;
6902 opacity: 1.0;
6905 #comments-view-mode-selector {
6906 left: -45px;
6907 top: calc(100% - 180px);
6909 #comments-view-mode-selector::after {
6910 max-height: 1000px;
6911 transition:
6912 max-height 0.2s ease;
6914 #comments-view-mode-selector.engaged::after {
6915 max-height: 0px;
6918 #theme-selector {
6919 display: block;
6920 left: 16px;
6921 top: calc(100% - 316px);
6922 opacity: 1.0;
6923 visibility: hidden;
6924 transition:
6925 visibility 0.2s ease;
6927 #theme-selector.engaged {
6928 visibility: visible;
6930 #theme-selector::after,
6931 #theme-selector::before {
6932 top: -50px;
6933 height: calc(100% + 60px);
6934 max-height: 300px;
6935 transition:
6936 max-height 0.2s ease;
6937 z-index: 1;
6939 #theme-selector.engaged::after,
6940 #theme-selector.engaged::before {
6941 max-height: 0px;
6943 #theme-selector::before {
6944 z-index: 0;
6947 #width-selector {
6948 display: table;
6949 left: -68px;
6950 top: calc(100% - 48px);
6952 #width-selector::after {
6953 max-width: 100px;
6954 transition:
6955 max-width 0.15s ease;
6957 #width-selector.engaged::after {
6958 max-width: 0px;
6961 @supports (width: -moz-fit-content) {
6962 #dark-mode-selector {
6963 width: -moz-fit-content;
6966 @supports (width: fit-content) {
6967 #dark-mode-selector {
6968 width: fit-content;
6971 #dark-mode-selector {
6972 left: -67px;
6973 top: calc(100% - 120px);
6975 #dark-mode-selector::after {
6976 max-width: 1000px;
6977 max-height: 1000px;
6978 transition:
6979 max-width 0.2s ease,
6980 max-height 0.2s ease;
6982 #dark-mode-selector.engaged::after {
6983 max-width: 0px;
6984 max-height: 0px;
6987 #text-size-adjustment-ui {
6988 left: -67px;
6989 top: calc(100% - 80px);
6991 #text-size-adjustment-ui::after {
6992 max-width: 1000px;
6993 max-height: 1000px;
6994 transition:
6995 max-width 0.2s ease,
6996 max-height 0.2s ease;
6998 #text-size-adjustment-ui.engaged::after {
6999 max-width: 0px;
7000 max-height: 0px;
7003 #theme-tweaker-toggle {
7004 left: 19px;
7005 top: calc(100% - 356px);
7006 visibility: hidden;
7007 transition:
7008 visibility 0.5s ease-out;
7010 #theme-tweaker-toggle.engaged {
7011 visibility: visible;
7013 @supports (-moz-appearance: none) {
7014 #theme-tweaker-toggle {
7015 left: 18px;
7018 #theme-tweaker-toggle button {
7019 font-weight: 400;
7022 #theme-tweaker-ui {
7023 visibility: visible;
7027 /*================*/
7028 /* WIDTH SELECTOR */
7029 /*================*/
7031 #width-selector button {
7032 box-shadow:
7033 0 0 0 4px #fff inset,
7034 0 0 0 5px #aaa inset;
7036 #width-selector button:hover,
7037 #width-selector button.selected {
7038 box-shadow:
7039 0 0 0 1px #fff inset,
7040 0 0 0 2px #aaa inset,
7041 0 0 0 4px #fff inset,
7042 0 0 0 5px #aaa inset;
7045 /*================*/
7046 /* THEME SELECTOR */
7047 /*================*/
7049 #theme-selector button {
7050 box-shadow:
7051 0 0 0 4px #fff inset,
7052 0 0 0 5px #999 inset;
7054 #theme-selector button:hover,
7055 #theme-selector button.selected {
7056 box-shadow:
7057 0 0 0 1px #fff inset,
7058 0 0 0 2px #999 inset,
7059 0 0 0 4px #fff inset,
7060 0 0 0 5px #999 inset;
7063 #theme-selector button::before {
7064 font-size: 0.9375em;
7065 font-weight: 300;
7066 padding: 6px;
7067 color: #aaa;
7068 background-color: #fff;
7070 #theme-selector button:hover::before,
7071 #theme-selector button.selected::before {
7072 color: #000;
7075 /*======================*/
7076 /* THEME TWEAKER TOGGLE */
7077 /*======================*/
7079 #theme-tweaker-toggle button {
7080 color: #777;
7083 /*=================*/
7084 /* QUICKNAV WIDGET */
7085 /*=================*/
7087 #quick-nav-ui a {
7088 color: #acd2af;
7089 border-radius: 4px;
7090 text-decoration: none;
7091 transition:
7092 color 0.15s ease,
7093 box-shadow 0.15s ease-out;
7095 #quick-nav-ui a[href='#bottom-bar'] {
7096 line-height: 1.8;
7098 #quick-nav-ui a:active {
7099 transform: scale(0.9);
7101 #quick-nav-ui a[href='#comments'].no-comments {
7102 opacity: 0.4;
7103 color: #ddd;
7105 @media only screen and (hover: hover) {
7106 #quick-nav-ui a:hover {
7107 color: #79a97e;
7108 box-shadow:
7109 0 0 0 1px rgba(121, 169, 126, 0.3),
7110 0 0 0 2px #fff;
7112 #quick-nav-ui a:focus:not(:hover) {
7113 transform: none;
7114 text-shadow: none;
7118 /*======================*/
7119 /* NEW COMMENT QUICKNAV */
7120 /*======================*/
7122 #new-comment-nav-ui .new-comments-count {
7123 color: #888;
7124 text-shadow: 0.5px 0.5px 0 #fff;
7125 top: 2px;
7127 #new-comment-nav-ui .new-comments-count::after {
7128 color: #777;
7130 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7131 color: #e6e6e6;
7134 /*=================*/
7135 /* HNS DATE PICKER */
7136 /*=================*/
7138 #hns-date-picker span {
7139 color: #999;
7140 font-weight: 400;
7142 #hns-date-picker input {
7143 border: 1px solid #ddd;
7144 color: #999;
7145 padding: 3px 3px 0 3px;
7147 #hns-date-picker input:focus {
7148 color: #000;
7151 /*======================*/
7152 /* ANTI-KIBITZER TOGGLE */
7153 /*======================*/
7155 #anti-kibitzer-toggle {
7156 bottom: unset;
7157 top: 30px;
7158 visibility: visible;
7159 right: -48px;
7161 #anti-kibitzer-toggle button::before {
7162 font-weight: 300;
7164 #anti-kibitzer-toggle button::before,
7165 #anti-kibitzer-toggle button::after {
7166 opacity: 0.2;
7168 #anti-kibitzer-toggle button:hover::before,
7169 #anti-kibitzer-toggle button:hover::after {
7170 opacity: 1.0;
7173 /*====================*/
7174 /* DARK MODE SELECTOR */
7175 /*====================*/
7177 #dark-mode-selector {
7178 outline: 1px solid #92c396;
7180 #dark-mode-selector button {
7181 color: #92c396;
7183 #dark-mode-selector button.selected {
7184 background-color: #92c396;
7185 color: #fff;
7187 #dark-mode-selector button:not(.selected) + button:not(.selected) {
7188 box-shadow: 1px 0 0 0 #92c396 inset;
7190 #dark-mode-selector button:disabled:hover {
7191 text-shadow: none;
7193 #dark-mode-selector button::after {
7194 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
7195 color: #92c396;
7196 text-shadow: none;
7197 top: -36px;
7200 /*======================*/
7201 /* TEXT SIZE ADJUSTMENT */
7202 /*======================*/
7204 #text-size-adjustment-ui button {
7205 font-weight: 400;
7208 /*=============================*/
7209 /* COMMENTS VIEW MODE SELECTOR */
7210 /*=============================*/
7212 #comments-view-mode-selector a {
7213 color: #acd2af;
7214 opacity: 0.5;
7217 /*===============*/
7218 /* KEYBOARD HELP */
7219 /*===============*/
7221 #keyboard-help-overlay {
7222 font-weight: 400;
7224 #keyboard-help-overlay .keyboard-help-container h1 {
7225 padding: 15px 20px 5px 20px;
7227 #nav-item-about button.open-keyboard-help {
7228 font-size: 0.875em;
7229 left: 0;
7230 top: -1px;
7233 /*==========*/
7234 /* ARCHIVES */
7235 /*==========*/
7237 .archive-nav {
7238 border: 1px solid transparent;
7239 margin: 1.25em 0 0 0;
7240 padding: 0;
7242 .archive-nav *[class^='archive-nav-item'] {
7243 color: #92c396;
7244 border-style: solid;
7245 border-color: #c4dbc4;
7246 border-width: 1px 0 1px 1px;
7248 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
7249 border-top-width: 0;
7250 border-bottom-width: 0;
7252 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
7253 border-bottom-width: 1px;
7255 .archive-nav *[class^='archive-nav-item']:last-child {
7256 border-right-width: 1px;
7258 .archive-nav a:hover,
7259 .archive-nav span[class^='archive-nav-item'] {
7260 background-color: #c4dbc4;
7261 color: #fff;
7264 .archive-nav a:active {
7265 background-color: #92c396;
7268 /*==========*/
7269 /* LISTINGS */
7270 /*==========*/
7272 h1.listing,
7273 #content.search-results-page h1.listing {
7274 margin: 0.7em 20px 0.1em 0;
7275 max-width: calc(100% - 20px);
7276 font-family: 'Caecilia', 'Helvetica', sans-serif, 'Font Awesome';
7277 font-size: 1.25rem;
7278 line-height: 1.2;
7281 h1.listing .link-post-link {
7282 color: #bbb;
7283 font-weight: 400;
7284 font-size: 0.8125em;
7285 top: 3px;
7287 h1.listing .post-title-link {
7288 font-weight: 300;
7289 text-shadow: 0 0 0 #444;
7290 color: #000;
7292 @supports (-moz-appearance: none) {
7293 h1.listing .post-title-link {
7294 text-shadow: none;
7297 @media not all and (min-resolution:.001dpcm) { @media {
7298 h1.listing .post-title-link {
7299 color: #000;
7303 @media only screen and (hover: hover) {
7304 h1.listing a:hover,
7305 h1.listing a:focus {
7306 color: #92c396;
7307 background-color: rgba(255,255,255,0.85);
7309 h1.listing:focus-within::before {
7310 color: #79a97e;
7311 font-weight: 400;
7312 left: -0.625em;
7314 h1.listing .link-post-link:hover {
7315 color: #79a97e;
7317 h1.listing .link-post-link:focus {
7318 color: #a0d3a2;
7319 text-decoration: none;
7320 border-bottom: 2px dotted #a0d3a2;
7324 h1.listing .edit-post-link {
7325 padding: 5px 3px 24px 0.5em;
7326 top: 0;
7327 right: 0;
7329 h1.listing .edit-post-link:hover {
7330 text-decoration: none;
7332 #content.user-page h1.listing .edit-post-link {
7333 background-color: #fff;
7336 /*======*/
7337 /* SPAM */
7338 /*======*/
7340 h1.listing.spam {
7341 opacity: 0.15;
7343 h1.listing.spam + .post-meta {
7344 opacity: 0.35;
7346 h1.listing.spam:hover,
7347 h1.listing.spam + .post-meta:hover,
7348 h1.listing.spam:hover + .post-meta {
7349 opacity: 1.0;
7352 /*===================*/
7353 /* LISTING POST-META */
7354 /*===================*/
7356 h1.listing + .post-meta {
7357 font-size: 0.875rem;
7358 margin: 0 20px 0 1px;
7361 h1.listing + .post-meta > * {
7362 color: #bbb;
7363 margin: 0 1.25em 0 0;
7365 h1.listing + .post-meta a {
7366 color: #92c396;
7368 h1.listing + .post-meta a:hover {
7369 color: #79a97e;
7371 h1.listing + .post-meta .karma-value {
7372 cursor: default;
7374 h1.listing + .post-meta .lw2-link {
7375 display: none;
7377 h1.listing + .post-meta .post-section {
7378 overflow: visible;
7379 order: 1;
7381 h1.listing + .post-meta .post-section::before {
7382 position: relative;
7383 left: unset;
7384 top: -1px;
7387 /*============*/
7388 /* USER PAGES */
7389 /*============*/
7391 #content.user-page h1.page-main-heading,
7392 #content.user-page .user-stats {
7393 grid-row: 1;
7395 #content.user-page #comments-list-mode-selector,
7396 #content.user-page .sublevel-nav.sort {
7397 grid-row: 2 / span 2;
7399 #content.user-page .sublevel-nav {
7400 grid-row: 2;
7401 margin-bottom: 1em;
7403 #content.user-page #top-nav-bar {
7404 grid-row: 3;
7407 #content.user-page h1.page-main-heading,
7408 #content.conversation-page h1.page-main-heading {
7409 font-family: 'Caecilia', 'Helvetica', sans-serif;
7410 font-weight: normal;
7411 margin: 0.5em 0 0 0;
7413 #content.user-page h1.page-main-heading {
7414 border-bottom: 1px solid #e6e6e6;
7415 line-height: 1;
7418 #content.user-page h1.listing,
7419 #content.user-page h1.listing + .post-meta {
7420 border-color: #ddd;
7421 border-style: solid;
7423 #content.user-page h1.listing {
7424 max-width: 100%;
7425 padding: 6px 8px 0 8px;
7426 border-width: 1px 1px 0 1px;
7427 margin: 1rem 0 0 0;
7429 #content.own-user-page h1.listing,
7430 h1.listing.own-post-listing {
7431 padding-right: 36px;
7433 @media only screen and (hover: hover) {
7434 #content.user-page h1.listing:focus-within::before {
7435 left: -0.625em;
7438 #content.user-page h1.listing + .post-meta {
7439 margin: 0 0 1rem 0;
7440 padding: 12px 8px 3px 8px;
7441 border-width: 0 1px 1px 1px;
7442 line-height: 1;
7445 #content.conversations-user-page h1.listing {
7446 padding: 8px 6px 28px 10px;
7447 font-size: 1.25rem;
7449 #content.conversations-user-page h1.listing + .post-meta {
7450 padding: 4px 10px 0.5em 6px;
7451 margin: 0;
7454 .user-stats .karma-total {
7455 font-weight: 500;
7458 /*===============*/
7459 /* CONVERSATIONS */
7460 /*===============*/
7462 /*============*/
7463 /* LOGIN PAGE */
7464 /*============*/
7466 .login-container form h1 {
7467 font-family: 'Caecilia', 'Helvetica', sans-serif;
7468 font-weight: 300;
7471 .login-container form label {
7472 color: #aaa;
7475 /* “Create account” form */
7477 #signup-form {
7478 border: 1px solid #e4e4e4;
7480 #signup-form input[type='submit'] {
7481 padding: 8px 12px 6px 12px;
7484 /* Log in tip */
7486 .login-container .login-tip {
7487 border: 1px solid #eee;
7490 /* Message box */
7492 .error-box {
7493 border: 1px solid red;
7494 background-color: #faa;
7496 .success-box {
7497 border: 1px solid green;
7498 background-color: #afa;
7501 /*=====================*/
7502 /* PASSWORD RESET PAGE */
7503 /*=====================*/
7505 .reset-password-container input[type='submit'] {
7506 background-color: #e4e4e4;
7507 border: 1px solid #ccc;
7508 font-weight: bold;
7511 /*===================*/
7512 /* TABLE OF CONTENTS */
7513 /*===================*/
7515 .contents {
7516 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
7517 padding-top: 0;
7518 margin-top: 1em;
7519 background-color: #fff;
7521 .body-text .contents ul {
7522 font-size: 0.8125em;
7524 .body-text .contents li::before {
7525 color: #bbb;
7528 .contents .toc-collapse-toggle-button {
7529 color: #ddd;
7530 font-weight: 300;
7531 box-shadow: 0 0 0 1px transparent;
7533 .contents .toc-collapse-toggle-button:hover {
7534 color: #bbb;
7535 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7538 /*==================*/
7539 /* POSTS & COMMENTS */
7540 /*==================*/
7542 .body-text {
7543 font-family: 'Source Serif Pro', 'Helvetica', sans-serif;
7544 text-shadow: none;
7545 font-weight: 400;
7548 /*=======*/
7549 /* POSTS */
7550 /*=======*/
7552 .post {
7553 overflow: visible;
7554 padding: 2em 0 0 0;
7557 .post-body {
7558 font-size: 1.25rem;
7561 h1.post-title {
7562 font-size: 2.75rem;
7563 font-family: 'Caecilia', 'Helvetica', sans-serif;
7564 font-weight: 300;
7565 line-height: 1.1;
7566 margin: 1.375em 0 0.5em 0;
7569 /*=================*/
7570 /* POST NAVIGATION */
7571 /*=================*/
7573 .post-nav-item {
7574 padding: 0 0 0 10px;
7577 @media only screen and (max-width: 900px) {
7578 .post-nav-item {
7579 padding: 0;
7581 .sequence-title {
7582 border-top: 1px solid #ddd;
7583 padding: 0.375em 0.5em 0.125em 0.5em
7585 .post-nav.prev {
7586 border-right: 1px solid #ddd;
7588 .post-nav.next {
7589 border-left: 1px solid #ddd;
7593 /*===========*/
7594 /* POST-META */
7595 /*===========*/
7597 .post-meta .post-section::before,
7598 .comment-meta .alignment-forum {
7599 color: #dfdfdf;
7600 font-weight: 400;
7601 padding: 1px;
7603 .post-meta .post-section.alignment-forum::before {
7604 color: #d6d7ff;
7606 .post .post-meta .post-section::before {
7607 position: relative;
7608 top: -3px;
7611 a.post-section::before {
7612 transition: color 0.15s ease;
7614 a.post-section:hover::before {
7615 color: #79a97e;
7617 a.post-section.alignment-forum:hover::before {
7618 color: #999bc1;
7621 .post-meta > * {
7622 color: #bbb;
7624 .post-meta a,
7625 .post-meta a:visited {
7626 color: #92c396;
7628 .post-meta a:hover {
7629 color: #79a97e;
7631 .post-meta .lw2-link:hover {
7632 opacity: 1;
7635 .post .top-post-meta {
7636 flex-flow: column;
7637 position: relative;
7639 .post .top-post-meta .karma,
7640 .post .top-post-meta .author,
7641 .post .top-post-meta .qualified-linking {
7642 margin: auto;
7644 @supports (width: -moz-fit-content) {
7645 .post .top-post-meta .karma, .post .top-post-meta .author, .post .top-post-meta .qualified-linking {
7646 width: -moz-fit-content;
7649 @supports (width: fit-content) {
7650 .post .top-post-meta .karma, .post .top-post-meta .author, .post .top-post-meta .qualified-linking {
7651 width: fit-content;
7655 .post .top-post-meta .karma {
7656 order: -1;
7657 display: flex;
7658 flex-flow: column;
7660 .post .top-post-meta .karma .karma-value {
7661 padding: 5px 0 0 0;
7662 color: #999;
7663 font-size: 1.125em;
7664 position: relative;
7665 background-color: #fff;
7666 width: 2.25em;
7668 .post .top-post-meta .karma .karma-value::before {
7669 content: "";
7670 position: absolute;
7671 display: block;
7672 background-color: #ccc;
7673 height: 1px;
7674 width: 244px;
7675 top: 50%;
7676 left: -100px;
7677 z-index: -1;
7679 .post .top-post-meta .karma .karma-value span {
7680 display: none;
7683 .post .post-meta .karma.active-controls::after {
7684 bottom: -32px;
7685 padding: 0 4px;
7687 .post .post-meta .karma.active-controls:hover::after {
7688 opacity: 0.7;
7690 .post .top-post-meta .karma.active-controls::after {
7691 bottom: 0;
7692 left: calc(100% + 16px);
7693 max-width: unset;
7694 padding: 0;
7695 white-space: nowrap;
7697 .post .post-meta .karma .karma-value::after {
7698 top: -20px;
7700 .post .post-meta .karma .karma-value:hover::after {
7701 opacity: 0.7;
7703 .post .top-post-meta .karma .karma-value::after {
7704 top: -6px;
7705 left: unset;
7706 width: unset;
7707 right: calc(100% + 8px);
7710 .post .top-post-meta .author {
7711 padding: 4px 0 0 0;
7712 margin: 0.25em auto;
7714 .post .top-post-meta .qualified-linking {
7715 z-index: 1;
7717 .post .top-post-meta .qualified-linking label {
7718 margin: 0;
7721 .post .top-post-meta .post-section,
7722 .post .top-post-meta .lw2-link {
7723 display: none;
7726 .post .top-post-meta .date,
7727 .post .top-post-meta .comment-count {
7728 position: absolute;
7729 right: 100%;
7731 .post .top-post-meta .date {
7732 top: calc(100% + 34px);
7734 .post .top-post-meta .comment-count {
7735 top: calc(100% + 60px);
7737 .post .top-post-meta .date > span,
7738 .post .top-post-meta .comment-count > span {
7739 position: fixed;
7740 transform: translateX(-100%);
7743 .post .bottom-post-meta {
7744 padding: 1.5em 0 1em 0;
7745 margin: 0.5em 0 0 0;
7746 position: relative;
7747 border-color: transparent;
7749 .post .bottom-post-meta::before,
7750 .post .bottom-post-meta::after {
7751 content: "";
7752 position: absolute;
7753 display: block;
7754 background-color: #ddd;
7755 height: 1px;
7756 width: calc(100% - 60px);
7758 .post .bottom-post-meta::before {
7759 top: 0;
7761 .post .bottom-post-meta::after {
7762 bottom: 0;
7765 @media only screen and (max-width: 520px) {
7766 .post .bottom-post-meta {
7767 padding: 0.75em 0 0.125em 0;
7771 /*============*/
7772 /* LINK POSTS */
7773 /*============*/
7775 .post.link-post a.link-post-link {
7776 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
7778 .post.link-post a.link-post-link::before {
7779 opacity: 0.6;
7781 .post.link-post a.link-post-link:hover::before {
7782 opacity: 1;
7784 .post.link-post a.link-post-link:focus {
7785 color: #79a97e;
7786 border-bottom: 2px dotted #79a97e;
7789 /*==========*/
7790 /* COMMENTS */
7791 /*==========*/
7793 .comments::before {
7794 border-top: 1px solid #ddd;
7797 .comments {
7798 padding: 0 0 0 10px;
7800 #content > .comment-thread .comment-meta a.date:focus,
7801 #content > .comment-thread .comment-meta a.permalink:focus {
7802 color: #888;
7803 outline: 1px dotted #999;
7804 position: relative;
7805 background-color: #fff;
7806 padding: 0 5px;
7807 left: -5px;
7809 #content > .comment-thread .comment-meta a.date:focus + *,
7810 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
7811 margin-left: -10px;
7813 #content > .comment-thread .comment-meta a.permalink:focus {
7814 outline: 2px dotted #999;
7816 .comment-item {
7817 border: 1px solid #ddd;
7818 background-color: var(--GW-comment-background-color);
7820 .comment-parent-link::after {
7821 box-shadow:
7822 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
7823 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
7824 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
7827 .comment-body {
7828 font-size: 1.1875rem;
7830 #content.user-page .comment-body,
7831 #content.index-page .comment-body {
7832 font-size: 1.125rem;
7835 /*================================*/
7836 /* DEEP COMMENT THREAD COLLAPSING */
7837 /*================================*/
7839 .comment-item input[id^="expand"] + label::after {
7840 color: #92c396;
7841 font-weight: 400;
7843 .comment-item input[id^="expand"] + label:hover::after {
7844 color: #c00;
7846 .comment-item input[id^="expand"] + label:active::after,
7847 .comment-item input[id^="expand"] + label:focus::after{
7848 color: #c00;
7850 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
7851 border-width: 1px 0 0 0;
7854 /*==============*/
7855 /* COMMENT-META */
7856 /*==============*/
7858 .comment-meta {
7859 padding-top: 4px;
7861 .comment-meta > * {
7862 color: #bbb;
7864 .comment-meta a,
7865 .comment-meta a:visited {
7866 color: #92c396;
7868 .comment-meta a:hover {
7869 color: #79a97e;
7871 .comment-meta .author {
7872 font-size: 1.125em;
7873 font-weight: normal;
7876 .comment-controls .voting-controls {
7877 color: #bbb;
7880 .comment-item .voting-controls.active-controls::after,
7881 .comment-item .voting-controls .karma-value::after,
7882 .author::before {
7883 background-color: #fff;
7884 color: #bbb;
7885 border-radius: 4px;
7886 box-shadow: 0 0 0 1px #eee inset;
7888 .comment-item .voting-controls.active-controls::after {
7889 padding: 6px 4px 4px 4px;
7890 bottom: -42px;
7892 .comment-item .voting-controls .karma-value::after {
7893 padding: 4px 8px 0 8px;
7894 top: -30px;
7897 /*====================*/
7898 /* ANTI-KIBITZER MODE */
7899 /*====================*/
7901 .author.redacted,
7902 .inline-author.redacted {
7903 opacity: 0.9;
7904 font-weight: 300;
7907 .karma-value.redacted {
7908 opacity: 0.7;
7911 .link-post-domain.redacted {
7912 opacity: 0.6;
7915 /*===========================*/
7916 /* COMMENT THREAD NAVIGATION */
7917 /*===========================*/
7919 div.comment-parent-link {
7920 font-weight: 400;
7922 a.comment-parent-link {
7923 font-weight: 300;
7925 a.comment-parent-link::before {
7926 color: #bbb;
7927 font-weight: 400;
7929 a.comment-parent-link:hover::before {
7930 background-color: #ffd;
7931 color: #999;
7934 div.comment-child-links {
7935 font-weight: 400;
7937 div.comment-child-links a {
7938 font-weight: 300;
7940 .comment-child-link::before {
7941 color: #ccc;
7944 .comment-item-highlight {
7945 box-shadow:
7946 0 0 2px #e7b200,
7947 0 0 3px #e7b200,
7948 0 0 5px #e7b200,
7949 0 0 7px #e7b200,
7950 0 0 10px #e7b200;
7951 border: 1px solid #e7b200;
7953 .comment-item-highlight-faint {
7954 box-shadow:
7955 0 0 2px #f8e7b5,
7956 0 0 3px #f8e7b5,
7957 0 0 5px #f8e7b5,
7958 0 0 7px #f8e7b5,
7959 0 0 10px #f8e7b5;
7960 border: 1px solid #f8e7b5;
7963 .comment-popup {
7964 background-color: #fff;
7967 /*====================*/
7968 /* COMMENT PERMALINKS */
7969 /*====================*/
7971 .comment-meta .permalink::before {
7972 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');
7974 .comment-meta .lw2-link::before {
7975 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==');
7977 .individual-thread-page a.comment-parent-link:empty::before {
7978 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=');
7980 .comment-meta .permalink:hover::before {
7981 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');
7983 .comment-meta .lw2-link:hover::before {
7984 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==');
7986 .individual-thread-page a.comment-parent-link:hover:empty::before {
7987 left: unset;
7988 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==');
7991 .comment-meta .permalink,
7992 .comment-meta .lw2-link,
7993 .individual-thread-page .comment-parent-link:empty {
7994 filter: hue-rotate(270deg);
7995 opacity: 0.4;
7997 .comment-meta .permalink:hover,
7998 .comment-meta .lw2-link:hover,
7999 .individual-thread-page .comment-parent-link:empty:hover {
8000 opacity: 1.0;
8003 /*=======================*/
8004 /* COMMENTS COMPACT VIEW */
8005 /*=======================*/
8007 #comments-list-mode-selector {
8008 opacity: 0.4;
8009 transition: opacity 0.15s ease;
8011 #content.index-page #comments-list-mode-selector {
8012 grid-column: 3;
8013 justify-self: end;
8015 #comments-list-mode-selector:hover {
8016 opacity: 1.0;
8019 #comments-list-mode-selector button {
8020 border: none;
8021 background-color: transparent;
8022 box-shadow:
8023 0 0 0 4px #fff inset,
8024 0 0 0 5px #aaa inset;
8026 #comments-list-mode-selector button:hover,
8027 #comments-list-mode-selector button.selected {
8028 box-shadow:
8029 0 0 0 1px #fff inset,
8030 0 0 0 2px #aaa inset,
8031 0 0 0 4px #fff inset,
8032 0 0 0 5px #aaa inset;
8035 #content.compact > .comment-thread .comment-item {
8036 max-height: 53px;
8038 #content.compact > .comment-thread .comment-item::after {
8039 color: #92c396;
8040 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
8043 @media only screen and (hover: hover) {
8044 #content.compact > .comment-thread .comment-item:hover .comment,
8045 #content.compact > .comment-thread .comment-item.expanded .comment {
8046 background-color: #fff;
8047 outline: 1px solid #92c396;
8049 #content.compact > .comment-thread .comment-item:hover .comment::before,
8050 #content.compact > .comment-thread .comment-item.expanded .comment::before {
8051 background-color: #fff;
8052 box-shadow:
8053 0 0 3px #fff,
8054 0 0 5px #fff,
8055 0 0 7px #fff,
8056 0 0 10px #fff,
8057 0 0 20px #fff,
8058 0 0 30px #fff,
8059 0 0 40px #fff;
8062 @media only screen and (hover: none) {
8063 #content.compact > .comment-thread.expanded .comment-item .comment {
8064 background-color: #fff;
8065 outline: 1px solid #92c396;
8067 #content.compact > .comment-thread.expanded .comment-item .comment::before {
8068 background-color: #fff;
8069 box-shadow:
8070 0 0 3px #fff,
8071 0 0 5px #fff,
8072 0 0 7px #fff,
8073 0 0 10px #fff,
8074 0 0 20px #fff,
8075 0 0 30px #fff,
8076 0 0 40px #fff;
8079 #content.compact > .comment-thread .comment-item:hover .comment {
8080 background-color: #fff;
8081 outline: 1px solid #92c396;
8083 #content.compact > .comment-thread .comment-item:hover .comment::before {
8084 background-color: #fff;
8085 box-shadow:
8086 0 0 3px #fff,
8087 0 0 5px #fff,
8088 0 0 7px #fff,
8089 0 0 10px #fff,
8090 0 0 20px #fff,
8091 0 0 30px #fff,
8092 0 0 40px #fff;
8095 #content.user-page.compact > h1.listing {
8096 margin-top: 0.5rem;
8098 #content.user-page.compact > h1.listing + .post-meta {
8099 margin-bottom: 1rem;
8102 /*===========================*/
8103 /* HIGHLIGHTING NEW COMMENTS */
8104 /*===========================*/
8106 .new-comment::before {
8107 outline: 1px solid #5a5;
8108 box-shadow:
8109 0 0 6px -2px #5a5 inset,
8110 0 0 4px #5a5;
8113 /*=================================*/
8114 /* COMMENT THREAD MINIMIZE BUTTONS */
8115 /*=================================*/
8117 .comment-minimize-button {
8118 color: #ddd;
8119 font-weight: 300;
8120 box-shadow: 0 0 0 1px transparent;
8122 .comment-minimize-button:hover {
8123 color: #bbb;
8124 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
8126 .comment-minimize-button::after {
8127 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
8128 color: #999;
8130 .comment-minimize-button.maximized::after {
8131 color: #ccc;
8134 /*=================================*/
8135 /* INDIVIDUAL COMMENT THREAD PAGES */
8136 /*=================================*/
8138 .individual-thread-page > h1 {
8139 margin: 2em 0 0 30px;
8140 font-weight: 300;
8141 font-family: 'Caecilia', 'Helvetica', sans-serif;
8143 .individual-thread-page > .comments {
8144 padding: 0 0 0 30px;
8146 .individual-thread-page > #bottom-bar.decorative::before {
8147 margin: 0 30px 0 60px;
8150 /*==============*/
8151 /* VOTE BUTTONS */
8152 /*==============*/
8154 .vote {
8155 position: relative;
8157 .vote::before {
8158 position: relative;
8159 z-index: 1;
8161 .vote::after {
8162 position: absolute;
8165 .karma .upvote::before {
8166 content: "\F077";
8167 top: 1px;
8169 .karma .downvote::before {
8170 content: "\F078";
8171 left: -2px;
8173 .karma .upvote::after {
8174 content: "\F325";
8175 left: 6px;
8176 bottom: 4px;
8178 .karma .downvote::after {
8179 content: "\F322";
8180 left: 4px;
8181 top: 4px;
8183 @supports (-moz-appearance: none) {
8184 .karma .upvote::after {
8185 left: 4px;
8186 bottom: 4px;
8188 .karma .downvote::after {
8189 left: 2px;
8190 top: 5px;
8194 .agreement .upvote::before {
8195 content: "\F00C";
8196 top: 1px;
8198 .agreement .downvote::before {
8199 content: "\F00D";
8200 left: -2px;
8202 .agreement .upvote::after {
8203 content: "\F560";
8204 left: 6px;
8205 bottom: 2px;
8207 .agreement .downvote::after {
8208 content: "\E59B";
8209 left: 2px;
8210 top: 1px;
8212 @supports (-moz-appearance: none) {
8213 .agreement .upvote::after {
8214 left: 4px;
8215 bottom: 2px;
8217 .agreement .downvote::after {
8218 left: 0;
8219 top: 1px;
8223 /**********/
8224 /* States.
8227 /* _ 1
8229 .vote {
8230 color: #ddd;
8231 font-weight: 400;
8234 /* _ 2
8236 .upvote:hover,
8237 .upvote:not(.none) {
8238 color: var(--GW-upvote-button-color);
8239 text-shadow:
8240 0 0 0.5px #fff,
8241 0 0 8px #0f0;
8243 .downvote:hover,
8244 .downvote:not(.none) {
8245 color: var(--GW-downvote-button-color);
8246 text-shadow:
8247 0 0 0.5px #fff,
8248 0 0 8px #f00;
8251 /* 0 _
8253 .vote::after {
8254 visibility: hidden;
8257 /* 1,2 _
8259 .vote.two-temp::after,
8260 .vote.two::after {
8261 visibility: visible;
8264 /* 1 _
8266 .vote.two-temp::after {
8267 color: #ddd;
8268 text-shadow: none;
8271 /* Disabled.
8273 .vote:disabled {
8274 visibility: unset;
8275 color: #e6e6e6;
8277 .post .vote:disabled {
8278 color: #f4f4f4;
8280 .vote:disabled:hover {
8281 text-shadow: none;
8284 .post .top-post-meta .downvote::before {
8285 left: 0;
8287 .post .top-post-meta .upvote::after,
8288 .post .top-post-meta .downvote::after {
8289 left: 14px;
8291 .post .top-post-meta .downvote::after {
8292 top: 5px;
8295 /*===========================*/
8296 /* COMMENTING AND POSTING UI */
8297 /*===========================*/
8299 .posting-controls input[type='submit'] {
8300 padding: 6px 12px 3px 12px;
8303 .comment-controls {
8304 margin: 0 4px 4px 16px;
8306 .comment + .comment-controls .action-button {
8307 font-weight: 300;
8310 .new-comment-button {
8311 margin: 0;
8312 padding: 0.125em;
8315 .comment-controls .cancel-comment-button {
8316 color: #c00;
8317 text-shadow:
8318 0 0 1px #fff,
8319 0 0 2px #fff;
8320 padding: 6px 8px 1px 4px;
8322 .comment-controls .cancel-comment-button:hover {
8323 color: #f00;
8326 .comment-controls .delete-button,
8327 .comment-controls .retract-button {
8328 color: #fd7354;
8330 .comment-controls .delete-button::before,
8331 .comment-controls .unretract-button::before {
8332 font-weight: 300;
8334 .comment-controls .retract-button::before {
8335 font-weight: 400;
8337 .comment-controls .edit-button,
8338 .comment-controls .unretract-button {
8339 color: #0b0;
8341 .comment-controls .edit-button::before {
8342 font-weight: 300;
8344 .comment-controls .action-button:hover {
8345 color: #f00;
8346 text-shadow: 0 0 0.5px #faa;
8349 .post-controls {
8350 margin: 3em 2.5em 0 0;
8351 grid-row: 2;
8353 .post {
8354 grid-row: 2;
8356 .edit-post-link,
8357 .edit-post-link:visited {
8358 color: #090;
8361 .posting-controls textarea {
8362 font-family: 'Source Serif Pro', 'Helvetica', sans-serif;
8363 font-weight: 300;
8364 color: #000;
8365 text-shadow: 0 0 0 #000;
8366 border-color: #eee;
8367 transition: border-color 0.15s ease;
8369 .posting-controls textarea:focus {
8370 border-width: 29px 1px 1px 1px;
8371 border-color: #92c396;
8373 .posting-controls.edit-existing-post textarea:focus,
8374 .posting-controls form.edit-existing-comment textarea:focus {
8375 border-color: #090;
8378 /*= Scroll bars =*/
8380 .posting-controls textarea::-webkit-scrollbar,
8381 .textarea-container .autocomplete-container::-webkit-scrollbar {
8382 width: 16px;
8383 background-color: transparent;
8385 .posting-controls textarea::-webkit-scrollbar-track,
8386 .textarea-container .autocomplete-container::-webkit-scrollbar-track {
8387 background-color: #fff;
8389 .posting-controls textarea::-webkit-scrollbar-thumb {
8390 background-color: #eee;
8391 box-shadow: 0 0 0 1px #fff inset;
8393 .posting-controls textarea:focus::-webkit-scrollbar-thumb,
8394 .textarea-container .autocomplete-container::-webkit-scrollbar-thumb {
8395 background-color: #c4dbc4;
8396 box-shadow: 0 0 0 1px #fff inset;
8399 /* GUIEdit buttons */
8401 .guiedit-buttons-container {
8402 background-color: #fff;
8403 border-bottom: 1px solid #eee;
8406 .posting-controls.edit-existing-post .guiedit-buttons-container button,
8407 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
8408 color: #050;
8410 .guiedit-buttons-container button {
8411 font-family: Font Awesome, 'Source Serif Pro', 'Helvetica', sans-serif;
8412 border: 1px solid transparent;
8415 .guiedit::after {
8416 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
8417 color: #999;
8418 font-weight: 300;
8419 text-shadow: 0 0 0 #999;
8420 top: 3px;
8423 .posting-controls .markdown-reference-link a {
8424 background-position: right 70%;
8426 .markdown-reference-link {
8427 color: #999;
8430 /* Markdown hints */
8432 #markdown-hints-checkbox + label {
8433 color: #92c396;
8435 #markdown-hints-checkbox + label:hover {
8436 color: #79a97e;
8438 #markdown-hints {
8439 border: 1px solid #faa;
8440 background-color: #fff;
8442 #markdown-hints .markdown-hints-row span,
8443 #markdown-hints .markdown-hints-row code {
8444 padding: 2px 12px 2px 2px;
8447 /*================*/
8448 /* EDIT POST FORM */
8449 /*================*/
8451 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8452 top: 2px;
8453 color: #acd2af;
8454 transition: color 0.15s ease;
8456 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover {
8457 color: #79a97e;
8459 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8460 top: 2px;
8461 border: 1px solid #eee;
8462 color: #bbb;
8463 transition:
8464 box-shadow 0.3s ease,
8465 border-color 0.15s ease;
8467 @media only screen and (hover:hover) {
8468 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before {
8469 border-color: #c4dbc4;
8472 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
8473 border-color: #c4dbc4;
8474 box-shadow:
8475 0 0 0 4px #fff inset,
8476 0 0 0 1em #c4dbc4 inset;
8479 #edit-post-form label[for='url'],
8480 #edit-post-form input[name='url'] {
8481 display: block;
8482 transition:
8483 max-height 0.15s ease,
8484 overflow 0.15s ease,
8485 margin-top 0.15s ease,
8486 margin-bottom 0.15s ease,
8487 padding 0.15s ease,
8488 border-color 0.15s ease;
8491 #edit-post-form .link-post-checkbox:not(:checked) ~ label[for='url'],
8492 #edit-post-form .link-post-checkbox:not(:checked) ~ input[name='url'] {
8493 max-height: 0;
8494 overflow: hidden;
8495 margin-top: 0;
8496 margin-bottom: 0;
8497 padding: 0;
8498 border-color: transparent;
8501 #edit-post-form label[for='title'],
8502 #edit-post-form label[for='url'],
8503 #edit-post-form label[for='section'] {
8504 color: #aaa;
8505 text-shadow: 0 0 0 #aaa;
8508 #edit-post-form input[type='radio'] + label {
8509 color: #92c396;
8510 border-color: #c4dbc4;
8511 padding: 6px 12px 3px 12px;
8512 position: relative;
8513 top: -2px;
8514 transition:
8515 background-color 0.15s ease,
8516 color 0.15s ease,
8517 border-color 0.15s ease;
8519 #edit-post-form input[type='radio'][value='all'] + label {
8520 border-radius: 8px 0 0 8px;
8521 border-width: 1px;
8523 #edit-post-form input[type='radio'][value='drafts'] + label {
8524 border-radius: 0 8px 8px 0;
8525 padding-right: 13px;
8527 #edit-post-form input[type='radio'] + label:hover,
8528 #edit-post-form input[type='radio']:focus + label,
8529 #edit-post-form input[type='radio']:checked + label {
8530 background-color: #c4dbc4;
8531 color: #fff;
8533 #edit-post-form input[type='radio']:active + label {
8534 border-color: #92c396;
8535 background-color: #92c396;
8538 #edit-post-form input[type='submit'] {
8539 padding: 7px 14px 4px 14px;
8542 /*=======*/
8543 /* LINKS */
8544 /*=======*/
8547 text-decoration: none;
8548 color: #92c396;
8549 transition: color 0.15s ease;
8551 a:visited {
8552 color: #bebb84;
8554 a:hover {
8555 color: #bbb;
8558 /*=========*/
8559 /* BUTTONS */
8560 /*=========*/
8562 button,
8563 input[type='submit'] {
8564 color: #92c396;
8566 input[type='submit'] {
8567 color: #92c396;
8568 background-color: #fff;
8569 border: 1px solid #c4dbc4;
8570 transition:
8571 color 0.15s ease,
8572 background-color 0.15s ease,
8573 border-color 0.15s ease;
8576 input[type='submit']:hover,
8577 input[type='submit']:focus {
8578 background-color: #c4dbc4;
8579 color: #fff;
8581 input[type='submit']:active {
8582 background-color: #92c396;
8583 border-color: #92c396;
8585 .button:visited {
8586 color: #92c396;
8588 button:hover,
8589 .button:hover {
8590 color: #79a97e;
8591 text-decoration: none;
8593 button:active,
8594 .button:active {
8595 transform: scale(0.9);
8597 button:focus:not(:hover),
8598 .button:focus:not(:hover) {
8599 transform: none;
8601 @supports (-moz-appearance: none) {
8602 .button:active {
8603 transform: none;
8607 /*==========*/
8608 /* HEADINGS */
8609 /*==========*/
8611 .body-text h1,
8612 .body-text h2,
8613 .body-text h3,
8614 .body-text h4,
8615 .body-text h5,
8616 .body-text h6 {
8617 font-family: 'Caecilia', 'Helvetica', sans-serif;
8618 font-weight: 300;
8620 .body-text h1 {
8621 margin-top: 1.25em;
8622 box-shadow:
8623 0 -7px 0 0 #fff inset,
8624 0 -8px 0 0 #eee inset;
8626 .body-text h6 {
8627 color: #555;
8630 /*========*/
8631 /* QUOTES */
8632 /*========*/
8634 blockquote {
8635 border-left: 5px solid #e6e6e6;
8638 /*========*/
8639 /* IMAGES */
8640 /*========*/
8642 #content img,
8643 #content figure.image img {
8644 border: 1px solid #ccc;
8646 #content figure img {
8647 border: 1px solid #000;
8649 #content img[src$='.svg'],
8650 #content figure img[src$='.svg'] {
8651 border: none;
8653 #content img[style^='float'] {
8654 border: 1px solid transparent;
8657 #images-overlay div::after {
8658 font-weight: 400;
8659 padding: 10px 12px 6px 12px;
8662 /*=============*/
8663 /* IMAGE FOCUS */
8664 /*=============*/
8666 #image-focus-overlay {
8667 visibility: visible;
8670 #image-focus-overlay .caption p {
8671 margin: 1em 1.25em 0.875em 1.25em;
8672 font-weight: 400;
8675 /*======*/
8676 /* MISC */
8677 /*======*/
8679 hr {
8680 margin: 1em 0;
8682 hr::before {
8683 content: "• • •";
8684 letter-spacing: 7px;
8685 color: #aaa;
8686 text-align: center;
8687 display: block;
8688 font-size: 0.875em;
8691 code,
8692 pre {
8693 font-family: 'Source Code Pro', Inconsolata, monospace;
8694 font-size: 0.9375em;
8695 font-feature-settings: 'ss04';
8697 code {
8698 background-color: #eee;
8699 padding: 0 5px 1px 5px;
8700 box-shadow: 0 0 0 1px #fff inset;
8703 input[type='text'],
8704 input[type='search'],
8705 input[type='password'] {
8706 border: 1px solid #999;
8707 color: #000;
8708 background-color: transparent;
8709 border-color: transparent;
8710 border-bottom-color: #eee;
8711 transition: border-color 0.15s ease;
8713 input[type='text']:focus,
8714 input[type='search']:focus,
8715 input[type='password']:focus {
8716 border-bottom-color: #c4dbc4;
8719 select {
8720 color: #000;
8723 strong, b {
8724 font-weight: 600;
8727 /*============*/
8728 /* ABOUT PAGE */
8729 /*============*/
8731 .about-page mark {
8732 background-color: #e6e6e6;
8733 text-decoration: none;
8734 box-shadow:
8735 0 -1px 0 0 #000 inset,
8736 0 -3px 1px -2px #000 inset;
8737 padding: 0 1px;
8740 #content.about-page .accesskey-table {
8741 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
8742 border-color: #ddd;
8745 #content.about-page img {
8746 border: 1px solid #000;
8749 /*========================*/
8750 /* QUALIFIED HYPERLINKING */
8751 /*========================*/
8753 #content.no-nav-bars ~ #ui-elements-container #site-nav-ui-toggle {
8754 display: none;
8756 #content.no-comments ~ #ui-elements-container #post-nav-ui-toggle {
8757 display: none;
8760 #aux-about-link a {
8761 color: #777;
8763 #aux-about-link a:hover {
8764 opacity: 1.0;
8765 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
8768 .qualified-linking label {
8769 color: #ccc;
8770 font-weight: 400;
8772 .qualified-linking label:hover {
8773 color: #92c396;
8776 .qualified-linking-toolbar {
8777 border: 1px solid #ccc;
8778 background-color: #fff;
8780 .qualified-linking-toolbar a {
8781 padding: 3px 6px 0 6px;
8783 .qualified-linking-toolbar a,
8784 .qualified-linking-toolbar a:visited {
8785 color: #acd2af;
8787 .qualified-linking-toolbar a:hover {
8788 color: #92c396;
8789 text-decoration: none;
8790 background-color: #e4f1e5;
8792 .qualified-linking label::after {
8793 background-color: #fff;
8794 opacity: 0.8;
8797 /*======*/
8798 /* MATH */
8799 /*======*/
8801 .mathjax-block-container::-webkit-scrollbar {
8802 height: 12px;
8803 background-color: #f6f6ff;
8804 border-radius: 6px;
8805 border: 1px solid #ddf;
8807 .mathjax-block-container::-webkit-scrollbar-thumb {
8808 background-color: #dde;
8809 border-radius: 6px;
8810 border: 1px solid #cce;
8812 .mathjax-inline-container::-webkit-scrollbar {
8813 height: 8px;
8814 background-color: #f6f6ff;
8815 border-radius: 4px;
8816 border: 1px solid #ddf;
8818 .mathjax-inline-container::-webkit-scrollbar-thumb {
8819 background-color: #dde;
8820 border-radius: 4px;
8821 border: 1px solid #cce;
8825 /*===============*/
8826 /* USER MENTIONS */
8827 /*===============*/
8829 .textarea-container .autocomplete-container {
8830 background-color: rgba(255, 255, 255, 0.75);
8831 border: 1px solid rgba(196, 219, 196, 0.75);
8834 .textarea-container .autocomplete-container div.highlighted {
8835 background-color: rgba(196, 219, 196, 0.75);
8836 color: #fff;
8837 padding: 4px 8px 0 8px;
8838 line-height: 1.5;
8841 .textarea-container .autocomplete-container div:not(.highlighted):hover {
8842 background-color: rgba(196, 219, 196, 0.35);
8845 .textarea-container .autocomplete-container div span.age,
8846 .textarea-container .autocomplete-container div span.karma {
8847 color: #999;
8851 /*=================*/
8852 /* ALIGNMENT FORUM */
8853 /*=================*/
8855 #content.alignment-forum-index-page::after {
8856 margin: -0.25em 0 0.25em 0;
8857 text-align: center;
8858 grid-column: 2;
8859 font-family: "Concourse SmallCaps";
8860 font-weight: 600;
8861 background-color: #7f85b2;
8862 color: transparent;
8863 -webkit-background-clip: text;
8864 text-shadow:
8865 rgba(255,255,255,0.5) 0px 3px 3px;
8868 /*====================*/
8869 /* FOR NARROW SCREENS */
8870 /*====================*/
8872 @media not screen and (hover: none) {
8873 @media only screen and (max-width: 1080px) {
8874 #site-nav-ui-toggle button.engaged {
8875 left: -72px;
8877 #text-size-adjustment-ui {
8878 left: -22px;
8879 top: calc(100% - 240px);
8881 #width-selector {
8882 left: -23px;
8883 top: calc(100% - 140px);
8885 #theme-tweaker-toggle button {
8886 width: unset;
8887 height: unset;
8890 @media only screen and (max-width: 1020px) {
8892 @media only screen and (max-width: 1000px) {
8893 #site-nav-ui-toggle button.engaged {
8894 left: -56px;
8896 #theme-selector {
8897 padding: 0;
8899 #theme-selector button {
8900 margin: 1px 7px 0 7px;
8905 /*========*/
8906 /* MOBILE */
8907 /*========*/
8909 /*******************************************/
8910 @media only screen and (max-width: 1160px) {
8911 /*******************************************/
8913 #site-nav-ui-toggle {
8914 top: 10px;
8915 left: 10px;
8917 #site-nav-ui-toggle button.engaged {
8918 width: 1.125em;
8919 overflow: hidden;
8920 position: relative;
8921 left: 5px;
8922 top: -3px;
8924 #site-nav-ui-toggle button.engaged::before {
8925 content: "\F00D";
8926 font-size: 34px;
8927 padding: 0 0.25em 0 0;
8929 #ui-elements-container > #site-nav-ui-toggle button.engaged {
8930 transform: rotate(90deg);
8933 #ui-elements-container > div[id$='-ui-toggle'] button,
8934 #theme-selector .theme-selector-close-button {
8935 color: #bbb;
8936 text-shadow:
8937 0 0 1px #fff,
8938 0 0 3px #fff,
8939 0 0 5px #fff,
8940 0 0 10px #fff,
8941 0 0 20px #fff,
8942 0 0 30px #fff;
8944 #ui-elements-container > div[id$='-ui-toggle'] button {
8945 font-weight: 400;
8947 #theme-selector .theme-selector-close-button {
8948 font-weight: 300;
8951 #theme-selector {
8952 background-color: #fff;
8953 box-shadow:
8954 0 0 0 1px #999,
8955 0 0 1px 3px #fff,
8956 0 0 3px 3px #fff,
8957 0 0 5px 3px #fff,
8958 0 0 10px 3px #fff,
8959 0 0 20px 3px #fff;
8960 border-radius: 12px;
8962 #theme-selector::before {
8963 color: #999;
8964 font-weight: 300;
8965 position: relative;
8966 top: 6px;
8968 #theme-selector button,
8969 #theme-selector button.selected {
8970 background-color: #fff;
8971 border-radius: 10px;
8972 box-shadow:
8973 0 0 0 4px #fff inset,
8974 0 0 0 5px #999 inset;
8976 #theme-selector button.selected {
8977 background-color: #c4dbc4;
8979 #theme-selector button::after {
8980 color: #819681;
8981 font-weight: 300;
8982 max-width: calc(100% - 3.5em);
8983 overflow: hidden;
8984 text-overflow: ellipsis;
8985 padding: 1px 0 0 0;
8987 #theme-selector button.selected::after {
8988 color: #fff;
8991 #theme-tweaker-toggle button {
8992 color: #999;
8993 font-weight: 400;
8996 #theme-selector .auxiliary-controls-container {
8997 border-top-color: #aaa;
8999 #theme-selector .auxiliary-controls-container button {
9000 box-shadow: none;
9001 border: 1px solid #999;
9003 #theme-selector #theme-tweaker-toggle button {
9004 color: #819681;
9006 #theme-selector #anti-kibitzer-toggle button::before,
9007 #theme-selector #anti-kibitzer-toggle button::after {
9008 color: #819681;
9009 opacity: 1.0;
9011 #theme-selector #anti-kibitzer-toggle button::before {
9012 font-size: 1.5em;
9013 font-weight: 300;
9015 #theme-selector #anti-kibitzer-toggle button::after {
9016 font-weight: 400;
9018 #theme-selector #dark-mode-selector {
9019 border: 1px solid #999;
9021 #theme-selector #dark-mode-selector button {
9022 color: #819681;
9024 #theme-selector #dark-mode-selector button.selected {
9025 background-color: #c4dbc4;
9026 color: #fff;
9028 #theme-selector #dark-mode-selector button + button {
9029 box-shadow:
9030 -1px 0 0 0 #999;
9032 #theme-selector #dark-mode-selector button:first-child.selected {
9033 border-radius: 10px 0 0 10px;
9035 #theme-selector #dark-mode-selector button:last-child.selected {
9036 border-radius: 0 10px 10px 0;
9038 #theme-selector #dark-mode-selector button.selected::after {
9039 text-shadow: 0 0 1px #fff;
9042 #quick-nav-ui {
9043 background-color: #fff;
9045 #quick-nav-ui,
9046 #new-comment-nav-ui,
9047 #hns-date-picker {
9048 box-shadow:
9049 0 0 1px 3px #fff,
9050 0 0 3px 3px #fff,
9051 0 0 5px 3px #fff,
9052 0 0 10px 3px #fff,
9053 0 0 20px 3px #fff;
9055 #quick-nav-ui a::after,
9056 #new-comment-nav-ui::before {
9057 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
9058 font-weight: bold;
9059 box-shadow:
9060 0 0 1px 0 #fff,
9061 0 0 3px 0 #fff,
9062 0 0 5px 0 #fff;
9063 background-color: #fff;
9064 border-radius: 4px;
9066 #quick-nav-ui,
9067 #new-comment-nav-ui {
9068 border-radius: 8px;
9070 #new-comment-nav-ui {
9071 background-color: #fff;
9072 border: 1px solid #fff;
9074 #new-comment-nav-ui::before {
9075 color: #aaa;
9076 font-weight: 500;
9078 #new-comment-nav-ui .new-comment-sequential-nav-button {
9079 color: #79a97e;
9081 #new-comment-nav-ui .new-comments-count {
9082 background-color: inherit;
9083 top: 0;
9085 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
9086 color: #e6e6e6;
9088 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
9089 border-radius: 7px 0 0 7px;
9091 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
9092 border-radius: 0 7px 7px 0;
9094 #new-comment-nav-ui button::after {
9095 font-family: 'Mundo Sans', 'Helvetica', 'GW-Symbols', sans-serif;
9097 #hns-date-picker {
9098 background-color: #fff;
9099 border: 1px solid #fff;
9102 #top-nav-bar {
9103 padding: 1.25em 0 0.25em 0;
9104 font-size: 1.625rem;
9105 margin: 0;
9106 grid-row: 2;
9107 grid-column: 2;
9109 #top-nav-bar .page-number {
9110 line-height: 1.7;
9112 #top-nav-bar .page-number span {
9113 display: block;
9115 #top-nav-bar a.disabled {
9116 opacity: 0.2;
9119 /*****************************************/
9120 @media only screen and (max-width: 900px) {
9121 /*****************************************/
9122 #theme-less-mobile-first-row-placeholder {
9123 grid-row: 1;
9124 grid-column: 2 / span 2;
9125 height: 50px;
9128 #primary-bar,
9129 #secondary-bar {
9130 position: static;
9131 width: 0;
9132 height: 0;
9135 #primary-bar {
9136 position: fixed;
9137 left: 0;
9138 margin: 0;
9139 padding: 5px 0 5px 0;
9140 height: unset;
9141 background-color: #fff;
9142 border-bottom: 1px solid #ddd;
9143 box-shadow: 0 0 0 1px #fff;
9144 z-index: 2;
9145 visibility: hidden;
9146 transition:
9147 visibility 0.2s ease,
9148 width 0.2s ease,
9149 opacity 0.2s ease,
9150 filter 0.2s ease;
9152 #primary-bar.engaged {
9153 width: 100%;
9154 visibility: visible;
9155 padding: 5px 4px 75px 60px;
9157 #secondary-bar #nav-item-archive,
9158 #secondary-bar #nav-item-sequences,
9159 #secondary-bar #nav-item-about {
9160 opacity: 0.0;
9161 transition:
9162 opacity 0.3s ease,
9163 filter 0.2s ease;
9165 #secondary-bar.engaged #nav-item-archive,
9166 #secondary-bar.engaged #nav-item-sequences,
9167 #secondary-bar.engaged #nav-item-about {
9168 opacity: 1.0;
9169 position: fixed;
9170 top: 80px;
9171 z-index: 3;
9172 width: 64px;
9174 #secondary-bar.engaged #nav-item-archive {
9175 left: 8px;
9177 #secondary-bar.engaged #nav-item-sequences {
9178 left: 72px;
9180 #secondary-bar.engaged #nav-item-about {
9181 left: 136px;
9184 #primary-bar.engaged.translucent-on-scroll,
9185 #secondary-bar.engaged.translucent-on-scroll #nav-item-archive,
9186 #secondary-bar.engaged.translucent-on-scroll #nav-item-sequences,
9187 #secondary-bar.engaged.translucent-on-scroll #nav-item-about,
9188 .page-toolbar.engaged.translucent-on-scroll {
9189 opacity: 0.6;
9190 filter: blur(2px);
9191 pointer-events: none;
9194 .page-toolbar {
9195 position: fixed;
9196 height: unset;
9197 width: unset;
9198 z-index: 4;
9199 right: 100%;
9200 top: 80px;
9201 transition:
9202 right 0.2s ease,
9203 opacity 0.2s ease,
9204 filter 0.2s ease;
9206 .page-toolbar.engaged {
9207 right: 0;
9209 .page-toolbar,
9210 #content:not(.user-page) .page-toolbar {
9211 display: flex;
9212 flex-flow: row;
9213 justify-content: flex-end;
9214 padding: 0 8px 0 0;
9216 .page-toolbar > * {
9217 right: unset;
9218 line-height: 1.15;
9219 padding: 6px 0;
9220 margin: 0;
9222 .page-toolbar > form,
9223 .page-toolbar > .button {
9224 text-align: center;
9225 flex-basis: 25%;
9226 margin-left: 1.5em;
9228 .page-toolbar .button {
9229 text-transform: uppercase;
9230 font-size: 0.625rem;
9232 .page-toolbar .button::before,
9233 #content.user-page .page-toolbar .button::before,
9234 .page-toolbar form::before,
9235 #content.user-page .page-toolbar form::before {
9236 font-size: 1.375rem;
9237 display: block;
9238 padding: 2px;
9239 font-size: 1.375rem;
9240 display: block;
9242 .page-toolbar .rss {
9243 white-space: nowrap;
9244 position: fixed;
9245 top: 143px;
9246 left: -60px;
9247 padding: 6px 10px 5px 10px;
9248 visibility: hidden;
9249 background-color: #fff;
9250 border-style: solid;
9251 border-color: #ddd;
9252 border-width: 0 1px 1px 0;
9253 box-shadow:
9254 0 1px 0 0 #fff,
9255 1px 1px 0 0 #fff;
9256 transition: left 0.2s ease;
9258 .page-toolbar .rss,
9259 #content.user-page .page-toolbar .rss {
9260 margin: 0;
9262 .page-toolbar.engaged .rss {
9263 visibility: visible;
9264 left: 0;
9267 #primary-bar .nav-inner {
9268 font-size: 1.375em;
9270 #secondary-bar .nav-inner {
9271 font-size: 1.125em;
9273 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
9274 padding: 6px 10px;
9277 #nav-item-search {
9278 max-width: calc(100% - 180px);
9279 top: 4px;
9280 left: 68px;
9282 #nav-item-search input {
9283 width: calc(100% - 32px);
9285 #nav-item-search button {
9286 position: relative;
9287 bottom: 5px;
9288 visibility: visible;
9289 height: 32px;
9290 width: 40px;
9291 padding: 9px 15px 3px 5px;
9293 #nav-item-search form:not(:focus-within) button:not(:hover) {
9294 color: transparent;
9296 #nav-item-search button::before {
9297 color: #ddd;
9300 #nav-item-login {
9301 top: 16px;
9302 right: 8px;
9304 #nav-item-login .nav-inner {
9305 text-transform: none;
9306 font-size: 1.75em;
9308 #nav-item-login .nav-inner::before {
9309 display: none;
9311 #inbox-indicator::before {
9312 font-size: 1.75em;
9313 left: 2px;
9316 #bottom-bar .nav-inner {
9317 padding: 1rem 0 1.25rem 0;
9319 #bottom-bar .nav-inner::after {
9320 position: absolute;
9323 #content.search-results-page #comments-list-mode-selector {
9324 grid-column: 3;
9325 grid-row: 2;
9326 justify-self: end;
9329 #content,
9330 #content.comment-thread-page {
9331 padding: 0 4px;
9334 h1.listing + .post-meta > * {
9335 line-height: 1.5;
9337 h1.listing + .post-meta .post-section {
9338 overflow: visible;
9339 order: 1;
9340 width: unset;
9342 h1.listing + .post-meta .post-section::before {
9343 position: unset;
9346 .archive-nav *[class^='archive-nav-item-'] {
9347 border-width: 1px !important;
9349 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
9350 background-color: #aaa;
9353 .post {
9354 padding: 0;
9356 .post .top-post-meta .author {
9357 margin: 1em auto 0 auto;
9359 .post .top-post-meta .date,
9360 .post .top-post-meta .comment-count {
9361 position: static;
9363 .post .top-post-meta .date {
9364 margin: 1.5em auto 0 auto;
9366 .post .top-post-meta .comment-count span {
9367 display: initial;
9368 position: static;
9370 h1.post-title {
9371 line-height: 1.3;
9374 .comments {
9375 padding: 0;
9377 .comment-item .comment-item {
9378 margin: 0.75em 3px 3px 6px;
9380 .comment-item .comment-item + .comment-item {
9381 margin: 1.5em 3px 3px 6px;
9384 .comment-controls {
9385 position: relative;
9387 .comment-controls .cancel-comment-button,
9388 .comments > .comment-controls .cancel-comment-button {
9389 right: 4px;
9392 .sublevel-nav:not(.sort) .sublevel-item,
9393 .sublevel-nav:not(.sort) .sublevel-item:first-child,
9394 .sublevel-nav:not(.sort) .sublevel-item:last-child {
9395 border-radius: 8px;
9396 border-width: 1px;
9397 margin: 2px;
9400 #content.user-page #theme-less-mobile-first-row-placeholder {
9401 height: 60px;
9403 #content.user-page h1.page-main-heading,
9404 #content.user-page .user-stats {
9405 grid-row: 2;
9407 #content.user-page h1.page-main-heading {
9408 margin: 0.5em 0 0 0.125em;
9410 #content.user-page #comments-list-mode-selector,
9411 #content.user-page .sublevel-nav.sort {
9412 grid-row: 3 / span 2;
9414 #content.user-page .sublevel-nav {
9415 grid-row: 3;
9416 margin-bottom: 1em;
9418 #content.user-page #top-nav-bar {
9419 grid-row: 4;
9420 margin: 0.5em 0 0 0;
9423 #content.conversation-page #theme-less-mobile-first-row-placeholder {
9424 height: 64px;
9426 #content.conversation-page #comments-list-mode-selector {
9427 grid-row: 6;
9428 margin-top: -32px;
9430 #content.conversation-page .conversation-participants {
9431 grid-row: 4;
9432 align-self: end;
9434 /*******************************************/
9435 } @media only screen and (max-width: 720px) {
9436 /*******************************************/
9437 #content.index-page > .sublevel-nav.sort {
9438 flex-flow: column;
9439 margin-right: 4px;
9441 /*******************************************/
9442 } @media only screen and (max-width: 520px) {
9443 /*******************************************/
9444 h1.listing,
9445 #content.search-results-page h1.listing {
9446 font-size: 1.25rem;
9447 margin: 18px 6px 4px 6px;
9448 max-width: calc(100% - 12px);
9450 h1.listing + .post-meta {
9451 margin: 4px 6px;
9453 #content.conversations-user-page h1.listing::after {
9454 height: calc(100% + 2.25em);
9456 #content.conversations-user-page h1.listing + .post-meta .date {
9457 margin: 0 0 0 1em;
9460 .comment-body {
9461 font-size: 1.125rem;
9464 #content.compact > .comment-thread .comment-item {
9465 max-height: 105px;
9468 .textarea-container:focus-within textarea {
9469 background-color: #fff;
9470 border-width: 1px;
9471 box-shadow: 0 0 0 2px #fff;
9473 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
9474 padding: 5px 6px 6px 6px;
9475 font-weight: bold;
9477 .textarea-container:focus-within .guiedit-mobile-help-button.active {
9478 color: #c00;
9480 .textarea-container:focus-within .guiedit-buttons-container {
9481 background-color: #fff;
9482 border-top: 1px solid #ddf;
9484 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
9485 box-shadow: none;
9487 #content.conversation-page .textarea-container:focus-within::after {
9488 background-color: #fff;
9490 #markdown-hints::after {
9491 color: #090;
9494 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
9495 top: 2px;
9496 font-weight: 400;
9498 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
9499 top: 1px;
9505 /*************/
9506 /* ACCORDIUS */
9507 /*************/
9509 /*======*/
9510 /* TAGS */
9511 /*======*/
9513 #tags {
9514 order: 12;
9515 display: flex;
9516 flex-basis: 100%;
9517 justify-content: center;
9518 margin: 0;
9519 flex-flow: row wrap;
9520 align-items: flex-start;
9523 /*============*/
9524 /* LESS THEME */
9525 /*============*/
9527 /*++++++*/
9528 /* TAGS */
9529 /*++++++*/
9531 #tags {
9532 padding: 0.25em 0 0.5em 0;
9533 align-items: center;
9535 #tags::before {
9536 content: "\F02C";
9537 font-family: Font Awesome;
9538 font-weight: 300;
9539 font-size: 0.875em;
9540 margin: 0 0.5em 0 0;
9541 opacity: 0.6;
9542 position: relative;
9543 top: -2px;
9545 #tags a {
9546 margin: 0 0.375em 0 0;
9548 #tags a:not(:last-of-type)::after {
9549 content: ","
9552 .top-post-meta #tags {
9553 display: none;