More appearance & related code refactoring
[lw2-viewer.git] / www / css / style.mac.css
blobb7e052e7950ecffaaa02407ff00ba4dc72a8275c
2 /*************/
3 /* VARIABLES */
4 /*************/
6 :root {
7 --GW-comment-background-color-odd: transparent;
8 --GW-comment-background-color-even: transparent;
9 --GW-comment-background-color-target: transparent;
11 --inverted-display: none;
14 /***************/
15 /* BASE LAYOUT */
16 /***************/
18 html {
19 box-sizing: border-box;
20 font-size: 16px;
22 *, *::before, *::after {
23 box-sizing: inherit;
25 script {
26 display: none !important;
29 /*=------=*/
30 /*= Body =*/
31 /*=------=*/
33 body {
34 padding: 0;
35 margin: 0;
37 body::before {
38 background-color: inherit;
39 position: fixed;
40 width: 100%;
41 height: 100%;
44 body.no-scroll {
45 overflow-y: scroll;
46 position: fixed;
47 width: 100%;
50 /*=----------------------------=*/
51 /*= Immediate children of body =*/
52 /*=----------------------------=*/
54 body > * {
55 max-width: 900px;
58 /* Special styles for special browsers.
59 (This one is a fix for Firefox’s built-in screenshot feature.)
61 body > iframe[id^='firefox-screenshots'] {
62 max-width: unset;
65 #content {
66 margin: 0 auto;
67 padding: 0 30px;
68 position: relative;
69 overflow: visible;
70 display: grid;
71 grid-template-columns: 2fr 1fr 2fr;
73 #content::before {
74 content: "";
75 display: block;
76 position: absolute;
77 top: 0;
78 left: 0;
79 width: 100%;
80 height: 100%;
81 z-index: -1;
82 pointer-events: none;
85 /*=---------=*/
86 /*= Content =*/
87 /*=---------=*/
89 #content > * {
90 grid-column: 1 / span 3;
93 /*=----------------------=*/
94 /*= Floating UI elements =*/
95 /*=----------------------=*/
97 #ui-elements-container {
98 position: fixed;
99 height: 100vh;
100 top: 0;
101 left: 0;
102 right: 0;
103 margin: auto;
104 z-index: 10000;
105 pointer-events: none;
107 #ui-elements-container > * {
108 pointer-events: auto;
111 /*=----------------=*/
112 /*= Images overlay =*/
113 /*=----------------=*/
114 /* (To exclude images in posts from theme tweaks) */
116 #images-overlay {
117 position: absolute;
118 z-index: 1;
119 left: 0;
120 right: 0;
121 margin: auto;
124 /***********/
125 /* NAV BAR */
126 /***********/
128 .nav-bar {
129 margin: 0 -30px;
130 display: flex;
131 order: -11;
132 z-index: 1;
135 /*=---------------=*/
136 /*= Nav bar items =*/
137 /*=---------------=*/
139 .nav-item {
140 flex: 1 1 auto;
142 .nav-item * {
143 text-overflow: ellipsis;
144 white-space: nowrap;
145 overflow: hidden;
147 .nav-inner {
148 padding: 12px 30px;
149 text-align: center;
150 display: block;
151 position: relative;
152 line-height: inherit;
153 width: 100%;
154 background: unset;
156 .nav-bar-top:not(#primary-bar) .nav-inner {
157 padding: 4px 0;
160 #nav-item-sequences .nav-inner::before {
161 font-family: "Font Awesome", "Font Awesome 5 Free";
162 content: "\F5DB";
164 @media only screen and (min-width: 901px) {
165 #nav-item-about .nav-inner {
166 margin-right: 0.5em;
168 #nav-item-sequences .nav-inner::before {
169 font-size: 1rem;
170 display: block;
172 #secondary-bar #nav-item-sequences .nav-inner {
173 font-size: 0;
174 line-height: 1.4;
178 /*=------------=*/
179 /*= Bottom bar =*/
180 /*=------------=*/
182 #bottom-bar {
183 order: 11;
185 h1.listing ~ #bottom-bar {
186 margin-top: 1.25em;
188 #bottom-bar .nav-item {
189 flex: 1 1 0;
192 /*=-----------------=*/
193 /*= Accesskey hints =*/
194 /*=-----------------=*/
196 .nav-inner::after {
197 content: attr(accesskey);
198 display: none;
201 /*=---------------=*/
202 /*= Pagination UI =*/
203 /*=---------------=*/
205 #bottom-bar .nav-item a::before,
206 #top-nav-bar a::before {
207 font-family: "Font Awesome", "Font Awesome 5 Free";
208 font-weight: 900;
209 font-size: 0.8em;
210 position: relative;
211 bottom: 1px;
212 margin-right: 0.5em;
214 #bottom-bar #nav-item-first a::before,
215 #top-nav-bar a.nav-item-first::before {
216 content: "\F33e";
218 #bottom-bar #nav-item-top a::before {
219 content: "\F062";
221 #bottom-bar #nav-item-prev a::before,
222 #top-nav-bar a.nav-item-prev::before {
223 content: "\F060";
225 #bottom-bar #nav-item-next a::before,
226 #top-nav-bar a.nav-item-next::before {
227 content: "\F061";
229 #bottom-bar #nav-item-last a::before,
230 #top-nav-bar a.nav-item-last::before {
231 content: "\F340";
233 #bottom-bar #nav-item-next a::before {
234 margin-left: -2em;
235 margin-right: 0;
236 left: 3.8em;
238 #bottom-bar #nav-item-last a::before {
239 margin-left: -1.8em;
240 margin-right: 0;
241 left: 3.4em;
244 /*= Hover tooltips =*/
246 #top-nav-bar a {
247 position: relative;
249 #top-nav-bar a::after {
250 bottom: calc(100% - 3px);
251 content: attr(data-target-page);
253 #top-nav-bar a::after {
254 display: block;
255 position: absolute;
256 font-size: 0.75rem;
257 width: 100%;
258 line-height: 1;
259 visibility: hidden;
261 #top-nav-bar a:hover::after,
262 #bottom-bar a:hover::after {
263 visibility: visible;
266 /*=-----------------------=*/
267 /*= Decorative bottom bar =*/
268 /*=-----------------------=*/
269 /* (On short pages with no pagination) */
271 #bottom-bar.decorative {
272 position: relative;
274 #bottom-bar.decorative .nav-item {
275 display: none;
278 /*=------------=*/
279 /*= Search tab =*/
280 /*=------------=*/
282 #nav-item-search {
283 flex: 4 1 auto;
285 #nav-item-search form::before {
286 content: "\F002";
287 font-family: "Font Awesome", "Font Awesome 5 Free";
288 font-weight: 900;
289 display: inline-block;
290 vertical-align: top;
291 height: 23px;
292 width: 23px;
294 #nav-item-search input {
295 height: 23px;
296 width: calc(95% - 80px);
297 padding: 1px 4px;
299 #nav-item-search button {
300 height: 21px;
303 /*=-----------=*/
304 /*= Login tab =*/
305 /*=-----------=*/
307 #nav-item-login {
308 position: relative;
309 padding-right: 0.5em;
312 /*******************/
313 /* INBOX INDICATOR */
314 /*******************/
316 #inbox-indicator {
317 position: absolute;
318 top: 1px;
319 right: 0;
320 height: 100%;
321 visibility: hidden;
323 #inbox-indicator::before {
324 content: "\F0E0";
325 font-family: "Font Awesome", "Font Awesome 5 Free";
326 color: #bbb;
327 font-size: 1.1875rem;
328 position: absolute;
329 height: 100%;
330 right: 0;
331 top: 0;
332 padding: 0 0.45em;
333 visibility: visible;
334 font-weight: 900;
336 #inbox-indicator.new-messages::before {
337 color: #f00;
338 text-shadow:
339 0 0 1px #777,
340 0.5px 0.5px 1px #777;
342 a#inbox-indicator:hover::before {
343 color: #fff;
344 text-shadow:
345 0 0 1px #000,
346 0 0 2px #000,
347 0 0 4px #000,
348 0 0 1px #777,
349 0.5px 0.5px 1px #777;
351 a#inbox-indicator.new-messages:hover::before {
352 text-shadow:
353 0 0 1px #f00,
354 0 0 2px #f00,
355 0 0 4px #f00,
356 0 0 1px #777,
357 0.5px 0.5px 1px #777;
360 /****************/
361 /* PAGE TOOLBAR */
362 /****************/
364 .page-toolbar {
365 font-size: 0.9em;
366 line-height: 1.8;
367 text-align: right;
368 margin-right: -20px;
370 #content > .page-toolbar {
371 grid-column: 3;
372 grid-row: span 3;
374 #content.user-page > .page-toolbar {
375 grid-column: 2 / span 2;
376 order: -4;
379 /*=--------------------------=*/
380 /*= Page toolbar items (all) =*/
381 /*=--------------------------=*/
383 .page-toolbar > * {
384 display: inline-block;
385 margin-left: 1.5em;
387 .page-toolbar > form button {
388 padding: 0;
389 text-align: right;
390 white-space: unset;
392 .page-toolbar > form button::before {
393 text-align: center;
395 .page-toolbar .button::before {
396 font-family: "Font Awesome", "Font Awesome 5 Free";
397 font-size: 0.9em;
398 padding-right: 0.3em;
401 /*=-------------------------------=*/
402 /*= Page toolbar items (specific) =*/
403 /*=-------------------------------=*/
405 .new-post::before {
406 content: '\F067';
407 font-weight: 900;
409 .new-private-message::before {
410 content: '\F075';
411 font-weight: 400;
413 .logout-button::before {
414 content: '\F2F5';
415 font-weight: 900;
417 #enable-push-notifications::before {
418 content: '\F0F3';
419 font-weight: 400;
421 .ignore-button::before {
422 content: "\F070";
423 font-weight: 400;
425 .unignore-button::before {
426 content: "\F06E";
427 font-weight: 400;
429 .rss::before {
430 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
431 display: inline-block;
432 width: 1em;
433 padding-right: 0.2em;
434 position: relative;
435 top: 1px;
438 /*********************/
439 /* TOP PAGINATION UI */
440 /*********************/
442 #top-nav-bar {
443 grid-column: 2;
444 margin: 0.25em 0 0 0;
445 padding: 0.75em 0 0 0;
446 text-align: center;
447 font-size: 1.25em;
448 display: flex;
449 justify-content: center;
451 #top-nav-bar a {
452 line-height: 1;
454 #top-nav-bar a.disabled {
455 pointer-events: none;
456 visibility: hidden;
458 #top-nav-bar .page-number {
459 position: relative;
460 display: inline-block;
461 width: 1.5em;
463 #top-nav-bar .page-number-label {
464 position: absolute;
465 font-size: 0.5em;
466 text-transform: uppercase;
467 width: 100%;
468 bottom: 90%;
469 left: 0;
471 #top-nav-bar a::before {
472 margin: 0.5em;
473 display: inline-block;
476 /****************/
477 /* SUBLEVEL NAV */
478 /****************/
480 .sublevel-nav {
481 text-align: center;
482 display: flex;
483 justify-content: center;
484 margin: 1em 0 0 0;
486 #content > .sublevel-nav:not(.sort) {
487 grid-column: 2;
488 align-self: start;
490 .sublevel-nav .sublevel-item {
491 flex: 0 0 6em;
492 padding: 0.125em 0.5em;
493 font-size: 1.125rem;
495 .sublevel-nav .sublevel-item:active {
496 transform: none;
498 .sublevel-nav .sublevel-item.selected {
499 cursor: default;
502 /***********************/
503 /* SORT ORDER SELECTOR */
504 /***********************/
506 .sublevel-nav.sort {
507 position: relative;
508 margin-top: 8px;
509 font-size: 0.75em;
511 #content > .sublevel-nav.sort {
512 grid-column: 3;
513 grid-row: span 2;
514 justify-self: end;
515 align-self: start;
516 flex-flow: column;
518 #content.index-page > .sublevel-nav.sort {
519 grid-column: 1;
520 justify-self: start;
521 flex-flow: row;
524 .sublevel-nav.sort::before {
525 content: "Sort";
526 font-size: 0.75rem;
527 position: absolute;
528 top: 0;
529 left: 0;
530 width: 100%;
532 .sublevel-nav.sort .sublevel-item {
533 line-height: 1;
534 font-size: 0.875rem;
535 flex-basis: unset;
538 /*******************************/
539 /* COMMENTS SORT MODE SELECTOR */
540 /*******************************/
542 .comments > .sublevel-nav.sort {
543 margin: 1em auto 0 auto;
545 @supports (width: -moz-fit-content) {
546 .comments > .sublevel-nav.sort {
547 width: -moz-fit-content;
550 @supports (width: fit-content) {
551 .comments > .sublevel-nav.sort {
552 width: fit-content;
557 /**********************/
558 /* DARK MODE SELECTOR */
559 /**********************/
561 #dark-mode-selector {
562 position: absolute;
563 top: 4px;
564 right: -78px;
565 display: flex;
566 opacity: 0.4;
568 #dark-mode-selector:hover {
569 opacity: 1.0;
572 /*=---------=*/
573 /*= Buttons =*/
574 /*=---------=*/
576 #dark-mode-selector button {
577 font-family: "Font Awesome", "Font Awesome 5 Free";
578 font-size: 1.125rem;
579 width: 24px;
580 height: 24px;
581 padding: 0;
582 line-height: 1;
583 font-weight: 400;
585 #dark-mode-selector button.select-mode-auto {
587 #dark-mode-selector button.select-mode-light {
588 font-size: 1.25rem;
589 padding: 1px 0 0 1px;
591 #dark-mode-selector button.select-mode-dark {
592 font-weight: 300;
593 font-size: 1.25rem;
594 padding: 1px 0 0 4px;
596 #dark-mode-selector button.select-mode-dark.selected {
597 font-weight: 400;
599 #dark-mode-selector button:disabled:active {
600 transform: none;
602 #dark-mode-selector button:disabled:hover {
603 cursor: default;
606 /*=----------------=*/
607 /*= Hover tooltips =*/
608 /*=----------------=*/
610 #dark-mode-selector button::after {
611 content: attr(data-name);
612 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
613 font-weight: normal;
614 position: absolute;
615 display: block;
616 left: 0;
617 width: 100%;
618 text-align: center;
619 top: 92px;
620 font-size: 1rem;
621 visibility: hidden;
623 #dark-mode-selector button.selected::after {
624 content: attr(data-name) " (selected)";
626 #dark-mode-selector button:hover:not(:active)::after {
627 visibility: visible;
631 /******************/
632 /* WIDTH SELECTOR */
633 /******************/
635 #width-selector {
636 position: absolute;
637 top: 40px;
638 right: -78px;
640 #width-selector button {
641 width: 22px;
642 height: 22px;
643 padding: 6px;
644 margin: 1px;
645 overflow: hidden;
646 background-repeat: no-repeat;
647 background-size: 100%;
648 background-origin: content-box;
650 #width-selector button,
651 #width-selector button:active,
652 #width-selector button:focus {
653 text-shadow: none;
654 color: transparent;
656 #width-selector button:disabled {
657 cursor: auto;
659 #width-selector button.select-width-normal {
660 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
662 #width-selector button.select-width-wide {
663 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
665 #width-selector button.select-width-fluid {
666 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
669 /*=----------------=*/
670 /*= Hover tooltips =*/
671 /*=----------------=*/
673 #width-selector button::after {
674 content: attr(data-name);
675 position: absolute;
676 display: block;
677 left: 0;
678 width: 100%;
679 text-align: center;
680 top: 56px;
681 visibility: hidden;
683 #width-selector button.selected::after {
684 content: attr(data-name) " (selected)";
686 #width-selector button:hover:not(:active)::after {
687 visibility: visible;
690 head.content-width-normal + body > * {
691 max-width: 900px;
693 head.content-width-wide + body > * {
694 max-width: 1150px;
696 head.content-width-fluid + body > * {
697 max-width: calc(100% - 300px);
700 /******************/
701 /* THEME SELECTOR */
702 /******************/
704 #theme-selector {
705 position: absolute;
706 top: 3px;
707 left: -41px;
708 opacity: 0.4;
709 display: table;
710 max-width: 40px;
712 #theme-selector:hover {
713 opacity: 1.0;
716 /*=----------------------=*/
717 /*= Theme select buttons =*/
718 /*=----------------------=*/
720 .theme-selector button {
721 display: table-cell;
722 width: 26px;
723 height: 26px;
724 padding: 5px;
725 margin: 1px 7px 0 7px;
726 color: transparent;
727 background-size: 16px 16px;
728 background-origin: content-box;
730 .theme-selector button,
731 .theme-selector button:hover,
732 .theme-selector button:active,
733 .theme-selector button:focus {
734 text-shadow: none;
735 color: transparent;
737 .theme-selector button:disabled {
738 cursor: auto;
741 /*=----------------------------=*/
742 /*= Pre-rendered button images =*/
743 /*=----------------------------=*/
744 /* (Each is just a capital letter A through whatever) */
746 .theme-selector button:nth-of-type(1) {
747 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
749 .theme-selector button:nth-of-type(2) {
750 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
752 .theme-selector button:nth-of-type(3) {
753 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
755 .theme-selector button:nth-of-type(4) {
756 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
758 .theme-selector button:nth-of-type(5) {
759 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
761 .theme-selector button:nth-of-type(6) {
762 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
764 .theme-selector button:nth-of-type(7) {
765 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
767 .theme-selector button:nth-of-type(8) {
768 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
770 .theme-selector button:nth-of-type(9) {
771 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
774 /*=------------------------------=*/
775 /*= Theme select button tooltips =*/
776 /*=------------------------------=*/
777 /* (with the name & description of the theme that each button selects) */
779 #theme-selector button {
780 position: relative;
781 z-index: 1;
783 #theme-selector button::before {
784 content: attr(data-theme-name);
785 position: absolute;
786 top: 0;
787 right: 100%;
788 padding: 5px 6px 6px 6px;
789 line-height: 1;
790 width: 6em;
791 text-align: right;
792 z-index: 1;
793 visibility: hidden;
795 #theme-selector:hover button::before {
796 visibility: visible;
798 #theme-selector:hover ~ #theme-tweaker-toggle,
799 #theme-selector:active ~ #theme-tweaker-toggle {
800 z-index: -1;
803 /************************/
804 /* THEME TWEAKER TOGGLE */
805 /************************/
807 #theme-tweaker-toggle {
808 position: absolute;
809 top: 7px;
810 left: -75px;
812 #theme-tweaker-toggle button {
813 font-family: "Font Awesome", "Font Awesome 5 Free";
814 font-weight: 900;
815 font-size: 1.25rem;
816 opacity: 0.4;
817 z-index: 1;
819 #theme-tweaker-toggle button:hover {
820 opacity: 1.0;
823 /*******************/
824 /* QUICKNAV WIDGET */
825 /*******************/
827 #quick-nav-ui {
828 position: absolute;
829 right: -67px;
830 bottom: 20px;
832 #quick-nav-ui a {
833 font-family: "Font Awesome", "Font Awesome 5 Free";
834 font-weight: 900;
835 font-size: 1.5rem;
836 line-height: 1.7;
837 text-align: center;
838 display: block;
839 width: 40px;
840 height: 40px;
841 margin: 10px 0 0 0;
843 #quick-nav-ui a[href='#comments'].no-comments {
844 pointer-events: none;
846 #quick-nav-ui a {
847 visibility: hidden;
849 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
850 visibility: visible;
853 /************************/
854 /* NEW COMMENT QUICKNAV */
855 /************************/
857 #new-comment-nav-ui {
858 position: absolute;
859 right: -112px;
860 bottom: 42px;
862 #new-comment-nav-ui > * {
863 display: block;
864 position: relative;
866 #new-comment-nav-ui.no-comments {
867 display: none;
870 /*=--------------------=*/
871 /*= New comments count =*/
872 /*=--------------------=*/
874 #new-comment-nav-ui .new-comments-count {
875 width: 2em;
876 font-size: 1.25rem;
877 line-height: 1.1;
878 text-align: center;
879 left: 1px;
880 cursor: pointer;
882 #new-comment-nav-ui .new-comments-count::selection {
883 background-color: transparent;
885 #new-comment-nav-ui .new-comments-count::after {
886 content: "NEW";
887 display: block;
888 font-size: 0.625rem;
891 /*=-----------------------------------=*/
892 /*= Next/previous new comment buttons =*/
893 /*=-----------------------------------=*/
895 #new-comment-nav-ui .new-comment-sequential-nav-button {
896 font-size: 1.75rem;
897 font-family: "Font Awesome", "Font Awesome 5 Free";
898 font-weight: 900;
899 width: 1.5em;
900 z-index: 5001;
902 #new-comment-nav-ui .new-comment-previous {
903 top: 8px;
905 #new-comment-nav-ui .new-comment-next {
906 bottom: 6px;
908 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
909 cursor: auto;
910 pointer-events: none;
913 /*******************/
914 /* HNS DATE PICKER */
915 /*******************/
917 #hns-date-picker {
918 position: absolute;
919 bottom: 72px;
920 right: -253px;
921 opacity: 0.6;
923 #hns-date-picker:hover,
924 #hns-date-picker:focus-within {
925 opacity: 1.0;
927 #hns-date-picker.no-comments {
928 display: none;
931 /*=---------------=*/
932 /*= "Since" label =*/
933 /*=---------------=*/
935 #hns-date-picker span {
936 display: block;
937 font-size: 0.75rem;
938 text-transform: uppercase;
941 /*=--------------------=*/
942 /*= "Since" text field =*/
943 /*=--------------------=*/
945 #hns-date-picker input {
946 margin-top: 1px;
947 padding: 1px 3px;
948 width: 140px;
949 text-align: center;
950 box-shadow: 0 0 0 1px transparent;
953 /************************/
954 /* ANTI-KIBITZER TOGGLE */
955 /************************/
957 #anti-kibitzer-toggle {
958 position: absolute;
959 right: -67px;
960 bottom: 225px;
962 #anti-kibitzer-toggle button {
963 display: block;
964 width: 40px;
965 height: 54px;
966 padding: 0;
968 #anti-kibitzer-toggle button::before,
969 #anti-kibitzer-toggle button::after {
970 font-family: "Font Awesome", "Font Awesome 5 Free";
972 #anti-kibitzer-toggle button::before {
973 content: "\F06E";
974 display: block;
975 font-size: 1.75em;
976 font-weight: 400;
978 #anti-kibitzer-toggle button::after {
979 content: "\F007\2004\F164";
980 font-size: 0.875em;
981 font-weight: 900;
983 #anti-kibitzer-toggle.engaged button::before {
984 content: "\F070";
987 /************************/
988 /* TEXT SIZE ADJUSTMENT */
989 /************************/
991 #text-size-adjustment-ui {
992 position: absolute;
993 top: 64px;
994 right: -78px;
995 opacity: 0.4;
997 #text-size-adjustment-ui:hover {
998 opacity: 1.0;
1001 /* This doesn't work in Mozilla browsers, so hide it */
1002 @-moz-document url-prefix() {
1003 #text-size-adjustment-ui {
1004 display: none;
1008 /*=---------=*/
1009 /*= Buttons =*/
1010 /*=---------=*/
1012 #text-size-adjustment-ui button {
1013 font-weight: 900;
1014 font-family: "Font Awesome", "Font Awesome 5 Free";
1015 font-size: 0.75rem;
1016 width: 24px;
1017 height: 24px;
1018 padding: 0;
1020 #text-size-adjustment-ui button.default {
1021 font-family: inherit;
1022 font-size: 1.125rem;
1023 position: relative;
1024 top: 1px;
1026 #text-size-adjustment-ui button:disabled {
1027 opacity: 0.5;
1029 #text-size-adjustment-ui button:disabled:hover {
1030 cursor: default;
1033 /*=----------------=*/
1034 /*= Hover tooltips =*/
1035 /*=----------------=*/
1037 #text-size-adjustment-ui::after {
1038 content: "Adjust text size";
1039 position: absolute;
1040 display: block;
1041 left: 0;
1042 width: 100%;
1043 text-align: center;
1044 top: 32px;
1045 visibility: hidden;
1046 font-size: 0.9em;
1048 #text-size-adjustment-ui:hover::after {
1049 visibility: visible;
1052 /*******************************/
1053 /* COMMENTS VIEW MODE SELECTOR */
1054 /*******************************/
1056 #comments-view-mode-selector {
1057 position: absolute;
1058 bottom: 30px;
1059 left: -40px;
1060 opacity: 0.6;
1062 #comments-view-mode-selector:hover {
1063 opacity: 1.0;
1066 /*=---------=*/
1067 /*= Buttons =*/
1068 /*=---------=*/
1070 #comments-view-mode-selector a {
1071 display: block;
1072 font-family: "Font Awesome", "Font Awesome 5 Free";
1073 font-size: 1.25rem;
1074 text-align: center;
1075 opacity: 0.4;
1076 padding: 0.25em;
1077 z-index: 1;
1079 #comments-view-mode-selector a.threaded {
1080 transform: scaleY(-1);
1081 font-weight: 900;
1083 #comments-view-mode-selector a.chrono {
1084 font-weight: normal;
1086 #comments-view-mode-selector a.selected,
1087 #comments-view-mode-selector a:hover {
1088 opacity: 1.0;
1089 text-decoration: none;
1091 #comments-view-mode-selector a.selected {
1092 cursor: default;
1095 /*****************/
1096 /* KEYBOARD HELP */
1097 /*****************/
1099 #keyboard-help-overlay {
1100 width: 100vw;
1101 height: 100vh;
1102 background-color: rgba(0,0,0,0.7);
1103 position: fixed;
1104 left: 0;
1105 top: 0;
1106 z-index: 5001;
1108 display: flex;
1109 justify-content: center;
1110 align-items: center;
1111 padding: 20px 30px 30px 20px;
1113 visibility: hidden;
1116 #keyboard-help-overlay .keyboard-help-container {
1117 background-color: #fff;
1118 filter: drop-shadow(4px 4px 2px #000);
1119 flex: 1 1 auto;
1120 max-width: 1500px;
1121 max-height: 100%;
1122 overflow-y: auto;
1123 position: relative;
1125 #keyboard-help-overlay .keyboard-help-container h1 {
1126 text-align: center;
1127 border-bottom: 1px solid #ddd;
1128 margin: 0;
1129 padding: 10px 20px;
1131 #keyboard-help-overlay .keyboard-help-container .note {
1132 margin: 0.5em auto;
1133 padding: 0 1em;
1134 width: fit-content;
1136 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1137 column-width: 21em;
1138 column-count: auto;
1139 column-gap: 1.5em;
1140 border-top: 1px solid #ddd;
1141 padding: 15px 20px;
1143 #keyboard-help-overlay .keyboard-help-container ul {
1144 list-style-type: none;
1145 margin: 0;
1146 padding: 0;
1147 break-inside: avoid;
1148 white-space: nowrap;
1150 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1151 margin: 20px 0 0 0;
1153 #keyboard-help-overlay .keyboard-help-container ul li.section {
1154 font-weight: bold;
1155 font-size: 1.125rem;
1156 break-after: avoid;
1158 #keyboard-help-overlay .keyboard-help-container .keys {
1159 margin: 0 0.5em 0 0;
1160 min-width: 4.5em;
1161 display: inline-block;
1163 #keyboard-help-overlay .keyboard-help-container .keys code {
1164 margin: 0 6px 0 0;
1166 #keyboard-help-overlay .keyboard-help-container code {
1167 display: inline-block;
1168 background-color: #eee;
1169 border: 1px solid #ccc;
1170 padding: 3px 8px 4px 8px;
1171 margin: 0 1px;
1173 #keyboard-help-overlay .keyboard-help-container code.ak {
1174 background-color: #ffeb83;
1175 border-color: #d4a500;
1177 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1178 content: "ak+";
1179 opacity: 0.3;
1182 #nav-item-about button.open-keyboard-help {
1183 display: none;
1185 @media only screen and (hover:hover) and (pointer:fine) {
1186 #nav-item-about {
1187 position: relative;
1188 padding-right: 0.25em;
1190 #nav-item-about button.open-keyboard-help {
1191 font-family: "Font Awesome", "Font Awesome 5 Free";
1192 font-weight: 900;
1193 position: absolute;
1194 top: 0;
1195 right: 0;
1196 height: 100%;
1197 padding: 8px;
1198 display: initial;
1199 line-height: 1;
1200 background-color: transparent;
1204 #keyboard-help-overlay button.close-keyboard-help {
1205 position: absolute;
1206 right: 0;
1207 top: 0;
1208 font-family: "Font Awesome", "Font Awesome 5 Free";
1209 font-size: 1.5rem;
1210 padding: 10px 12px;
1213 /************/
1214 /* ARCHIVES */
1215 /************/
1217 .archive-nav {
1218 margin: 1.25em 0.5em 0 0.5em;
1219 padding: 0.25em;
1221 .archive-nav > * {
1222 display: flex;
1224 .archive-nav *[class^='archive-nav-item'] {
1225 line-height: 1;
1226 flex: 1 1 5%;
1227 text-align: center;
1228 padding: 6px 4px 4px 4px;
1229 max-width: 8%;
1231 @-moz-document url-prefix() {
1232 .archive-nav *[class^='archive-nav-item'] {
1233 padding: 5px 4px;
1236 .archive-nav-days .archive-nav-item-day {
1237 font-size: 0.8em;
1238 padding: 7px 0 5px 0;
1239 max-width: 4%;
1241 .archive-nav-days .archive-nav-item-day:first-child {
1242 flex-basis: 10%;
1245 /************/
1246 /* ARCHIVES */
1247 /************/
1249 .archive-nav {
1250 margin: 1.25em 0.5em 0 0.5em;
1251 padding: 0.25em;
1253 .archive-nav > * {
1254 display: flex;
1256 .archive-nav *[class^='archive-nav-item'] {
1257 line-height: 1;
1258 flex: 1 1 5%;
1259 text-align: center;
1260 padding: 6px 4px 4px 4px;
1261 max-width: 8%;
1263 @-moz-document url-prefix() {
1264 .archive-nav *[class^='archive-nav-item'] {
1265 padding: 5px 4px;
1268 .archive-nav-days .archive-nav-item-day {
1269 font-size: 0.8em;
1270 padding: 7px 0 5px 0;
1271 max-width: 4%;
1273 .archive-nav-days .archive-nav-item-day:first-child {
1274 flex-basis: 10%;
1277 /************/
1278 /* LISTINGS */
1279 /************/
1281 h1.listing {
1282 font-size: 1.875rem;
1283 line-height: 1.15;
1284 max-height: 1.15em;
1285 position: relative;
1288 h1.listing a {
1289 position: relative;
1292 /* Links to link-posts (not the link-post links themselves; that's below) */
1293 h1.listing .link-post-link + a {
1294 margin-left: 0.25em;
1297 h1.listing .link-post-link {
1298 font-size: 0.8em;
1299 display: inline;
1300 vertical-align: top;
1301 position: relative;
1302 top: 4px;
1305 /*=----------------------=*/
1306 /*= Listing hover reveal =*/
1307 /*=----------------------=*/
1308 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1310 @media only screen and (min-width: 1160px) {
1311 h1.listing a {
1312 max-width: 100%;
1313 display: inline-block;
1314 white-space: nowrap;
1315 text-overflow: ellipsis;
1316 overflow: hidden;
1317 border-bottom: 1px solid transparent;
1318 -webkit-hyphens: auto;
1319 -moz-hyphens: auto;
1320 -ms-hyphens: auto;
1321 hyphens: auto;
1322 z-index: 1;
1323 padding: 0 0 1px 1px;
1325 h1.listing .link-post-link + a {
1326 max-width: calc(100% - 40px);
1328 h1.listing a:hover,
1329 h1.listing a:focus {
1330 text-decoration: dotted underline;
1331 white-space: initial;
1332 overflow: visible;
1333 z-index: 2;
1335 h1.listing:focus-within::before {
1336 content: "\F105";
1337 font-family: "Font Awesome", "Font Awesome 5 Free";
1338 display: block;
1339 position: absolute;
1340 left: -0.75em;
1343 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1344 mouse movements) */
1346 h1.listing a:not(.edit-post-link):hover::before {
1347 content: "";
1348 position: absolute;
1349 top: -10px;
1350 right: -10px;
1351 bottom: -10px;
1352 left: -10px;
1353 z-index: -1;
1355 h1.listing .link-post-link:hover {
1356 text-decoration: none;
1360 /*=-----------------------=*/
1361 /*= In-listing edit links =*/
1362 /*=-----------------------=*/
1364 h1.listing .edit-post-link {
1365 position: absolute;
1366 margin: 0;
1369 /*=---------------------------------=*/
1370 /*= Error messages on listing pages =*/
1371 /*=---------------------------------=*/
1373 .listing-message {
1374 width: 100%;
1375 text-align: center;
1376 padding: 1.25em 0 1.25em 0;
1377 font-size: 1.375em;
1380 /*********************/
1381 /* LISTING POST-META */
1382 /*********************/
1384 h1.listing + .post-meta {
1385 position: relative;
1386 justify-content: flex-start;
1387 margin: 0 20px 0 21px;
1390 h1.listing + .post-meta > * {
1391 margin: 0 1em 0 0;
1394 h1.listing + .post-meta .post-section {
1395 width: 0;
1396 margin: 0;
1397 overflow: hidden;
1399 h1.listing + .post-meta .post-section::before {
1400 position: absolute;
1401 left: -36px;
1404 h1.listing + .post-meta .read-time {
1405 cursor: default;
1408 /********************/
1409 /* SEQUENCES & TAGS */
1410 /********************/
1412 .sequence-text, .tag-description {
1413 font-size: 1.2rem;
1414 padding: 0 22px;
1417 #content.tag-index-page .tag-description {
1418 margin: 1em 0 0;
1421 section {
1422 margin-top: 2em;
1423 margin-bottom: 4em;
1426 h1.sequence-chapter {
1427 font-size: 2.3rem;
1430 article {
1431 max-width: 100%;
1434 .post-meta + .comments {
1435 margin-top: 3em;
1438 .tag-list {
1439 column-count: auto;
1440 column-width: 15em;
1441 margin-top: 0;
1442 border-bottom: 1px solid #999;
1443 padding-bottom: 1em;
1444 margin-bottom: 0;
1447 /**************/
1448 /* USER PAGES */
1449 /**************/
1451 /*=---------------------=*/
1452 /*= User's display name =*/
1453 /*=---------------------=*/
1455 #content.user-page h1.page-main-heading {
1456 margin: 0.25em 0 0 0;
1457 line-height: 1.1;
1458 grid-column: 1 / span 2;
1459 order: -2;
1462 #content.user-page h1.page-main-heading .user-full-name {
1463 font-size: 1rem;
1464 font-weight: normal;
1465 padding-left: 0.5em;
1468 /*=--------------------=*/
1469 /*= User's karma total =*/
1470 /*=--------------------=*/
1472 #content.user-page .user-stats {
1473 grid-column: 3;
1474 order: -2;
1475 text-align: right;
1476 align-self: end;
1479 #content.user-page .user-stats .karma-type {
1480 white-space: nowrap;
1483 /*=----------------------=*/
1484 /*= Expanded vs. compact =*/
1485 /*=----------------------=*/
1487 #content.user-page #comments-list-mode-selector {
1488 grid-row: span 2;
1490 #content.user-page #comments-list-mode-selector button {
1491 display: block;
1494 /*=----------------------------------------------------=*/
1495 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1496 /*=----------------------------------------------------=*/
1498 #content.user-page .sublevel-nav {
1499 margin-bottom: 0.5em;
1502 /*=--------------=*/
1503 /*= User's posts =*/
1504 /*=--------------=*/
1506 #content.user-page h1.listing {
1507 margin: 0.5em 0 0 0;
1510 #content.user-page .user-bio :first-child {
1511 margin-top: 0.5em;
1514 /*****************/
1515 /* CONVERSATIONS */
1516 /*****************/
1518 /*=----------------------=*/
1519 /*= List of participants =*/
1520 /*=----------------------=*/
1522 #content.conversation-page .conversation-participants {
1523 grid-column: 2 / span 2;
1524 text-align: right;
1525 margin: 0.5em 0 0 0;
1527 .post-meta > .conversation-participants {
1528 white-space: normal;
1530 .conversation-participants ul,
1531 .conversation-participants li {
1532 list-style-type: none;
1533 display: inline-block;
1534 margin: 0;
1535 padding: 0;
1537 .conversation-participants li {
1538 margin-left: 0.375em;
1540 .conversation-participants li:not(:last-of-type)::after {
1541 content: ",";
1544 /*=-------------------------=*/
1545 /*= Posting controls (form) =*/
1546 /*=-------------------------=*/
1548 #content.conversation-page .posting-controls {
1549 padding: 0 0 1em 0;
1551 #content.conversation-page .post-meta-fields {
1552 overflow: auto;
1553 display: flex;
1554 flex-flow: row wrap;
1556 .posting-controls.standalone textarea {
1557 margin-top: 0.375em;
1559 .posting-controls.standalone form {
1560 padding: 0 1em;
1562 #content.conversation-page .posting-controls.standalone form {
1563 padding: 0 1em 3em 1em;
1565 .posting-controls.standalone input[type='text'],
1566 .posting-controls.standalone label {
1567 margin: 0.25em 0;
1569 .posting-controls.standalone label {
1570 width: 4em;
1571 text-align: right;
1572 padding: 2px 6px;
1573 border: 1px solid transparent;
1575 .posting-controls.standalone input[type='text'] {
1576 width: calc(100% - 4em);
1577 padding: 0.25em;
1579 .posting-controls.standalone input[type='submit'] {
1580 float: right;
1582 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1583 white-space: nowrap;
1585 .posting-controls.standalone #markdown-hints {
1586 top: calc(100% + 2em);
1589 /*=--------------------=*/
1590 /*= Conversation title =*/
1591 /*=--------------------=*/
1593 #content.conversation-page h1.page-main-heading {
1594 text-align: center;
1595 margin: 0.5em 0;
1596 line-height: 1.15;
1599 /*=----------=*/
1600 /*= Messages =*/
1601 /*=----------=*/
1603 #content.conversation-page > ul.comment-thread:last-of-type {
1604 margin-bottom: 2em;
1607 /******************/
1608 /* SEARCH RESULTS */
1609 /******************/
1611 #content.search-results-page h1.listing,
1612 #content.sequence-page h1.listing,
1613 #content.post-page h1.listing {
1614 font-size: 1.625em;
1617 /**************/
1618 /* LOGIN PAGE */
1619 /**************/
1621 .login-container {
1622 margin: 2em 0;
1623 padding: 1em;
1624 display: flex;
1625 flex-flow: row wrap;
1628 .login-container form {
1629 flex-basis: 50%;
1630 display: grid;
1631 grid-row-gap: 0.5em;
1632 align-content: start;
1634 .login-container form label {
1635 text-align: right;
1636 padding: 0.25em 0.5em;
1637 white-space: nowrap;
1638 grid-column: 1;
1640 .login-container form input {
1641 grid-column: 2;
1642 padding: 0.25em;
1644 .login-container form input[type='submit'],
1645 .login-container form a {
1646 grid-column: 2;
1647 justify-self: center;
1649 .login-container form input[type='submit'] {
1650 width: 10em;
1651 padding: 0.35em;
1652 line-height: 1;
1653 margin: 0.5em 0 0 0;
1655 .login-container form h1 {
1656 text-align: center;
1657 margin: 0;
1658 grid-column: 2;
1661 /* “Log in” form */
1663 #login-form {
1664 grid-template-columns: 5.5em 1fr;
1665 padding: 0.5em 2em 0.5em 0;
1668 /* “Create account” form */
1670 #signup-form {
1671 font-size: 0.9em;
1672 grid-template-columns: 8.5em 1fr;
1673 padding: 0.5em 1em 1em 1em;
1675 #signup-form h1 {
1676 font-size: 1.7em;
1678 #signup-form input[type='submit'] {
1679 padding: 0.4em 0.5em 0.5em 0.5em;
1682 /* Log in tip */
1684 .login-container .login-tip {
1685 padding: 0.5em 0.5em 0.5em 3em;
1686 margin: 2em 4em 0 4em;
1687 text-indent: -2em;
1688 line-height: 1.4;
1690 .login-container .login-tip span {
1691 font-weight: bold;
1694 /* Message box */
1696 #content.login-page .error-box {
1697 margin: 1.5em 0.875em -1.5em 0.875em;
1699 .error-box, .success-box {
1700 padding: 0.25em;
1701 text-align: center;
1704 /***********************/
1705 /* PASSWORD RESET PAGE */
1706 /***********************/
1708 .reset-password-container {
1709 margin-bottom: 2em;
1711 .reset-password-container input[type='submit'] {
1712 padding: 0.2em 0.5em;
1713 width: unset;
1715 .reset-password-container input {
1716 margin-left: 0.5em;
1717 width: 12em;
1719 .reset-password-container label {
1720 display: inline-block;
1721 width: 9em;
1723 .reset-password-container form > div {
1724 margin: 0.2em;
1726 .reset-password-container .action-container {
1727 padding-left: 11em;
1728 padding-top: 0.2em;
1730 .reset-password-container .error-box {
1731 margin: unset;
1734 /*********************/
1735 /* TABLE OF CONTENTS */
1736 /*********************/
1738 .contents {
1739 float: right;
1740 min-width: 6em;
1741 max-width: 40%;
1742 margin: 1.25em 0 0.75em 1.25em;
1743 padding: 7px 14px 10px 10px;
1744 position: relative;
1745 z-index: 1;
1748 .contents-head {
1749 text-align: center;
1750 margin-bottom: 0.25em;
1753 .post-body .contents ul {
1754 list-style-type: none;
1755 margin: 0 0 0 0.5em;
1756 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1757 padding-left: 1em;
1758 font-size: 0.75em;
1760 .post-body .contents li {
1761 margin: 0.15em 0 0.3em 1em;
1762 text-align: left;
1763 text-indent: -1em;
1764 line-height: 1.2;
1765 position: relative;
1767 .post-body .contents li::before {
1768 position: absolute;
1769 width: 3em;
1770 display: block;
1771 text-align: right;
1772 left: -4.5em;
1774 .contents .toc-item-1 {
1775 counter-increment: toc-item-1;
1776 counter-reset: toc-item-2 toc-item-3;
1778 .contents .toc-item-1::before {
1779 content: counter(toc-item-1);
1781 .contents .toc-item-1 ~ .toc-item-2 {
1782 margin-left: 2.9em;
1783 font-size: 0.95em;
1785 .contents .toc-item-2 {
1786 counter-increment: toc-item-2;
1787 counter-reset: toc-item-3;
1789 .contents .toc-item-1 ~ .toc-item-2::before {
1790 content: counter(toc-item-1) "." counter(toc-item-2);
1792 .contents .toc-item-2::before {
1793 content: counter(toc-item-2);
1795 .contents .toc-item-1 + .toc-item-3 {
1796 counter-increment: toc-item-2 toc-item-3;
1798 .contents .toc-item-2 ~ .toc-item-3,
1799 .contents .toc-item-1 ~ .toc-item-3 {
1800 margin-left: 2.9em;
1801 font-size: 0.95em;
1803 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1804 margin-left: 5.7em;
1805 font-size: 0.9em;
1807 .contents .toc-item-3 {
1808 counter-increment: toc-item-3;
1810 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1811 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1813 .contents .toc-item-1 ~ .toc-item-3::before {
1814 content: counter(toc-item-1) "." counter(toc-item-3);
1816 .contents .toc-item-2 ~ .toc-item-3::before {
1817 content: counter(toc-item-2) "." counter(toc-item-3);
1819 .contents .toc-item-3::before {
1820 content: counter(toc-item-3);
1822 .contents .toc-item-4,
1823 .contents .toc-item-5,
1824 .contents .toc-item-6 {
1825 display: none;
1828 /********************/
1829 /* POSTS & COMMENTS */
1830 /********************/
1832 .post-meta > *,
1833 .comment-meta > * {
1834 display: inline-block;
1835 margin-right: 1em;
1836 font-size: 1.0625em;
1838 .body-text {
1839 overflow-wrap: break-word;
1840 text-align: justify;
1842 .body-text p {
1843 margin: 1em 0;
1845 .retracted .body-text {
1846 text-decoration: line-through;
1849 .bare-url {
1850 word-break: break-all;
1851 hyphens: auto;
1853 .body-text a:not([href]),
1854 .body-text a:not([href]):hover,
1855 .body-text a:not([href])::before,
1856 .body-text a:not([href])::after {
1857 text-decoration: none;
1858 text-shadow: unset;
1859 border: unset;
1860 color: unset;
1861 content: unset;
1863 /*************/
1864 /* POST-META */
1865 /*************/
1867 .post-meta {
1868 display: flex;
1869 flex-flow: row wrap;
1870 justify-content: center;
1872 .post-meta .lw2-link {
1873 opacity: 0.5;
1874 order: 1;
1876 .post-meta > *,
1877 .post-meta .post-section::before {
1878 margin: 0 0.5em;
1880 .post-meta .post-section {
1881 order: -1;
1882 margin: 0;
1883 visibility: hidden;
1885 .post-meta .post-section::before,
1886 .comment-meta .alignment-forum {
1887 visibility: visible;
1888 font-family: "Font Awesome", "Font Awesome 5 Free";
1889 font-weight: 900;
1891 .post-section.frontpage::before {
1892 content: "\F015";
1894 .post-section.featured::before {
1895 content: "\F005";
1897 .post-section.meta::before {
1898 content: "\F077";
1900 .post-section.events::before {
1901 content: "\F5A0";
1903 .post-section.personal::before {
1904 content: "\F007";
1906 .post-section.draft::before {
1907 content: "\F15B";
1909 .post-section.alignment-forum::before,
1910 .comment-meta .alignment-forum {
1911 content: "AF";
1912 font-family: Concourse, 'Changa One';
1915 /*= Karma controls hover tooltips =*/
1917 @media only screen and (pointer: fine) {
1918 .post .voting-controls,
1919 .comment-item .voting-controls {
1920 position: relative;
1922 .post .karma.active-controls::after,
1923 .comment-item .karma.active-controls::after {
1924 content: "Double-click for strong vote";
1925 position: absolute;
1926 pointer-events: none;
1927 display: block;
1928 left: 6px;
1929 width: 100%;
1930 line-height: 1.15;
1931 white-space: normal;
1932 text-align: center;
1933 font-size: 0.875rem;
1934 opacity: 0;
1935 transition: opacity 0.2s ease;
1937 .post .voting-controls.active-controls:hover::after,
1938 .comment-item .voting-controls.active-controls:hover::after {
1939 opacity: 1.0;
1942 .post .voting-controls .karma-value::after,
1943 .comment-item .voting-controls .karma-value::after {
1944 content: attr(title);
1945 position: absolute;
1946 pointer-events: none;
1947 display: block;
1948 left: 50%;
1949 transform: translateX(-50%);
1950 white-space: pre-wrap;
1951 width: max-content;
1952 text-align: center;
1953 font-size: 0.875rem;
1954 color: #bbb;
1955 opacity: 0;
1956 transition: opacity 0.2s ease;
1958 .post .voting-controls.agreement .karma-value:hover::after,
1959 .comment-item .voting-controls.agreement .karma-value:hover::after {
1960 top: unset;
1961 bottom: 100%;
1963 .post .voting-controls .karma-value:hover::after,
1964 .comment-item .voting-controls .karma-value:hover::after {
1965 opacity: 1.0;
1967 .post .voting-controls.waiting .karma-value:hover::after,
1968 .comment-item .voting-controls.waiting .karma-value:hover::after {
1969 display: none;
1971 .comment-item .voting-controls .karma-value:hover::after {
1972 z-index: 5001;
1975 .author {
1976 position: relative;
1978 .author:not(.redacted)::before {
1979 content: attr(data-full-name);
1980 position: absolute;
1981 pointer-events: none;
1982 display: block;
1983 padding: 0 1em;
1984 left: 50%;
1985 bottom: 2em;
1986 transform: translateX(-50%);
1987 white-space: nowrap;
1988 text-align: center;
1989 font-size: 0.875rem;
1990 font-weight: normal;
1991 opacity: 0;
1992 transition: opacity 0.2s ease;
1993 z-index: 5001;
1995 .author:hover::before {
1996 opacity: 1.0;
2000 /*********/
2001 /* POSTS */
2002 /*********/
2004 .post {
2005 max-width: 100%;
2008 .post-body {
2009 min-height: 8em;
2010 padding: 0 30px;
2011 line-height: 1.5;
2012 font-size: 1.3rem;
2013 overflow: auto;
2014 margin: 0.5em 0 0 0;
2016 h1.post-title {
2017 margin: 1.1em 0 0.35em 0;
2018 padding: 0 30px;
2019 text-align: center;
2020 font-size: 2.5em;
2021 line-height: 1;
2023 .post .post-meta {
2024 text-align: center;
2025 position: relative;
2026 z-index: 2;
2028 .post .top-post-meta:last-child {
2029 margin-bottom: 40px;
2031 .post .bottom-post-meta {
2032 margin: 0;
2033 padding: 20px 0;
2035 .bottom-post-meta {
2036 border-style: solid;
2037 border-width: 1px 0;
2040 /**********/
2041 /* EVENTS */
2042 /**********/
2044 .event-info .map {
2045 position: relative;
2046 width: 100%;
2047 margin: 2em 0 1em;
2050 .event-info .map::before {
2051 content: "";
2052 display: block;
2053 padding-bottom: 50%;
2056 .event-info .map iframe {
2057 width: 100%;
2058 height: 100%;
2059 border: 1px solid #000;
2060 position: absolute;
2061 top: 0;
2062 left: 0;
2065 .event-info ul {
2066 list-style: none;
2067 padding: 0;
2068 text-align: center;
2071 /*******************/
2072 /* POST NAVIGATION */
2073 /*******************/
2075 .post-nav-item {
2076 display: grid;
2077 grid-template: 100% / 32% 36% 32%;
2078 grid-template-areas:
2079 "prev seq next";
2081 .post-nav {
2082 display: flex;
2083 flex-flow: column;
2084 justify-content: flex-end;
2085 padding: 0.5em;
2088 .post-nav-title {
2089 font-size: 1.125em;
2090 line-height: 1.15;
2091 display: inline;
2092 border-top: 1px solid transparent;
2094 .post-nav.prev .post-nav-title,
2095 .post-nav.next .post-nav-title {
2096 border-bottom: 1px solid transparent;
2099 .sequence-title {
2100 align-items: center;
2101 text-align: center;
2102 grid-area: seq;
2104 .sequence-title .post-nav-title {
2105 font-size: 1.5em;
2108 .post-nav.prev {
2109 grid-area: prev;
2110 align-items: flex-start;
2112 .post-nav.prev .post-nav-title::before {
2113 content: "\F0D9\2005";
2115 .post-nav.next {
2116 grid-area: next;
2117 text-align: right;
2118 align-items: flex-end;
2120 .post-nav.prev .post-nav-label,
2121 .post-nav.next .post-nav-label {
2122 display: none;
2124 .post-nav.next .post-nav-title::after {
2125 content: "\2004\F0DA";
2127 .post-nav.prev .post-nav-title::before,
2128 .post-nav.next .post-nav-title::after {
2129 font-family: Font Awesome;
2130 font-weight: 900;
2131 vertical-align: text-bottom;
2132 opacity: 0.75;
2134 .post-nav-links {
2135 max-width: 100%;
2138 @media only screen and (max-width: 900px) {
2139 .post-nav-item {
2140 font-size: 0.875em;
2141 grid-template: auto auto / 50% 50%;
2142 grid-template-areas:
2143 "prev next"
2144 "seq seq";
2146 .post-nav.prev .post-nav-title,
2147 .post-nav.next .post-nav-title {
2148 border-bottom: none;
2150 .post-nav.prev {
2151 margin: 0 0 0 -1px;
2152 position: relative;
2153 left: 1px;
2155 .sequence-title {
2156 padding: 0.75em 0;
2159 @media only screen and (max-width: 520px) {
2160 .post-nav-links + .comments {
2161 padding: 1em 0 0 0;
2165 .related-posts, .related-post-group {
2166 padding-bottom: 1em;
2168 .related-post-type {
2169 font-size: 1.2em;
2170 font-weight: 600;
2171 margin-top: 0.5em;
2172 margin-bottom: -0.5em;
2173 list-style-type: disc;
2174 margin-left: -0.5em;
2175 opacity: 0.7;
2177 .related-post-type::before {
2178 content: "\269c";
2179 font-size: 1.375em;
2180 font-weight: normal;
2181 margin-right: 0.15em;
2182 position: relative;
2183 vertical-align: baseline;
2184 top: 0.05em;
2186 .related-posts .post-type-prefix {
2187 display: none;
2190 /**************/
2191 /* LINK POSTS */
2192 /**************/
2194 .post.link-post > .post-body > p:first-child {
2195 text-align: center;
2196 font-size: 1.125em;
2197 margin: 0.5em 0 0 0;
2199 .post.link-post > .post-body > p:only-child {
2200 font-size: 1.5em;
2201 margin: 1em 0;
2203 .post.link-post a.link-post-link::before {
2204 content: "\F0C1";
2205 font-family: "Font Awesome", "Font Awesome 5 Free";
2206 font-weight: 900;
2207 font-size: 0.75em;
2208 position: relative;
2209 top: -2px;
2210 margin-right: 0.25em;
2213 /************/
2214 /* COMMENTS */
2215 /************/
2217 .comments {
2218 max-width: 100%;
2219 padding: 0 0 1px 0;
2220 position: relative;
2222 .comments::before {
2223 content: "";
2224 position: absolute;
2225 display: block;
2226 top: 0;
2227 left: 0;
2228 width: 100%;
2229 height: 100%;
2230 pointer-events: none;
2232 ul.comment-thread {
2233 list-style-type: none;
2234 padding: 0;
2235 max-width: 100%;
2237 .comments .comment-thread > li {
2238 position: relative;
2240 #content > #top-nav-bar + .comment-thread .comment-item {
2241 margin-top: 0;
2244 .comment-item {
2245 margin: 2em 0 0 0;
2247 .comment-item .comment-item {
2248 margin: 1em 8px 8px 16px;
2250 .comment-item .comment-item + .comment-item {
2251 margin: 2em 8px 8px 16px;
2254 .comment-body {
2255 line-height: 1.45;
2256 font-size: 1.2rem;
2257 padding: 10px;
2259 .comment-body ul {
2260 list-style-type: circle;
2262 .comment-body > *:first-child {
2263 margin-top: 0;
2265 .comment-body > *:last-child {
2266 margin-bottom: 0;
2269 .comments-empty-message {
2270 width: 100%;
2271 text-align: center;
2272 padding: 0.75em 0 0.9em 0;
2273 font-size: 1.375em;
2276 /**********************************/
2277 /* DEEP COMMENT THREAD COLLAPSING */
2278 /**********************************/
2280 .comment-item > input[id^="expand"] {
2281 display: none;
2283 .comment-item > input[id^="expand"] + label {
2284 display: block;
2285 visibility: hidden;
2286 position: relative;
2287 margin: 8px 9px;
2289 .comment-item > input[id^="expand"] + label::after {
2290 content: "(Expand " attr(data-child-count) " below)";
2291 visibility: visible;
2292 position: absolute;
2293 left: 0;
2294 white-space: nowrap;
2295 cursor: pointer;
2297 .comment-item > input[id^="expand"]:checked + label::after {
2298 content: "(Collapse " attr(data-child-count) " below)";
2300 .comment-item > input[id^="expand"] ~ .comment-thread {
2301 max-height: 34px;
2302 overflow: hidden;
2304 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2305 margin-top: 0;
2307 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2308 max-height: 1000000px;
2311 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2312 margin: 0;
2314 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2315 display: none;
2318 /*************/
2319 /* BACKLINKS */
2320 /*************/
2322 .backlinks > input {
2323 display: none;
2326 .backlinks > label {
2327 margin-left: 10px;
2328 display: block;
2329 color: #00f;
2330 cursor: pointer;
2333 .backlinks > label::before {
2334 content: " ";
2335 border-left: 5px solid currentColor;
2336 border-top: 5px solid transparent;
2337 border-bottom: 5px solid transparent;
2338 transition: transform 0.25s ease-out;
2339 transform-origin: 29% 55%;
2340 display: inline-block;
2341 padding-right: 0.5em;
2344 .backlinks > input:checked + label::before {
2345 transform: rotate(90deg);
2348 .backlinks li {
2349 margin-top: 0;
2352 .backlinks > ul {
2353 height: 0;
2354 perspective-origin: top;
2355 transform: perspective(100em) rotateX(-90deg);
2356 transform-origin: center top;
2357 opacity: 0;
2358 margin-top: 0.5em;
2359 margin-bottom: 0.5em;
2362 .backlinks > input:checked ~ ul {
2363 height: auto;
2364 transform: perspective(100em) rotateX(0deg);
2365 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2366 opacity: 1;
2369 /****************/
2370 /* COMMENT-META */
2371 /****************/
2373 .comment-meta {
2374 padding: 2px 24px 2px 10px;
2375 margin: 0 -1px;
2376 border: none;
2377 display: flex;
2378 flex-flow: row wrap;
2379 align-items: baseline;
2381 .user-page .comment-meta,
2382 .conversation-page .comment-meta {
2383 padding-right: 10px;
2385 .comment-meta .comment-post-title {
2386 flex-basis: 100%;
2387 overflow: hidden;
2388 text-overflow: ellipsis;
2389 white-space: nowrap;
2390 line-height: 1.3;
2392 .conversation-page .comment-meta .comment-post-title {
2393 margin: 0;
2394 flex-basis: unset;
2395 flex: 1 0 auto;
2396 text-align: right;
2397 display: none; /* Not sure if we need to display this... */
2399 .comment-item .author:not(.redacted).original-poster::after {
2400 content: "\2004(OP)";
2401 font-size: 0.75em;
2404 /*****************************/
2405 /* COMMENT THREAD NAVIGATION */
2406 /*****************************/
2408 a.comment-parent-link:not(.inline-author),
2409 a.comment-parent-link.inline-author::before {
2410 opacity: 0.5;
2412 a.comment-parent-link:hover {
2413 opacity: 1.0;
2415 a.comment-parent-link::before {
2416 content: "\F062";
2417 font-family: "Font Awesome", "Font Awesome 5 Free";
2418 font-weight: 900;
2419 font-size: 0.75rem;
2420 line-height: 1;
2421 position: absolute;
2422 z-index: 1;
2423 display: block;
2424 padding: 3px 3px 0 3px;
2425 width: 16px;
2426 height: calc(100% + 2px);
2427 top: -1px;
2428 left: -17px;
2430 a.comment-parent-link::after {
2431 content: "";
2432 position: absolute;
2433 z-index: 0;
2434 display: block;
2435 width: calc(100% + 26px);
2436 height: calc(100% + 38px);
2437 top: -29px;
2438 left: -17px;
2439 pointer-events: none;
2440 overflow: hidden;
2441 visibility: hidden;
2443 a.comment-parent-link:hover::after {
2444 visibility: visible;
2447 .comment-child-links {
2448 flex-basis: 100%;
2450 .comment-child-link {
2451 margin: 0 0.25em;
2452 display: inline-block;
2454 .comment-child-link::before {
2455 content: ">";
2456 display: inline-block;
2457 margin: 0 2px 0 0;
2460 .comment-popup {
2461 position: fixed;
2462 top: 10%;
2463 right: 10%;
2464 max-width: 700px;
2465 z-index: 10001;
2466 font-size: 1rem;
2467 white-space: unset;
2468 pointer-events: none;
2470 .comment-popup .comment-parent-link {
2471 display: none;
2473 .comment-popup .comment-body {
2474 font-size: 1.0625rem;
2477 .comment-item.depth-odd {
2478 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2479 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2481 .comment-item.depth-even {
2482 --GW-comment-background-color: var(--GW-comment-background-color-even);
2483 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2486 .comment-item:target {
2487 --GW-comment-background-color: var(--GW-comment-background-color-target);
2489 .comment-item:target > .comment-thread > .comment-item {
2490 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2493 /**********************/
2494 /* COMMENT PERMALINKS */
2495 /**********************/
2496 /********************/
2497 /* COMMENT LW LINKS */
2498 /********************/
2500 .comment-meta .permalink::before,
2501 .comment-meta .lw2-link::before,
2502 .individual-thread-page a.comment-parent-link:empty::before {
2503 content: "";
2504 display: inline-block;
2505 width: 1rem;
2506 height: 1rem;
2507 border-radius: 3px;
2508 box-shadow:
2509 0 0 0 1px #fff,
2510 0 0 0 2px #00e,
2511 0 0 0 3px transparent;
2512 padding: 0 0 0 2px;
2513 background-size: 100%;
2514 position: relative;
2515 top: 2px;
2516 opacity: 0.5;
2518 .comment-meta .permalink::before {
2519 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');
2521 .comment-meta .lw2-link::before {
2522 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==');
2524 .individual-thread-page a.comment-parent-link:empty::before {
2525 left: unset;
2526 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==');
2528 .comment-meta .permalink:hover::before {
2529 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');
2531 .comment-meta .lw2-link:hover::before {
2532 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==');
2534 .individual-thread-page a.comment-parent-link:empty:hover::before {
2535 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=');
2537 .comment-meta .permalink:hover::before,
2538 .comment-meta .lw2-link:hover::before,
2539 .individual-thread-page a.comment-parent-link:empty:hover::before {
2540 box-shadow:
2541 0 0 0 2px #00e,
2542 0 0 0 3px transparent;
2543 opacity: 1.0;
2544 filter: unset;
2546 .comment-meta .permalink:active::before,
2547 .comment-meta .lw2-link:active::before,
2548 .individual-thread-page a.comment-parent-link:empty:active::before {
2549 transform: scale(0.9);
2552 .comment-meta .permalink,
2553 .comment-meta .lw2-link,
2554 .individual-thread-page .comment-parent-link:empty {
2555 position: relative;
2556 opacity: 1.0;
2558 .comment-meta .permalink::after,
2559 .comment-meta .lw2-link::after,
2560 .individual-thread-page .comment-parent-link:empty::after {
2561 content: "";
2562 width: 30px;
2563 height: 30px;
2564 display: block;
2565 position: absolute;
2566 top: -2px;
2567 left: -7px;
2568 box-shadow: none;
2569 pointer-events: auto;
2570 visibility: visible;
2573 /*************************/
2574 /* COMMENTS COMPACT VIEW */
2575 /*************************/
2577 #comments-list-mode-selector,
2578 #content.index-page #comments-list-mode-selector,
2579 #content.user-page #comments-list-mode-selector {
2580 padding-top: 6px;
2581 grid-column: 1;
2582 position: unset;
2583 z-index: 1;
2584 justify-self: start;
2585 align-self: start;
2587 #comments-list-mode-selector button {
2588 color: transparent;
2589 width: 32px;
2590 height: 32px;
2591 padding: 6px;
2592 margin: 1px;
2593 overflow: hidden;
2594 background-repeat: no-repeat;
2595 background-size: 100%;
2596 background-origin: content-box;
2598 #comments-list-mode-selector button:disabled {
2599 cursor: auto;
2601 #comments-list-mode-selector button.expanded {
2602 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2604 #comments-list-mode-selector button.compact {
2605 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2607 @media only screen and (max-resolution: 1dppx) {
2608 #comments-list-mode-selector button.expanded {
2609 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2611 #comments-list-mode-selector button.compact {
2612 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2616 #content > ul.comment-thread > li.comment-item,
2617 #content.compact > ul.comment-thread > li.comment-item {
2618 margin: 0;
2621 #content > .comment-thread {
2622 margin: 1em 0;
2624 #content.compact > .comment-thread {
2625 font-size: 0.9375rem;
2626 margin: 0.5em 0;
2628 #content.compact > .comment-thread:hover {
2629 z-index: 1;
2631 #content.compact > .comment-thread .comment-body {
2632 font-size: 1.0625rem;
2634 #content.compact > .comment-thread .comment-item,
2635 #content.index-page .comment-item.ignored,
2636 #content.inbox-user-page .comment-item.ignored {
2637 max-height: 61px;
2638 margin-top: 1em;
2639 overflow: hidden;
2640 position: relative;
2642 #content.compact > .comment-thread .comment-item {
2643 pointer-events: none;
2645 #content.compact > .comment-thread .comment-item::after {
2646 content: "…";
2647 position: absolute;
2648 right: 0;
2649 bottom: 0;
2650 font-size: 2rem;
2651 line-height: 1;
2652 padding: 0 16px 10px 64px;
2653 pointer-events: auto;
2655 @media only screen and (hover: hover) {
2656 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2657 #content.compact > .comment-thread .comment-item.expanded {
2658 overflow: visible;
2659 pointer-events: auto;
2660 z-index: 10;
2663 @media only screen and (hover: none) {
2664 #content.compact > .comment-thread.expanded .comment-item {
2665 overflow: visible;
2666 pointer-events: auto;
2667 z-index: 10;
2670 #content.compact > .comment-thread .comment-item .comment-meta {
2671 white-space: nowrap;
2672 overflow: hidden;
2673 text-overflow: ellipsis;
2674 padding: 2px 10px;
2676 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2677 white-space: unset;
2679 #content.compact > .comment-thread .comment-item .comment-meta a {
2680 pointer-events: auto;
2682 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2683 display: inline;
2685 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2686 margin-left: 0.75em;
2688 @media only screen and (hover: hover) {
2689 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2690 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2691 max-height: unset;
2693 #content.compact > .comment-thread .comment-item:hover .comment,
2694 #content.compact > .comment-thread .comment-item.expanded .comment {
2695 position: relative;
2696 z-index: 1;
2697 margin-bottom: 2em;
2698 bottom: 0;
2700 #content.compact > .comment-thread .comment-item:hover .comment::before,
2701 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2702 content: "";
2703 position: absolute;
2704 display: block;
2705 width: calc(100% + 20px);
2706 height: calc(100% + 20px);
2707 z-index: -1;
2708 top: -10px;
2709 left: -10px;
2711 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2712 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2713 margin: 0;
2716 @media only screen and (hover: none) {
2717 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2718 max-height: unset;
2720 #content.compact > .comment-thread.expanded .comment-item .comment {
2721 position: relative;
2722 z-index: 1;
2723 margin-bottom: 2em;
2724 bottom: 0;
2726 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2727 content: "";
2728 position: absolute;
2729 display: block;
2730 width: calc(100% + 14px);
2731 height: calc(100% + 20px);
2732 z-index: -1;
2733 top: -10px;
2734 left: -10px;
2736 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2737 margin: 0;
2739 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2740 content: "";
2741 display: block;
2742 position: fixed;
2743 top: 0;
2744 left: 0;
2745 width: 100%;
2746 height: 100%;
2747 z-index: -2;
2748 background-color: rgba(0,0,0,0.5);
2752 /*****************************/
2753 /* HIGHLIGHTING NEW COMMENTS */
2754 /*****************************/
2756 .new-comment::before {
2757 content: "";
2758 position: absolute;
2759 width: 100%;
2760 height: 100%;
2761 z-index: 5000;
2762 pointer-events: none;
2765 /***********************************/
2766 /* COMMENT THREAD MINIMIZE BUTTONS */
2767 /***********************************/
2769 .comment-minimize-button {
2770 font-family: "Font Awesome", "Font Awesome 5 Free";
2771 font-weight: 900;
2772 font-size: 1.25rem;
2773 line-height: 1;
2774 position: absolute;
2775 right: 1px;
2776 top: 1px;
2777 width: 18px;
2778 margin: 0;
2779 cursor: pointer;
2781 .comment-minimize-button:active {
2782 transform: scale(0.9);
2784 .comment-minimize-button::after {
2785 content: attr(data-child-count);
2786 font-weight: normal;
2787 font-size: 0.8125rem;
2788 position: absolute;
2789 left: 0;
2790 width: 100%;
2791 text-align: center;
2792 top: 21px;
2794 #content.individual-thread-page .comment-minimize-button {
2795 display: none;
2798 /*****************/
2799 /* IGNORE SYSTEM */
2800 /*****************/
2802 #content.comment-thread-page .comment-item.ignored {
2803 height: 38px;
2804 overflow: hidden;
2806 .comment-item.ignored > .comment > .comment-meta > .author {
2807 text-decoration: line-through;
2810 /***********************************/
2811 /* INDIVIDUAL COMMENT THREAD PAGES */
2812 /***********************************/
2814 .individual-thread-page > h1 {
2815 line-height: 1;
2816 margin: 0.75em 0 3px 0;
2818 .individual-thread-page .comments {
2819 border: none;
2822 /*************/
2823 /* SHORTFORM */
2824 /*************/
2826 .shortform-index-page .comments::before {
2827 border: none;
2828 box-shadow: none;
2831 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2832 margin-top: 0;
2835 /****************/
2836 /* VOTE BUTTONS */
2837 /****************/
2839 .vote {
2840 margin: 0;
2842 .vote {
2843 font-family: "Font Awesome", "Font Awesome 5 Free";
2844 font-weight: 900;
2845 border: none;
2848 .vote:disabled {
2849 visibility: hidden;
2850 cursor: default;
2853 @keyframes waiting {
2854 0% {background-position: 200% 0%}
2855 100% {background-position: 0% 0%}
2858 .voting-controls .karma-value {
2859 opacity: 1;
2860 transition: opacity 0.5s linear;
2863 .voting-controls.waiting .karma-value {
2864 opacity: 0.5;
2865 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2866 background-clip: text;
2867 -webkit-background-clip: text;
2868 color: transparent;
2869 background-position: 200% 0%;
2870 background-size: 200% 100%;
2871 animation: waiting 1s linear infinite;
2874 /* Replicated karma controls at bottom of comments. */
2875 .comment-controls .voting-controls {
2876 float: left;
2877 font-size: 0.9375em;
2880 .comment-controls .voting-controls:first-of-type {
2881 margin-left: -14px;
2884 /*****************************/
2885 /* COMMENTING AND POSTING UI */
2886 /*****************************/
2888 .comment-controls {
2889 text-align: right;
2890 margin: 0 8px 8px 16px;
2891 position: relative;
2892 z-index: 9999;
2894 .comment-thread .comment-controls + .comment-thread > li:first-child {
2895 margin-top: 8px;
2897 .comments > .comment-controls {
2898 margin: 8px 0 0 0;
2900 .comments > .comment-controls:last-child {
2901 margin: 8px 0 16px 0;
2904 .posting-controls input[type='submit'] {
2905 margin: 6px;
2906 padding: 4px 10px;
2907 font-size: 1.125rem;
2910 .comment-controls .cancel-comment-button {
2911 position: absolute;
2912 right: 0;
2913 margin: 0;
2914 height: 27px;
2915 font-size: inherit;
2916 padding: 4px 8px 2px 4px;
2917 z-index: 1;
2919 .comment-controls .cancel-comment-button::before {
2920 font-family: "Font Awesome", "Font Awesome 5 Free";
2921 margin-right: 3px;
2922 content: '\F00D';
2923 font-weight: 900;
2924 font-size: 0.9em;
2925 opacity: 0.7;
2928 .comment + .comment-controls .action-button {
2929 font-weight: normal;
2930 font-size: 1.0625em;
2931 padding: 1px 6px;
2933 .comment-controls .action-button::before {
2934 font-family: "Font Awesome", "Font Awesome 5 Free";
2935 margin-right: 3px;
2937 .new-comment-button {
2938 font-size: 1.5rem;
2939 margin: 0 0.25em;
2941 .comment-controls .reply-button::before {
2942 content: '\F3E5';
2943 font-weight: 900;
2944 font-size: 0.9em;
2945 opacity: 0.6;
2947 .comment-meta .replied::before {
2948 content: '\F3E5';
2949 font-family: "Font Awesome", "Font Awesome 5 Free";
2950 color: #090;
2951 font-weight: 900;
2952 font-size: 0.9em;
2953 opacity: 0.6;
2956 .post-controls {
2957 text-align: right;
2958 margin: 0.75em 0 0 0;
2959 align-self: start;
2960 justify-self: end;
2962 .edit-post-link {
2963 display: inline-block;
2964 margin-bottom: 0.25em;
2965 font-size: 1.125rem;
2967 .edit-post-link::before {
2968 margin-right: 0.3em;
2970 .comment-controls .edit-button::before,
2971 .edit-post-link::before {
2972 content: '\F303';
2973 font-family: "Font Awesome", "Font Awesome 5 Free";
2974 font-weight: 900;
2975 font-size: 0.75em;
2976 position: relative;
2977 top: -1px;
2980 .comment-controls .delete-button {
2981 margin-right: 0.25em;
2983 .comment-controls .edit-button,
2984 .comment-controls .retract-button,
2985 .comment-controls .unretract-button {
2986 margin-right: 1em;
2988 .comment-controls .retract-button::before {
2989 content: '\F4B3';
2990 opacity: 0.6;
2992 .comment-controls .unretract-button::before {
2993 content: '\F075';
2994 opacity: 0.9;
2996 .comment-controls .delete-button::before {
2997 content: '\F05E';
2998 opacity: 0.7;
3000 .comment-controls .retract-button::before,
3001 .comment-controls .unretract-button::before,
3002 .comment-controls .delete-button::before {
3003 font-weight: 900;
3004 font-size: 0.9em;
3007 .comment-controls form {
3008 position: relative;
3010 .textarea-container {
3011 position: relative;
3013 .posting-controls textarea {
3014 display: block;
3015 width: 100%;
3016 height: 15em;
3017 min-height: 15em;
3018 max-height: calc(100vh - 6em);
3019 margin: 2px 0 0 0;
3020 padding: 4px 5px;
3021 font-size: 1.2rem;
3022 border-style: solid;
3023 border-width: 29px 1px 1px 1px;
3024 resize: none;
3027 /* GUIEdit buttons */
3029 .guiedit-buttons-container {
3030 position: absolute;
3031 left: 1px;
3032 top: 1px;
3033 width: calc(100% - 2px);
3034 height: 28px;
3035 text-align: left;
3036 padding: 1px 4px 0 4px;
3037 overflow: hidden;
3039 .comment-thread-page .guiedit-buttons-container {
3040 padding-right: 60px;
3042 .guiedit-buttons-container button {
3043 height: 26px;
3044 padding: 0 7px;
3045 font-weight: 900;
3046 font-size: 0.875rem;
3047 line-height: 1;
3048 position: static;
3050 .guiedit-buttons-container button:active {
3051 transform: none;
3053 .guiedit-buttons-container button:active div {
3054 transform: scale(0.9);
3056 .guiedit-buttons-container button sup {
3057 font-weight: bold;
3059 .guiedit::after {
3060 content: attr(data-tooltip);
3061 position: absolute;
3062 font-weight: normal;
3063 font-size: 1rem;
3064 top: 2px;
3065 left: 464px;
3066 height: 25px;
3067 padding: 4px 0;
3068 white-space: nowrap;
3069 visibility: hidden;
3071 .guiedit:hover::after {
3072 visibility: visible;
3075 /* Markdown hints */
3077 .posting-controls .markdown-reference-link {
3078 float: left;
3079 padding: 1px 0 0 6px;
3081 .posting-controls .markdown-reference-link a {
3082 padding-right: 1.5em;
3083 margin-right: 0.15em;
3084 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');
3085 background-size: 1.25em;
3086 background-repeat: no-repeat;
3087 background-position: right center;
3090 #markdown-hints-checkbox + label {
3091 float: left;
3092 margin: 2px 0 0 1em;
3093 line-height: 1.3;
3094 cursor: pointer;
3096 #edit-post-form #markdown-hints-checkbox + label {
3097 padding: 0;
3099 #markdown-hints-checkbox {
3100 visibility: hidden;
3101 float: left;
3103 #markdown-hints-checkbox + label::after {
3104 content: "(Show Markdown help)";
3106 #markdown-hints-checkbox:checked + label::after {
3107 content: "(Hide Markdown help)";
3109 #markdown-hints-checkbox + label::before {
3110 content: '\F059';
3111 font-family: "Font Awesome", "Font Awesome 5 Free";
3112 font-weight: 900;
3113 margin-right: 3px;
3115 #markdown-hints-checkbox:checked + label::before {
3116 font-weight: normal;
3118 #markdown-hints {
3119 margin: 4px 0 0 4px;
3120 padding: 4px 8px;
3121 position: absolute;
3122 text-align: left;
3123 top: calc(100% - 1em);
3124 z-index: 1;
3125 display: none;
3127 .comment-controls #markdown-hints {
3128 top: calc(100% + 1.75em);
3130 #markdown-hints-checkbox:checked ~ #markdown-hints {
3131 display: table;
3133 .markdown-hints-row {
3134 display: table-row;
3136 #markdown-hints .markdown-hints-row span,
3137 #markdown-hints .markdown-hints-row code {
3138 float: none;
3139 display: table-cell;
3140 border: none;
3141 background-color: inherit;
3142 padding: 0 12px 0 0;
3145 /******************/
3146 /* EDIT POST FORM */
3147 /******************/
3149 #edit-post-form {
3150 padding: 1em 1em 4em 1em;
3152 #edit-post-form .post-meta-fields {
3153 display: grid;
3154 grid-template-columns: 5em auto auto auto 1fr auto;
3155 margin-bottom: 0.625em;
3158 #edit-post-form label[for='title'],
3159 #edit-post-form label[for='url'],
3160 #edit-post-form label[for='section'] {
3161 grid-column: 1;
3163 #edit-post-form input[type='text'] {
3164 padding: 0.25em;
3165 grid-column: 2 / span 4;
3166 margin-bottom: 0.5em;
3169 #edit-post-form .link-post-checkbox,
3170 #edit-post-form .link-post-checkbox + label {
3171 grid-row: 1;
3172 grid-column: 6;
3174 #edit-post-form .question-checkbox,
3175 #edit-post-form .question-checkbox + label {
3176 grid-row: 3;
3177 grid-column: 5;
3178 justify-self: start;
3179 margin-left: 1.5em;
3182 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3183 grid-row: 4;
3184 grid-column: 2 / span 4;
3185 text-align: left;
3186 margin-top: 8px;
3189 #edit-post-form .post-meta-fields input[type='checkbox'] {
3190 height: 0;
3191 opacity: 0;
3192 pointer-events: none;
3194 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3195 white-space: nowrap;
3196 position: relative;
3197 cursor: pointer;
3198 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3199 align-self: start;
3201 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3202 content: "";
3203 font-family: "Font Awesome", "Font Awesome 5 Free";
3204 font-size: 1.375rem;
3205 line-height: 0.7;
3206 text-indent: 1px;
3207 font-weight: 900;
3208 position: absolute;
3209 width: 20px;
3210 height: 20px;
3211 left: 5px;
3213 #edit-post-form label[for='url'],
3214 #edit-post-form input[name='url'] {
3215 display: none;
3217 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3218 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3219 display: initial;
3221 #edit-post-form label {
3222 line-height: normal;
3223 border: 1px solid transparent;
3224 text-align: right;
3225 padding: 0.25em 0.5em;
3226 white-space: nowrap;
3228 #edit-post-form input[type='radio'] {
3229 width: 0;
3230 margin: 0;
3231 opacity: 0;
3232 pointer-events: none;
3234 #edit-post-form input[type='radio'] + label {
3235 padding: 4px 12px;
3236 text-align: center;
3237 border-style: solid;
3238 border-width: 1px 1px 1px 0;
3239 cursor: pointer;
3241 #edit-post-form input[type='radio']:checked + label {
3242 cursor: default;
3245 #edit-post-form label[for='section'] {
3246 grid-row: 3;
3248 #edit-post-form input[type='radio'] + label {
3249 grid-row: 3;
3251 @supports (width: -moz-fit-content) {
3252 #edit-post-form input[type='radio'] + label {
3253 width: -moz-fit-content;
3256 @supports (width: fit-content) {
3257 #edit-post-form input[type='radio'] + label {
3258 width: fit-content;
3262 #edit-post-form textarea {
3263 min-height: 24em;
3266 #edit-post-form input[type='submit'] {
3267 padding: 6px 12px;
3268 float: right;
3270 #edit-post-form #markdown-hints {
3271 top: calc(100% + 2em);
3274 #edit-post-form button.guiedit div {
3275 overflow: visible;
3277 .guiedit-mobile-auxiliary-button {
3278 display: none;
3281 /***********/
3282 /* BUTTONS */
3283 /***********/
3285 button,
3286 input[type='submit'] {
3287 font-family: inherit;
3288 font-size: inherit;
3289 background-color: inherit;
3290 cursor: pointer;
3291 border: none;
3292 border-radius: 0;
3295 /************/
3296 /* HEADINGS */
3297 /************/
3299 .body-text h1,
3300 .body-text h2,
3301 .body-text h3,
3302 .body-text h4,
3303 .body-text h5,
3304 .body-text h6 {
3305 line-height: 1.1;
3306 margin: 1em 0 0.75em 0;
3307 text-align: left;
3310 .post-body h5,
3311 .post-body h6 {
3312 font-size: 1em;
3314 .post-body h4 {
3315 font-size: 1.2em;
3317 .post-body h3 {
3318 font-size: 1.4em;
3320 .post-body h2 {
3321 font-size: 1.75em;
3323 .post-body h1 {
3324 font-size: 2.1em;
3327 .comment-body h5,
3328 .comment-body h6 {
3329 font-size: 1em;
3331 .comment-body h4 {
3332 font-size: 1.15em;
3334 .comment-body h3 {
3335 font-size: 1.3em;
3337 .comment-body h2 {
3338 font-size: 1.5em;
3340 .comment-body h1 {
3341 font-size: 1.75em;
3344 /**********/
3345 /* QUOTES */
3346 /**********/
3348 blockquote,
3349 .post-body .comment-box .comment-body {
3350 font-size: 0.9em;
3351 margin: 1em 0;
3352 padding-left: 0.5em;
3353 margin-left: 1px;
3354 padding-bottom: 3px;
3356 blockquote *:first-child {
3357 margin-top: 0;
3359 blockquote *:last-child {
3360 margin-bottom: 0;
3362 blockquote blockquote {
3363 font-size: 0.95em;
3366 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3368 .post-body .comment-box .user-name {
3369 font-style: italic;
3371 .post-body .comment-box .user-name::after {
3372 content: ":";
3374 .post-body .comment-box {
3375 zoom: 1.25;
3378 /**********/
3379 /* IMAGES */
3380 /**********/
3382 #content img, #content figure {
3383 max-width: 100%;
3386 .prediction-poll > svg {
3387 width: 700px;
3388 max-width: 100%;
3391 img.inline-latex {
3392 position: relative;
3393 top: 2.5px;
3394 margin: 0 2px;
3397 #content figure {
3398 text-align: center;
3399 margin: 1.5em auto;
3402 p.imgonly,
3403 div.imgonly,
3404 figure {
3405 text-align: center;
3406 margin: auto;
3407 clear: both;
3410 .imgonly iframe {
3411 display: block;
3412 width: 100%;
3413 height: 250px;
3414 border: 0;
3417 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3419 [style*="--aspect-ratio"] > * {
3420 width: 100%;
3422 [style*="--aspect-ratio"] > img {
3423 height: auto;
3425 @supports (--custom:property) {
3426 [style*="--aspect-ratio"] {
3427 position: relative;
3429 [style*="--aspect-ratio"]::before {
3430 content: "";
3431 display: block;
3432 padding-bottom: calc(100% / (var(--aspect-ratio)));
3434 [style*="--aspect-ratio"] > * {
3435 position: absolute;
3436 top: 0;
3437 left: 0;
3438 height: 100%;
3442 /**********/
3443 /* TABLES */
3444 /**********/
3446 .body-text table {
3447 border-collapse: collapse;
3448 font-size: 0.875em;
3450 .body-text table th,
3451 .body-text table td {
3452 text-align: left;
3453 padding: 4px 6px;
3454 line-height: 1.3;
3456 .body-text table .numeric {
3457 text-align: right;
3458 font-family: Inconsolata, Menlo, monospace;
3460 .body-text table caption {
3461 margin: 0 0 0.25em 0;
3462 font-weight: bold;
3463 font-size: 1.125em;
3466 /********/
3467 /* MISC */
3468 /********/
3470 /*= Superscripts & subscripts =*/
3472 /* Make sure superscripts and subscripts do not affect line spacing. */
3473 sup, sub {
3474 vertical-align: baseline;
3475 position: relative;
3476 top: -0.5em;
3477 left: 0.05em;
3478 font-size: 0.8em;
3480 sub {
3481 top: 0.3em;
3484 /*= Code blocks & other "unstyled" text. =*/
3486 pre,
3487 code {
3488 font-family: Inconsolata, Menlo, monospace;
3490 pre {
3491 white-space: pre-wrap;
3493 .body-text pre {
3494 text-align: left;
3496 code {
3497 font-size: 0.95em;
3498 display: inline-block;
3499 padding: 0 4px 1px 5px;
3501 pre > code {
3502 display: block;
3503 border-radius: 0;
3504 padding: 3px 4px 5px 8px;
3505 tab-size: 4;
3508 /*= Fractions =*/
3510 .frac::after {
3511 content: "\200B";
3514 /*= Removing browser default styling of various elements =*/
3516 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3517 :focus {
3518 outline: none;
3521 /* Remove "embossed" appearance of horizontal rules. */
3522 hr {
3523 border: none;
3526 input,
3527 button,
3528 textarea {
3529 -webkit-appearance: none;
3530 -moz-appearance: none;
3531 appearance: none;
3534 input {
3535 font-family: inherit;
3536 font-size: inherit;
3537 font-weight: inherit;
3540 /*************/
3541 /* FOOTNOTES */
3542 /*************/
3544 ol {
3545 counter-reset: ordered-list;
3547 .footnote-definition {
3548 font-size: 0.9em;
3549 list-style-type: none;
3550 counter-increment: ordered-list;
3551 position: relative;
3553 .footnote-definition p {
3554 font-size: inherit !important;
3556 .footnote-definition::before {
3557 content: counter(ordered-list) ".";
3558 position: absolute;
3559 left: -2.5em;
3560 font-weight: bold;
3561 text-align: right;
3562 width: 2em;
3565 /*= LW Docs footnotes =*/
3567 .footnote-item {
3568 display: flex;
3571 .footnote-item > :not(.nothing) {
3572 margin: 0 0.2em;
3575 .footnote-item > :first-child {
3576 margin-left: -0.2em;
3577 margin-right: 0;
3580 .footnote-back-link a:not(.nothing) {
3581 font-size: 0;
3582 text-decoration: none;
3583 border: none;
3586 .footnote-back-link a:not(.nothing):hover {
3587 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3588 border: none;
3589 text-decoration: none;
3592 .footnote-back-link a::after {
3593 content: '\F106';
3594 font-family: Font Awesome;
3595 font-size: 1rem;
3596 padding: 0.2em;
3597 text-decoration: none;
3598 font-weight: bold;
3601 .footnote-content > :first-child {
3602 margin-top: 0;
3605 /*********/
3606 /* LISTS */
3607 /*********/
3609 li {
3610 margin-bottom: 0.5em;
3613 .body-text ol p,
3614 .body-text ul p {
3615 margin: 0.5em 0;
3618 .body-text ol {
3619 list-style: none;
3620 padding: 0;
3621 counter-reset: ol;
3623 .body-text ol > li {
3624 position: relative;
3625 counter-increment: ol;
3626 padding: 0 0 0 2.5em;
3627 margin: 0.25em 0 0 0;
3629 .body-text ol > li::before {
3630 content: counter(ol) ".";
3631 position: absolute;
3632 width: 2em;
3633 text-align: right;
3634 left: 0;
3636 .body-text ul {
3637 list-style: none;
3638 padding: 0;
3640 .body-text ul:not(.contents-list) > li:empty {
3641 padding-bottom: 1.25em;
3643 .body-text ul:not(.contents-list) > li {
3644 position: relative;
3645 padding: 0 0 0 1.75em;
3646 margin: 0.25em 0 0 0;
3648 .body-text ul:not(.contents-list) > li ul > li {
3649 padding: 0 0 0 2em;
3651 .body-text ul:not(.contents-list) > li::before {
3652 content: "•";
3653 position: absolute;
3654 width: 1.25em;
3655 text-align: right;
3656 left: 0;
3658 .body-text ul:not(.contents-list) > li ul > li::before {
3659 width: 1.5em;
3661 .body-text li > ul:first-child > li {
3662 padding-left: 0;
3664 .body-text li > ul:first-child > li::before {
3665 content: none;
3668 /**************/
3669 /* ERROR PAGE */
3670 /**************/
3672 .error-retry-form {
3673 margin: 0.5em 0;
3676 .error-retry-form input[type="submit"] {
3677 border: 1px solid #aaa;
3678 font-weight: bold;
3679 font-size: 1.125rem;
3680 padding: 0.5em 1.25em;
3683 /**************/
3684 /* ABOUT PAGE */
3685 /**************/
3687 #content.about-page .contents {
3688 margin-top: 0.25em;
3690 #content.about-page .accesskey-table {
3691 border-collapse: collapse;
3692 margin: auto;
3694 #content.about-page .accesskey-table th,
3695 #content.about-page .accesskey-table td {
3696 padding: 2px 6px;
3698 #content.about-page .accesskey-table td:first-child {
3699 padding-right: 1.5em;
3701 #content.about-page .accesskey-table td:last-child {
3702 text-align: center;
3703 font-family: Inconsolata, Menlo, monospace;
3705 #content.about-page h3:nth-of-type(n+2) {
3706 clear: both;
3709 /******************/
3710 /* IMAGES OVERLAY */
3711 /******************/
3713 #images-overlay + #content .post-body img {
3714 visibility: hidden;
3717 #images-overlay div {
3718 position: absolute;
3720 #images-overlay div::after {
3721 content: "Click to enlarge";
3722 display: block;
3723 position: absolute;
3724 margin: auto;
3725 left: 0;
3726 right: 0;
3727 bottom: 10px;
3728 padding: 6px 10px;
3729 font-size: 1.25rem;
3730 background-color: rgba(0,0,0,0.6);
3731 color: #fff;
3732 border-radius: 5px;
3733 opacity: 0.0;
3734 transition: opacity 0.15s ease;
3735 pointer-events: none;
3737 @supports (width: -moz-fit-content) {
3738 #images-overlay div::after {
3739 width: -moz-fit-content;
3742 @supports (width: fit-content) {
3743 #images-overlay div::after {
3744 width: fit-content;
3747 #images-overlay div:hover::after {
3748 opacity: 1.0;
3751 #images-overlay img {
3752 width: 100%;
3755 /***************/
3756 /* IMAGE FOCUS */
3757 /***************/
3759 /*=--------------=*/
3760 /*= Hover styles =*/
3761 /*=--------------=*/
3763 #content img:hover,
3764 #images-overlay img:hover {
3765 filter: drop-shadow(0 0 3px #777);
3766 cursor: zoom-in;
3768 #content img:active,
3769 #images-overlay img:active {
3770 transform: scale(0.975);
3773 /*=---------=*/
3774 /*= Overlay =*/
3775 /*=---------=*/
3777 #image-focus-overlay {
3778 position: fixed;
3779 top: 0;
3780 right: 0;
3781 bottom: 0;
3782 left: 0;
3783 z-index: 2;
3784 display: none;
3785 cursor: zoom-out;
3787 #image-focus-overlay::before {
3788 content: "";
3789 display: block;
3790 position: absolute;
3791 top: 0;
3792 right: 0;
3793 bottom: 0;
3794 left: 0;
3795 background-color: #000;
3796 opacity: 0.5;
3797 z-index: -1;
3799 #image-focus-overlay.engaged {
3800 display: initial;
3803 #image-focus-overlay img {
3804 margin: auto;
3805 position: absolute;
3806 left: 50%;
3807 top: 50%;
3808 transform: translateX(-50%) translateY(-50%);
3811 /*=-------------------=*/
3812 /*= Single-image mode =*/
3813 /*=-------------------=*/
3815 #image-focus-overlay:not(.slideshow) .image-number,
3816 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3817 visibility: hidden;
3820 /*=---------=*/
3821 /*= Caption =*/
3822 /*=---------=*/
3824 #image-focus-overlay .caption {
3825 position: absolute;
3826 bottom: 0.75em;
3827 background-color: rgba(0,0,0,0.7);
3828 left: 9em;
3829 right: 9em;
3830 margin: auto;
3831 max-width: calc(100% - 18em);
3832 text-align: center;
3833 font-size: 1.375em;
3834 border-radius: 8px;
3835 z-index: 1;
3836 transition:
3837 bottom 0.2s ease;
3839 @supports (width: -moz-fit-content) {
3840 #image-focus-overlay .caption {
3841 width: -moz-fit-content;
3844 @supports (width: fit-content) {
3845 #image-focus-overlay .caption {
3846 width: fit-content;
3849 #image-focus-overlay .caption.hidden {
3850 bottom: -5em;
3851 transition:
3852 bottom 0.5s ease;
3855 #image-focus-overlay .caption p {
3856 margin: 1em 1.25em;
3857 color: #fff;
3860 #image-focus-overlay .caption:not(:empty)::before {
3861 content: "";
3862 display: block;
3863 position: absolute;
3864 width: 100vw;
3865 height: calc(100% + 1.5em);
3866 z-index: -1;
3867 top: -0.75em;
3868 left: calc(-50vw + 50%);
3872 /*=--------------=*/
3873 /*= Help overlay =*/
3874 /*=--------------=*/
3876 #image-focus-overlay .help-overlay {
3877 position: absolute;
3878 display: flex;
3879 flex-flow: column;
3880 z-index: 2;
3881 font-size: 1.5rem;
3882 padding: 1em;
3883 border-radius: 10px;
3884 bottom: 1em;
3885 right: 1em;
3886 overflow: hidden;
3887 white-space: nowrap;
3888 color: transparent;
3889 cursor: default;
3890 visibility: hidden;
3891 transition:
3892 visibility 1s ease,
3893 color 1s ease,
3894 background-color 1s ease,
3895 bottom 0.3s ease;
3897 #image-focus-overlay .help-overlay:hover {
3898 max-width: 24em;
3899 max-height: 14em;
3900 background-color: rgba(0,0,0,0.85);
3901 color: #fff;
3902 visibility: visible;
3903 transition:
3904 visibility 0.2s ease 0.3s,
3905 color 0.2s ease 0.3s,
3906 background-color 0.2s ease 0.3s;
3909 #image-focus-overlay .help-overlay::after {
3910 content: "\F128";
3911 font-family: "Font Awesome", "Font Awesome 5 Free";
3912 font-weight: 900;
3913 font-size: 2rem;
3914 position: absolute;
3915 right: 0;
3916 bottom: 0;
3917 padding: 10px;
3918 color: #000;
3919 filter: drop-shadow(0 0 6px #fff);
3920 visibility: visible;
3921 opacity: 0.85;
3922 transition:
3923 visibility 1s ease;
3925 #image-focus-overlay .help-overlay:hover::after {
3926 visibility: hidden;
3927 transition:
3928 visibility 0.2s ease 0.3s;
3931 #image-focus-overlay .help-overlay p {
3932 margin: 0;
3933 text-indent: -2em;
3934 padding-left: 2em;
3935 max-width: 100%;
3936 overflow: hidden;
3938 #image-focus-overlay .help-overlay p + p {
3939 margin: 0.75em 0 0 0;
3941 #image-focus-overlay .help-overlay.hidden {
3942 bottom: -2em;
3945 /*=--------------=*/
3946 /*= Slide number =*/
3947 /*=--------------=*/
3949 #image-focus-overlay .image-number {
3950 position: absolute;
3951 z-index: 2;
3952 font-size: 1.75rem;
3953 left: 1em;
3954 bottom: 1em;
3955 font-weight: 600;
3956 text-shadow:
3957 0 0 3px #fff,
3958 0 0 5px #fff,
3959 0 0 8px #fff,
3960 0 0 13px #fff;
3961 width: 1.5em;
3962 text-align: right;
3963 white-space: nowrap;
3964 transition: bottom 0.3s ease;
3966 #image-focus-overlay .image-number::before {
3967 content: "#";
3968 opacity: 0.3;
3970 #image-focus-overlay .image-number::after {
3971 content: " of " attr(data-number-of-images);
3972 opacity: 0.3;
3974 #image-focus-overlay .image-number:hover::before,
3975 #image-focus-overlay .image-number:hover::after {
3976 opacity: 1.0;
3978 #image-focus-overlay .image-number.hidden {
3979 bottom: -1.25em;
3982 /*=-------------------=*/
3983 /*= Slideshow buttons =*/
3984 /*=-------------------=*/
3986 #image-focus-overlay .slideshow-buttons {
3987 position: absolute;
3988 top: 0;
3989 left: 0;
3990 width: 100%;
3991 height: 100%;
3992 z-index: 1;
3993 display: flex;
3994 justify-content: space-between;
3995 pointer-events: none;
3997 #image-focus-overlay .slideshow-buttons button {
3998 font-family: "Font Awesome", "Font Awesome 5 Free";
3999 font-weight: 900;
4000 font-size: 3rem;
4001 padding: 0.5em;
4002 color: #ddd;
4003 position: relative;
4004 left: 0;
4005 transition:
4006 left 0.3s ease;
4007 pointer-events: auto;
4009 #image-focus-overlay .slideshow-buttons button::selection {
4010 background-color: transparent;
4012 @media only screen and (hover: hover) {
4013 #image-focus-overlay .slideshow-buttons button:hover {
4014 background-color: rgba(0,0,0,0.1);
4015 color: #777;
4018 #image-focus-overlay .slideshow-buttons button:active {
4019 transform: none;
4020 color: #888;
4022 #image-focus-overlay .slideshow-buttons button:disabled {
4023 text-shadow: none;
4024 background-color: transparent;
4025 color: #ddd;
4026 cursor: default;
4027 opacity: 0.4;
4029 #image-focus-overlay .slideshow-button.previous.hidden {
4030 left: -1.75em;
4032 #image-focus-overlay .slideshow-button.next.hidden {
4033 left: 1.75em;
4036 /*=-----------------=*/
4037 /*= Background blur =*/
4038 /*=-----------------=*/
4040 .blurred {
4041 filter: blur(3px);
4044 /**************************/
4045 /* QUALIFIED HYPERLINKING */
4046 /**************************/
4048 #content.no-nav-bars {
4049 margin: 8px auto;
4051 #content.no-nav-bars + #ui-elements-container > * {
4052 padding-top: 8px;
4055 #aux-about-link {
4056 position: fixed;
4057 top: 40px;
4058 left: calc((100% - 900px) / 2 - 69px);
4059 width: 1.5em;
4060 height: 1.5em;
4061 text-align: center;
4062 display: table;
4064 #aux-about-link a {
4065 display: table-cell;
4066 width: 100%;
4067 vertical-align: middle;
4068 font-family: "Font Awesome", "Font Awesome 5 Free";
4069 font-weight: 900;
4070 font-size: 1.25rem;
4071 opacity: 0.4;
4072 z-index: 1;
4075 .qualified-linking {
4076 margin: 0;
4077 position: relative;
4079 .qualified-linking input[type='checkbox'] {
4080 visibility: hidden;
4081 width: 0;
4082 height: 0;
4083 margin: 0;
4085 .qualified-linking label {
4086 font-family: "Font Awesome", "Font Awesome 5 Free";
4087 font-weight: 900;
4088 font-size: 1rem;
4089 padding: 0 0.5em;
4090 display: inline-block;
4091 margin-left: 0.25em;
4093 .qualified-linking label:hover {
4094 cursor: pointer;
4096 .qualified-linking label:active span {
4097 display: inline-block;
4098 transform: scale(0.9);
4100 .qualified-linking label::selection {
4101 background-color: transparent;
4104 .qualified-linking label::after {
4105 content: "";
4106 width: 100vw;
4107 height: 0;
4108 left: 0;
4109 top: 0;
4110 position: fixed;
4111 z-index: 1;
4112 cursor: default;
4114 .qualified-linking input[type='checkbox']:checked + label::after {
4115 height: 100vh;
4118 .qualified-linking-toolbar {
4119 position: absolute;
4120 right: 0.25em;
4121 top: 110%;
4122 z-index: 1;
4124 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4125 display: none;
4127 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4128 display: block;
4130 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4131 top: unset;
4132 bottom: 125%;
4135 .qualified-linking-toolbar a {
4136 display: block;
4137 padding: 0 6px;
4138 margin: 4px;
4140 .qualified-linking-toolbar a::selection {
4141 background-color: transparent;
4144 /*****************/
4145 /* HOVER PREVIEW */
4146 /*****************/
4148 #preview-popup-toggle {
4149 position: absolute;
4150 right: -67px;
4151 bottom: 285px;
4152 cursor: pointer;
4153 color: var(--GW-toggle-widget-color, #888);
4155 #preview-popup-toggle:hover {
4156 color: var(--GW-toggle-widget-hover-color, #444);
4159 #content.preview:not(not) {
4160 padding: 0;
4162 #content.preview > .comment-thread {
4163 margin: 2px;
4165 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4166 border: none;
4168 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4169 padding: 0 8px;
4171 #content.preview.user-page .page-main-heading {
4172 margin-left: 8px;
4174 #content.preview.not(not) .body-text {
4175 margin-left: 8px;
4176 margin-right: 8px;
4178 #content.preview.user-page .user-stats {
4179 margin-right: 32px;
4181 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4182 display: none;
4184 #content.preview button.vote {
4185 display: none;
4187 #content.preview > h1.listing {
4188 max-height: unset;
4190 #content.preview.user-page > .comment-thread {
4191 margin: 0.5em 0;
4193 #content.preview > .post {
4194 margin: 0 18px;
4196 #content.preview .post-title {
4197 margin-top: 0.5em;
4199 #content.preview .post-meta {
4200 line-height: 1.0;
4202 #content.preview .body-text {
4203 font-size: 1em;
4205 #content.preview nav.contents,
4206 #content.preview .lw2-link {
4207 display: none;
4210 .preview-popup {
4211 position: fixed;
4212 transform-origin: top;
4213 top: 10%;
4214 right: 10%;
4215 max-width: 700px;
4216 z-index: 10001;
4217 background-color: #eee;
4218 border: 1px solid #ccc;
4219 box-shadow: 2px 6px 20px -4px #000;
4220 transition: height 0.2s ease, top 0.2s ease;
4222 .popup-hide-button {
4223 position: fixed;
4224 top: 4px;
4225 right: 4px;
4226 color: #000;
4227 background-color: #fff;
4228 width: 28px;
4229 height: 28px;
4230 display: flex;
4231 font-family: "Font Awesome";
4232 font-size: 14px;
4233 line-height: 1;
4234 border: 1px solid #bbb;
4235 border-radius: 28px;
4236 align-items: center;
4237 justify-content: center;
4238 //padding-bottom: 2px;
4239 padding-left: 1.5px;
4240 font-family: "Font Awesome", "Font Awesome 5 Free";
4241 cursor: pointer;
4243 .popup-hide-button:hover::before {
4244 content: "Turn off preview popups";
4245 display: block;
4246 position: absolute;
4247 width: max-content;
4248 right: 32px;
4249 color #000;
4250 background-color: #fff;
4251 border: 1px solid #eee;
4252 border-radius: 2px;
4253 padding: 4px;
4256 /********/
4257 /* MATH */
4258 /********/
4260 .mathjax-block-container {
4261 display: block;
4262 overflow-y: hidden;
4263 border-radius: 6px;
4264 margin: 1em 0 1.5em 0;
4266 .mathjax-inline-container {
4267 max-width: 100%;
4268 overflow-x: auto;
4269 overflow-y: hidden;
4270 position: relative;
4271 padding: 0 1px;
4273 #content .mathjax-inline-container,
4274 #content .mathjax-inline-container .mjpage,
4275 #content .mathjax-inline-container .mjx-chtml,
4276 #content .mathjax-inline-container .mjx-math,
4277 #content .mathjax-inline-container .mjx-mrow {
4278 display: inline;
4279 white-space: normal;
4281 .post .mathjax-inline-container {
4282 line-height: 1;
4284 .comment .mathjax-inline-container {
4285 line-height: 1;
4287 .mathjax-inline-container .mjx-chtml {
4288 padding: 0;
4291 /************/
4292 /* SPOILERS */
4293 /************/
4295 .spoiler {
4296 color: #000;
4297 background-color: currentColor;
4298 transition: none;
4299 text-shadow: none;
4300 margin: 1em 0;
4301 box-shadow: 0 0 0 1px currentColor inset;
4302 overflow: auto;
4304 .spoiler:not(:last-child) {
4305 margin-bottom: 0;
4307 #content .spoiler * {
4308 color: inherit;
4309 border: none;
4311 .spoiler:hover {
4312 color: unset;
4313 background-color: unset;
4314 text-shadow: unset;
4315 transition:
4316 color 0.1s ease-out 0.1s,
4317 background-color 0.1s ease-out 0.1s,
4318 text-shadow 0.1s ease-out 0.1s;
4320 .spoiler::selection,
4321 .spoiler ::selection {
4322 color: #fff;
4323 background-color: #000;
4325 .spoiler:not(:hover)::selection,
4326 .spoiler:not(:hover) ::selection {
4327 background-color: transparent;
4330 /*= Fix for LessWrong being weird =*/
4332 .spoiler > p {
4333 padding: 0 7px;
4335 .spoiler > p:first-child {
4336 margin-top: 0.25em;
4338 .spoiler > p:last-child {
4339 margin-bottom: 0;
4340 padding-bottom: 0.25em;
4342 .spoiler > p:hover ~ p {
4343 background-color: currentColor;
4345 .spoiler > p + p {
4346 margin-top: -1em;
4348 .spoiler > p:not(:first-child) {
4349 padding-top: 0.5em;
4351 .spoiler > p:not(:last-child) {
4352 padding-bottom: 0.5em;
4355 .spoiler:not(:hover) pre,
4356 .spoiler:not(:hover) code {
4357 background-color: inherit;
4358 box-shadow: none;
4360 #content .spoiler pre {
4361 border-color: currentColor;
4362 border-style: solid;
4363 border-width: 0 1px;
4364 border-radius: 0;
4367 /*******************/
4368 /* PAGE LIST INDEX */
4369 /*******************/
4371 .page-list-index {
4372 margin: 1em 30px;
4373 line-height: 1.2;
4376 .page-list-index > p {
4377 font-weight: bold;
4378 font-size: 1.2em;
4381 .page-list-index > ul * {
4382 margin: 0;
4385 .page-list-index ul {
4386 padding-left: 1.5em;
4389 .page-list-index li {
4390 margin-top: 0.67em;
4393 .page-list-index li > a {
4394 display: block;
4395 font-size: 1.1em;
4396 font-weight: bold;
4397 margin: 0.33em 0;
4400 .page-list-index li > a:last-child {
4401 margin-bottom: 1em;
4404 /*******************/
4405 /* ALIGNMENT FORUM */
4406 /*******************/
4408 #content.alignment-forum-index-page::after {
4409 content: "Alignment Forum";
4410 font-size: 1.5rem;
4411 margin: 0.375em 0 0 -0.375em;
4412 order: -1;
4415 /**********************/
4416 /* FOR NARROW SCREENS */
4417 /**********************/
4419 @media only screen and (max-width: 1440px) {
4420 #hns-date-picker {
4421 right: -81px;
4422 padding: 8px 10px 10px 10px;
4423 bottom: 62px;
4424 display: none;
4426 #hns-date-picker::before {
4427 content: "";
4428 position: absolute;
4429 display: block;
4430 z-index: -1;
4431 height: calc(100% + 2px);
4432 top: -1px;
4433 left: -1px;
4434 width: 50%;
4437 @media only screen and (max-width: 1160px) {
4438 #new-comment-nav-ui {
4439 bottom: 180px;
4440 right: -68px;
4442 #hns-date-picker {
4443 bottom: 200px;
4444 right: -36px;
4446 #hns-date-picker::before {
4447 width: calc(100% - 35px);
4449 #theme-selector button::before {
4450 right: unset;
4451 left: 100%;
4453 #theme-selector:hover::after {
4454 content: "";
4455 display: block;
4456 position: absolute;
4457 width: calc(6em - 7px);
4458 height: calc(100% + 2px);
4459 top: 0;
4460 left: calc(100% + 1px);
4462 #anti-kibitzer-toggle {
4463 bottom: 330px;
4466 @media only screen and (max-width: 1080px) {
4467 #width-selector {
4468 right: -30px;
4470 #width-selector button {
4471 display: block;
4473 #text-size-adjustment-ui {
4474 top: 90px;
4475 right: -30px;
4477 #text-size-adjustment-ui button {
4478 display: block;
4479 position: relative;
4481 #text-size-adjustment-ui button.increase {
4482 bottom: 48px;
4484 #text-size-adjustment-ui button.decrease {
4485 top: 50px;
4487 #theme-selector {
4488 top: 46px;
4489 left: -44px;
4491 #theme-tweaker-toggle {
4492 left: -44px;
4493 top: 2px;
4495 #theme-tweaker-toggle button {
4496 height: 2em;
4497 width: 2em;
4498 padding: 7px;
4500 #quick-nav-ui {
4501 right: -54px;
4503 #new-comment-nav-ui {
4504 right: -55px;
4506 #hns-date-picker {
4507 right: -23px;
4509 #hns-date-picker::before {
4510 width: calc(100% - 22px);
4512 #anti-kibitzer-toggle {
4513 right: -54px;
4516 @media only screen and (max-width: 1040px) {
4517 #quick-nav-ui {
4518 right: -49px;
4520 #new-comment-nav-ui {
4521 right: -50px;
4523 #hns-date-picker {
4524 right: -18px;
4526 #hns-date-picker::before {
4527 width: calc(100% - 17px);
4529 #anti-kibitzer-toggle {
4530 right: -50px;
4533 @media only screen and (max-width: 1020px) {
4534 #quick-nav-ui {
4535 right: -20px;
4537 #new-comment-nav-ui {
4538 right: -21px;
4540 #new-comment-nav-ui .new-comments-count::before {
4541 content: "";
4542 position: absolute;
4543 width: 100%;
4544 height: calc(100% + 45px);
4545 z-index: -1;
4546 left: 0;
4547 top: -22px;
4549 #hns-date-picker {
4550 right: 19px;
4552 #hns-date-picker::before {
4553 width: 100%;
4555 #anti-kibitzer-toggle {
4556 right: -20px;
4559 @media only screen and (max-width: 1000px) {
4560 #theme-selector {
4561 left: -17px;
4562 top: 120px;
4563 padding: 3px 0;
4564 max-width: 32px;
4566 #theme-selector button {
4567 margin: 1px 4px;
4569 #text-size-adjustment-ui {
4570 top: 100px;
4571 right: -12px;
4573 @media not screen and (hover: none) {
4574 #quick-nav-ui,
4575 #new-comment-nav-ui,
4576 #new-comment-nav-ui + #hns-date-picker,
4577 #anti-kibitzer-toggle {
4578 opacity: 0.4;
4580 #quick-nav-ui:hover,
4581 #new-comment-nav-ui:hover,
4582 #new-comment-nav-ui + #hns-date-picker:hover,
4583 #new-comment-nav-ui + #hns-date-picker:focus-within,
4584 #new-comment-nav-ui:hover + #hns-date-picker,
4585 #anti-kibitzer-toggle:hover {
4586 opacity: 1.0;
4589 #theme-tweaker-toggle {
4590 top: 70px;
4591 left: -21px;
4595 /**************/
4596 /* PRINT VIEW */
4597 /**************/
4599 @media only print {
4600 .nav-bar {
4601 visibility: hidden;
4602 max-height: 0;
4603 overflow: hidden;
4605 #ui-elements-container {
4606 display: none;
4608 #images-overlay {
4609 display: none;
4611 #images-overlay + #content .post-body img {
4612 visibility: visible;
4614 .comment-controls {
4615 display: none;
4617 #comments-sort-mode-selector {
4618 display: none;
4620 .comment-minimize-button {
4621 display: none;
4623 .post-meta .qualified-linking,
4624 .post-meta .lw2-link {
4625 display: none;
4627 .comment-meta .permalink,
4628 .comment-meta .lw2-link,
4629 .comment-meta .comment-parent-link {
4630 display: none;
4632 .new-comment::before {
4633 display: none;
4635 #content::before {
4636 box-shadow: none;
4640 /*****************/
4641 /* MOBILE LAYOUT */
4642 /*****************/
4644 /* Hide the mobile elements on desktop screens: */
4646 @media only screen and (max-width: 1160px) {
4647 #post-nav-ui-toggle,
4648 #appearance-adjust-ui-toggle {
4649 display: none;
4653 @media only screen and (max-width: 1160px) {
4655 /*====================*/
4656 /* MOBILE UI ELEMENTS */
4657 /*====================*/
4659 #ui-elements-container {
4660 height: unset !important;
4661 position: unset;
4663 #ui-elements-container > * {
4664 position: fixed;
4665 visibility: hidden;
4666 opacity: 1.0;
4667 z-index: 10000;
4670 #ui-elements-container > div[id$='-ui-toggle'] {
4671 visibility: visible;
4672 display: inline-block;
4673 border-radius: 50%;
4674 z-index: 10000;
4676 #ui-elements-container > div[id$='-ui-toggle'] button,
4677 #theme-selector .theme-selector-close-button {
4678 font-family: Font Awesome;
4679 font-weight: 900;
4680 font-size: 32px;
4681 padding: 10px;
4682 opacity: 0.8;
4683 -webkit-tap-highlight-color: transparent;
4684 transition: transform 0.2s ease;
4686 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4687 #theme-selector .theme-selector-close-button::selection {
4688 background-color: transparent;
4690 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4691 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4692 border: none;
4694 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4695 transform: rotate(-90deg);
4696 opacity: 1.0;
4699 #appearance-adjust-ui-toggle {
4700 bottom: 10px;
4701 left: 10px;
4704 #post-nav-ui-toggle {
4705 bottom: 10px;
4706 right: 10px;
4709 #theme-selector.engaged,
4710 #quick-nav-ui.engaged,
4711 #new-comment-nav-ui.engaged,
4712 #hns-date-picker.engaged {
4713 visibility: visible;
4716 #image-focus-overlay.engaged {
4717 visibility: visible;
4719 #image-focus-overlay .help-overlay {
4720 display: none;
4723 /*=========*/
4724 /* GENERAL */
4725 /*=========*/
4727 @media only screen and (max-width: 900px) {
4728 #content,
4729 #images-overlay,
4730 #ui-elements-container {
4731 min-width: unset;
4732 width: unset;
4734 #content {
4735 padding: 0 4px;
4739 /*================*/
4740 /* THEME SELECTOR */
4741 /*================*/
4743 #theme-selector {
4744 display: flex;
4745 flex-flow: column;
4746 background-color: #fff;
4747 width: calc(100vw - 20px);
4748 max-width: 360px;
4749 padding: 0 0 3px 0;
4750 overflow: hidden;
4751 max-height: 0;
4752 transition:
4753 top 0.2s ease,
4754 max-height 0.2s ease,
4755 visibility 0.2s ease;
4756 top: calc(100% + 10px);
4757 left: 0;
4758 right: 0;
4759 margin: auto;
4761 #theme-selector.engaged {
4762 max-height: 1000px;
4763 top: 10px;
4764 z-index: 10001;
4766 #theme-selector::before {
4767 content: "Select theme";
4768 white-space: nowrap;
4769 display: block;
4770 font-weight: 600;
4771 font-size: 2rem;
4772 margin: 0.375em 1em 0.5em 1em;
4773 text-align: center;
4775 #theme-selector button {
4776 width: calc(100% - 0.5em);
4777 background-repeat: no-repeat;
4778 padding: 1em 0.875em;
4779 margin: 1px 4px;
4780 line-height: 1;
4781 height: unset;
4782 position: relative;
4784 #theme-selector button::after {
4785 content: attr(data-theme-description);
4786 color: #000;
4787 white-space: nowrap;
4788 position: absolute;
4789 text-align: left;
4790 left: 2.5em;
4791 top: 1em;
4793 @media only screen and (max-height: 675px) {
4794 #theme-selector button {
4795 padding: 0.875em;
4797 #theme-selector button::after {
4798 top: 0.875em;
4801 #theme-selector .theme-selector-close-button {
4802 position: absolute;
4803 width: unset;
4804 background-color: transparent;
4805 top: 0;
4806 right: 0;
4807 margin: 0;
4808 font-size: 31px;
4810 #theme-selector .theme-selector-close-button,
4811 #theme-selector .theme-selector-close-button:focus,
4812 #theme-selector .theme-selector-close-button:active,
4813 #theme-selector .theme-selector-close-button:hover {
4814 box-shadow: none;
4817 /*===============*/
4818 /* THEME TWEAKER */
4819 /*===============*/
4821 #theme-selector {
4822 padding: 0 0 64px 0;
4824 #theme-selector ~ #theme-tweaker-toggle {
4825 top: 100%;
4827 #theme-selector ~ #theme-tweaker-toggle::after {
4828 content: "Open theme tweaker";
4829 position: absolute;
4830 font-size: 0.625em;
4831 white-space: nowrap;
4832 left: -50%;
4833 top: 100%;
4835 #theme-selector.engaged ~ #theme-tweaker-toggle {
4836 visibility: visible;
4837 top: 530px;
4838 left: 0;
4839 right: 0;
4840 margin: auto;
4841 z-index: 11111;
4842 transition:
4843 top 0.2s ease,
4844 visibility 0.2s ease;
4846 @media only screen and (max-height: 675px) {
4847 #theme-selector.engaged ~ #theme-tweaker-toggle {
4848 top: 492px;
4851 @supports (width: -moz-fit-content) {
4852 #theme-selector.engaged ~ #theme-tweaker-toggle {
4853 width: -moz-fit-content;
4856 @supports (width: fit-content) {
4857 #theme-selector.engaged ~ #theme-tweaker-toggle {
4858 width: fit-content;
4861 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4862 opacity: 1.0;
4865 #theme-tweaker-ui {
4866 visibility: visible;
4869 /*======================*/
4870 /* ANTI-KIBITZER TOGGLE */
4871 /*======================*/
4873 #theme-selector ~ #anti-kibitzer-toggle {
4874 top: 100%;
4875 bottom: unset;
4876 left: 0;
4877 right: 0;
4878 margin: auto;
4879 box-shadow: none;
4880 width: calc(100vw - 44px);
4881 max-width: 330px;
4882 text-align: right;
4883 pointer-events: none;
4885 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4886 visibility: visible;
4887 z-index: 11110;
4888 top: 530px;
4889 transition:
4890 top 0.2s ease,
4891 visibility 0.2s ease;
4893 @media only screen and (max-height: 675px) {
4894 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4895 top: 492px;
4898 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4899 pointer-events: auto;
4900 display: inline-block;
4903 /*=================*/
4904 /* QUICKNAV WIDGET */
4905 /*=================*/
4907 #quick-nav-ui {
4908 max-width: 0px;
4909 transition:
4910 max-width 0.2s ease,
4911 visibility 0.2s ease;
4912 display: flex;
4913 right: 72px;
4914 bottom: 14px;
4916 #quick-nav-ui.engaged {
4917 max-width: 1000px;
4919 #quick-nav-ui a {
4920 position: relative;
4921 margin: 2px;
4923 #quick-nav-ui a + a {
4924 margin-left: 5px;
4926 #quick-nav-ui a::after {
4927 position: absolute;
4928 top: calc(100% + 2px);
4929 font-size: 0.375rem;
4930 left: 0;
4931 right: 0;
4932 margin: auto;
4933 line-height: 1;
4934 padding: 2px;
4935 text-transform: uppercase;
4936 z-index: -1;
4938 @supports (width: -moz-fit-content) {
4939 #quick-nav-ui a::after {
4940 width: -moz-fit-content;
4943 @supports (width: fit-content) {
4944 #quick-nav-ui a::after {
4945 width: fit-content;
4948 #quick-nav-ui a[href='#top']::after {
4949 content: "Top";
4950 left: -1px;
4952 #quick-nav-ui a[href='#comments']::after {
4953 content: "Comments";
4955 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4956 visibility: hidden;
4957 transition: visibility 0.2s ease;
4959 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4960 visibility: visible;
4962 #quick-nav-ui a[href='#bottom-bar']::after {
4963 content: "Bottom";
4966 /*======================*/
4967 /* NEW COMMENT QUICKNAV */
4968 /*======================*/
4970 #new-comment-nav-ui {
4971 max-width: 0px;
4972 max-height: 0px;
4973 transition:
4974 max-width 0.2s ease,
4975 max-height 0.2s ease,
4976 visibility 0.2s ease;
4977 display: flex;
4978 right: 78px;
4979 bottom: 70px;
4981 #new-comment-nav-ui::before {
4982 content: "New Comments";
4983 position: absolute;
4984 bottom: 100%;
4985 font-size: 0.5625rem;
4986 left: 0;
4987 right: 0;
4988 margin: auto;
4989 padding: 2px 3px;
4990 text-transform: uppercase;
4991 z-index: -1;
4993 @supports (width: -moz-fit-content) {
4994 #new-comment-nav-ui::before {
4995 width: -moz-fit-content;
4998 @supports (width: fit-content) {
4999 #new-comment-nav-ui::before {
5000 width: fit-content;
5003 #new-comment-nav-ui.engaged {
5004 max-width: 1000px;
5005 max-height: 1000px;
5007 #new-comment-nav-ui .new-comment-sequential-nav-button {
5008 top: unset;
5009 bottom: unset;
5010 padding: 2px 7px;
5012 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5013 padding: 2px 7px 3px 7px;
5015 #new-comment-nav-ui .new-comments-count {
5016 padding: 4px 0 5px 0;
5018 #new-comment-nav-ui .new-comments-count::before {
5019 display: none;
5021 #new-comment-nav-ui button::after {
5022 position: absolute;
5023 font-size: 0.375rem;
5024 left: 0;
5025 right: 0;
5026 margin: auto;
5027 line-height: 1;
5028 text-transform: uppercase;
5029 pointer-events: none;
5031 #new-comment-nav-ui button.new-comment-previous::after {
5032 content: "Previous";
5033 bottom: 5px;
5035 #new-comment-nav-ui button.new-comment-next::after {
5036 content: "Next";
5037 top: 7px;
5040 /*=================*/
5041 /* HNS DATE PICKER */
5042 /*=================*/
5044 #hns-date-picker {
5045 max-height: 0px;
5046 bottom: 132px;
5047 right: 62px;
5048 transition:
5049 max-height 0.2s ease,
5050 visibility 0.2s ease;
5052 #hns-date-picker.engaged {
5053 max-height: 1000px;
5055 #hns-date-picker::before {
5056 width: calc(100% + 2px);
5057 border-width: 1px !important;
5060 /*=========*/
5061 /* NAV BAR */
5062 /*=========*/
5064 #bottom-bar {
5065 margin-left: auto;
5066 margin-right: auto;
5067 width: calc(100% - 9rem + 8px);
5068 background: rgba(255,255,255,0.85);
5069 backdrop-filter: blur(1px);
5071 #content.index-page #bottom-bar {
5072 z-index: 10001;
5074 #bottom-bar .nav-item {
5075 box-shadow: none;
5076 position: relative;
5078 #bottom-bar .nav-inner {
5079 font-size: 2rem;
5080 padding: 1rem 0 1.25rem 0;
5081 visibility: hidden;
5082 position: static;
5083 width: 0;
5085 #content #bottom-bar .nav-item .nav-inner::before {
5086 margin: 0;
5087 visibility: visible;
5088 position: absolute;
5089 width: 100%;
5090 height: 100%;
5091 left: 0;
5092 top: 0;
5093 padding: 1rem 0;
5095 #bottom-bar .nav-inner::after {
5096 display: block;
5097 visibility: visible;
5098 text-transform: uppercase;
5099 color: unset;
5100 font-size: 0.75rem;
5101 top: unset;
5102 left: 0;
5103 bottom: 1rem;
5104 width: 100%;
5106 #bottom-bar #nav-item-first .nav-inner::after {
5107 content: "First Page";
5109 #bottom-bar #nav-item-prev .nav-inner::after {
5110 content: "Prev. Page";
5112 #bottom-bar #nav-item-top .nav-inner::after {
5113 content: "Top";
5115 #bottom-bar #nav-item-next .nav-inner::after {
5116 content: "Next Page";
5118 #bottom-bar #nav-item-last .nav-inner::after {
5119 content: "Last Page";
5122 @media only screen and (max-width: 900px) {
5123 .nav-bar-top {
5124 font-size: 0.75rem;
5126 .nav-bar {
5127 width: calc(100% + 8px);
5128 margin: 0 -4px;
5130 .nav-bar .nav-inner::after {
5131 display: none;
5134 #primary-bar .nav-item {
5135 flex: 1 1 100%;
5137 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5138 flex: 1 1 60px;
5140 .nav-bar-top:not(#anything) .nav-inner {
5141 text-transform: uppercase;
5142 padding: 6px;
5144 .nav-bar-top .nav-inner::before {
5145 display: block;
5146 font-family: "Font Awesome";
5147 font-size: 2em;
5148 font-weight: 900;
5151 #nav-item-home .nav-inner::before {
5152 content: "\F015";
5154 #nav-item-featured .nav-inner::before {
5155 content: "\F005";
5157 #nav-item-all .nav-inner::before {
5158 content: "\F069";
5160 #nav-item-meta .nav-inner::before {
5161 content: "\F077";
5163 #nav-item-tags .nav-inner::before {
5164 content: "\F02C";
5166 #nav-item-recent-comments > * > span {
5167 display: none;
5169 #nav-item-recent-comments .nav-inner::before,
5170 #nav-item-alignment-forum-comments .nav-inner::before {
5171 content: "\F036";
5173 #nav-item-alignment-forum .nav-inner::before {
5174 content: "AF";
5175 font-family: Concourse, 'Changa One';
5177 #nav-item-questions .nav-inner::before {
5178 content: "?";
5179 font-family: Concourse, 'Changa One';
5181 #nav-item-events .nav-inner::before {
5182 content: "\F5A0";
5184 #nav-item-shortform .nav-inner::before {
5185 content: "\F2F2";
5187 #nav-item-archive .nav-inner::before {
5188 content: "\F187";
5190 #nav-item-about .nav-inner::before {
5191 content: "\F129";
5193 #nav-item-search {
5194 font-size: 2em;
5195 padding: 10px;
5197 #nav-item-search .nav-inner::before {
5198 content: none;
5200 #nav-item-search .nav-inner {
5201 height: 100%;
5202 display: flex;
5204 #nav-item-search input {
5205 width: 100%;
5206 height: 100%;
5208 #nav-item-search button {
5209 height: 100%;
5210 padding: 5px 5px 5px 10px;
5211 width: 40px;
5212 overflow: visible;
5213 visibility: hidden;
5215 #nav-item-search button::before {
5216 content: "\F002";
5217 font-family: Font Awesome;
5218 font-weight: 900;
5219 visibility: visible;
5221 #nav-item-login {
5222 padding: 0;
5224 #nav-item-login .nav-inner::before {
5225 content: "\F007";
5228 @media only screen and (max-width: 520px) {
5229 .nav-bar-top {
5230 font-size: 0.5rem;
5233 #nav-item-search,
5234 #nav-item-search .nav-inner {
5235 padding: 0;
5237 #nav-item-search button {
5238 width: 31px;
5241 #bottom-bar #nav-item-first .nav-inner::after {
5242 content: "First";
5244 #bottom-bar #nav-item-prev .nav-inner::after {
5245 content: "Prev";
5247 #bottom-bar #nav-item-next .nav-inner::after {
5248 content: "Next";
5250 #bottom-bar #nav-item-last .nav-inner::after {
5251 content: "Last";
5255 /*=================*/
5256 /* INBOX INDICATOR */
5257 /*=================*/
5259 @media only screen and (max-width: 900px) {
5260 #inbox-indicator {
5261 width: 100%;
5262 top: 0;
5263 pointer-events: none;
5265 #inbox-indicator::before {
5266 width: 100%;
5267 font-size: 1rem;
5268 text-align: right;
5269 padding: 1px 6px;
5271 #inbox-indicator.new-messages {
5272 pointer-events: auto;
5274 #inbox-indicator.new-messages::before {
5275 box-shadow: 0 0 8px 1px #f00 inset;
5278 @media only screen and (max-width: 520px) {
5279 #inbox-indicator::before {
5280 font-size: 0.75rem;
5281 padding: 2px 5px;
5284 @media only screen and (max-width: 374px) {
5285 #inbox-indicator::before {
5286 font-size: 0.625rem;
5290 /*===================*/
5291 /* TOP PAGINATION UI */
5292 /*===================*/
5294 #top-nav-bar {
5295 font-size: 1.75rem;
5298 /*==============*/
5299 /* PAGE TOOLBAR */
5300 /*==============*/
5302 @media only screen and (max-width: 900px) {
5303 #content > .page-toolbar {
5304 font-size: 1rem;
5305 margin-right: 0;
5307 #content.user-page > .page-toolbar {
5308 grid-column: 2 / span 2;
5309 margin: 0 0 6px 0;
5312 @media only screen and (max-width: 520px) {
5313 #content:not(.user-page) .page-toolbar {
5314 display: flex;
5315 flex-direction: column-reverse;
5316 text-align: right;
5317 align-self: start;
5318 padding: 4px 0 0 0;
5320 #content.user-page .page-toolbar {
5321 display: flex;
5322 flex-flow: row;
5323 justify-content: flex-end;
5324 padding: 2px 0 0 0;
5326 #content.user-page .page-toolbar > form,
5327 #content.user-page .page-toolbar > .button {
5328 text-align: center;
5329 flex-basis: 25%;
5330 margin-left: 1.5em;
5332 #content.user-page .page-toolbar .button {
5333 text-transform: uppercase;
5334 font-size: 0.625rem;
5336 #content.user-page .page-toolbar .button::before {
5337 font-size: 1.375rem;
5338 display: block;
5339 padding: 0;
5341 #content.user-page .page-toolbar .rss {
5342 white-space: nowrap;
5343 margin: 0 0 0 1.5em;
5345 .page-toolbar > * {
5346 line-height: 1.15;
5347 padding: 6px 0;
5348 margin: 0;
5352 /*==============*/
5353 /* SUBLEVEL NAV */
5354 /*==============*/
5356 @media only screen and (max-width: 900px) {
5357 .sublevel-nav:not(.sort) {
5358 flex-wrap: wrap;
5359 width: calc(100vw - 200px);
5361 .sublevel-nav:not(.sort) .sublevel-item {
5362 margin: 1px;
5363 flex-basis: 7em;
5366 @media only screen and (max-width: 520px) {
5367 .sublevel-nav:not(.sort) .sublevel-item {
5368 font-size: 1rem;
5372 /*=====================*/
5373 /* SORT ORDER SELECTOR */
5374 /*=====================*/
5376 @media only screen and (max-width: 720px) {
5377 #content.index-page > .sublevel-nav.sort {
5378 flex-flow: column;
5379 margin-left: 4px;
5383 /*==========*/
5384 /* ARCHIVES */
5385 /*==========*/
5387 @media only screen and (max-width: 900px) {
5388 div[class^='archive-nav-'] {
5389 flex-wrap: wrap;
5390 justify-content: flex-start;
5392 .archive-nav *[class^='archive-nav-item'],
5393 .archive-nav *[class^='archive-nav-item']:first-child {
5394 padding: 10px;
5395 margin: 2px;
5396 max-width: unset;
5397 flex: 0 1 calc((100% / 8) - 4px);
5399 .archive-nav .archive-nav-item-day,
5400 .archive-nav .archive-nav-item-day:first-child {
5401 flex-basis: calc((100% / 16) - 4px);
5403 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5404 margin-top: 8px;
5405 position: relative;
5407 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5408 content: "";
5409 display: block;
5410 position: absolute;
5411 height: 1px;
5412 width: calc(100% + 8px);
5413 left: -4px;
5414 top: -4px;
5417 @media only screen and (max-width: 720px) {
5418 .archive-nav .archive-nav-item-day,
5419 .archive-nav .archive-nav-item-day:first-child {
5420 flex-basis: calc((100% / 12) - 4px);
5423 @media only screen and (max-width: 520px) {
5424 .archive-nav *[class^='archive-nav-item'],
5425 .archive-nav *[class^='archive-nav-item']:first-child {
5426 flex-basis: calc((100% / 5) - 4px);
5428 .archive-nav .archive-nav-item-day,
5429 .archive-nav .archive-nav-item-day:first-child {
5430 flex-basis: calc((100% / 8) - 4px);
5434 /*==========*/
5435 /* LISTINGS */
5436 /*==========*/
5438 h1.listing {
5439 max-height: unset;
5442 /*============*/
5443 /* USER PAGES */
5444 /*============*/
5446 #content.user-page h1.page-main-heading {
5447 align-self: end;
5449 @media only screen and (max-width: 520px) {
5450 #content.user-page h1.page-main-heading {
5451 overflow: hidden;
5452 text-overflow: ellipsis;
5454 #content.user-page .user-stats .karma-type {
5455 display: block;
5459 /*============*/
5460 /* LOGIN PAGE */
5461 /*============*/
5463 @media only screen and (max-width: 640px) {
5464 .login-container {
5465 flex-flow: column;
5466 margin: 0 auto 3em auto;
5467 max-width: 400px;
5469 .login-container #login-form,
5470 .login-container #signup-form {
5471 padding: 0 1em 1.25em 1em;
5472 grid-row-gap: 0;
5474 .login-container #signup-form {
5475 padding-top: 1em;
5477 .login-container #login-form > *,
5478 .login-container #signup-form > * {
5479 grid-column: 1 / span 2;
5481 .login-container form label {
5482 text-align: left;
5483 padding: 0;
5484 line-height: 1;
5486 .login-container form input {
5487 margin: 0.25em 0 0.75em 0;
5488 padding: 0.5em;
5490 .login-container form h1 {
5491 grid-column: 1 / span 2;
5492 margin: 0 0 0.25em 0;
5494 .login-container form a {
5495 margin: 0.75em 0 0 0;
5497 .login-container .login-tip {
5498 margin: 1.5em 1em 0 1em;
5502 /*==================*/
5503 /* POSTS & COMMENTS */
5504 /*==================*/
5506 @media only screen and (max-width: 720px) {
5507 .body-text ol > li {
5508 padding: 0 0 0 2.25em;
5510 .body-text ol > li::before {
5511 width: 1.75em;
5513 .body-text ul:not(.contents-list) > li,
5514 .body-text ul:not(.contents-list) > li ul > li {
5515 padding: 0 0 0 0.75em;
5517 .body-text ul:not(.contents-list) > li::before,
5518 .body-text ul:not(.contents-list) > li ul > li::before {
5519 width: 0.125em;
5520 margin-left: -0.06em;
5524 /*===========*/
5525 /* POST-META */
5526 /*===========*/
5528 .post-meta {
5529 line-height: 1.9;
5531 @media only screen and (max-width: 720px) {
5532 .post-meta .lw2-link span,
5533 .post-meta .karma-value span,
5534 .post-meta .comment-count span {
5535 display: none;
5537 .post-meta .comment-count::before {
5538 content: "\F086";
5539 font-family: Font Awesome;
5540 font-size: 0.875em;
5541 margin: 0 0.25em 0 0;
5542 font-weight: 400;
5546 /*===================*/
5547 /* POSTS & BODY TEXT */
5548 /*===================*/
5550 @media only screen and (max-width: 900px) {
5551 .post-body,
5552 h1.post-title,
5553 .tag-description,
5554 .sequence-text {
5555 padding: 0 6px;
5558 @media only screen and (max-width: 520px) {
5559 .post-body {
5560 font-size: 1.2rem;
5561 line-height: 1.45;
5563 h1.post-title {
5564 font-size: 2em;
5568 /*==============*/
5569 /* COMMENT-META */
5570 /*==============*/
5572 a.comment-parent-link::after {
5573 display: none;
5575 @media only screen and (max-width: 900px) {
5576 .comment-meta {
5577 padding: 2px 40px 2px 10px;
5580 @media only screen and (max-width: 720px) {
5581 .comment .karma-value span {
5582 display: none;
5584 .comment-meta .comment-parent-link {
5585 opacity: 1.0;
5588 @media only screen and (max-width: 520px) {
5589 .comment-meta {
5590 padding: 2px 24px 2px 10px;
5591 position: relative;
5593 .comment-meta > * {
5594 order: 3;
5596 .comment-meta > :not(.author) {
5597 line-height: 1.8;
5599 .comment-meta .author,
5600 .comment-meta .date {
5601 order: 1;
5603 .comment-meta:before {
5604 content: "";
5605 order: 2;
5606 flex-basis: 100%;
5608 .comment-post-title2 {
5609 display: block;
5610 text-overflow: ellipsis;
5611 overflow: hidden;
5613 .comment-meta .lw2-link {
5614 display: none;
5618 /*=======================*/
5619 /* COMMENTS COMPACT VIEW */
5620 /*=======================*/
5622 /*===========================*/
5623 /* COMMENT THREAD NAVIGATION */
5624 /*===========================*/
5626 @media only screen and (max-width: 900px) {
5627 a.comment-parent-link {
5628 width: 0;
5629 visibility: hidden;
5630 position: relative;
5632 a.comment-parent-link::before {
5633 padding: 0;
5634 font-size: 1em;
5635 left: 0;
5636 top: 0;
5637 line-height: inherit;
5638 visibility: visible;
5639 content: "\F3BF";
5640 transform: scaleX(-1);
5641 width: 2em;
5642 text-align: center;
5645 @media only screen and (max-width: 520px) {
5646 a.comment-parent-link {
5647 position: static;
5649 a.comment-parent-link::before {
5650 padding: 6px;
5651 left: unset;
5652 right: 0;
5653 top: unset;
5654 bottom: 0;
5655 height: 2em;
5659 /*=================================*/
5660 /* COMMENT THREAD MINIMIZE BUTTONS */
5661 /*=================================*/
5663 @media only screen and (max-width: 520px) {
5664 .comment-minimize-button{
5665 right: 2px;
5669 /*===========================*/
5670 /* COMMENTING AND POSTING UI */
5671 /*===========================*/
5673 @media only screen and (max-width: 900px) {
5674 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5675 font-size: 0;
5677 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5678 font-size: 0.9rem;
5680 .comment-controls .cancel-comment-button {
5681 max-width: 1.3em;
5682 overflow: hidden;
5683 margin-right: 0.125em;
5685 .comment-controls .edit-button::before {
5686 font-size: 0.9375rem;
5688 .comments > .comment-controls .cancel-comment-button {
5689 right: 8px;
5691 .comment-controls .cancel-comment-button::before {
5692 font-size: 1.25rem;
5695 @media only screen and (max-width: 520px) {
5696 .comment-controls {
5697 position: static;
5699 .comment-controls:focus-within {
5700 z-index: 10001;
5702 .comment-controls .cancel-comment-button {
5703 right: 10px;
5705 .textarea-container:focus-within textarea {
5706 position: fixed;
5707 top: 0;
5708 left: 2px;
5709 width: calc(100vw - 4px);
5710 height: calc(100% - 100px);
5711 min-height: unset;
5712 max-height: unset;
5713 border-width: 1px;
5714 z-index: 11001;
5716 #content.conversation-page .textarea-container:focus-within textarea {
5717 height: calc(100% - 54px);
5719 #content.conversation-page .textarea-container:focus-within::after {
5720 content: "";
5721 display: block;
5722 width: 100%;
5723 height: 50px;
5724 position: fixed;
5725 left: 0;
5726 bottom: 0;
5727 z-index: 11000;
5729 .textarea-container:focus-within .guiedit-buttons-container {
5730 position: fixed;
5731 z-index: 11002;
5732 left: 0;
5733 width: 100vw;
5734 height: auto;
5735 background-image: none;
5736 padding: 3px 4px 4px 4px;
5737 margin: 0;
5738 text-align: center;
5739 top: auto;
5740 bottom: 0;
5742 .textarea-container:focus-within button.guiedit {
5743 font-size: 0.9375rem;
5744 line-height: 1.5;
5745 height: auto;
5746 width: calc((100% / 10) - 2px);
5747 padding: 10px 1px 8px 0;
5748 position: relative;
5749 margin: 1px;
5751 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5752 z-index: 11011;
5753 position: fixed;
5754 bottom: 7px;
5755 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5756 font-size: 1.25rem;
5757 padding: 5px 5px 6px 5px;
5758 display: block;
5760 .textarea-container:focus-within button.guiedit sup {
5761 position: absolute;
5762 left: calc(50% + 0.65em);
5763 top: calc(50% - 1.3em);
5765 .textarea-container:focus-within .guiedit-mobile-help-button {
5766 left: 8px;
5768 .textarea-container:focus-within .guiedit-mobile-exit-button {
5769 right: 8px;
5771 .guiedit::after {
5772 display: none;
5775 #markdown-hints,
5776 #edit-post-form #markdown-hints {
5777 z-index: 11111;
5778 position: fixed;
5779 top: 40px;
5780 left: 0;
5781 right: 0;
5782 margin: auto;
5783 padding: 4px 0 4px 8px;
5784 width: 310px;
5785 border-width: 3px;
5786 border-style: double;
5787 pointer-events: none;
5789 #markdown-hints::after {
5790 content: "(Type to hide this help box.)";
5791 color: #090;
5792 display: block;
5793 margin: 12px 18px 13px 10px;
5794 padding: 5px;
5795 font-size: 0.9em;
5796 text-align: center;
5800 /*================*/
5801 /* EDIT POST FORM */
5802 /*================*/
5804 @media only screen and (max-width: 520px) {
5805 #edit-post-form {
5806 padding-bottom: 0;
5808 #edit-post-form .post-meta-fields {
5809 grid-template-columns: 4.5em auto auto auto 1fr auto;
5811 #edit-post-form label[for='url'],
5812 #edit-post-form label[for='section'],
5813 #edit-post-form label[for='title'] {
5814 padding-left: 0;
5816 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5817 white-space: normal;
5818 line-height: 0.9;
5819 top: -1px;
5820 font-family: Font Awesome;
5821 font-weight: 900;
5822 justify-self: start;
5824 #edit-post-form .post-meta-fields .question-checkbox,
5825 #edit-post-form .post-meta-fields .question-checkbox + label {
5826 grid-column: 6;
5827 margin-left: unset;
5829 #edit-post-form .post-meta-fields input[type='radio'] + label {
5830 align-self: start;
5832 #edit-post-form .textarea-container:focus-within textarea {
5833 height: calc(100% - 101px);
5834 min-height: unset;
5837 #markdown-hints-checkbox,
5838 #markdown-hints-checkbox + label {
5839 display: none;
5842 #edit-post-form div:last-child {
5843 clear: both;
5844 overflow: auto;
5846 #edit-post-form input[type='submit'] {
5847 float: none;
5848 display: block;
5849 font-size: 1.5rem;
5850 margin: 1rem auto 1.5rem auto;
5851 padding: 6px 12px 8px 12px;
5855 /*===================*/
5856 /* TABLE OF CONTENTS */
5857 /*===================*/
5859 @media only screen and (max-width: 900px) {
5860 .contents {
5861 float: none;
5862 display: table;
5863 max-width: none;
5864 margin-left: auto;
5865 margin-right: auto;
5868 @media only screen and (max-width: 520px) {
5869 .contents {
5870 max-width: 100%;
5871 margin: 1em auto 0 auto;
5872 display: table;
5874 .contents-head {
5875 font-size: 1.2em;
5877 div.post-body .contents ul {
5878 font-size: unset;
5882 /*========================*/
5883 /* QUALIFIED HYPERLINKING */
5884 /*========================*/
5886 @media only screen and (max-width: 520px) {
5887 .qualified-linking-toolbar {
5888 right: -5em;
5892 } /* END MOBILE LAYOUT */
5895 /*****************/
5896 /* DEFAULT THEME */
5897 /*****************/
5899 /*===========*/
5900 /* VARIABLES */
5901 /*===========*/
5903 /* Color scheme.
5905 :root {
5906 --GW-comment-background-color-odd: #eee;
5907 --GW-comment-background-color-even: #fff;
5908 --GW-comment-background-color-target: #ffd;
5910 --GW-toggle-widget-color: #888;
5911 --GW-toggle-widget-hover-color: #444;
5912 --GW-toggle-widget-shadow-color: rgba(255, 255, 255, 0.5);
5915 /*======*/
5916 /* BASE */
5917 /*======*/
5919 body {
5920 color: #000;
5921 background-color: #d8d8d8;
5922 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
5923 font-feature-settings: 'ss07';
5925 #content {
5926 line-height: 1.55;
5928 #content::before {
5929 background-color: #fff;
5930 box-shadow: 0px 0px 10px #555;
5933 /*=========*/
5934 /* NAV BAR */
5935 /*=========*/
5937 .nav-inner {
5938 font-size: 1.375em;
5939 font-weight: 600;
5941 .nav-bar-top:not(#primary-bar) .nav-inner {
5942 font-size: 1em;
5945 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5946 #bottom-bar a:hover,
5947 #nav-item-search:not(.nav-current):focus-within {
5948 background-color: #ddd;
5950 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5951 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5952 background-color: #d8d8d8;
5955 .nav-bar a:visited {
5956 color: #00e;
5958 .nav-bar a:hover,
5959 .nav-bar a:focus {
5960 text-decoration: none;
5961 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5964 #bottom-bar.decorative::before,
5965 #bottom-bar.decorative::after {
5966 content: "GW";
5967 display: block;
5968 text-align: center;
5969 padding: 0.25em 0 1em 0;
5971 #bottom-bar.decorative::before {
5972 width: 100%;
5973 color: transparent;
5974 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5975 background-repeat: repeat-x;
5976 background-position: center 35%;
5977 margin: 0 30px;
5979 #bottom-bar.decorative::after {
5980 color: #d8d8d8;
5981 position: absolute;
5982 left: 0;
5983 right: 0;
5984 margin: auto;
5985 background-color: #fff;
5986 padding-right: 4px;
5987 padding-left: 4px;
5989 @supports (width: -moz-fit-content) {
5990 #bottom-bar.decorative::after {
5991 width: -moz-fit-content;
5994 @supports (width: fit-content) {
5995 #bottom-bar.decorative::after {
5996 width: fit-content;
6000 /* Accesskey hints */
6002 .nav-inner::after {
6003 display: block;
6004 position: absolute;
6005 left: 5px;
6006 top: -2px;
6007 font-weight: 400;
6008 font-size: 0.7em;
6009 color: #d8d8d8;
6011 .inactive-bar .nav-inner::after {
6012 color: #ccc;
6014 .nav-inner:hover::after {
6015 color: #bbb;
6018 /* This makes the navbar items look like tabs: */
6020 .nav-inactive {
6021 box-shadow:
6022 0 -1px #d8d8d8 inset,
6023 1px 0 #fff inset;
6025 .nav-inactive:first-child {
6026 box-shadow: 0 -1px #d8d8d8 inset;
6028 .inactive-bar .nav-inactive {
6029 background-color: #e4e4e4;
6031 .active-bar .nav-inactive {
6032 background-color: #eee;
6034 .nav-bar + .nav-bar {
6035 position: relative;
6038 /* For Webkit: */
6039 .nav-bar:not(#bottom-bar) {
6040 box-shadow: 0 -3px 8px -2px #ccc;
6042 .active-bar .nav-inactive {
6043 box-shadow:
6044 0 -4px 8px -4px #bbb inset,
6045 1px 0 #fff inset;
6047 .active-bar .nav-inactive:first-child {
6048 box-shadow:
6049 0 -4px 8px -4px #bbb inset;
6051 .active-bar .nav-current + .nav-inactive {
6052 box-shadow:
6053 5px -4px 8px -4px #bbb inset;
6055 .active-bar .nav-item-last-before-current {
6056 box-shadow:
6057 -5px -4px 8px -4px #bbb inset,
6058 1px 0 #fff inset;
6060 .active-bar .nav-item-last-before-current:first-child {
6061 box-shadow:
6062 -5px -4px 8px -4px #bbb inset;
6064 /* And for Gecko: */
6065 @-moz-document url-prefix() {
6066 .nav-bar:not(#bottom-bar) {
6067 box-shadow: 0 -3px 4px -2px #ccc;
6070 .active-bar .nav-inactive {
6071 box-shadow:
6072 0 -4px 4px -4px #bbb inset,
6073 1px 0 #fff inset;
6075 .active-bar .nav-inactive:first-child {
6076 box-shadow:
6077 0 -4px 4px -4px #bbb inset;
6079 .active-bar .nav-current + .nav-inactive {
6080 box-shadow:
6081 5px -4px 4px -4px #bbb inset;
6083 .active-bar .nav-item-last-before-current {
6084 box-shadow:
6085 -5px -4px 4px -4px #bbb inset,
6086 1px 0 #fff inset;
6088 .active-bar .nav-item-last-before-current:first-child {
6089 box-shadow:
6090 -5px -4px 4px -4px #bbb inset;
6094 /* Search tab */
6096 #nav-item-search button {
6097 border: none;
6098 font-weight: inherit;
6100 #nav-item-search input::placeholder {
6101 color: #d00;
6102 font-weight: normal;
6105 /*= Top pagination UI hover tooltips =*/
6107 #top-nav-bar a::after,
6108 #bottom-bar a::after {
6109 color: #000;
6112 /*==============*/
6113 /* PAGE TOOLBAR */
6114 /*==============*/
6116 .button.new-post:not(:hover),
6117 .button.new-private-message:not(:hover),
6118 .button.unignore-button:not(:hover){
6119 color: #090;
6121 .button.logout-button, .button.ignore-button {
6122 color: #d33;
6125 /*==============*/
6126 /* SUBLEVEL NAV */
6127 /*==============*/
6129 .sublevel-nav .sublevel-item {
6130 color: #777;
6131 background-color: #fff;
6133 .sublevel-nav .sublevel-item:not(.selected):hover {
6134 background-color: #ddd;
6135 color: #000;
6136 text-decoration: none;
6137 text-shadow: none;
6139 .sublevel-nav .sublevel-item:not(.selected):active,
6140 .sublevel-nav .sublevel-item.selected {
6141 background-color: #ddd;
6142 color: #000;
6143 text-shadow:
6144 0 -1px 0 #fff,
6145 0 0.5px 0.5px #000;
6148 .sublevel-nav:not(.sort) .sublevel-item {
6149 border-style: solid;
6150 border-color: #ddd;
6151 border-width: 1px 0 1px 1px;
6153 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6154 border-radius: 8px 0 0 8px;
6156 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6157 border-width: 1px;
6158 border-radius: 0 8px 8px 0;
6161 /*=====================*/
6162 /* SORT ORDER SELECTOR */
6163 /*=====================*/
6165 .sublevel-nav.sort .sublevel-item {
6166 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6167 letter-spacing: 0.5px;
6168 padding: 7px 7px 5px 7px;
6169 text-transform: uppercase;
6170 pointer-events: auto;
6171 box-shadow: 1px 1px 0 0 #aaa inset;
6173 .sublevel-nav.sort {
6174 border: 2px solid transparent;
6175 padding: 18px 0 0 0;
6176 border-radius: 8px;
6177 pointer-events: none;
6178 background-color: #bbb;
6180 .sublevel-nav.sort::before {
6181 text-transform: uppercase;
6182 font-weight: 600;
6183 color: #444;
6184 text-shadow: 0.5px 0.5px 0 #fff;
6185 z-index: 1;
6187 .sublevel-nav.sort::after {
6188 content: "";
6189 position: absolute;
6190 display: block;
6191 top: 0;
6192 left: 0;
6193 width: 100%;
6194 height: 100%;
6195 border-radius: 6px;
6196 box-shadow:
6197 0 18px 0 0 #bbb inset,
6198 0 0 0 1px #aaa inset,
6199 0 18px 0 1px #aaa inset,
6200 0 0 0 2px #bbb;
6203 /*================*/
6204 /* WIDTH SELECTOR */
6205 /*================*/
6206 /* THEME SELECTOR */
6207 /*================*/
6209 #width-selector button,
6210 #theme-selector button {
6211 box-shadow:
6212 0 0 0 4px #d8d8d8 inset,
6213 0 0 0 5px #bbb inset;
6215 #width-selector button:hover,
6216 #width-selector button.selected,
6217 #theme-selector button:hover,
6218 #theme-selector button.selected {
6219 box-shadow:
6220 0 0 0 5px #bbb inset;
6223 #theme-selector button::before {
6224 color: #999;
6225 background-color: #d8d8d8;
6227 #theme-selector button:hover::before,
6228 #theme-selector button.selected::before {
6229 color: #666;
6231 #width-selector button::after {
6232 color: #999;
6235 /*======================*/
6236 /* THEME TWEAKER TOGGLE */
6237 /*======================*/
6239 #theme-tweaker-toggle button {
6240 color: #777;
6243 /*=================*/
6244 /* QUICKNAV WIDGET */
6245 /*=================*/
6247 #quick-nav-ui a {
6248 color: #999;
6249 background-color: #e4e4e4;
6250 border-radius: 4px;
6251 text-decoration: none;
6253 #quick-nav-ui a[href='#bottom-bar'] {
6254 line-height: 1.8;
6256 #quick-nav-ui a:active {
6257 transform: scale(0.9);
6259 #quick-nav-ui a[href='#comments'].no-comments {
6260 opacity: 0.4;
6261 color: #bbb;
6263 @media only screen and (hover:hover) {
6264 #quick-nav-ui a:hover {
6265 color: #000;
6266 background-color: #eee;
6268 #quick-nav-ui a:focus:not(:hover) {
6269 transform: none;
6270 text-shadow: none;
6274 /*======================*/
6275 /* NEW COMMENT QUICKNAV */
6276 /*======================*/
6278 #new-comment-nav-ui .new-comments-count {
6279 font-weight: 600;
6280 color: #666;
6281 text-shadow: 0.5px 0.5px 0 #fff;
6283 #new-comment-nav-ui .new-comments-count::after {
6284 font-weight: 600;
6285 color: #777;
6287 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6288 color: #bbb;
6289 text-shadow: none;
6291 @media only screen and (hover:hover) {
6292 #new-comment-nav-ui .new-comments-count:hover {
6293 text-shadow:
6294 0 0 1px #fff,
6295 0 0 3px #fff,
6296 0 0 5px #fff,
6297 0 0 8px #fff,
6298 0.5px 0.5px 0 #fff;
6300 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6301 color: #d00;
6302 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6306 /*=================*/
6307 /* HNS DATE PICKER */
6308 /*=================*/
6310 #hns-date-picker span {
6311 color: #777;
6312 text-shadow: 0.5px 0.5px 0 #fff;
6313 font-weight: 600;
6315 #hns-date-picker input {
6316 border: 1px solid #777;
6317 background-color: transparent;
6318 color: #666;
6319 box-shadow: 0 0 0 1px transparent;
6321 #hns-date-picker input:focus {
6322 color: #000;
6325 /*======================*/
6326 /* ANTI-KIBITZER TOGGLE */
6327 /*======================*/
6329 #anti-kibitzer-toggle button::before,
6330 #anti-kibitzer-toggle button::after {
6331 background-color: var(--GW-toggle-widget-color);
6332 -webkit-background-clip: text;
6333 color: transparent;
6334 text-shadow: var(--GW-toggle-widget-shadow-color) 0px 1px 1px;
6336 #anti-kibitzer-toggle button:hover::before,
6337 #anti-kibitzer-toggle button:hover::after {
6338 background-color: var(--GW-toggle-widget-hover-color);
6341 /*====================*/
6342 /* DARK MODE SELECTOR */
6343 /*====================*/
6345 #dark-mode-selector {
6346 outline: 1px solid #999;
6348 #dark-mode-selector button {
6349 color: #777;
6351 #dark-mode-selector button.selected {
6352 background-color: #999;
6353 color: #fff;
6355 #dark-mode-selector button:not(.selected) + button:not(.selected) {
6356 box-shadow: 1px 0 0 0 #999 inset;
6358 #dark-mode-selector button:disabled:hover {
6359 text-shadow: none;
6361 #dark-mode-selector button::after {
6362 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6363 color: #999;
6364 text-shadow: none;
6367 /*======================*/
6368 /* TEXT SIZE ADJUSTMENT */
6369 /*======================*/
6371 #text-size-adjustment-ui button {
6372 color: #777;
6374 #text-size-adjustment-ui button.default {
6375 font-weight: 600;
6377 #text-size-adjustment-ui button:disabled:hover {
6378 text-shadow: none;
6380 #text-size-adjustment-ui::after {
6381 color: #999;
6384 /*=============================*/
6385 /* COMMENTS VIEW MODE SELECTOR */
6386 /*=============================*/
6388 #comments-view-mode-selector a {
6389 color: #777;
6392 /*==========*/
6393 /* ARCHIVES */
6394 /*==========*/
6396 .archive-nav {
6397 border: 1px solid #aaa;
6399 .archive-nav *[class^='archive-nav-item'] {
6400 border-style: solid;
6401 border-color: #ddd;
6402 border-width: 1px 0 1px 1px;
6403 background-color: #eee;
6405 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6406 border-top-width: 0;
6407 border-bottom-width: 0;
6409 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6410 border-bottom-width: 1px;
6412 .archive-nav *[class^='archive-nav-item']:last-child {
6413 border-right-width: 1px;
6415 .archive-nav span[class^='archive-nav-item'] {
6416 font-weight: bold;
6417 background-color: #ddd;
6420 .archive-nav a:link,
6421 .archive-nav a:visited {
6422 color: rgba(0, 0, 238, 0.7);
6424 .archive-nav a:hover {
6425 text-decoration: none;
6426 color: #c00;
6427 background-color: #e0e0e0;
6428 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6430 .archive-nav a:active {
6431 transform: scale(0.9);
6433 .archive-nav a:focus:not(:hover) {
6434 transform: none;
6436 .archive-nav a.archive-nav-item-day:hover {
6437 background-color: #ddd;
6440 /*==========*/
6441 /* LISTINGS */
6442 /*==========*/
6444 h1.listing {
6445 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
6446 font-weight: 700;
6447 margin: 0.7em 20px 0 20px;
6448 max-width: calc(100% - 40px);
6449 top: 0; ;
6452 h1.listing .post-title-link {
6453 color: #000;
6455 h1.listing .link-post-link {
6456 color: #00c;
6459 @media only screen and (hover: hover) {
6460 h1.listing a:hover,
6461 h1.listing a:focus {
6462 color: #777;
6463 background-color: rgba(255,255,255,0.85);
6465 h1.listing:focus-within::before {
6466 color: #00f;
6467 left: -0.625em;
6469 h1.listing .link-post-link:hover {
6470 color: #4879ec;
6471 text-shadow:
6472 0.5px 0.5px 0 #fff,
6473 -0.5px -0.5px 0 #fff,
6474 0 0 2px #fff,
6475 0 0 3px #00c;
6479 h1.listing .edit-post-link {
6480 padding: 5px 3px 12px 0.5em;
6481 top: 0;
6482 right: 0;
6484 h1.listing .edit-post-link:hover {
6485 text-decoration: none;
6487 #content.user-page h1.listing .edit-post-link {
6488 background-color: #eee;
6491 /*======*/
6492 /* SPAM */
6493 /*======*/
6495 h1.listing.spam {
6496 opacity: 0.15;
6498 h1.listing.spam + .post-meta {
6499 opacity: 0.4;
6501 h1.listing.spam:hover,
6502 h1.listing.spam + .post-meta:hover,
6503 h1.listing.spam:hover + .post-meta {
6504 opacity: 1.0;
6507 /*===================*/
6508 /* LISTING POST-META */
6509 /*===================*/
6511 h1.listing + .post-meta {
6512 padding-right: 330px;
6514 h1.listing + .post-meta .karma-value,
6515 h1.listing + .post-meta .comment-count,
6516 h1.listing + .post-meta .lw2-link,
6517 h1.listing + .post-meta .read-time {
6518 border-radius: 4px;
6519 padding: 0 4px 0 2px;
6520 text-shadow: 0.5px 0.5px 0.5px #999;
6521 margin: 0 0.25em 0 0.5em;
6522 position: absolute;
6523 line-height: 1.15;
6524 bottom: -6px;
6526 h1.listing + .post-meta .karma-value span,
6527 h1.listing + .post-meta .comment-count span,
6528 h1.listing + .post-meta .lw2-link span,
6529 h1.listing + .post-meta .read-time span {
6530 display: none;
6532 h1.listing + .post-meta .karma-value::before,
6533 h1.listing + .post-meta .comment-count::before,
6534 h1.listing + .post-meta .lw2-link::before,
6535 h1.listing + .post-meta .read-time::before {
6536 color: #fff;
6537 font-family: 'Font Awesome', 'Font Awesome 5 Free';
6538 font-weight: 900;
6539 margin: 0 8px 0 0;
6540 box-shadow: 0 0 0 2px #ddd;
6542 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
6543 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
6544 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
6545 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
6546 text-shadow: 0 0 3px #999;
6549 h1.listing + .post-meta .karma {
6550 margin: 0;
6552 h1.listing + .post-meta .karma-value {
6553 box-shadow:
6554 22px 0 0 0 #ddd inset,
6555 0 0 0 3px #ddd;
6556 cursor: default;
6557 color: #c00;
6558 right: 264px;
6560 h1.listing + .post-meta .karma-value::before {
6561 content: "\F139";
6562 text-shadow: none;
6563 font-size: 0.9375em;
6564 line-height: 1.3;
6567 h1.listing + .post-meta .comment-count::before {
6568 content: "\F086";
6570 h1.listing + .post-meta .comment-count {
6571 box-shadow:
6572 25px 0 0 0 #ddd inset,
6573 0 0 0 3px #ddd;
6574 color: #009100;
6575 right: 176px;
6577 h1.listing + .post-meta .comment-count:hover {
6578 text-decoration: none;
6579 color: #fff;
6580 background-color: #009100;
6582 h1.listing + .post-meta .comment-count:hover::before {
6583 color: #009100;
6585 h1.listing + .post-meta .comment-count.new-comments::before {
6586 color: #009100;
6587 text-shadow: 0.5px 0.5px 0.5px #fff;
6589 h1.listing + .post-meta .comment-count.new-comments:hover::before {
6590 text-shadow: 0.5px 0.5px 0.5px #999;
6594 h1.listing + .post-meta .lw2-link {
6595 box-shadow:
6596 23px 0 0 0 #ddd inset,
6597 0 0 0 3px #ddd;
6598 right: 0;
6600 h1.listing + .post-meta .lw2-link::before {
6601 content: "\F0C1";
6603 h1.listing + .post-meta .lw2-link:hover {
6604 text-decoration: none;
6605 color: #fff;
6606 background-color: #00f;
6608 h1.listing + .post-meta .lw2-link:hover::before {
6609 color: #00f;
6612 h1.listing + .post-meta .read-time {
6613 box-shadow:
6614 21px 0 0 0 #ddd inset,
6615 0 0 0 3px #ddd;
6616 right: 80px;
6618 h1.listing + .post-meta .read-time::before {
6619 content: "\F2F2";
6620 cursor: pointer;
6622 h1.listing + .post-meta .read-time::after {
6623 content: " min";
6625 h1.listing + .post-meta .read-time:hover::before {
6626 color: #777;
6629 h1.listing + .post-meta .word-count {
6630 box-shadow:
6631 22px 0 0 0 #ddd inset,
6632 0 0 0 3px #ddd;
6633 padding: 0 4px 0 4px;
6635 h1.listing + .post-meta .word-count::before {
6636 content: "\F15C";
6637 margin: 0 10px 0 0;
6639 h1.listing + .post-meta .read-time.word-count::after {
6640 content: none;
6643 h1.listing + .post-meta .link-post-domain {
6644 margin: 0 0 0 0.5em;
6647 h1.listing + .post-meta::after {
6648 content: "";
6649 display: block;
6650 height: 1px;
6651 width: 100%;
6652 background-color: #ddd;
6653 position: absolute;
6654 bottom: -14px;
6657 /*============*/
6658 /* USER PAGES */
6659 /*============*/
6661 #content.user-page h1.page-main-heading,
6662 #content.user-page .user-stats {
6663 border-bottom: 1px solid #ccc;
6666 #content.user-page h1.listing,
6667 #content.user-page h1.listing + .post-meta {
6668 background-color: #eee;
6669 border-style: solid;
6670 border-color: #ccc;
6672 #content.user-page h1.listing {
6673 padding: 0 6px;
6674 padding-top: 0.125em;
6675 border-width: 1px 1px 0 1px;
6676 margin: 1rem 0 0 0;
6677 max-width: 100%;
6679 #content.own-user-page h1.listing,
6680 h1.listing.own-post-listing {
6681 padding-right: 36px;
6683 @media only screen and (hover: hover) {
6684 #content.user-page h1.listing a:hover,
6685 #content.user-page h1.listing a:focus {
6686 background-color: #eee;
6688 #content.user-page h1.listing:focus-within::before {
6689 left: -0.625em;
6692 #content.user-page h1.listing + .post-meta {
6693 padding: 0.125em 6px 1em 36px;
6694 border-width: 0 1px 1px 1px;
6695 margin: 0 0 1rem 0;
6697 #content.user-page h1.listing + .post-meta::after {
6698 display: none;
6700 @media only screen and (min-width: 521px) {
6701 #content.user-page h1.listing + .post-meta .karma-value,
6702 #content.user-page h1.listing + .post-meta .comment-count,
6703 #content.user-page h1.listing + .post-meta .lw2-link,
6704 #content.user-page h1.listing + .post-meta .read-time {
6705 bottom: 10px;
6708 #content.user-page h1.listing + .post-meta .post-section::before {
6709 left: -1px;
6712 #content.conversations-user-page h1.listing {
6713 padding: 4px 6px;
6714 font-size: 1.75rem;
6716 #content.conversations-user-page h1.listing + .post-meta {
6717 padding: 6px 4px;
6718 margin: 0 0 0.25rem 0;
6721 .user-stats .karma-total {
6722 font-weight: bold;
6725 /*===============*/
6726 /* CONVERSATIONS */
6727 /*===============*/
6729 /*============*/
6730 /* LOGIN PAGE */
6731 /*============*/
6733 .login-container form input[type='submit'] {
6734 font-weight: bold;
6735 background-color: #eee;
6736 border: 1px solid #ccc;
6738 .login-container form input[type='submit']:hover,
6739 .login-container form input[type='submit']:focus {
6740 background-color: #ddd;
6741 border: 1px solid #aaa;
6744 /* “Create account” form */
6746 #signup-form {
6747 background-color: #f3f3f3;
6748 border: 1px solid #ddd;
6750 #signup-form input[type='submit'] {
6751 background-color: #e4e4e4;
6752 border: 1px solid #ccc;
6754 #signup-form input[type='submit']:hover {
6755 background-color: #d8d8d8;
6756 border: 1px solid #aaa;
6759 /* Log in tip */
6761 .login-container .login-tip {
6762 border: 1px solid #eee;
6765 /* Message box */
6767 .error-box {
6768 border: 1px solid red;
6769 background-color: #faa;
6771 .success-box {
6772 border: 1px solid green;
6773 background-color: #afa;
6776 /*=====================*/
6777 /* PASSWORD RESET PAGE */
6778 /*=====================*/
6780 .reset-password-container input[type='submit'] {
6781 background-color: #e4e4e4;
6782 border: 1px solid #ccc;
6783 font-weight: bold;
6786 /*===================*/
6787 /* TABLE OF CONTENTS */
6788 /*===================*/
6790 .contents {
6791 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6792 border: 1px solid #ddd;
6793 background-color: #eee;
6795 .contents-head {
6796 font-weight: bold;
6798 .post-body .contents li::before {
6799 color: #999;
6800 font-feature-settings: "tnum";
6802 .post-body .contents a,
6803 .post-body .contents a:hover {
6804 border: none;
6806 .post-body .contents a:hover {
6807 text-decoration: underline;
6810 /*==================*/
6811 /* POSTS & COMMENTS */
6812 /*==================*/
6814 .body-text {
6815 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6818 .body-text a {
6819 border-bottom: 1px dotted #bbb;
6821 .body-text a:hover {
6822 text-decoration: none;
6823 border-bottom: 1px solid currentColor;
6826 /*=======*/
6827 /* POSTS */
6828 /*=======*/
6830 h1.post-title {
6831 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6832 font-weight: 700;
6835 /*=================*/
6836 /* POST NAVIGATION */
6837 /*=================*/
6839 .post-nav-links a,
6840 .post-nav-links a:visited {
6841 color: #000;
6843 .post-nav-links a:hover {
6844 text-decoration: none;
6846 .post-nav-title {
6847 font-weight: 600;
6850 .post-nav-label {
6851 color: #777;
6853 .post-nav-links a:hover .post-nav-label {
6854 font-weight: 600;
6855 color: #888;
6857 .post-nav-links a:hover .post-nav-title {
6858 color: #777;
6861 @media only screen and (max-width: 900px) {
6862 .sequence-title {
6863 border-top: 1px dotted #777;
6865 .post-nav.prev {
6866 border-right: 1px dotted #777;
6868 .post-nav.next {
6869 border-left: 1px dotted #777;
6873 /*===========*/
6874 /* POST-META */
6875 /*===========*/
6877 .post-meta .post-section::before,
6878 .comment-meta .alignment-forum {
6879 color: #fff;
6880 text-shadow:
6881 1px 1px 0 #090,
6882 0 1px 0 #090,
6883 0 0 5px #090;
6885 a.post-section:hover {
6886 text-decoration: none;
6888 a.post-section:hover::before {
6889 color: #97ff7c;
6891 .post-meta .post-section.alignment-forum::before,
6892 .comment-meta .alignment-forum {
6893 text-shadow:
6894 1px 1px 0 #626dd7,
6895 0 1px 0 #626dd7,
6896 0 0 5px #626dd7;
6898 a.post-section.alignment-forum:hover::before {
6899 color: #e6e5ff;
6901 .post-meta .date {
6902 color: #888;
6904 .post-meta .author {
6905 color: #090;
6907 .bottom-post-meta {
6908 border-color: #ddd;
6911 /*============*/
6912 /* LINK POSTS */
6913 /*============*/
6915 .post.link-post a.link-post-link {
6916 text-decoration: none;
6917 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
6918 font-weight: 600;
6920 .post.link-post a.link-post-link:hover {
6921 color: #c00;
6923 .post.link-post a.link-post-link:hover::before {
6924 color: #4879ec;
6925 text-shadow:
6926 0.5px 0.5px 0 #fff,
6927 -0.5px -0.5px 0 #fff,
6928 0 0 2px #fff,
6929 0 0 3px #00c;
6931 .post.link-post a.link-post-link:focus {
6932 color: #777;
6933 border-bottom: 2px dotted #777;
6936 /*==========*/
6937 /* COMMENTS */
6938 /*==========*/
6940 .comments::before {
6941 border-top: 1px solid #000;
6942 box-shadow: 0 3px 4px -4px #000 inset;
6944 @-moz-document url-prefix() {
6945 .comments::before {
6946 box-shadow: 0 3px 3px -4px #000 inset;
6949 #content > .comment-thread .comment-meta a.date:focus,
6950 #content > .comment-thread .comment-meta a.permalink:focus {
6951 color: #888;
6952 outline: 2px dotted #999;
6953 position: relative;
6954 background-color: #fff;
6956 #content > .comment-thread .comment-meta a.date:focus {
6957 padding: 0 4px;
6958 left: -4px;
6960 #content > .comment-thread .comment-meta a.date:focus + * {
6961 margin-left: -8px;
6963 #content > .comment-thread .comment-meta a.permalink:focus {
6964 padding: 0 5px;
6965 left: -5px;
6967 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6968 margin-left: -10px;
6970 .comment-item {
6971 border: 1px solid #ccc;
6972 background-color: var(--GW-comment-background-color);
6974 .comment-parent-link::after {
6975 box-shadow:
6976 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6977 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6978 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6981 /*================================*/
6982 /* DEEP COMMENT THREAD COLLAPSING */
6983 /*================================*/
6985 .comment-item input[id^="expand"] + label::after {
6986 color: #00e;
6987 font-weight: 600;
6989 .comment-item input[id^="expand"] + label:hover::after {
6990 color: #c00;
6992 .comment-item input[id^="expand"] + label:active::after,
6993 .comment-item input[id^="expand"] + label:focus::after{
6994 color: #c00;
6996 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6997 border-width: 1px 0 0 0;
7000 /*==============*/
7001 /* COMMENT-META */
7002 /*==============*/
7004 .comment-meta .author {
7005 font-weight: bold;
7006 font-size: 1.25em;
7007 color: #000;
7009 .comment-meta .author:hover {
7010 text-decoration: none;
7011 color: #090;
7013 .comment-item .author:not(.redacted).original-poster::after {
7014 opacity: 0.5;
7017 .comment-item .voting-controls.active-controls::after,
7018 .comment-item .voting-controls .karma-value::after,
7019 .post .voting-controls.active-controls::after,
7020 .post .voting-controls .karma-value::after,
7021 .author::before {
7022 background-color: #fff;
7023 color: #999;
7024 border-radius: 4px;
7025 box-shadow: 0 0 0 1px #ddd inset;
7027 .comment-item .voting-controls.active-controls::after,
7028 .post .voting-controls.active-controls::after {
7029 padding: 6px 4px 4px 4px;
7030 bottom: -44px;
7032 .comment-item .voting-controls .karma-value::after,
7033 .post .voting-controls .karma-value::after {
7034 padding: 2px 8px 1px 8px;
7035 top: -25px;
7036 min-width: 56px;
7039 /*====================*/
7040 /* ANTI-KIBITZER MODE */
7041 /*====================*/
7043 .author.redacted,
7044 .inline-author.redacted {
7045 opacity: 0.6;
7046 font-weight: 400;
7049 .karma-value.redacted {
7050 opacity: 0.4;
7053 .link-post-domain.redacted {
7054 opacity: 0.4;
7057 /*===========================*/
7058 /* COMMENT THREAD NAVIGATION */
7059 /*===========================*/
7061 div.comment-parent-link {
7062 font-weight: 600;
7064 a.comment-parent-link {
7065 font-weight: 400;
7067 a.comment-parent-link::before {
7068 color: #bbb;
7070 a.comment-parent-link:hover::before {
7071 background-color: #ffd;
7072 color: #999;
7075 div.comment-child-links {
7076 font-weight: 600;
7078 div.comment-child-links a {
7079 font-weight: 400;
7081 .comment-child-link::before {
7082 color: #aaa;
7085 .comment-item-highlight {
7086 box-shadow:
7087 0 0 2px #e7b200,
7088 0 0 3px #e7b200,
7089 0 0 5px #e7b200,
7090 0 0 7px #e7b200,
7091 0 0 10px #e7b200;
7092 border: 1px solid #e7b200;
7094 .comment-item-highlight-faint {
7095 box-shadow:
7096 0 0 2px #f8e7b5,
7097 0 0 3px #f8e7b5,
7098 0 0 5px #f8e7b5,
7099 0 0 7px #f8e7b5,
7100 0 0 10px #f8e7b5;
7101 border: 1px solid #f8e7b5;
7104 .comment-popup {
7105 background-color: #fff;
7108 /*=======================*/
7109 /* COMMENTS COMPACT VIEW */
7110 /*=======================*/
7112 #comments-list-mode-selector button {
7113 box-shadow:
7114 0 0 0 4px #fff inset,
7115 0 0 0 5px #bbb inset;
7117 #comments-list-mode-selector button:hover,
7118 #comments-list-mode-selector button.selected {
7119 box-shadow:
7120 0 0 0 5px #bbb inset;
7122 #content.compact > .comment-thread .comment-item::after {
7123 color: #00e;
7124 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
7127 @media only screen and (hover: hover) {
7128 #content.compact > .comment-thread .comment-item:hover .comment,
7129 #content.compact > .comment-thread .comment-item.expanded .comment {
7130 background-color: #fff;
7131 outline: 3px solid #00c;
7133 #content.compact > .comment-thread .comment-item:hover .comment::before,
7134 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7135 background-color: #fff;
7136 box-shadow:
7137 0 0 3px #fff,
7138 0 0 5px #fff,
7139 0 0 7px #fff,
7140 0 0 10px #fff,
7141 0 0 20px #fff,
7142 0 0 30px #fff,
7143 0 0 40px #fff;
7146 @media only screen and (hover: none) {
7147 #content.compact > .comment-thread.expanded .comment-item .comment {
7148 background-color: #fff;
7149 outline: 3px solid #00c;
7151 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7152 background-color: #fff;
7153 box-shadow:
7154 0 0 3px #fff,
7155 0 0 5px #fff,
7156 0 0 7px #fff,
7157 0 0 10px #fff,
7158 0 0 20px #fff,
7159 0 0 30px #fff,
7160 0 0 40px #fff;
7164 #content.user-page.compact > h1.listing {
7165 margin-top: 0.5rem;
7167 #content.user-page.compact > h1.listing + .post-meta {
7168 margin-bottom: 0.5rem;
7171 /*===========================*/
7172 /* HIGHLIGHTING NEW COMMENTS */
7173 /*===========================*/
7175 .new-comment::before {
7176 outline: 2px solid #5a5;
7177 box-shadow:
7178 0 0 6px -2px #5a5 inset,
7179 0 0 4px #5a5,
7180 0 0 6px #5a5;
7183 /*=================================*/
7184 /* COMMENT THREAD MINIMIZE BUTTONS */
7185 /*=================================*/
7187 .comment-minimize-button {
7188 color: #ccc;
7190 .comment-minimize-button:hover {
7191 color: #aaa;
7192 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7194 .comment-minimize-button::after {
7195 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7196 color: #777;
7198 .comment-minimize-button.maximized::after {
7199 color: #ccc;
7202 /*==============*/
7203 /* VOTE BUTTONS */
7204 /*==============*/
7206 .vote::before {
7207 content: "";
7208 border-radius: 50%;
7209 background-size: 17px 17px;
7210 width: 17px;
7211 height: 17px;
7212 display: inline-block;
7213 position: relative;
7214 top: 2.5px;
7216 .vote:active {
7217 transform: none;
7220 /**********/
7221 /* States.
7224 /* _ 1
7226 .upvote {
7227 filter: grayscale(100%) brightness(128%);
7229 .downvote {
7230 filter: grayscale(100%) brightness(188%);
7233 /* _ 2
7235 .vote:not(.none) {
7236 filter: drop-shadow(0 0 1px #fff);
7239 /* 1 _
7241 .vote.two-temp::before {
7242 box-shadow:
7243 0 0 0 1px #fff,
7244 0 0 0 4px #c8c8c8,
7245 0 0 0 5px transparent;
7248 /* 2 _
7250 .upvote.two::before {
7251 box-shadow:
7252 0 0 0 1px #fff,
7253 0 0 0 4px var(--GW-upvote-button-color),
7254 0 0 0 5px transparent;
7256 .downvote.two::before {
7257 box-shadow:
7258 0 0 0 1px #fff,
7259 0 0 0 4px var(--GW-downvote-button-color),
7260 0 0 0 5px transparent;
7263 /* Disabled.
7265 .vote:disabled {
7266 visibility: unset;
7267 filter: brightness(50%);
7270 /*********/
7271 /* Icons.
7274 .karma .upvote::before {
7275 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7277 .karma .downvote::before {
7278 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7281 .karma .upvote:disabled::before {
7282 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiBzdHJva2U9IiNEOEQ4RDgiIHN0cm9rZS13aWR0aD0iNCUiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
7284 .karma .downvote:disabled::before {
7285 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7288 .agreement .upvote::before {
7289 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgZmlsbD0iIzAwRDgwMCIvPjwvc3ZnPg==');
7291 .agreement .downvote::before {
7292 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIGZpbGw9IiNFQjRDMkEiLz48L3N2Zz4=');
7295 .agreement .upvote:disabled::before {
7296 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7298 .agreement .downvote:disabled::before {
7299 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7302 /*===========================*/
7303 /* COMMENTING AND POSTING UI */
7304 /*===========================*/
7306 .posting-controls input[type='submit'] {
7307 background-color: #fff;
7308 border: 1px solid #aaa;
7309 font-weight: bold;
7311 .posting-controls input[type='submit']:hover,
7312 .posting-controls input[type='submit']:focus {
7313 background-color: #ddd;
7314 border: 1px solid #999;
7317 .comment-controls .cancel-comment-button {
7318 font-weight: 600;
7319 color: #c00;
7320 text-shadow:
7321 0 0 1px #fff,
7322 0 0 2px #fff;
7324 .comment-controls .cancel-comment-button:hover {
7325 color: #f00;
7326 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7329 .new-comment-button {
7330 font-weight: 600;
7333 .comment-controls .delete-button,
7334 .comment-controls .retract-button {
7335 color: #a00;
7336 opacity: 0.85;
7338 .comment-controls .edit-button,
7339 .comment-controls .unretract-button {
7340 color: #090;
7342 .comment-controls .action-button:hover {
7343 color: #f00;
7344 opacity: 1.0;
7347 .button.edit-post-link:not(:hover) {
7348 color: #090;
7351 .posting-controls textarea {
7352 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
7353 color: #000;
7354 background-color: #fff;
7355 border-color: #aaa;
7356 box-shadow:
7357 0 0 0 1px #eee inset;
7359 .posting-controls textarea:focus {
7360 background-color: #ffd;
7361 border-color: #00e;
7362 box-shadow:
7363 0 0 0 1px #ddf inset,
7364 0 0 0 1px #fff,
7365 0 0 0 2px #00e;
7367 .posting-controls.edit-existing-post textarea:focus,
7368 .posting-controls form.edit-existing-comment textarea:focus {
7369 border-color: #090;
7370 box-shadow:
7371 0 0 0 1px #81ff7f inset,
7372 0 0 0 1px #fff,
7373 0 0 0 2px #090;
7376 /*= Scroll bars =*/
7378 .posting-controls textarea::-webkit-scrollbar {
7379 width: 16px;
7380 background-color: transparent;
7382 .posting-controls textarea::-webkit-scrollbar-track {
7383 background-color: #eee;
7384 border-left: 1px solid #aaa;
7385 border-top: 1px solid #eee;
7387 .posting-controls textarea:focus::-webkit-scrollbar-track {
7388 border-left: 1px solid #00e;
7389 border-top: 1px solid #ddf;
7391 .posting-controls textarea::-webkit-scrollbar-thumb {
7392 background-color: #aaa;
7393 box-shadow: 0 0 0 1px #eee inset;
7394 border-left: 1px solid #aaa;
7396 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7397 border-left: 1px solid #00e;
7398 background-color: #0040ff;
7399 box-shadow:
7400 0 1px 0 0 #ddf inset,
7401 0 0 0 1px #eee inset;
7404 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7405 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7406 border-left: 1px solid #090;
7408 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7409 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7410 border-left: 1px solid #090;
7411 background-color: #28a708;
7414 /* GUIEdit buttons */
7416 .guiedit-buttons-container {
7417 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
7420 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7421 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7422 color: #050;
7424 .guiedit-buttons-container button {
7425 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
7428 .guiedit::after {
7429 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7430 color: #777;
7431 text-shadow: none;
7434 /* Markdown hints */
7436 #markdown-hints-checkbox + label {
7437 color: #00e;
7439 #markdown-hints-checkbox + label:hover {
7440 color: #e00;
7441 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7443 #markdown-hints {
7444 border: 1px solid #c00;
7445 background-color: #ffa;
7448 /*================*/
7449 /* EDIT POST FORM */
7450 /*================*/
7452 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7453 top: -1px;
7455 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7456 border-radius: 3px;
7457 border: 1px solid #ddd;
7458 color: #777;
7460 @media only screen and (hover:hover) {
7461 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7462 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7463 text-shadow:
7464 0 0 1px #fff,
7465 0 0 2px #fff,
7466 0 0 2.5px #aaa;
7468 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7469 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7470 border-color: #aaa;
7473 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7474 content: "\F00C";
7476 #edit-post-form input[type='radio'] + label {
7477 color: #777;
7478 border-color: #ddd;
7479 padding: 4px 12px 5px 12px;
7481 #edit-post-form input[type='radio'][value='all'] + label {
7482 border-radius: 8px 0 0 8px;
7483 border-width: 1px;
7485 #edit-post-form input[type='radio'][value='drafts'] + label {
7486 border-radius: 0 8px 8px 0;
7488 @media only screen and (hover:hover) {
7489 #edit-post-form input[type='radio'] + label:hover,
7490 #edit-post-form input[type='radio']:focus + label {
7491 background-color: #ddd;
7492 color: #000;
7495 #edit-post-form input[type='radio']:focus + label {
7496 color: #000;
7497 box-shadow:
7498 0 0 0 1px #aaa;
7500 #edit-post-form input[type='radio']:checked + label {
7501 background-color: #ddd;
7502 border-color: #ddd;
7503 color: #000;
7504 text-shadow:
7505 0 -1px 0 #fff,
7506 0 0.5px 0.5px #000;
7509 /*=======*/
7510 /* LINKS */
7511 /*=======*/
7514 text-decoration: none;
7515 color: #00e;
7517 a:visited {
7518 color: #551a8b;
7520 a:hover {
7521 text-decoration: underline;
7524 /*=========*/
7525 /* BUTTONS */
7526 /*=========*/
7528 button,
7529 input[type='submit'] {
7530 color: #00e;
7533 button:active,
7534 input[type='submit']:active {
7535 color: #f00;
7536 transform: scale(0.9);
7538 .button:visited {
7539 color: #00e;
7541 .button:active {
7542 transform: scale(0.9);
7544 @-moz-document url-prefix() {
7545 .button:active {
7546 transform: none;
7550 @media only screen and (hover:hover) {
7551 button:hover,
7552 input[type='submit']:hover,
7553 button:focus,
7554 input[type='submit']:focus {
7555 color: #f00;
7556 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7559 .button:hover {
7560 color: #f00;
7561 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7562 text-decoration: none;
7564 .button:focus:not(:hover) {
7565 transform: none;
7569 /*==========*/
7570 /* HEADINGS */
7571 /*==========*/
7573 .body-text h1,
7574 .body-text h2,
7575 .body-text h4 {
7576 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7578 .body-text h3,
7579 .body-text h5,
7580 .body-text h6 {
7581 font-weight: 600;
7582 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7584 .body-text h6 {
7585 color: #555;
7587 .body-text h1 {
7588 border-bottom: 1px solid #aaa;
7591 /*========*/
7592 /* QUOTES */
7593 /*========*/
7595 blockquote {
7596 border-left: 5px solid #ccc;
7599 /*========*/
7600 /* IMAGES */
7601 /*========*/
7603 #content img,
7604 #content figure.image img {
7605 border: 1px solid #ccc;
7607 #content figure img {
7608 border: 1px solid #000;
7610 #content img[src$='.svg'],
7611 #content figure img[src$='.svg'] {
7612 border: none;
7614 #content img[style^='float'] {
7615 border: 1px solid transparent;
7618 /*========*/
7619 /* TABLES */
7620 /*========*/
7622 #content:not(.tag-index-page) .body-text table,
7623 #content:not(.tag-index-page) .body-text table th,
7624 #content:not(.tag-index-page) .body-text table td {
7625 border: 1px solid #ccc;
7628 /*======*/
7629 /* MISC */
7630 /*======*/
7632 hr {
7633 border-bottom: 1px solid #999;
7636 code {
7637 background-color: #f6f6ff;
7638 border: 1px solid #ddf;
7639 border-radius: 4px;
7642 input[type='text'],
7643 input[type='search'],
7644 input[type='password'] {
7645 background-color: #fff;
7646 border: 1px solid #ddd;
7647 color: #000;
7649 input[type='text']:focus,
7650 input[type='search']:focus,
7651 input[type='password']:focus {
7652 background-color: #ffd;
7653 border: 1px solid #bbb;
7654 box-shadow: 0 0 1px #bbb;
7657 select {
7658 color: #000;
7662 /*============*/
7663 /* ABOUT PAGE */
7664 /*============*/
7666 .about-page mark {
7667 background-color: #e6e6e6;
7668 text-decoration: none;
7669 box-shadow:
7670 0 -1px 0 0 #000 inset,
7671 0 -3px 1px -2px #000 inset;
7672 padding: 0 1px;
7675 #content.about-page .accesskey-table {
7676 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7677 border-color: #ddd;
7680 #content.about-page img {
7681 border: 1px solid #000;
7684 /*========================*/
7685 /* QUALIFIED HYPERLINKING */
7686 /*========================*/
7688 #aux-about-link a {
7689 color: #777;
7691 #aux-about-link a:hover {
7692 opacity: 1.0;
7693 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7696 .qualified-linking label {
7697 color: #00e;
7699 .qualified-linking label:hover {
7700 text-shadow:
7701 0 0 1px #fff,
7702 0 0 3px #fff,
7703 0 0 5px #00e;
7706 .qualified-linking-toolbar {
7707 border: 1px solid #000;
7708 background-color: #fff;
7710 .qualified-linking-toolbar a {
7711 background-color: #eee;
7712 border: 1px solid #ccc;
7713 border-radius: 4px;
7715 .qualified-linking-toolbar a:visited {
7716 color: #00e;
7718 .qualified-linking-toolbar a:hover {
7719 text-decoration: none;
7720 background-color: #ddd;
7721 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7723 .qualified-linking label::after {
7724 background-color: #d8d8d8;
7725 opacity: 0.8;
7728 /*======*/
7729 /* MATH */
7730 /*======*/
7732 .mathjax-block-container::-webkit-scrollbar {
7733 height: 12px;
7734 background-color: #f6f6ff;
7735 border-radius: 6px;
7736 border: 1px solid #ddf;
7738 .mathjax-block-container::-webkit-scrollbar-thumb {
7739 background-color: #dde;
7740 border-radius: 6px;
7741 border: 1px solid #cce;
7743 .mathjax-inline-container::-webkit-scrollbar {
7744 height: 8px;
7745 background-color: #f6f6ff;
7746 border-radius: 4px;
7747 border: 1px solid #ddf;
7749 .mathjax-inline-container::-webkit-scrollbar-thumb {
7750 background-color: #dde;
7751 border-radius: 4px;
7752 border: 1px solid #cce;
7755 /*=================*/
7756 /* ALIGNMENT FORUM */
7757 /*=================*/
7759 #content.alignment-forum-index-page::before {
7760 background-color: #eef0ff;
7762 #content.alignment-forum-index-page::after {
7763 font-family: "Concourse SmallCaps";
7764 font-weight: bold;
7765 background-color: #626dd7;
7766 -webkit-background-clip: text;
7767 color: transparent;
7768 text-shadow:
7769 rgba(255,255,255,0.5) 0px 3px 3px;;
7771 @media only screen and (hover: hover) {
7772 #content.alignment-forum-index-page h1.listing a:hover,
7773 #content.alignment-forum-index-page h1.listing a:focus {
7774 background-color: rgba(238,240,255,0.85);
7778 /*====================*/
7779 /* FOR NARROW SCREENS */
7780 /*====================*/
7782 @media only screen and (max-width: 1440px) {
7783 #hns-date-picker {
7784 background-color: #d8d8d8;
7785 opacity: 1.0;
7787 #hns-date-picker::before {
7788 border: 1px solid #999;
7789 border-width: 1px 0 1px 1px;
7792 @media only screen and (max-width: 1160px) {
7793 #theme-selector:hover::after {
7794 background-color: #999;
7797 @media only screen and (max-width: 1080px) {
7798 #text-size-adjustment-ui button {
7799 border: 1px solid #999;
7800 padding: 0 0 0 1px;
7801 border-radius: 50%;
7802 box-shadow:
7803 0 0 6px #999 inset,
7804 0 0 0 1px transparent;
7806 #theme-tweaker-toggle button {
7807 border: 1px solid #999;
7808 box-shadow:
7809 0 0 10px #999 inset,
7810 0 0 0 1px transparent;
7811 border-radius: 50%;
7812 transform: scale(0.8);
7815 @media only screen and (max-width: 1020px) {
7816 #quick-nav-ui a {
7817 box-shadow:
7818 0 0 0 1px #999,
7819 0 0 0 2px transparent;
7821 #new-comment-nav-ui .new-comments-count::before {
7822 background-color: #d8d8d8;
7823 box-shadow:
7824 0 0 0 1px #999,
7825 0 0 0 2px transparent;
7826 border-radius: 8px;
7828 #anti-kibitzer-toggle {
7829 box-shadow:
7830 0 0 0 1px #999,
7831 0 0 0 2px transparent;
7832 background-color: #d8d8d8;
7833 border-radius: 6px;
7834 overflow: hidden;
7837 @media only screen and (max-width: 1000px) {
7838 #theme-selector {
7839 background-color: #d8d8d8;
7840 box-shadow:
7841 0 0 0 1px #999,
7842 0 0 0 2px transparent;
7844 #theme-selector:hover::after {
7845 width: calc(6em - 3px);
7846 height: calc(100% - 5px);
7847 top: 3px;
7848 left: 100%;
7850 #text-size-adjustment-ui button {
7851 background-color: #ddd;
7853 #text-size-adjustment-ui button:hover {
7854 background-color: #eee;
7856 #theme-tweaker-toggle button {
7857 background-color: #ddd;
7861 /*========*/
7862 /* MOBILE */
7863 /*========*/
7865 /**************************************************************************/
7866 @media only screen and (max-width: 1160px) {
7867 /**************************************************************************/
7869 #ui-elements-container > div[id$='-ui-toggle'] button {
7870 color: #888;
7871 text-shadow:
7872 0 0 1px #fff,
7873 0 0 3px #fff,
7874 0 0 5px #fff,
7875 0 0 10px #fff,
7876 0 0 20px #fff,
7877 0 0 30px #fff;
7880 #theme-selector {
7881 background-color: #d8d8d8;
7882 box-shadow:
7883 0 0 0 1px #999,
7884 0 0 1px 3px #fff,
7885 0 0 3px 3px #fff,
7886 0 0 5px 3px #fff,
7887 0 0 10px 3px #fff,
7888 0 0 20px 3px #fff;
7889 border-radius: 12px;
7891 #theme-selector::before,
7892 #theme-selector .theme-selector-close-button {
7893 color: #666;
7894 text-shadow: 0.5px 0.5px 0 #fff;
7896 #theme-selector button {
7897 background-color: #e6e6e6;
7898 border-radius: 10px;
7900 #theme-selector button::after {
7901 color: #000;
7902 padding-bottom: 2px;
7903 max-width: calc(100% - 3.25em);
7904 overflow: hidden;
7905 text-overflow: ellipsis;
7907 #theme-selector button.selected::after {
7908 text-shadow:
7909 0 -1px 0 #fff,
7910 0 0.5px 0.5px #000;
7913 #quick-nav-ui {
7914 background-color: #fff;
7916 #quick-nav-ui,
7917 #new-comment-nav-ui,
7918 #hns-date-picker {
7919 box-shadow:
7920 0 0 1px 3px #fff,
7921 0 0 3px 3px #fff,
7922 0 0 5px 3px #fff,
7923 0 0 10px 3px #fff,
7924 0 0 20px 3px #fff;
7926 #quick-nav-ui a::after,
7927 #new-comment-nav-ui::before {
7928 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7929 font-weight: 600;
7930 box-shadow:
7931 0 0 1px 0 #fff,
7932 0 0 3px 0 #fff,
7933 0 0 5px 0 #fff;
7934 background-color: #fff;
7935 border-radius: 4px;
7937 #quick-nav-ui,
7938 #new-comment-nav-ui {
7939 border-radius: 8px;
7941 #new-comment-nav-ui {
7942 background-color: #d8d8d8;
7943 border: 1px solid #999;
7945 #new-comment-nav-ui::before {
7946 color: #777;
7948 #new-comment-nav-ui .new-comment-sequential-nav-button {
7949 box-shadow: 0 0 0 1px #999;
7950 color: #777;
7952 #new-comment-nav-ui .new-comments-count {
7953 background-color: inherit;
7954 box-shadow: 0 -1px 0 0 #999;
7956 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7957 color: #bbb;
7959 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7960 border-radius: 7px 0 0 7px;
7962 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7963 border-radius: 0 7px 7px 0;
7965 #new-comment-nav-ui button::after {
7966 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, 'GW-Symbols', sans-serif;
7969 /*****************************************/
7970 @media only screen and (max-width: 900px) {
7971 /*****************************************/
7972 h1.listing {
7973 font-size: 1.75rem;
7974 line-height: 1;
7976 h1.listing .link-post-link {
7977 top: 2px;
7979 h1.listing + .post-meta .karma-value,
7980 h1.listing + .post-meta .comment-count,
7981 h1.listing + .post-meta .lw2-link,
7982 h1.listing + .post-meta .read-time {
7983 bottom: 0;
7985 h1.listing + .post-meta .post-section::before {
7986 position: unset;
7988 h1.listing + .post-meta .post-section {
7989 overflow: visible;
7990 order: 1;
7992 h1.listing + .post-meta .link-post-domain {
7993 order: 2;
7994 line-height: 1;
7995 flex-basis: 100%;
7997 h1.listing + .post-meta::after {
7998 bottom: -10px;
8000 #content.user-page h1.listing + .post-meta {
8001 margin-bottom: 1em;
8003 #content.user-page h1.link-post-listing::after {
8004 height: calc(100% + 2em);
8007 #nav-item-search button::before {
8008 color: #00e;
8011 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8012 background-color: #aaa;
8015 .comment-item .comment-item {
8016 margin: 0.75em 2px 4px 6px;
8017 box-shadow:
8018 0 0 2px #ccc,
8019 0 0 4px #ccc,
8020 0 0 7px #ccc;
8022 .comment-item .comment-item + .comment-item {
8023 margin: 1.5em 2px 4px 6px;
8025 .comment-body {
8026 font-size: 1.125rem;
8029 a.comment-parent-link:hover::before {
8030 background-color: unset;
8033 .sublevel-nav:not(.sort) .sublevel-item,
8034 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8035 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8036 border-radius: 8px;
8037 border-width: 1px;
8038 margin: 2px;
8040 /*******************************************/
8041 } @media only screen and (max-width: 720px) {
8042 /*******************************************/
8043 h1.listing {
8044 margin: 10px 6px 6px 6px;
8045 max-width: calc(100% - 12px);
8046 font-size: 1.5rem;
8047 padding-right: 35px;
8049 #content.conversations-user-page h1.listing {
8050 font-size: 1.5rem;
8052 h1.listing + .post-meta {
8053 margin: 0 6px 0 7px;
8054 clear: both;
8056 h1.listing + .post-meta {
8057 padding: .25em 254px 0 0;
8059 h1.listing + .post-meta::after {
8060 bottom: -2px;
8062 h1.listing + .post-meta > * {
8063 line-height: 1;
8064 display: block;
8066 #content.conversations-user-page h1.listing + .post-meta > * {
8067 line-height: 1.5;
8069 h1.listing + .post-meta .date,
8070 h1.listing + .post-meta .author {
8071 line-height: 1.3;
8073 h1.listing + .post-meta .karma-value,
8074 h1.listing + .post-meta .comment-count,
8075 h1.listing + .post-meta .lw2-link,
8076 h1.listing + .post-meta .read-time {
8077 top: unset;
8078 font-size: 1rem;
8079 box-shadow: none;
8081 h1.listing + .post-meta .karma-value::before,
8082 h1.listing + .post-meta .comment-count::before,
8083 h1.listing + .post-meta .lw2-link::before,
8084 h1.listing + .post-meta .read-time::before {
8085 box-shadow: none;
8087 h1.listing + .post-meta .karma-value,
8088 h1.listing + .post-meta .comment-count,
8089 h1.listing + .post-meta .read-time,
8090 h1.listing + .post-meta .lw2-link {
8091 bottom: 4px;
8094 h1.listing + .post-meta .karma-value {
8095 right: 192px;
8097 h1.listing + .post-meta .karma-value::before {
8098 text-shadow: 0.5px 0.5px 0.5px #999;
8100 h1.listing + .post-meta .comment-count {
8101 right: 132px;
8103 h1.listing + .post-meta .read-time {
8104 right: 56px;
8106 h1.listing + .post-meta .lw2-link {
8107 opacity: 1;
8108 right: 0;
8110 h1.listing + .post-meta .link-post-domain {
8111 margin: 0;
8112 line-height: 1.3;
8113 overflow: hidden;
8114 text-overflow: ellipsis;
8116 h1.listing + .post-meta .post-section::before {
8117 position: absolute;
8118 left: unset;
8119 right: 0;
8120 bottom: 30px;
8121 top: unset;
8123 h1.listing a {
8124 display: inline;
8126 /*******************************************/
8127 } @media only screen and (max-width: 520px) {
8128 /*******************************************/
8129 h1.listing + .post-meta {
8130 padding: .25em 144px 0 0;
8131 flex-flow: column;
8133 #content.conversations-user-page h1.listing + .post-meta {
8134 flex-flow: row wrap;
8136 h1.listing + .post-meta .date {
8137 margin: 0.375em 0 0.25em 0;
8138 line-height: 1;
8140 #content.user-page h1.listing::after {
8141 height: calc(100% + 2.125em);
8143 #content.user-page h1.link-post-listing::after {
8144 height: calc(100% + 3.125em);
8146 #content.user-page:not(.conversations-user-page) h1.listing + .post-meta {
8147 padding: 0.25em 144px 0.5em 36px;
8149 #content.conversations-user-page h1.listing + .post-meta .date {
8150 margin: 0 0 0 1em;
8153 h1.listing + .post-meta .karma-value {
8154 bottom: 28px;
8155 right: 56px;
8157 h1.listing + .post-meta .comment-count {
8158 bottom: 28px;
8159 right: 0;
8161 h1.listing + .post-meta .read-time {
8162 right: 56px;
8163 bottom: 4px;
8165 h1.listing + .post-meta .lw2-link {
8166 right: 0;
8167 bottom: 4px;
8169 h1.listing + .post-meta .link-post-domain {
8170 max-width: 100%;
8172 h1.listing + .post-meta .post-section::before {
8173 right: 120px;
8176 #content.compact > .comment-thread .comment-item {
8177 max-height: 110px;
8180 .textarea-container:focus-within button:active {
8181 background-color: #ccc;
8183 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8184 background-color: #eee;
8185 border: 1px solid #ddd;
8186 border-radius: 6px;
8188 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8189 border-color: #c00;
8190 box-shadow:
8191 0 0 0 1px #fff,
8192 0 0 0 2px #c00;
8193 color: #c00;
8194 font-weight: 600;
8196 #content.conversation-page .textarea-container:focus-within::after {
8197 background-color: #fff;
8199 .textarea-container:focus-within .guiedit-buttons-container {
8200 background-color: white;
8201 border-top: 1px solid #ddf;
8203 .textarea-container:focus-within button.guiedit {
8204 background-color: #eee;
8205 border: 1px solid #ddd;
8206 border-radius: 6px;
8208 #markdown-hints::after {
8209 color: #090;
8212 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8213 top: 2px;
8215 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8216 top: 1px;
8218 /*******************************************/
8219 } @media only screen and (max-width: 320px) {
8220 /*******************************************/
8221 h1.listing {
8222 font-size: 1.25rem;
8224 #content.user-page h1.listing::after {
8225 height: calc(100% + 2.625em);
8227 #content.user-page h1.link-post-listing::after {
8228 height: calc(100% + 3.75em);
8234 /*************/
8235 /* ACCORDIUS */
8236 /*************/
8238 /*======*/
8239 /* TAGS */
8240 /*======*/
8242 #tags {
8243 order: 12;
8244 display: flex;
8245 flex-basis: 100%;
8246 justify-content: center;
8247 margin: 0;
8248 flex-flow: row wrap;
8249 align-items: flex-start;
8252 /*===============*/
8253 /* DEFAULT THEME */
8254 /*===============*/
8256 /*++++++*/
8257 /* TAGS */
8258 /*++++++*/
8260 #tags {
8261 padding: 0.5em;
8263 #tags::before {
8264 content: "Tags:";
8265 margin: 0 0.25em 0 0;
8266 opacity: 0.5;
8267 line-height: 1;
8268 align-self: center;
8270 #tags a {
8271 border-radius: 8px;
8272 background-color: #f0f5fa;
8273 border: 1px solid #c5d6e9;
8274 padding: 4px 8px 5px 8px;
8275 line-height: 1;
8276 margin: 0.25em;
8277 font-size: 0.9375em;
8279 #tags a:hover {
8280 text-decoration: none;
8281 background-color: #d5e7fa;
8283 #tags a:active {
8284 color: #d00;