Mobile UI refactor, part I
[lw2-viewer.git] / www / css / style-ultramodern.mac.css
blob5faf924cd672fe1e4d32086dbfb8a13e2ce2517d
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;
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 SELECTOR AUX CONTROLS */
4819 /*=============================*/
4821 #theme-selector .auxiliary-controls-container {
4822 display: flex;
4823 justify-content: space-between;
4824 align-items: stretch;
4825 padding: 0.75em 0 0 0;
4826 margin: 8px;
4827 border-top: 1px solid #000;
4830 /*===============*/
4831 /* THEME TWEAKER */
4832 /*===============*/
4834 #theme-selector #theme-tweaker-toggle {
4835 position: relative;
4836 top: unset;
4837 left: unset;
4838 padding: 0;
4841 #theme-selector #theme-tweaker-toggle button {
4842 display: block;
4843 width: unset;
4844 margin: 0;
4845 transform: none;
4846 position: relative;
4847 background-image: none;
4848 padding: 0.5em 0.625em 0.375em 0.625em;
4849 margin: 0;
4850 opacity: 1.0;
4852 #theme-selector #theme-tweaker-toggle button::after {
4853 content: "Theme tweaker";
4854 font-size: 0.625em;
4855 white-space: nowrap;
4856 text-align: center;
4857 display: block;
4858 padding: 0;
4859 margin: 0.5em 0 0 0;
4860 max-width: unset;
4861 position: static;
4862 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
4863 font-weight: normal;
4865 #theme-selector #theme-tweaker-toggle button::before {
4866 display: none;
4869 #theme-tweaker-ui {
4870 visibility: visible;
4873 /*======================*/
4874 /* ANTI-KIBITZER TOGGLE */
4875 /*======================*/
4877 #theme-selector #anti-kibitzer-toggle {
4878 position: relative;
4879 top: unset;
4880 bottom: unset;
4881 left: unset;
4882 right: unset;
4883 margin: unset;
4884 box-shadow: unset;
4885 border-radius: unset;
4886 overflow: visible;
4889 #theme-selector #anti-kibitzer-toggle button {
4890 width: 48px;
4891 height: 100%;
4892 padding: 0;
4893 margin: 0;
4894 background-image: unset;
4895 border-radius: 10px;
4897 #theme-selector #anti-kibitzer-toggle button::before {
4898 width: 100%;
4899 visibility: unset;
4900 position: static;
4901 padding: 0;
4902 text-align: center;
4904 #theme-selector #anti-kibitzer-toggle button::after {
4905 content: "\F007\2004\F164";
4906 position: static;
4907 color: transparent;
4910 /*====================*/
4911 /* DARK MODE SELECTOR */
4912 /*====================*/
4914 #theme-selector #dark-mode-selector {
4915 position: static;
4916 opacity: 1.0;
4917 outline: none;
4918 border-radius: 10px;
4921 #theme-selector #dark-mode-selector button {
4922 width: 54px;
4923 height: 100%;
4924 margin: 0;
4925 padding: 0 0 0.5em 0;
4926 border-radius: 0;
4927 background-image: none;
4928 box-shadow: none;
4929 border: none;
4930 background-color: transparent;
4932 #theme-selector #dark-mode-selector button::before {
4933 display: none;
4935 #theme-selector #dark-mode-selector button::after {
4936 content: attr(data-name);
4937 visibility: visible;
4938 max-width: unset;
4939 left: 0;
4940 right: 0;
4941 bottom: 0;
4942 top: unset;
4943 text-shadow: none;
4944 font-size: 0.75em;
4945 color: inherit;
4946 padding: 0 0.25em 0.375em 0.25em;
4947 text-align: center;
4950 /*=================*/
4951 /* QUICKNAV WIDGET */
4952 /*=================*/
4954 #quick-nav-ui {
4955 max-width: 0px;
4956 transition:
4957 max-width 0.2s ease,
4958 visibility 0.2s ease;
4959 display: flex;
4960 right: 72px;
4961 bottom: 14px;
4963 #quick-nav-ui.engaged {
4964 max-width: 1000px;
4966 #quick-nav-ui a {
4967 position: relative;
4968 margin: 2px;
4970 #quick-nav-ui a + a {
4971 margin-left: 5px;
4973 #quick-nav-ui a::after {
4974 position: absolute;
4975 top: calc(100% + 2px);
4976 font-size: 0.375rem;
4977 left: 0;
4978 right: 0;
4979 margin: auto;
4980 line-height: 1;
4981 padding: 2px;
4982 text-transform: uppercase;
4983 z-index: -1;
4985 @supports (width: -moz-fit-content) {
4986 #quick-nav-ui a::after {
4987 width: -moz-fit-content;
4990 @supports (width: fit-content) {
4991 #quick-nav-ui a::after {
4992 width: fit-content;
4995 #quick-nav-ui a[href='#top']::after {
4996 content: "Top";
4997 left: -1px;
4999 #quick-nav-ui a[href='#comments']::after {
5000 content: "Comments";
5002 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
5003 visibility: hidden;
5004 transition: visibility 0.2s ease;
5006 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
5007 visibility: visible;
5009 #quick-nav-ui a[href='#bottom-bar']::after {
5010 content: "Bottom";
5013 /*======================*/
5014 /* NEW COMMENT QUICKNAV */
5015 /*======================*/
5017 #new-comment-nav-ui {
5018 max-width: 0px;
5019 max-height: 0px;
5020 transition:
5021 max-width 0.2s ease,
5022 max-height 0.2s ease,
5023 visibility 0.2s ease;
5024 display: flex;
5025 right: 78px;
5026 bottom: 70px;
5028 #new-comment-nav-ui::before {
5029 content: "New Comments";
5030 position: absolute;
5031 bottom: 100%;
5032 font-size: 0.5625rem;
5033 left: 0;
5034 right: 0;
5035 margin: auto;
5036 padding: 2px 3px;
5037 text-transform: uppercase;
5038 z-index: -1;
5040 @supports (width: -moz-fit-content) {
5041 #new-comment-nav-ui::before {
5042 width: -moz-fit-content;
5045 @supports (width: fit-content) {
5046 #new-comment-nav-ui::before {
5047 width: fit-content;
5050 #new-comment-nav-ui.engaged {
5051 max-width: 1000px;
5052 max-height: 1000px;
5054 #new-comment-nav-ui .new-comment-sequential-nav-button {
5055 top: unset;
5056 bottom: unset;
5057 padding: 2px 7px;
5059 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5060 padding: 2px 7px 3px 7px;
5062 #new-comment-nav-ui .new-comments-count {
5063 padding: 4px 0 5px 0;
5065 #new-comment-nav-ui .new-comments-count::before {
5066 display: none;
5068 #new-comment-nav-ui button::after {
5069 position: absolute;
5070 font-size: 0.375rem;
5071 left: 0;
5072 right: 0;
5073 margin: auto;
5074 line-height: 1;
5075 text-transform: uppercase;
5076 pointer-events: none;
5078 #new-comment-nav-ui button.new-comment-previous::after {
5079 content: "Previous";
5080 bottom: 5px;
5082 #new-comment-nav-ui button.new-comment-next::after {
5083 content: "Next";
5084 top: 7px;
5087 /*=================*/
5088 /* HNS DATE PICKER */
5089 /*=================*/
5091 #hns-date-picker {
5092 max-height: 0px;
5093 bottom: 132px;
5094 right: 62px;
5095 transition:
5096 max-height 0.2s ease,
5097 visibility 0.2s ease;
5099 #hns-date-picker.engaged {
5100 max-height: 1000px;
5102 #hns-date-picker::before {
5103 width: calc(100% + 2px);
5104 border-width: 1px !important;
5107 /*=========*/
5108 /* NAV BAR */
5109 /*=========*/
5111 #bottom-bar {
5112 margin-left: auto;
5113 margin-right: auto;
5114 width: calc(100% - 9rem + 8px);
5115 background: rgba(255,255,255,0.85);
5116 backdrop-filter: blur(1px);
5118 #content.index-page #bottom-bar {
5119 z-index: 10001;
5121 #bottom-bar .nav-item {
5122 box-shadow: none;
5123 position: relative;
5125 #bottom-bar .nav-inner {
5126 font-size: 2rem;
5127 padding: 1rem 0 1.25rem 0;
5128 visibility: hidden;
5129 position: static;
5130 width: 0;
5132 #content #bottom-bar .nav-item .nav-inner::before {
5133 margin: 0;
5134 visibility: visible;
5135 position: absolute;
5136 width: 100%;
5137 height: 100%;
5138 left: 0;
5139 top: 0;
5140 padding: 1rem 0;
5142 #bottom-bar .nav-inner::after {
5143 display: block;
5144 visibility: visible;
5145 text-transform: uppercase;
5146 color: unset;
5147 font-size: 0.75rem;
5148 top: unset;
5149 left: 0;
5150 bottom: 1rem;
5151 width: 100%;
5153 #bottom-bar #nav-item-first .nav-inner::after {
5154 content: "First Page";
5156 #bottom-bar #nav-item-prev .nav-inner::after {
5157 content: "Prev. Page";
5159 #bottom-bar #nav-item-top .nav-inner::after {
5160 content: "Top";
5162 #bottom-bar #nav-item-next .nav-inner::after {
5163 content: "Next Page";
5165 #bottom-bar #nav-item-last .nav-inner::after {
5166 content: "Last Page";
5169 @media only screen and (max-width: 900px) {
5170 .nav-bar-top {
5171 font-size: 0.75rem;
5173 .nav-bar {
5174 width: calc(100% + 8px);
5175 margin: 0 -4px;
5177 .nav-bar .nav-inner::after {
5178 display: none;
5181 #primary-bar .nav-item {
5182 flex: 1 1 100%;
5184 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5185 flex: 1 1 60px;
5187 .nav-bar-top:not(#anything) .nav-inner {
5188 text-transform: uppercase;
5189 padding: 6px;
5191 .nav-bar-top .nav-inner::before {
5192 display: block;
5193 font-family: "Font Awesome";
5194 font-size: 2em;
5195 font-weight: 900;
5198 #nav-item-home .nav-inner::before {
5199 content: "\F015";
5201 #nav-item-featured .nav-inner::before {
5202 content: "\F005";
5204 #nav-item-all .nav-inner::before {
5205 content: "\F069";
5207 #nav-item-meta .nav-inner::before {
5208 content: "\F077";
5210 #nav-item-tags .nav-inner::before {
5211 content: "\F02C";
5213 #nav-item-recent-comments > * > span {
5214 display: none;
5216 #nav-item-recent-comments .nav-inner::before,
5217 #nav-item-alignment-forum-comments .nav-inner::before {
5218 content: "\F036";
5220 #nav-item-alignment-forum .nav-inner::before {
5221 content: "AF";
5222 font-family: Concourse, 'Changa One';
5224 #nav-item-questions .nav-inner::before {
5225 content: "?";
5226 font-family: Concourse, 'Changa One';
5228 #nav-item-events .nav-inner::before {
5229 content: "\F5A0";
5231 #nav-item-shortform .nav-inner::before {
5232 content: "\F2F2";
5234 #nav-item-archive .nav-inner::before {
5235 content: "\F187";
5237 #nav-item-about .nav-inner::before {
5238 content: "\F129";
5240 #nav-item-search {
5241 font-size: 2em;
5242 padding: 10px;
5244 #nav-item-search .nav-inner::before {
5245 content: none;
5247 #nav-item-search .nav-inner {
5248 height: 100%;
5249 display: flex;
5251 #nav-item-search input {
5252 width: 100%;
5253 height: 100%;
5255 #nav-item-search button {
5256 height: 100%;
5257 padding: 5px 5px 5px 10px;
5258 width: 40px;
5259 overflow: visible;
5260 visibility: hidden;
5262 #nav-item-search button::before {
5263 content: "\F002";
5264 font-family: Font Awesome;
5265 font-weight: 900;
5266 visibility: visible;
5268 #nav-item-login {
5269 padding: 0;
5271 #nav-item-login .nav-inner::before {
5272 content: "\F007";
5275 @media only screen and (max-width: 520px) {
5276 .nav-bar-top {
5277 font-size: 0.5rem;
5280 #nav-item-search,
5281 #nav-item-search .nav-inner {
5282 padding: 0;
5284 #nav-item-search button {
5285 width: 31px;
5288 #bottom-bar #nav-item-first .nav-inner::after {
5289 content: "First";
5291 #bottom-bar #nav-item-prev .nav-inner::after {
5292 content: "Prev";
5294 #bottom-bar #nav-item-next .nav-inner::after {
5295 content: "Next";
5297 #bottom-bar #nav-item-last .nav-inner::after {
5298 content: "Last";
5302 /*=================*/
5303 /* INBOX INDICATOR */
5304 /*=================*/
5306 @media only screen and (max-width: 900px) {
5307 #inbox-indicator {
5308 width: 100%;
5309 top: 0;
5310 pointer-events: none;
5312 #inbox-indicator::before {
5313 width: 100%;
5314 font-size: 1rem;
5315 text-align: right;
5316 padding: 1px 6px;
5318 #inbox-indicator.new-messages {
5319 pointer-events: auto;
5321 #inbox-indicator.new-messages::before {
5322 box-shadow: 0 0 8px 1px #f00 inset;
5325 @media only screen and (max-width: 520px) {
5326 #inbox-indicator::before {
5327 font-size: 0.75rem;
5328 padding: 2px 5px;
5331 @media only screen and (max-width: 374px) {
5332 #inbox-indicator::before {
5333 font-size: 0.625rem;
5337 /*===================*/
5338 /* TOP PAGINATION UI */
5339 /*===================*/
5341 #top-nav-bar {
5342 font-size: 1.75rem;
5345 /*==============*/
5346 /* PAGE TOOLBAR */
5347 /*==============*/
5349 @media only screen and (max-width: 900px) {
5350 #content > .page-toolbar {
5351 font-size: 1rem;
5352 margin-right: 0;
5354 #content.user-page > .page-toolbar {
5355 grid-column: 2 / span 2;
5356 margin: 0 0 6px 0;
5359 @media only screen and (max-width: 520px) {
5360 #content:not(.user-page) .page-toolbar {
5361 display: flex;
5362 flex-direction: column-reverse;
5363 text-align: right;
5364 align-self: start;
5365 padding: 4px 0 0 0;
5367 #content.user-page .page-toolbar {
5368 display: flex;
5369 flex-flow: row;
5370 justify-content: flex-end;
5371 padding: 2px 0 0 0;
5373 #content.user-page .page-toolbar > form,
5374 #content.user-page .page-toolbar > .button {
5375 text-align: center;
5376 flex-basis: 25%;
5377 margin-left: 1.5em;
5379 #content.user-page .page-toolbar .button {
5380 text-transform: uppercase;
5381 font-size: 0.625rem;
5383 #content.user-page .page-toolbar .button::before {
5384 font-size: 1.375rem;
5385 display: block;
5386 padding: 0;
5388 #content.user-page .page-toolbar .rss {
5389 white-space: nowrap;
5390 margin: 0 0 0 1.5em;
5392 .page-toolbar > * {
5393 line-height: 1.15;
5394 padding: 6px 0;
5395 margin: 0;
5399 /*==============*/
5400 /* SUBLEVEL NAV */
5401 /*==============*/
5403 @media only screen and (max-width: 900px) {
5404 .sublevel-nav:not(.sort) {
5405 flex-wrap: wrap;
5406 width: calc(100vw - 200px);
5408 .sublevel-nav:not(.sort) .sublevel-item {
5409 margin: 1px;
5410 flex-basis: 7em;
5413 @media only screen and (max-width: 520px) {
5414 .sublevel-nav:not(.sort) .sublevel-item {
5415 font-size: 1rem;
5419 /*=====================*/
5420 /* SORT ORDER SELECTOR */
5421 /*=====================*/
5423 @media only screen and (max-width: 720px) {
5424 #content.index-page > .sublevel-nav.sort {
5425 flex-flow: column;
5426 margin-left: 4px;
5430 /*==========*/
5431 /* ARCHIVES */
5432 /*==========*/
5434 @media only screen and (max-width: 900px) {
5435 div[class^='archive-nav-'] {
5436 flex-wrap: wrap;
5437 justify-content: flex-start;
5439 .archive-nav *[class^='archive-nav-item'],
5440 .archive-nav *[class^='archive-nav-item']:first-child {
5441 padding: 10px;
5442 margin: 2px;
5443 max-width: unset;
5444 flex: 0 1 calc((100% / 8) - 4px);
5446 .archive-nav .archive-nav-item-day,
5447 .archive-nav .archive-nav-item-day:first-child {
5448 flex-basis: calc((100% / 16) - 4px);
5450 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5451 margin-top: 8px;
5452 position: relative;
5454 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5455 content: "";
5456 display: block;
5457 position: absolute;
5458 height: 1px;
5459 width: calc(100% + 8px);
5460 left: -4px;
5461 top: -4px;
5464 @media only screen and (max-width: 720px) {
5465 .archive-nav .archive-nav-item-day,
5466 .archive-nav .archive-nav-item-day:first-child {
5467 flex-basis: calc((100% / 12) - 4px);
5470 @media only screen and (max-width: 520px) {
5471 .archive-nav *[class^='archive-nav-item'],
5472 .archive-nav *[class^='archive-nav-item']:first-child {
5473 flex-basis: calc((100% / 5) - 4px);
5475 .archive-nav .archive-nav-item-day,
5476 .archive-nav .archive-nav-item-day:first-child {
5477 flex-basis: calc((100% / 8) - 4px);
5481 /*==========*/
5482 /* LISTINGS */
5483 /*==========*/
5485 h1.listing {
5486 max-height: unset;
5489 /*============*/
5490 /* USER PAGES */
5491 /*============*/
5493 #content.user-page h1.page-main-heading {
5494 align-self: end;
5496 @media only screen and (max-width: 520px) {
5497 #content.user-page h1.page-main-heading {
5498 overflow: hidden;
5499 text-overflow: ellipsis;
5501 #content.user-page .user-stats .karma-type {
5502 display: block;
5506 /*============*/
5507 /* LOGIN PAGE */
5508 /*============*/
5510 @media only screen and (max-width: 640px) {
5511 .login-container {
5512 flex-flow: column;
5513 margin: 0 auto 3em auto;
5514 max-width: 400px;
5516 .login-container #login-form,
5517 .login-container #signup-form {
5518 padding: 0 1em 1.25em 1em;
5519 grid-row-gap: 0;
5521 .login-container #signup-form {
5522 padding-top: 1em;
5524 .login-container #login-form > *,
5525 .login-container #signup-form > * {
5526 grid-column: 1 / span 2;
5528 .login-container form label {
5529 text-align: left;
5530 padding: 0;
5531 line-height: 1;
5533 .login-container form input {
5534 margin: 0.25em 0 0.75em 0;
5535 padding: 0.5em;
5537 .login-container form h1 {
5538 grid-column: 1 / span 2;
5539 margin: 0 0 0.25em 0;
5541 .login-container form a {
5542 margin: 0.75em 0 0 0;
5544 .login-container .login-tip {
5545 margin: 1.5em 1em 0 1em;
5549 /*==================*/
5550 /* POSTS & COMMENTS */
5551 /*==================*/
5553 @media only screen and (max-width: 720px) {
5554 .body-text ol > li {
5555 padding: 0 0 0 2.25em;
5557 .body-text ol > li::before {
5558 width: 1.75em;
5560 .body-text ul:not(.contents-list) > li,
5561 .body-text ul:not(.contents-list) > li ul > li {
5562 padding: 0 0 0 0.75em;
5564 .body-text ul:not(.contents-list) > li::before,
5565 .body-text ul:not(.contents-list) > li ul > li::before {
5566 width: 0.125em;
5567 margin-left: -0.06em;
5571 /*===========*/
5572 /* POST-META */
5573 /*===========*/
5575 .post-meta {
5576 line-height: 1.9;
5578 @media only screen and (max-width: 720px) {
5579 .post-meta .lw2-link span,
5580 .post-meta .karma-value span,
5581 .post-meta .comment-count span {
5582 display: none;
5584 .post-meta .comment-count::before {
5585 content: "\F086";
5586 font-family: Font Awesome;
5587 font-size: 0.875em;
5588 margin: 0 0.25em 0 0;
5589 font-weight: 400;
5593 /*===================*/
5594 /* POSTS & BODY TEXT */
5595 /*===================*/
5597 @media only screen and (max-width: 900px) {
5598 .post-body,
5599 h1.post-title,
5600 .tag-description,
5601 .sequence-text {
5602 padding: 0 6px;
5605 @media only screen and (max-width: 520px) {
5606 .post-body {
5607 font-size: 1.2rem;
5608 line-height: 1.45;
5610 h1.post-title {
5611 font-size: 2em;
5615 /*==============*/
5616 /* COMMENT-META */
5617 /*==============*/
5619 a.comment-parent-link::after {
5620 display: none;
5622 @media only screen and (max-width: 900px) {
5623 .comment-meta {
5624 padding: 2px 40px 2px 10px;
5627 @media only screen and (max-width: 720px) {
5628 .comment .karma-value span {
5629 display: none;
5631 .comment-meta .comment-parent-link {
5632 opacity: 1.0;
5635 @media only screen and (max-width: 520px) {
5636 .comment-meta {
5637 padding: 2px 24px 2px 10px;
5638 position: relative;
5640 .comment-meta > * {
5641 order: 3;
5643 .comment-meta > :not(.author) {
5644 line-height: 1.8;
5646 .comment-meta .author,
5647 .comment-meta .date {
5648 order: 1;
5650 .comment-meta:before {
5651 content: "";
5652 order: 2;
5653 flex-basis: 100%;
5655 .comment-post-title2 {
5656 display: block;
5657 text-overflow: ellipsis;
5658 overflow: hidden;
5660 .comment-meta .lw2-link {
5661 display: none;
5665 /*=======================*/
5666 /* COMMENTS COMPACT VIEW */
5667 /*=======================*/
5669 /*===========================*/
5670 /* COMMENT THREAD NAVIGATION */
5671 /*===========================*/
5673 @media only screen and (max-width: 900px) {
5674 a.comment-parent-link {
5675 width: 0;
5676 visibility: hidden;
5677 position: relative;
5679 a.comment-parent-link::before {
5680 padding: 0;
5681 font-size: 1em;
5682 left: 0;
5683 top: 0;
5684 line-height: inherit;
5685 visibility: visible;
5686 content: "\F3BF";
5687 transform: scaleX(-1);
5688 width: 2em;
5689 text-align: center;
5692 @media only screen and (max-width: 520px) {
5693 a.comment-parent-link {
5694 position: static;
5696 a.comment-parent-link::before {
5697 padding: 6px;
5698 left: unset;
5699 right: 0;
5700 top: unset;
5701 bottom: 0;
5702 height: 2em;
5706 /*=================================*/
5707 /* COMMENT THREAD MINIMIZE BUTTONS */
5708 /*=================================*/
5710 @media only screen and (max-width: 520px) {
5711 .comment-minimize-button{
5712 right: 2px;
5716 /*===========================*/
5717 /* COMMENTING AND POSTING UI */
5718 /*===========================*/
5720 @media only screen and (max-width: 900px) {
5721 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5722 font-size: 0;
5724 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5725 font-size: 0.9rem;
5727 .comment-controls .cancel-comment-button {
5728 max-width: 1.3em;
5729 overflow: hidden;
5730 margin-right: 0.125em;
5732 .comment-controls .edit-button::before {
5733 font-size: 0.9375rem;
5735 .comments > .comment-controls .cancel-comment-button {
5736 right: 8px;
5738 .comment-controls .cancel-comment-button::before {
5739 font-size: 1.25rem;
5742 @media only screen and (max-width: 520px) {
5743 .comment-controls {
5744 position: static;
5746 .comment-controls:focus-within {
5747 z-index: 10001;
5749 .comment-controls .cancel-comment-button {
5750 right: 10px;
5752 .textarea-container:focus-within textarea {
5753 position: fixed;
5754 top: 0;
5755 left: 2px;
5756 width: calc(100vw - 4px);
5757 height: calc(100% - 100px);
5758 min-height: unset;
5759 max-height: unset;
5760 border-width: 1px;
5761 z-index: 11001;
5763 #content.conversation-page .textarea-container:focus-within textarea {
5764 height: calc(100% - 54px);
5766 #content.conversation-page .textarea-container:focus-within::after {
5767 content: "";
5768 display: block;
5769 width: 100%;
5770 height: 50px;
5771 position: fixed;
5772 left: 0;
5773 bottom: 0;
5774 z-index: 11000;
5776 .textarea-container:focus-within .guiedit-buttons-container {
5777 position: fixed;
5778 z-index: 11002;
5779 left: 0;
5780 width: 100vw;
5781 height: auto;
5782 background-image: none;
5783 padding: 3px 4px 4px 4px;
5784 margin: 0;
5785 text-align: center;
5786 top: auto;
5787 bottom: 0;
5789 .textarea-container:focus-within button.guiedit {
5790 font-size: 0.9375rem;
5791 line-height: 1.5;
5792 height: auto;
5793 width: calc((100% / 10) - 2px);
5794 padding: 10px 1px 8px 0;
5795 position: relative;
5796 margin: 1px;
5798 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5799 z-index: 11011;
5800 position: fixed;
5801 bottom: 7px;
5802 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5803 font-size: 1.25rem;
5804 padding: 5px 5px 6px 5px;
5805 display: block;
5807 .textarea-container:focus-within button.guiedit sup {
5808 position: absolute;
5809 left: calc(50% + 0.65em);
5810 top: calc(50% - 1.3em);
5812 .textarea-container:focus-within .guiedit-mobile-help-button {
5813 left: 8px;
5815 .textarea-container:focus-within .guiedit-mobile-exit-button {
5816 right: 8px;
5818 .guiedit::after {
5819 display: none;
5822 #markdown-hints,
5823 #edit-post-form #markdown-hints {
5824 z-index: 11111;
5825 position: fixed;
5826 top: 40px;
5827 left: 0;
5828 right: 0;
5829 margin: auto;
5830 padding: 4px 0 4px 8px;
5831 width: 310px;
5832 border-width: 3px;
5833 border-style: double;
5834 pointer-events: none;
5836 #markdown-hints::after {
5837 content: "(Type to hide this help box.)";
5838 color: #090;
5839 display: block;
5840 margin: 12px 18px 13px 10px;
5841 padding: 5px;
5842 font-size: 0.9em;
5843 text-align: center;
5847 /*================*/
5848 /* EDIT POST FORM */
5849 /*================*/
5851 @media only screen and (max-width: 520px) {
5852 #edit-post-form {
5853 padding-bottom: 0;
5855 #edit-post-form .post-meta-fields {
5856 grid-template-columns: 4.5em auto auto auto 1fr auto;
5858 #edit-post-form label[for='url'],
5859 #edit-post-form label[for='section'],
5860 #edit-post-form label[for='title'] {
5861 padding-left: 0;
5863 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5864 white-space: normal;
5865 line-height: 0.9;
5866 top: -1px;
5867 font-family: Font Awesome;
5868 font-weight: 900;
5869 justify-self: start;
5871 #edit-post-form .post-meta-fields .question-checkbox,
5872 #edit-post-form .post-meta-fields .question-checkbox + label {
5873 grid-column: 6;
5874 margin-left: unset;
5876 #edit-post-form .post-meta-fields input[type='radio'] + label {
5877 align-self: start;
5879 #edit-post-form .textarea-container:focus-within textarea {
5880 height: calc(100% - 101px);
5881 min-height: unset;
5884 #markdown-hints-checkbox,
5885 #markdown-hints-checkbox + label {
5886 display: none;
5889 #edit-post-form div:last-child {
5890 clear: both;
5891 overflow: auto;
5893 #edit-post-form input[type='submit'] {
5894 float: none;
5895 display: block;
5896 font-size: 1.5rem;
5897 margin: 1rem auto 1.5rem auto;
5898 padding: 6px 12px 8px 12px;
5902 /*===================*/
5903 /* TABLE OF CONTENTS */
5904 /*===================*/
5906 @media only screen and (max-width: 900px) {
5907 .contents {
5908 float: none;
5909 display: table;
5910 max-width: none;
5911 margin-left: auto;
5912 margin-right: auto;
5915 @media only screen and (max-width: 520px) {
5916 .contents {
5917 max-width: 100%;
5918 margin: 1em auto 0 auto;
5919 display: table;
5921 .contents-head {
5922 font-size: 1.2em;
5924 div.post-body .contents ul {
5925 font-size: unset;
5929 /*========================*/
5930 /* QUALIFIED HYPERLINKING */
5931 /*========================*/
5933 @media only screen and (max-width: 520px) {
5934 .qualified-linking-toolbar {
5935 right: -5em;
5939 } /* END MOBILE LAYOUT */
5942 /*********************/
5943 /* ULTRAMODERN THEME */
5944 /*********************/
5946 /*===========*/
5947 /* VARIABLES */
5948 /*===========*/
5950 /* Color scheme.
5952 :root {
5955 /*======*/
5956 /* BASE */
5957 /*======*/
5959 body {
5960 color: #444;
5961 background-color: #888;
5962 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
5963 font-weight: 300;
5965 #content {
5966 line-height: 1.55;
5969 /*=========*/
5970 /* NAV BAR */
5971 /*=========*/
5973 .active-bar {
5974 border: 1px solid transparent;
5975 border-bottom-color: #666;
5976 box-shadow:
5977 0 1.5px 1.5px -1.5px #bbb,
5978 0 1px 1px -1px #777;
5979 margin: 0 -30px 0 -2px;
5982 .nav-inner {
5983 font-weight: normal;
5984 font-size: 1.1875em;
5985 padding: 11px 30px 13px 30px;
5987 .nav-current .nav-inner {
5988 font-weight: 300;
5989 color: #ccc;
5991 .nav-bar-top:not(#primary-bar) .nav-inner {
5992 font-size: 1em;
5994 .nav-bar-top:not(.nav-bar-top:not(#primary-bar)) .nav-item:not(#nav-item-search) .nav-inner {
5995 padding: 5px 0 3px 0;
5997 @media only screen and (min-width: 901px) {
5998 .nav-bar-top:not(#primary-bar) #nav-item-sequences .nav-inner {
5999 line-height: 1.1;
6003 #bottom-bar.decorative::before,
6004 #bottom-bar.decorative::after {
6005 content: "GW";
6006 display: block;
6007 text-align: center;
6008 padding: 0.25em 0 1em 0;
6010 #bottom-bar.decorative::before {
6011 width: 100%;
6012 color: transparent;
6013 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
6014 background-repeat: repeat-x;
6015 background-position: center 35%;
6016 margin: 0 30px;
6017 filter: brightness(50%) opacity(0.6);
6019 #bottom-bar.decorative::after {
6020 color: #777;
6021 position: absolute;
6022 left: 0;
6023 right: 0;
6024 margin: auto;
6025 background-color: #888;
6026 padding-right: 4px;
6027 padding-left: 4px;
6029 @supports (width: -moz-fit-content) {
6030 #bottom-bar.decorative::after {
6031 width: -moz-fit-content;
6034 @supports (width: fit-content) {
6035 #bottom-bar.decorative::after {
6036 width: fit-content;
6040 .nav-bar .nav-inner {
6041 color: #444;
6042 font-weight: 300;
6044 .nav-bar .nav-inner:hover,
6045 .nav-bar .nav-inner:focus {
6046 text-decoration: underline;
6049 /* Accesskey hints */
6051 .nav-inner::after {
6052 display: block;
6053 position: absolute;
6054 left: 5px;
6055 top: -2px;
6056 font-weight: 400;
6057 font-size: 0.7em;
6058 color: #7c7c7c;
6060 .inactive-bar .nav-inner::after {
6061 color: #777;
6062 top: 0;
6064 .nav-inner:hover::after {
6065 color: #666;
6068 /* Search tab */
6070 #nav-item-search form::before {
6071 opacity: 0.4;
6072 font-size: 0.9375rem;
6074 #nav-item-search button {
6075 border: none;
6076 font-weight: 300;
6078 #nav-item-search input::placeholder {
6079 color: #f00;
6080 font-weight: normal;
6083 /* Inbox indicator */
6085 #inbox-indicator {
6086 top: 0;
6089 /*= Top pagination UI =*/
6091 #top-nav-bar a::before {
6092 font-weight: 300;
6095 /*= Bottom pagination UI =*/
6097 #bottom-bar .nav-item a::before {
6098 font-weight: 400;
6101 /*= Pagination UI hover tooltips =*/
6103 #top-nav-bar a::after,
6104 #bottom-bar a::after {
6105 color: #222;
6108 /*==============*/
6109 /* PAGE TOOLBAR */
6110 /*==============*/
6112 .page-toolbar > * {
6113 color: #444;
6114 font-weight: 300;
6116 .new-post::before,
6117 .logout-button::before {
6118 opacity: 0.8;
6120 .page-toolbar .button:hover {
6121 text-decoration: none;
6124 /*==============*/
6125 /* SUBLEVEL NAV */
6126 /*==============*/
6128 .sublevel-nav .sublevel-item {
6129 color: #444;
6130 background-color: #888;
6132 .sublevel-nav .sublevel-item:not(.selected):hover {
6133 color: #000;
6134 text-decoration: none;
6136 .sublevel-nav .sublevel-item:hover,
6137 .sublevel-nav .sublevel-item.selected {
6138 background-color: #999;
6140 .sublevel-nav .sublevel-item:not(.selected):active,
6141 .sublevel-nav .sublevel-item.selected {
6142 color: #fff;
6145 .sublevel-nav:not(.sort) .sublevel-item {
6146 border-style: solid;
6147 border-color: #999;
6148 border-width: 1px 0 1px 1px;
6150 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6151 border-radius: 8px 0 0 8px;
6153 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6154 border-width: 1px;
6155 border-radius: 0 8px 8px 0;
6158 /*=====================*/
6159 /* SORT ORDER SELECTOR */
6160 /*=====================*/
6162 .sublevel-nav.sort .sublevel-item {
6163 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6164 padding: 8px 8px 6px 8px;
6165 text-transform: uppercase;
6166 pointer-events: auto;
6167 box-shadow: 1px 1px 0 0 #777 inset;
6169 .sublevel-nav.sort {
6170 border: 2px solid transparent;
6171 padding: 18px 0 0 0;
6172 border-radius: 8px;
6173 pointer-events: none;
6174 background-color: #999;
6176 .sublevel-nav.sort::before {
6177 text-transform: uppercase;
6178 font-weight: 600;
6179 color: #444;
6180 z-index: 1;
6182 .sublevel-nav.sort::after {
6183 content: "";
6184 position: absolute;
6185 display: block;
6186 top: 0;
6187 left: 0;
6188 width: 100%;
6189 height: 100%;
6190 border-radius: 6px;
6191 box-shadow:
6192 0 18px 0 0 #888 inset,
6193 0 0 0 1px #777 inset,
6194 0 18px 0 1px #777 inset,
6195 0 0 0 2px #888;
6198 /*================*/
6199 /* WIDTH SELECTOR */
6200 /*================*/
6202 #width-selector button {
6203 box-shadow:
6204 0 0 0 4px #888 inset,
6205 0 0 0 5px #ccc inset;
6207 #width-selector button:hover,
6208 #width-selector button.selected {
6209 box-shadow:
6210 0 0 0 1px #888 inset,
6211 0 0 0 2px #ccc inset,
6212 0 0 0 4px #888 inset,
6213 0 0 0 5px #ccc inset;
6215 #width-selector button::after {
6216 color: #ccc;
6217 font-weight: 300;
6220 /*================*/
6221 /* THEME SELECTOR */
6222 /*================*/
6224 #theme-selector button {
6225 box-shadow:
6226 0 0 0 5px #888 inset;
6228 #theme-selector button:hover,
6229 #theme-selector button.selected {
6230 box-shadow:
6231 0 0 0 2px #888 inset,
6232 0 0 0 3px #ccc inset,
6233 0 0 0 5px #888 inset;
6236 #theme-selector button::before {
6237 color: #aaa;
6238 background-color: #888;
6240 #theme-selector button:hover::before,
6241 #theme-selector button.selected::before {
6242 color: #ccc;
6245 /*======================*/
6246 /* THEME TWEAKER TOGGLE */
6247 /*======================*/
6249 #theme-tweaker-toggle button:hover {
6250 text-decoration: none;
6253 /*=================*/
6254 /* QUICKNAV WIDGET */
6255 /*=================*/
6257 #quick-nav-ui a {
6258 color: #666;
6259 border-radius: 4px;
6260 box-shadow: 0 0 0 1px #999;
6261 text-decoration: none;
6263 #quick-nav-ui a[href='#bottom-bar'] {
6264 line-height: 1.8;
6266 #quick-nav-ui a:active {
6267 transform: scale(0.9);
6269 #quick-nav-ui a[href='#comments'].no-comments {
6270 opacity: 0.4;
6271 color: #777;
6273 @media only screen and (hover: hover) {
6274 #quick-nav-ui a:hover {
6275 color: #444;
6276 box-shadow: 0 0 0 1px #ccc;
6278 #quick-nav-ui a:focus:not(:hover) {
6279 transform: none;
6280 text-shadow: none;
6284 /*======================*/
6285 /* NEW COMMENT QUICKNAV */
6286 /*======================*/
6288 #new-comment-nav-ui .new-comments-count {
6289 font-weight: 600;
6290 color: #666;
6292 #new-comment-nav-ui .new-comments-count::after {
6293 font-weight: 600;
6294 color: #666;
6296 #new-comment-nav-ui .new-comment-sequential-nav-button {
6297 color: #bbb;
6299 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6300 color: #929292;
6302 @media only screen and (hover: hover) {
6303 #new-comment-nav-ui .new-comments-count:hover {
6304 text-shadow:
6305 0 0 1px #fff,
6306 0 0 3px #fff,
6307 0 0 5px #fff,
6308 0 0 8px #fff,
6309 0.5px 0.5px 0 #fff;
6311 #new-comment-nav-ui .new-comment-sequential-nav-button:hover {
6312 color: #444;
6313 text-decoration: none;
6315 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6316 color: #d00;
6317 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6321 /*=================*/
6322 /* HNS DATE PICKER */
6323 /*=================*/
6325 #hns-date-picker span {
6326 color: #666;
6327 font-weight: 600;
6329 #hns-date-picker input {
6330 border: 1px solid #999;
6331 background-color: transparent;
6332 color: #666;
6334 #hns-date-picker input:focus {
6335 color: #000;
6336 border: 1px solid #ccc;
6339 /*======================*/
6340 /* ANTI-KIBITZER TOGGLE */
6341 /*======================*/
6343 #anti-kibitzer-toggle button::before,
6344 #anti-kibitzer-toggle button::after {
6345 background-color: #222;
6346 -webkit-background-clip: text;
6347 color: transparent;
6348 text-shadow: rgba(255,255,255,0.4) 0px 1px 1px;
6350 #anti-kibitzer-toggle button:hover::before,
6351 #anti-kibitzer-toggle button:hover::after {
6352 background-color: #000;
6355 /*====================*/
6356 /* DARK MODE SELECTOR */
6357 /*====================*/
6359 #dark-mode-selector {
6360 outline: 1px solid #ccc;
6361 opacity: 0.5;
6363 #dark-mode-selector button {
6364 color: #ddd;
6366 #dark-mode-selector button:hover {
6367 color: #444;
6369 #dark-mode-selector button.selected {
6370 background-color: #ccc;
6371 color: #777;
6373 #dark-mode-selector button:not(.selected) + button:not(.selected) {
6374 box-shadow: 1px 0 0 0 #ccc inset;
6376 #dark-mode-selector button:disabled:hover {
6377 text-shadow: none;
6379 #dark-mode-selector button::after {
6380 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6381 color: #ccc;
6382 text-shadow: none;
6383 font-weight: 300;
6386 /*======================*/
6387 /* TEXT SIZE ADJUSTMENT */
6388 /*======================*/
6390 #text-size-adjustment-ui button {
6391 color: #ccc;
6393 #text-size-adjustment-ui button.default {
6394 font-weight: 600;
6396 #text-size-adjustment-ui button:hover {
6397 text-decoration: none;
6398 color: #aaa;
6400 #text-size-adjustment-ui::after {
6401 color: #ccc;
6402 font-weight: 300;
6405 /*=============================*/
6406 /* COMMENTS VIEW MODE SELECTOR */
6407 /*=============================*/
6409 #comments-view-mode-selector a {
6410 color: #ccc;
6413 /*==========*/
6414 /* ARCHIVES */
6415 /*==========*/
6417 .archive-nav {
6418 border: 1px solid #ccc;
6420 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6421 border-top-width: 0;
6422 border-bottom-width: 0;
6424 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6425 border-bottom-width: 1px;
6427 .archive-nav *[class^='archive-nav-item']:last-child {
6428 border-right-width: 1px;
6430 .archive-nav span[class^='archive-nav-item'] {
6431 font-weight: bold;
6434 .archive-nav span[class^="archive-nav-item"],
6435 .archive-nav a:hover {
6436 color: #ffb359;
6437 box-shadow:
6438 0 0 0 3px #888 inset,
6439 0 0 0 4px #ccc inset,
6440 0 0 0 5px #888 inset;
6441 text-decoration: none;
6443 .archive-nav span[class^="archive-nav-item"] {
6444 font-weight: normal;
6445 box-shadow:
6446 0 0 0 1px #ccc inset,
6447 0 0 0 3px #888 inset,
6448 0 0 0 4px #ccc inset,
6449 0 0 0 5px #888 inset;
6451 .archive-nav a:active {
6452 transform: scale(0.9);
6454 .archive-nav a:focus:not(:hover) {
6455 transform: none;
6458 /*==========*/
6459 /* LISTINGS */
6460 /*==========*/
6462 h1.listing {
6463 margin: 0.7em 20px 0.1em 20px;
6464 max-width: calc(100% - 40px);
6465 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif, 'Font Awesome';
6466 font-size: 1.5rem;
6468 h1.listing .post-title-link {
6469 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6470 font-weight: 100;
6471 text-shadow:
6472 0px 0px 1px #777,
6473 0.5px 0.5px 1px #aaa,
6474 0.5px 0.5px 1px #bbb;
6476 h1.listing .link-post-link {
6477 color: #aaa;
6480 @media only screen and (hover: hover) {
6481 h1.listing a:hover,
6482 h1.listing a:focus {
6483 background-color: rgba(136,136,136,0.85);
6484 color: #f60;
6485 text-shadow:
6486 0px 0px 1px #777,
6487 0.5px 0.5px 1px #aaa,
6488 0.5px 0.5px 1px #bbb,
6489 0 0 1px #f60,
6490 0 0 2px #f60,
6491 0 0 3px #f60;
6493 h1.listing:focus-within::before {
6494 color: #f60;
6495 left: -0.625em;
6496 top: 1px;
6498 h1.listing .link-post-link:hover {
6499 color: #4879ec;
6500 text-shadow:
6501 0.5px 0.5px 0 #fff,
6502 -0.5px -0.5px 0 #fff,
6503 0 0 2px #fff,
6504 0 0 3px #00c;
6508 h1.listing .edit-post-link {
6509 padding: 10px 3px 30px 0.5em;
6510 top: 0;
6511 right: -1.5em;
6513 h1.listing .edit-post-link:hover {
6514 text-decoration: none;
6516 #content.user-page h1.listing .edit-post-link {
6517 background-color: #888;
6520 /*======*/
6521 /* SPAM */
6522 /*======*/
6524 h1.listing.spam {
6525 opacity: 0.35;
6527 h1.listing.spam + .post-meta {
6528 opacity: 0.3;
6530 h1.listing.spam:hover,
6531 h1.listing.spam + .post-meta:hover,
6532 h1.listing.spam:hover + .post-meta {
6533 opacity: 1.0;
6536 /*===================*/
6537 /* LISTING POST-META */
6538 /*===================*/
6540 h1.listing + .post-meta > * {
6541 color: #222;
6542 font-size: 1em;
6544 h1.listing + .post-meta .karma::after {
6545 content: " by";
6547 h1.listing + .post-meta .date::before {
6548 content: "on ";
6550 h1.listing + .post-meta .date::after {
6551 content: " — ";
6552 opacity: 0.5;
6553 margin: 0 0.5em 0 0.125em;
6555 h1.listing + .post-meta .comment-count.new-comments::before {
6556 color: #0f0;
6558 h1.listing:last-of-type + .post-meta {
6559 margin-bottom: 0;
6561 h1.listing + .post-meta .karma {
6562 order: -1;
6563 margin-right: 0.25em;
6565 h1.listing + .post-meta .author {
6566 margin-right: 0.25em;
6568 h1.listing + .post-meta .date {
6569 margin: 0;
6571 h1.listing + .post-meta .post-section {
6572 overflow: visible;
6573 order: 2;
6575 h1.listing + .post-meta .post-section::before {
6576 font-size: 0.9375em;
6577 left: -32px;
6579 h1.listing + .post-meta .link-post-domain {
6580 order: 1;
6583 /*============*/
6584 /* USER PAGES */
6585 /*============*/
6587 #content.user-page h1.page-main-heading {
6588 border-bottom: 1px solid #777;
6591 #content.user-page h1.listing,
6592 #content.user-page h1.listing + .post-meta {
6593 border-style: solid;
6594 border-color: #666;
6595 border-width: 0 0 0 1px;
6596 box-shadow:
6597 1.5px 0 1.5px -1.5px #bbb inset,
6598 1px 0 1px -1px #777 inset;
6600 #content.user-page h1.listing {
6601 max-width: 100%;
6602 margin: 1rem 0 0 0;
6603 padding: 6px;
6605 @media only screen and (hover: hover) {
6606 #content.user-page h1.listing:focus-within::before {
6607 left: -0.625em;
6608 top: 8px;
6611 #content.user-page h1.listing + .post-meta {
6612 margin: 0 0 1rem 0;
6613 padding: 0.5em 6px 6px 34px;
6615 #content.user-page h1.listing + .post-meta .post-section::before {
6616 left: 1px;
6619 #content.conversations-user-page h1.listing {
6620 padding: 6px 6px 4px 8px;
6621 font-size: 1.5rem;
6623 #content.conversations-user-page h1.listing + .post-meta {
6624 padding: 6px 4px;
6625 margin: 0 0 0.25rem 0;
6627 #content.conversations-user-page h1.listing + .post-meta .date::after {
6628 display: none;
6631 .user-stats .karma-total {
6632 font-weight: bold;
6635 /*===============*/
6636 /* CONVERSATIONS */
6637 /*===============*/
6639 #content.conversation-page h1.page-main-heading {
6640 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6641 font-weight: 100;
6642 color: #000;
6643 text-shadow:
6644 0px 0px 1px #777,
6645 0.5px 0.5px 1px #aaa,
6646 0.5px 0.5px 1px #bbb;
6649 /*============*/
6650 /* LOGIN PAGE */
6651 /*============*/
6653 .login-container h1 {
6654 font-weight: 300;
6657 /* “Create account” form */
6659 #signup-form {
6660 border: 1px solid #aaa;
6663 /* Log in tip */
6665 .login-container .login-tip {
6666 border: 1px solid transparent;
6669 /* Message box */
6671 .error-box {
6672 border: 1px solid red;
6673 background-color: #faa;
6675 .success-box {
6676 border: 1px solid green;
6677 background-color: #afa;
6680 /*=====================*/
6681 /* PASSWORD RESET PAGE */
6682 /*=====================*/
6684 .reset-password-container input[type='submit'] {
6685 background-color: #e4e4e4;
6686 border: 1px solid #ccc;
6687 font-weight: 600;
6690 /*===================*/
6691 /* TABLE OF CONTENTS */
6692 /*===================*/
6694 .contents {
6695 background-color: #888;
6697 .contents-head {
6698 font-weight: 300;
6700 .post-body .contents ul {
6701 font-size: 0.85em;
6703 .post-body .contents li::before {
6704 color: #999;
6705 font-feature-settings: "tnum";
6708 /*=================*/
6709 /* POST NAVIGATION */
6710 /*=================*/
6712 .post-nav-links a,
6713 .post-nav-links a:visited {
6714 color: #444;
6715 font-weight: 300;
6717 .post-nav-links a:hover {
6718 text-decoration: none;
6719 color: #ccc;
6722 .post-nav-label {
6723 opacity: 0.75;
6726 @media only screen and (max-width: 900px) {
6727 .sequence-title {
6728 border-top: 1px solid #777;
6730 .post-nav.prev {
6731 border-right: 1px solid #777;
6733 .post-nav.next {
6734 border-left: 1px solid #777;
6738 /*==================*/
6739 /* POSTS & COMMENTS */
6740 /*==================*/
6742 .body-text {
6743 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6744 font-weight: 300;
6745 color: #000;
6746 text-shadow:
6747 0px 0px 1px #777,
6748 0.5px 0.5px 1px #aaa,
6749 0.5px 0.5px 1px #bbb;
6751 .body-text strong {
6752 font-weight: 500;
6755 .body-text a:link {
6756 color: inherit;
6757 text-shadow:
6758 0px 0px 1px #bd5984,
6759 0.5px 0.5px 1px #f68a84,
6760 0.5px 0.5px 1px #ff9b8c;
6762 .body-text a:visited {
6763 color: inherit;
6764 text-shadow:
6765 0px 0px 1px #a766dd,
6766 0.5px 0.5px 1px #d9f,
6767 0.5px 0.5px 1px #efa9ff;
6769 .body-text a:hover {
6770 color: #f60;
6771 text-shadow:
6772 0px 0px 1px #bd5984,
6773 0.5px 0.5px 1px #f68a84,
6774 0.5px 0.5px 1px #ff9b8c,
6775 0px 0px 5px #f60;
6778 h1.post-title {
6779 margin: 1.1em 0 0.25em 0;
6780 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6781 font-weight: 100;
6782 color: #000;
6783 font-size: 3em;
6784 text-shadow:
6785 0px 0px 1px #777,
6786 0.5px 0.5px 1px #aaa,
6787 0.5px 0.5px 1px #bbb;
6790 .post-body {
6791 font-size: 1.1875rem;
6792 line-height: 1.6;
6794 @media (-webkit-max-device-pixel-ratio: 1), (max-resolution: 191dpi) {
6795 .post-body {
6796 font-size: 1.125rem;
6799 .comment-body {
6800 font-size: 1.125rem;
6803 /*=======*/
6804 /* POSTS */
6805 /*=======*/
6807 .bottom-post-meta {
6808 border-color: #777;
6811 /*===========*/
6812 /* POST-META */
6813 /*===========*/
6815 .post-meta a,
6816 .post-meta .date {
6817 color: #444;
6820 .post-meta > * {
6821 margin: 0;
6822 text-shadow:
6823 0px 0px 1px #777,
6824 0.5px 0.5px 1px #aaa,
6825 0.5px 0.5px 1px #bbb;
6827 .post-meta .comment-count span,
6828 .post-meta .read-time span,
6829 .post-meta .word-count span,
6830 .post-meta .lw2-link span {
6831 display: none;
6833 .post-meta .comment-count::before,
6834 .post-meta .read-time::before,
6835 .post-meta .word-count::before,
6836 .post-meta .lw2-link::before {
6837 font-family: Font Awesome;
6838 margin: 0 0.25em 0 0;
6839 font-size: 0.875em;
6840 color: #666;
6842 .post-meta .comment-count {
6843 margin: 0 0.25em 0 0;
6845 .post-meta .read-time,
6846 .post-meta .word-count,
6847 .post-meta .lw2-link {
6848 margin: 0 0.25em 0 0.5em;
6850 .post-meta .comment-count:hover,
6851 .post-meta .lw2-link:hover {
6852 text-decoration: none;
6853 text-shadow:
6854 0 0 0.5px #000,
6855 0 0 1px #fff,
6856 0 0 8px #000;
6858 .post-meta .comment-count:hover::before,
6859 .post-meta .lw2-link:hover::before,
6860 .post-meta .read-time:hover::before {
6861 color: #ccc;
6863 .post-meta .read-time:hover::before {
6864 cursor: pointer;
6866 .post-meta .comment-count::before {
6867 content: "\F086";
6869 .post-meta .read-time::before {
6870 content: "\F017";
6872 .post-meta .read-time::after {
6873 content: " min";
6875 .post-meta .word-count::before {
6876 content: "\F15C";
6878 .post-meta .word-count::after {
6879 content: "";
6881 .post-meta .lw2-link::before {
6882 content: "\F0C1";
6883 font-weight: 900;
6884 font-size: 0.75em;
6885 position: relative;
6886 bottom: 1px;
6889 .post .post-meta .author {
6890 margin: 0 0.75em 0 0;
6892 .post-meta .author:hover,
6893 .comment-meta .author:hover {
6894 text-decoration: none;
6895 color: #090;
6897 .post .post-meta .comment-count {
6898 margin: 0 0.5em;
6900 .post .post-meta .lw2-link {
6901 margin: 0 1em 0 0.5em;
6903 .post .post-meta .voting-controls {
6904 margin: 0 0.5em 0 1em;
6907 .post-meta .post-section::before,
6908 .comment-meta .alignment-forum {
6909 color: #888;
6910 text-shadow:
6911 1px 1px 0 #ccc,
6912 0 1px 0 #ccc,
6913 0 0 5px #ccc;
6915 a.post-section:hover {
6916 text-decoration: none;
6918 a.post-section:hover::before {
6919 color: #999;
6921 .post-meta .post-section.alignment-forum::before {
6922 text-shadow:
6923 1px 1px 0 #b9bbff,
6924 0 1px 0 #b9bbff,
6925 0 0 5px #b9bbff;
6927 a.post-section.alignment-forum:hover::before {
6928 color: #9093d4;
6931 /*============*/
6932 /* LINK POSTS */
6933 /*============*/
6935 .post.link-post a.link-post-link {
6936 text-decoration: none;
6937 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6938 font-weight: 600;
6940 .post.link-post a.link-post-link:hover {
6941 color: #f60;
6943 .post.link-post a.link-post-link:hover::before {
6944 color: #4879ec;
6945 text-shadow:
6946 0.5px 0.5px 0 #fff,
6947 -0.5px -0.5px 0 #fff,
6948 0 0 2px #fff,
6949 0 0 3px #00c;
6951 .post.link-post a.link-post-link:focus {
6952 color: #f60;
6953 border-bottom: 2px dotted #f60;
6954 text-shadow:
6955 0px 0px 1px #777,
6956 0.5px 0.5px 1px #aaa,
6957 0.5px 0.5px 1px #bbb,
6958 0 0 1px #f60,
6959 0 0 2px #f60,
6960 0 0 3px #f60;
6963 /*==========*/
6964 /* COMMENTS */
6965 /*==========*/
6967 .comments::before {
6968 border-top: 1px solid #666;
6969 box-shadow:
6970 0 1.5px 1.5px -1.5px #bbb inset,
6971 0 1px 1px -1px #777 inset;
6974 #content > .comment-thread .comment-meta a.date:focus,
6975 #content > .comment-thread .comment-meta a.permalink:focus {
6976 color: #ccc;
6977 outline: 2px dotted #ccc;
6978 position: relative;
6979 background-color: #444;
6981 #content > .comment-thread .comment-meta a.date:focus {
6982 padding: 0 6px;
6983 left: -6px;
6985 #content > .comment-thread .comment-meta a.date:focus + * {
6986 margin-left: -12px;
6988 #content > .comment-thread .comment-meta a.permalink:focus {
6989 padding: 0 5px;
6990 left: -5px;
6992 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6993 margin-left: -10px;
6995 .comment-item {
6996 border: 1px solid transparent;
6997 border-left-color: #666;
6998 box-shadow:
6999 1.5px 0 1.5px -1.5px #bbb inset,
7000 1px 0 1px -1px #777 inset;
7002 @-moz-document url-prefix() {
7003 .comment-item {
7004 box-shadow:
7005 1.5px 0 1.5px -1px #bbb inset,
7006 1px 0 1px -1px #777 inset;
7010 a.comment-parent-link::after {
7011 display: none;
7013 a.comment-parent-link::before {
7014 padding: 2px 3px 0 4px;
7017 /*================================*/
7018 /* DEEP COMMENT THREAD COLLAPSING */
7019 /*================================*/
7021 .comment-item input[id^="expand"] + label::after {
7022 color: #f60;
7023 font-weight: 600;
7025 .comment-item input[id^="expand"] + label:hover::after {
7026 color: #c00;
7028 .comment-item input[id^="expand"] + label:active::after,
7029 .comment-item input[id^="expand"] + label:focus::after{
7030 color: #c00;
7032 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
7033 border-width: 1px 0 0 0;
7036 /*==============*/
7037 /* COMMENT-META */
7038 /*==============*/
7040 .comment-meta a {
7041 color: #222;
7043 .comment-meta .author {
7044 font-weight: 300;
7045 font-size: 1.125em;
7046 color: #444;
7047 font-weight: normal;
7049 .comment-item .author:not(.redacted).original-poster::after {
7050 opacity: 0.8;
7053 .comment-item .voting-controls.active-controls::after,
7054 .comment-item .voting-controls .karma-value::after,
7055 .post .voting-controls.active-controls::after,
7056 .post .voting-controls .karma-value::after,
7057 .author::before {
7058 background-color: #888;
7059 color: #ccc;
7060 border-radius: 4px;
7061 box-shadow: 0 0 0 1px #bbb inset;
7063 .comment-item .voting-controls.active-controls::after,
7064 .post .voting-controls.active-controls::after {
7065 padding: 6px;
7066 bottom: -46px;
7068 .comment-item .voting-controls .karma-value::after,
7069 .post .voting-controls .karma-value::after {
7070 padding: 2px 8px;
7071 top: -28px;
7072 min-width: 64px;
7075 /*====================*/
7076 /* ANTI-KIBITZER MODE */
7077 /*====================*/
7079 .author.redacted,
7080 .inline-author.redacted {
7081 opacity: 0.8;
7082 font-weight: 300;
7085 .karma-value.redacted {
7086 opacity: 0.6;
7089 .link-post-domain.redacted {
7090 opacity: 0.6;
7093 /*===========================*/
7094 /* COMMENT THREAD NAVIGATION */
7095 /*===========================*/
7097 div.comment-parent-link {
7098 font-weight: 400;
7100 a.comment-parent-link {
7101 font-weight: 300;
7103 a.comment-parent-link::before {
7104 color: #666;
7106 a.comment-parent-link:hover::before {
7107 color: #aaa;
7110 div.comment-child-links {
7111 font-weight: 400;
7113 div.comment-child-links a {
7114 font-weight: 300;
7116 .comment-child-link::before {
7117 color: #666;
7120 .comment-item-highlight {
7121 box-shadow:
7122 0 0 2px #e7b200,
7123 0 0 3px #e7b200,
7124 0 0 5px #e7b200,
7125 0 0 7px #e7b200,
7126 0 0 10px #e7b200;
7127 border: 1px solid #e7b200;
7129 .comment-item-highlight-faint {
7130 box-shadow:
7131 0 0 2px #f8e7b5,
7132 0 0 3px #f8e7b5,
7133 0 0 5px #f8e7b5,
7134 0 0 7px #f8e7b5,
7135 0 0 10px #f8e7b5;
7136 border: 1px solid #f8e7b5;
7139 .comment-popup {
7140 background-color: #949494;
7143 /*=======================*/
7144 /* COMMENTS COMPACT VIEW */
7145 /*=======================*/
7147 #comments-list-mode-selector button {
7148 box-shadow:
7149 0 0 0 4px #888 inset,
7150 0 0 0 5px #ccc inset;
7152 #comments-list-mode-selector button:hover,
7153 #comments-list-mode-selector button.selected {
7154 box-shadow:
7155 0 0 0 1px #888 inset,
7156 0 0 0 2px #ccc inset,
7157 0 0 0 4px #888 inset,
7158 0 0 0 5px #ccc inset;
7160 #content.compact > .comment-thread .comment-item::after {
7161 color: #ccc;
7162 background: linear-gradient(to right, transparent 0%, #888 50%, #888 100%);
7165 @media only screen and (hover: hover) {
7166 #content.compact > .comment-thread .comment-item:hover .comment,
7167 #content.compact > .comment-thread .comment-item.expanded .comment {
7168 background-color: #999;
7169 outline: 3px solid #ccc;
7171 #content.compact > .comment-thread .comment-item:hover .comment::before,
7172 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7173 background-color: #999;
7174 box-shadow:
7175 0 0 3px #999,
7176 0 0 5px #999,
7177 0 0 7px #999,
7178 0 0 10px #999,
7179 0 0 20px #999,
7180 0 0 30px #999,
7181 0 0 40px #999;
7184 @media only screen and (hover: none) {
7185 #content.compact > .comment-thread.expanded .comment-item .comment {
7186 background-color: #999;
7187 outline: 3px solid #ccc;
7189 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7190 background-color: #999;
7191 box-shadow:
7192 0 0 3px #999,
7193 0 0 5px #999,
7194 0 0 7px #999,
7195 0 0 10px #999,
7196 0 0 20px #999,
7197 0 0 30px #999,
7198 0 0 40px #999;
7202 #content.user-page.compact > h1.listing {
7203 margin-top: 0.5rem;
7205 #content.user-page.compact > h1.listing + .post-meta {
7206 margin-bottom: 0.5rem;
7209 /*===========================*/
7210 /* HIGHLIGHTING NEW COMMENTS */
7211 /*===========================*/
7213 .new-comment::before {
7214 display: none;
7216 .new-comment {
7217 border: 1px solid #e00;
7218 box-shadow:
7219 0 0 1px #f00,
7220 0 0 1px #f00 inset;
7223 /*=================================*/
7224 /* COMMENT THREAD MINIMIZE BUTTONS */
7225 /*=================================*/
7227 .comment-minimize-button {
7228 color: #777;
7230 .comment-minimize-button:hover {
7231 color: #aaa;
7232 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7234 .comment-minimize-button::after {
7235 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7236 color: #777;
7238 .comment-minimize-button.maximized::after {
7239 color: #ccc;
7242 /*====================*/
7243 /* COMMENT PERMALINKS */
7244 /*====================*/
7245 /*==================*/
7246 /* COMMENT LW LINKS */
7247 /*==================*/
7249 .comment-meta .permalink::before,
7250 .comment-meta .lw2-link::before,
7251 .individual-thread-page a.comment-parent-link:empty::before {
7252 opacity: 1.0;
7253 filter: saturate(10%) contrast(20%);
7256 /*=================================*/
7257 /* INDIVIDUAL COMMENT THREAD PAGES */
7258 /*=================================*/
7260 .individual-thread-page > h1 {
7261 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
7262 font-weight: 200;
7265 /*==============*/
7266 /* VOTE BUTTONS */
7267 /*==============*/
7269 .vote {
7270 position: relative;
7272 .vote::before {
7273 position: relative;
7274 z-index: 1;
7276 .vote::after {
7277 position: absolute;
7280 .karma .upvote::before {
7281 content: "\F077";
7282 top: 1px;
7284 .karma .downvote::before {
7285 content: "\F078";
7286 left: -2px;
7288 .karma .upvote::after {
7289 content: "\F325";
7290 left: 6px;
7291 bottom: 4px;
7293 .karma .downvote::after {
7294 content: "\F322";
7295 left: 4px;
7296 top: 4px;
7298 @-moz-document url-prefix() {
7299 .karma .upvote::after {
7300 left: 4px;
7301 bottom: 4px;
7303 .karma .downvote::after {
7304 left: 2px;
7305 top: 5px;
7309 .agreement .upvote::before {
7310 content: "\F00C";
7311 top: 1px;
7313 .agreement .downvote::before {
7314 content: "\F00D";
7315 left: -2px;
7317 .agreement .upvote::after {
7318 content: "\F560";
7319 left: 6px;
7320 bottom: 2px;
7322 .agreement .downvote::after {
7323 content: "\E59B";
7324 left: 2px;
7325 top: 1px;
7327 @-moz-document url-prefix() {
7328 .agreement .upvote::after {
7329 left: 4px;
7330 bottom: 2px;
7332 .agreement .downvote::after {
7333 left: 0;
7334 top: 1px;
7338 /**********/
7339 /* States.
7342 /* _ 1
7344 .vote {
7345 color: #666;
7348 /* _ 2
7350 .upvote:hover,
7351 .upvote:not(.none) {
7352 color: var(--GW-upvote-button-color);
7353 text-shadow:
7354 0 0 0.5px #fff,
7355 0 0 8px #0f0;
7357 .downvote:hover,
7358 .downvote:not(.none) {
7359 color: var(--GW-downvote-button-color);
7360 text-shadow:
7361 0 0 0.5px #fff,
7362 0 0 8px #f00;
7365 /* 0 _
7367 .vote::after {
7368 visibility: hidden;
7371 /* 1,2 _
7373 .vote.two-temp::after,
7374 .vote.two::after {
7375 visibility: visible;
7378 /* 1 _
7380 .vote.two-temp::after {
7381 color: #666;
7382 text-shadow: none;
7385 /* Disabled.
7387 .vote:disabled {
7388 visibility: unset;
7389 color: #808080;
7391 .vote:disabled:hover {
7392 text-shadow: none;
7395 /*===========================*/
7396 /* COMMENTING AND POSTING UI */
7397 /*===========================*/
7399 .comment-controls .cancel-comment-button {
7400 font-weight: normal;
7401 color: #f00;
7403 .comment-controls .cancel-comment-button:hover {
7404 color: #f00;
7405 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7408 .posting-controls .action-button,
7409 .posting-controls input[type='submit'] {
7410 font-weight: normal;
7412 .posting-controls .action-button:hover,
7413 .posting-controls input[type='submit']:hover {
7414 text-decoration: underline;
7415 color: #444;
7418 .comment-controls .delete-button,
7419 .comment-controls .retract-button {
7420 color: #900;
7422 .comment-controls .edit-button,
7423 .comment-controls .unretract-button {
7424 color: #070;
7426 .comment-controls .action-button:hover {
7427 color: #bbb;
7428 text-decoration: none;
7431 .edit-post-link,
7432 .edit-post-link:visited {
7433 color: #090;
7436 .posting-controls textarea {
7437 font-weight: 300;
7438 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
7439 color: #000;
7440 background-color: transparent;
7441 border-color: #999;
7442 text-shadow:
7443 0px 0px 1px #777,
7444 0.5px 0.5px 1px #aaa,
7445 0.5px 0.5px 1px #bbb;
7447 @-moz-document url-prefix() {
7448 .posting-controls textarea {
7449 font-weight: 400;
7452 .posting-controls textarea:focus {
7453 border-color: #ccc;
7456 /*= Scroll bars =*/
7458 .posting-controls textarea::-webkit-scrollbar {
7459 width: 16px;
7460 background-color: transparent;
7462 .posting-controls textarea::-webkit-scrollbar-track {
7463 border-left: 1px solid #999;
7465 .posting-controls textarea:focus::-webkit-scrollbar-track {
7466 border-left: 1px solid #999;
7468 .posting-controls textarea::-webkit-scrollbar-thumb {
7469 background-color: #999;
7470 box-shadow: 0 0 0 1px #888 inset;
7471 border-left: 1px solid #999;
7473 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7474 border-left: 1px solid #999;
7475 background-color: #ccc;
7476 box-shadow: 0 0 0 1px #888 inset;
7479 /* GUIEdit buttons */
7481 .guiedit-buttons-container {
7482 background-color: #888;
7483 box-shadow: 0 -1px 0 0 #999 inset;
7485 .textarea-container:focus-within .guiedit-buttons-container {
7486 box-shadow: 0 -1px 0 0 #ccc inset;
7489 button.guiedit {
7490 color: #444;
7491 background-color: transparent;
7492 font-family: Font Awesome, Source Sans Pro, Trebuchet MS, Helvetica, Arial, Verdana, sans-serif;
7494 button.guiedit::after {
7495 font-family: Proxima Nova;
7496 font-weight: 300;
7497 color: #444;
7498 top: 2px;
7499 height: 25px;
7501 button.guiedit:hover {
7502 color: #ccc;
7505 /* Markdown hints */
7507 #markdown-hints-checkbox + label {
7508 color: #444;
7510 #markdown-hints-checkbox + label:hover {
7511 text-decoration: underline;
7513 #markdown-hints {
7514 background-color: #888;
7515 border: 1px solid #ccc;
7518 /*================*/
7519 /* EDIT POST FORM */
7520 /*================*/
7522 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7523 border-radius: 3px;
7524 border: 1px solid #999;
7525 color: #aaa;
7527 @media only screen and (hover:hover) {
7528 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7529 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7530 text-decoration: underline;
7532 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7533 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7534 border-color: #ccc;
7537 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7538 content: "\F00C";
7540 #edit-post-form input[type='radio'] + label {
7541 color: #444;
7542 border-color: #999;
7544 #edit-post-form input[type='radio'][value='all'] + label {
7545 border-radius: 8px 0 0 8px;
7546 border-width: 1px;
7548 #edit-post-form input[type='radio'][value='drafts'] + label {
7549 border-radius: 0 8px 8px 0;
7551 #edit-post-form input[type='radio'] + label:hover,
7552 #edit-post-form input[type='radio']:focus + label,
7553 #edit-post-form input[type='radio']:checked + label {
7554 background-color: #999;
7556 #edit-post-form input[type='radio'] + label:hover,
7557 #edit-post-form input[type='radio']:focus + label {
7558 color: #000;
7560 #edit-post-form input[type='radio']:active + label,
7561 #edit-post-form input[type='radio']:checked + label {
7562 color: #fff;
7565 /*=======*/
7566 /* LINKS */
7567 /*=======*/
7570 text-decoration: none;
7571 color: #f60;
7573 a:hover {
7574 text-decoration: underline;
7577 /*=========*/
7578 /* BUTTONS */
7579 /*=========*/
7581 button,
7582 input[type='submit'] {
7583 color: #444;
7584 font-weight: normal;
7587 .button,
7588 .button:visited {
7589 color: #444;
7592 button:hover,
7593 input[type='submit']:hover,
7594 button:focus,
7595 input[type='submit']:focus {
7596 color: #aaa;
7598 input[type='submit']:hover,
7599 input[type='submit']:focus {
7600 text-decoration: underline;
7602 button:active,
7603 input[type='submit']:active {
7604 color: #ccc;
7605 transform: scale(0.9);
7607 .button:hover {
7608 color: #aaa;
7610 .button:active {
7611 transform: scale(0.9);
7613 .button:focus:not(:hover) {
7614 transform: none;
7616 @-moz-document url-prefix() {
7617 .button:active {
7618 transform: none;
7622 /*==========*/
7623 /* HEADINGS */
7624 /*==========*/
7626 .body-text h1,
7627 .body-text h2,
7628 .body-text h3,
7629 .body-text h4,
7630 .body-text h5,
7631 .body-text h6 {
7632 font-weight: 100;
7633 text-shadow:
7634 0px 0px 1px #777,
7635 0.5px 0.5px 1px #aaa,
7636 0.5px 0.5px 1px #bbb;
7638 .post-body h1 strong,
7639 .post-body h2 strong,
7640 .post-body h3 strong,
7641 .post-body h4 strong,
7642 .post-body h5 strong,
7643 .post-body h6 strong {
7644 font-weight: normal;
7646 .body-text h6 {
7647 color: #555;
7649 .body-text h1 {
7650 padding-bottom: 2px;
7651 border-bottom-color: #777;
7653 .post-body h2 {
7654 border-bottom: 1px dotted #ccc;
7657 /*========*/
7658 /* QUOTES */
7659 /*========*/
7661 blockquote {
7662 border-left: 5px solid #777;
7665 /*========*/
7666 /* IMAGES */
7667 /*========*/
7669 #content img,
7670 #content figure.image img {
7671 border: 1px solid #666;
7673 #content figure img {
7674 border: 1px solid #000;
7676 #content img[src$='.svg'],
7677 #content figure img[src$='.svg'] {
7678 border: none;
7680 #content img[style^='float'] {
7681 border: 1px solid transparent;
7684 /*========*/
7685 /* TABLES */
7686 /*========*/
7688 #content:not(.tag-index-page) .body-text table,
7689 #content:not(.tag-index-page) .body-text table th,
7690 #content:not(.tag-index-page) .body-text table td {
7691 border: 1px solid #ccc;
7694 /*======*/
7695 /* MISC */
7696 /*======*/
7698 hr {
7699 border-bottom: 1px solid #999;
7702 code,
7703 pre {
7704 font-family: 'Tired of Courier', Courier, Courier New, monospace;
7705 font-size: 0.9375em;
7708 pre {
7709 border: 1px solid #444;
7710 box-shadow:
7711 0px 0px 1px #777,
7712 1px 1px 1px #aaa inset,
7713 1px 1px 1px #bbb;
7716 input[type='text'],
7717 input[type='search'],
7718 input[type='password'] {
7719 border: 1px solid #999;
7720 color: #000;
7721 background-color: transparent;
7723 input[type='text']:focus,
7724 input[type='search']:focus,
7725 input[type='password']:focus {
7726 border: 1px solid #ccc;
7729 select {
7730 color: #000;
7733 .frac {
7734 padding-left: 2px;
7735 font-feature-settings: 'lnum';
7736 font-size: 0.95em;
7738 .frac sup {
7739 position: relative;
7740 left: -1px;
7742 .frac sub {
7743 position: relative;
7744 left: -0.5px;
7747 .body-text *::selection,
7748 textarea::selection,
7749 input::selection {
7750 background-color: #d8d8d8;
7753 /*============*/
7754 /* ABOUT PAGE */
7755 /*============*/
7757 .about-page mark {
7758 background-color: #e6e6e6;
7759 text-decoration: none;
7760 box-shadow:
7761 0 -1px 0 0 #000 inset,
7762 0 -3px 1px -2px #000 inset;
7763 padding: 0 1px;
7766 #content.about-page .accesskey-table {
7767 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7768 border-color: #ddd;
7771 #content.about-page img {
7772 border: 1px solid #000;
7775 /*========================*/
7776 /* QUALIFIED HYPERLINKING */
7777 /*========================*/
7779 #aux-about-link a {
7780 color: #444;
7782 #aux-about-link a:hover {
7783 opacity: 1.0;
7784 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7787 .qualified-linking label:hover {
7788 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7791 .qualified-linking-toolbar {
7792 border: 1px solid #000;
7793 background-color: #777;
7795 .qualified-linking-toolbar a {
7796 border: 1px solid #888;
7797 border-radius: 4px;
7798 color: #444;
7800 .qualified-linking-toolbar a:hover {
7801 border: 1px solid #999;
7802 text-decoration: none;
7803 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7805 .qualified-linking label::after {
7806 background-color: #888;
7807 opacity: 0.8;
7810 /*======*/
7811 /* MATH */
7812 /*======*/
7814 .mathjax-block-container::-webkit-scrollbar {
7815 height: 12px;
7816 background-color: #f6f6ff;
7817 border-radius: 6px;
7818 border: 1px solid #ddf;
7820 .mathjax-block-container::-webkit-scrollbar-thumb {
7821 background-color: #dde;
7822 border-radius: 6px;
7823 border: 1px solid #cce;
7825 .mathjax-inline-container::-webkit-scrollbar {
7826 height: 8px;
7827 background-color: #f6f6ff;
7828 border-radius: 4px;
7829 border: 1px solid #ddf;
7831 .mathjax-inline-container::-webkit-scrollbar-thumb {
7832 background-color: #dde;
7833 border-radius: 4px;
7834 border: 1px solid #cce;
7837 /*=================*/
7838 /* ALIGNMENT FORUM */
7839 /*=================*/
7841 #content.alignment-forum-index-page::before {
7842 background-color: #878a9f;
7844 #content.alignment-forum-index-page::after {
7845 font-family: "Concourse SmallCaps";
7846 font-weight: 600;
7847 background-color: #222d4b;
7848 color: transparent;
7849 -webkit-background-clip: text;
7850 text-shadow:
7851 rgba(136,136,136,0.5) 0px 3px 3px;
7853 @media only screen and (hover: hover) {
7854 #content.alignment-forum-index-page h1.listing a:hover,
7855 #content.alignment-forum-index-page h1.listing a:focus {
7856 background-color: rgba(135,138,159,0.85);
7860 /*====================*/
7861 /* FOR NARROW SCREENS */
7862 /*====================*/
7864 @media only screen and (max-width: 1440px) {
7865 #hns-date-picker {
7866 background-color: #888;
7867 bottom: 61px;
7868 opacity: 1.0;
7869 right: -77px;
7871 #hns-date-picker::before {
7872 display: none;
7875 @media only screen and (max-width: 1160px) {
7876 #hns-date-picker {
7877 bottom: 204px;
7878 right: -30px;
7880 #theme-tweaker-toggle {
7881 left: -19px;
7883 #quick-nav-ui,
7884 #new-comment-nav-ui,
7885 #new-comment-nav-ui + #hns-date-picker {
7886 opacity: 1.0;
7889 @media only screen and (max-width: 1080px) {
7890 #text-size-adjustment-ui button {
7891 border: 1px solid #999;
7892 padding: 0 0 0 1px;
7893 border-radius: 50%;
7894 box-shadow:
7895 0 0 6px #999 inset,
7896 0 0 0 1px transparent;
7898 #hns-date-picker {
7899 right: -18px;
7902 @media only screen and (max-width: 1040px) {
7903 #hns-date-picker {
7904 right: -13px;
7907 @media only screen and (max-width: 1020px) {
7908 #hns-date-picker {
7909 right: 15px;
7913 /*========*/
7914 /* MOBILE */
7915 /*========*/
7917 /*******************************************************/
7918 @media not screen and (hover:hover) and (pointer:fine) {
7919 /*******************************************************/
7920 #ui-elements-container > div[id$='-ui-toggle'] button,
7921 #theme-selector .theme-selector-close-button {
7922 color: #444;
7923 text-shadow:
7924 0 0 1px #999,
7925 0 0 3px #999,
7926 0 0 5px #999,
7927 0 0 10px #999,
7928 0 0 20px #999,
7929 0 0 30px #999;
7932 #theme-selector {
7933 background-color: #888;
7934 box-shadow:
7935 0 0 0 1px #444,
7936 0 0 1px 3px #999,
7937 0 0 3px 3px #999,
7938 0 0 5px 3px #999,
7939 0 0 10px 3px #999,
7940 0 0 20px 3px #999;
7941 border-radius: 12px;
7943 #theme-selector::before {
7944 color: #222;
7945 font-weight: 300;
7946 text-shadow:
7947 0px 0px 1px #777,
7948 0.5px 0.5px 1px #aaa,
7949 0.5px 0.5px 1px #bbb;
7951 #theme-selector button {
7952 border-radius: 10px;
7954 #theme-selector button::after {
7955 color: #444;
7956 max-width: calc(100% - 3.5em);
7957 overflow: hidden;
7958 text-overflow: ellipsis;
7960 #theme-selector button.selected::after {
7961 color: #000;
7962 text-shadow:
7963 0 -1px 0 #fff,
7964 0 0.5px 0.5px #000;
7967 #quick-nav-ui {
7968 background-color: #999;
7970 #quick-nav-ui a {
7971 background-color: #888;
7972 box-shadow: 0 0 0 1px #444;
7973 color: #444;
7975 #quick-nav-ui,
7976 #new-comment-nav-ui,
7977 #hns-date-picker {
7978 box-shadow:
7979 0 0 1px 3px #999,
7980 0 0 3px 3px #999,
7981 0 0 5px 3px #999,
7982 0 0 10px 3px #999,
7983 0 0 20px 3px #999;
7985 #quick-nav-ui a::after,
7986 #new-comment-nav-ui::before {
7987 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7988 font-weight: bold;
7989 box-shadow:
7990 0 0 1px 0 #999,
7991 0 0 3px 0 #999,
7992 0 0 5px 0 #999;
7993 background-color: #999;
7994 border-radius: 4px;
7996 #quick-nav-ui,
7997 #new-comment-nav-ui {
7998 border-radius: 8px;
8000 #new-comment-nav-ui {
8001 background-color: #888;
8002 border: 1px solid #444;
8004 #new-comment-nav-ui::before {
8005 color: #444;
8006 font-weight: bold;
8008 #new-comment-nav-ui .new-comments-count,
8009 #new-comment-nav-ui .new-comments-count::after {
8010 color: #444;
8012 #new-comment-nav-ui .new-comment-sequential-nav-button {
8013 box-shadow: 0 0 0 1px #444;
8014 color: #444;
8016 #new-comment-nav-ui .new-comments-count {
8017 background-color: inherit;
8018 box-shadow: 0 -1px 0 0 #444;
8020 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
8021 color: #999;
8023 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
8024 border-radius: 7px 0 0 7px;
8026 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
8027 border-radius: 0 7px 7px 0;
8029 #new-comment-nav-ui button::after {
8030 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
8033 #hns-date-picker.engaged {
8034 bottom: 124px;
8035 right: 61px;
8036 border: 1px solid #444;
8038 #hns-date-picker span,
8039 #hns-date-picker input {
8040 color: #444;
8043 /*****************************************/
8044 @media only screen and (max-width: 900px) {
8045 /*****************************************/
8046 h1.listing + .post-meta .post-section::before {
8047 position: unset;
8050 .nav-bar-top:not(#primary-bar) .nav-inner {
8051 font-size: 1em;
8053 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
8054 padding: 6px 10px;
8057 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8058 background-color: #ccc;
8061 .comment-item .comment-item {
8062 margin: 0.75em 0 4px 6px;
8064 .comment-item .comment-item + .comment-item {
8065 margin: 1.5em 0 4px 6px;
8068 .comment-controls .cancel-comment-button::before {
8069 text-shadow:
8070 0 0 1px #fff,
8071 0 0 3px #fff;
8074 .sublevel-nav:not(.sort) .sublevel-item,
8075 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8076 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8077 border-radius: 8px;
8078 border-width: 1px;
8079 margin: 2px;
8081 /*****************************************/
8082 } @media only screen and (max-width: 720px) {
8083 /*****************************************/
8084 /*******************************************/
8085 } @media only screen and (max-width: 520px) {
8086 /*******************************************/
8087 h1.listing {
8088 font-size: 1.25rem;
8089 margin: 18px 6px 4px 6px;
8090 max-width: calc(100% - 12px);
8092 h1.listing + .post-meta {
8093 margin: 4px 6px;
8095 h1.listing + .post-meta > * {
8096 line-height: 1.5;
8098 h1.listing .link-post-link {
8099 top: 3px;
8102 #content.compact > .comment-thread .comment-item {
8103 max-height: 105px;
8106 .textarea-container:focus-within textarea {
8107 background-color: #888;
8109 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8110 border: 1px solid transparent;
8111 padding: 6px;
8113 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8114 box-shadow:
8115 0 0 0 1px #ccc,
8116 0 0 0 2px #888,
8117 0 0 0 3px #ccc;
8118 color: #ccc;
8119 font-weight: 600;
8121 .textarea-container:focus-within .guiedit-buttons-container {
8122 background-color: #888;
8123 border-top: 1px solid #ddf;
8125 #content.conversation-page .textarea-container:focus-within::after {
8126 background-color: #888;
8128 .textarea-container:focus-within button.guiedit {
8129 border: 1px solid transparent;
8131 #markdown-hints::after {
8132 color: #0f0;
8135 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8136 top: 2px;
8138 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8139 top: 1px;
8144 /*************/
8145 /* ACCORDIUS */
8146 /*************/
8148 /*======*/
8149 /* TAGS */
8150 /*======*/
8152 #tags {
8153 order: 12;
8154 display: flex;
8155 flex-basis: 100%;
8156 justify-content: center;
8157 margin: 0;
8158 flex-flow: row wrap;
8159 align-items: flex-start;
8162 /*===================*/
8163 /* ULTRAMODERN THEME */
8164 /*===================*/
8166 /*++++++*/
8167 /* TAGS */
8168 /*++++++*/
8170 #tags {
8171 padding: 0.5em;
8172 align-items: center;
8174 #tags::before {
8175 content: "\F02C";
8176 font-family: Font Awesome;
8177 font-weight: 400;
8178 font-size: 0.875em;
8179 margin: 0 0.5em 0 0;
8180 opacity: 0.6;
8182 #tags a {
8183 margin: 0 0.375em 0 0;
8185 #tags a:not(:last-of-type)::after {
8186 content: ","