Split contents-to-html into top-level function.
[lw2-viewer.git] / www / css / style-zero.linux.css
blobc8806027f9368f1b7ddc0f2f76de257f6d8af9da
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;
556 /******************/
557 /* WIDTH SELECTOR */
558 /******************/
560 #width-selector {
561 position: absolute;
562 top: 4px;
563 right: -78px;
565 #width-selector button {
566 width: 22px;
567 height: 22px;
568 padding: 6px;
569 margin: 1px;
570 overflow: hidden;
571 background-repeat: no-repeat;
572 background-size: 100%;
573 background-origin: content-box;
575 #width-selector button,
576 #width-selector button:active,
577 #width-selector button:focus {
578 text-shadow: none;
579 color: transparent;
581 #width-selector button:disabled {
582 cursor: auto;
584 #width-selector button.select-width-normal {
585 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
587 #width-selector button.select-width-wide {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
590 #width-selector button.select-width-fluid {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
594 /*=----------------=*/
595 /*= Hover tooltips =*/
596 /*=----------------=*/
598 #width-selector button::after {
599 content: attr(data-name);
600 position: absolute;
601 display: block;
602 left: 0;
603 width: 100%;
604 text-align: center;
605 top: 56px;
606 visibility: hidden;
608 #width-selector button.selected::after {
609 content: attr(data-name) " (selected)";
611 #width-selector button:hover:not(:active)::after {
612 visibility: visible;
615 head.content-width-normal + body > * {
616 max-width: 900px;
618 head.content-width-wide + body > * {
619 max-width: 1150px;
621 head.content-width-fluid + body > * {
622 max-width: calc(100% - 300px);
625 /******************/
626 /* THEME SELECTOR */
627 /******************/
629 #theme-selector {
630 position: absolute;
631 top: 3px;
632 left: -41px;
633 opacity: 0.4;
634 display: table;
635 max-width: 40px;
637 #theme-selector:hover {
638 opacity: 1.0;
641 /*=----------------------=*/
642 /*= Theme select buttons =*/
643 /*=----------------------=*/
645 .theme-selector button {
646 display: table-cell;
647 width: 26px;
648 height: 26px;
649 padding: 5px;
650 margin: 1px 7px 0 7px;
651 color: transparent;
652 background-size: 16px 16px;
653 background-origin: content-box;
655 .theme-selector button,
656 .theme-selector button:hover,
657 .theme-selector button:active,
658 .theme-selector button:focus {
659 text-shadow: none;
660 color: transparent;
662 .theme-selector button:disabled {
663 cursor: auto;
666 /*=----------------------------=*/
667 /*= Pre-rendered button images =*/
668 /*=----------------------------=*/
669 /* (Each is just a capital letter A through whatever) */
671 .theme-selector button:nth-of-type(1) {
672 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
674 .theme-selector button:nth-of-type(2) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
677 .theme-selector button:nth-of-type(3) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
680 .theme-selector button:nth-of-type(4) {
681 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
683 .theme-selector button:nth-of-type(5) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
686 .theme-selector button:nth-of-type(6) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
689 .theme-selector button:nth-of-type(7) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
692 .theme-selector button:nth-of-type(8) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
695 .theme-selector button:nth-of-type(9) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
699 /*=------------------------------=*/
700 /*= Theme select button tooltips =*/
701 /*=------------------------------=*/
702 /* (with the name & description of the theme that each button selects) */
704 #theme-selector button {
705 position: relative;
706 z-index: 1;
708 #theme-selector button::before {
709 content: attr(data-theme-name);
710 position: absolute;
711 top: 0;
712 right: 100%;
713 padding: 5px 6px 6px 6px;
714 line-height: 1;
715 width: 6em;
716 text-align: right;
717 z-index: 1;
718 visibility: hidden;
720 #theme-selector:hover button::before {
721 visibility: visible;
723 #theme-selector:hover ~ #theme-tweaker-toggle,
724 #theme-selector:active ~ #theme-tweaker-toggle {
725 z-index: -1;
728 /************************/
729 /* THEME TWEAKER TOGGLE */
730 /************************/
732 #theme-tweaker-toggle {
733 position: absolute;
734 top: 7px;
735 left: -75px;
737 #theme-tweaker-toggle button {
738 font-family: "Font Awesome", "Font Awesome 5 Free";
739 font-weight: 900;
740 font-size: 1.25rem;
741 opacity: 0.4;
742 z-index: 1;
744 #theme-tweaker-toggle button:hover {
745 opacity: 1.0;
748 /*******************/
749 /* QUICKNAV WIDGET */
750 /*******************/
752 #quick-nav-ui {
753 position: absolute;
754 right: -67px;
755 bottom: 20px;
757 #quick-nav-ui a {
758 font-family: "Font Awesome", "Font Awesome 5 Free";
759 font-weight: 900;
760 font-size: 1.5rem;
761 line-height: 1.7;
762 text-align: center;
763 display: block;
764 width: 40px;
765 height: 40px;
766 margin: 10px 0 0 0;
768 #quick-nav-ui a[href='#comments'].no-comments {
769 pointer-events: none;
771 #quick-nav-ui a {
772 visibility: hidden;
774 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
775 visibility: visible;
778 /************************/
779 /* NEW COMMENT QUICKNAV */
780 /************************/
782 #new-comment-nav-ui {
783 position: absolute;
784 right: -112px;
785 bottom: 42px;
787 #new-comment-nav-ui > * {
788 display: block;
789 position: relative;
791 #new-comment-nav-ui.no-comments {
792 display: none;
795 /*=--------------------=*/
796 /*= New comments count =*/
797 /*=--------------------=*/
799 #new-comment-nav-ui .new-comments-count {
800 width: 2em;
801 font-size: 1.25rem;
802 line-height: 1.1;
803 text-align: center;
804 left: 1px;
805 cursor: pointer;
807 #new-comment-nav-ui .new-comments-count::selection {
808 background-color: transparent;
810 #new-comment-nav-ui .new-comments-count::after {
811 content: "NEW";
812 display: block;
813 font-size: 0.625rem;
816 /*=-----------------------------------=*/
817 /*= Next/previous new comment buttons =*/
818 /*=-----------------------------------=*/
820 #new-comment-nav-ui .new-comment-sequential-nav-button {
821 font-size: 1.75rem;
822 font-family: "Font Awesome", "Font Awesome 5 Free";
823 font-weight: 900;
824 width: 1.5em;
825 z-index: 5001;
827 #new-comment-nav-ui .new-comment-previous {
828 top: 8px;
830 #new-comment-nav-ui .new-comment-next {
831 bottom: 6px;
833 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
834 cursor: auto;
835 pointer-events: none;
838 /*******************/
839 /* HNS DATE PICKER */
840 /*******************/
842 #hns-date-picker {
843 position: absolute;
844 bottom: 72px;
845 right: -253px;
846 opacity: 0.6;
848 #hns-date-picker:hover,
849 #hns-date-picker:focus-within {
850 opacity: 1.0;
852 #hns-date-picker.no-comments {
853 display: none;
856 /*=---------------=*/
857 /*= "Since" label =*/
858 /*=---------------=*/
860 #hns-date-picker span {
861 display: block;
862 font-size: 0.75rem;
863 text-transform: uppercase;
866 /*=--------------------=*/
867 /*= "Since" text field =*/
868 /*=--------------------=*/
870 #hns-date-picker input {
871 margin-top: 1px;
872 padding: 1px 3px;
873 width: 140px;
874 text-align: center;
875 box-shadow: 0 0 0 1px transparent;
878 /************************/
879 /* ANTI-KIBITZER TOGGLE */
880 /************************/
882 #anti-kibitzer-toggle {
883 position: absolute;
884 right: -67px;
885 bottom: 225px;
887 #anti-kibitzer-toggle button {
888 display: block;
889 width: 40px;
890 height: 54px;
891 padding: 0;
893 #anti-kibitzer-toggle button::before,
894 #anti-kibitzer-toggle button::after {
895 font-family: "Font Awesome", "Font Awesome 5 Free";
897 #anti-kibitzer-toggle button::before {
898 content: "\F06E";
899 display: block;
900 font-size: 1.75em;
901 font-weight: 400;
903 #anti-kibitzer-toggle button::after {
904 content: "\F007\2004\F164";
905 font-size: 0.875em;
906 font-weight: 900;
908 #anti-kibitzer-toggle.engaged button::before {
909 content: "\F070";
912 /************************/
913 /* TEXT SIZE ADJUSTMENT */
914 /************************/
916 #text-size-adjustment-ui {
917 position: absolute;
918 top: 30px;
919 right: -78px;
920 opacity: 0.4;
922 #text-size-adjustment-ui:hover {
923 opacity: 1.0;
926 /* This doesn't work in Mozilla browsers, so hide it */
927 @-moz-document url-prefix() {
928 #text-size-adjustment-ui {
929 display: none;
933 /*=---------=*/
934 /*= Buttons =*/
935 /*=---------=*/
937 #text-size-adjustment-ui button {
938 font-weight: 900;
939 font-family: "Font Awesome", "Font Awesome 5 Free";
940 font-size: 0.75rem;
941 width: 24px;
942 height: 24px;
943 padding: 0;
945 #text-size-adjustment-ui button.default {
946 font-family: inherit;
947 font-size: 1.125rem;
948 position: relative;
949 top: 1px;
951 #text-size-adjustment-ui button:disabled {
952 opacity: 0.5;
954 #text-size-adjustment-ui button:disabled:hover {
955 cursor: default;
958 /*=----------------=*/
959 /*= Hover tooltips =*/
960 /*=----------------=*/
962 #text-size-adjustment-ui::after {
963 content: "Adjust text size";
964 position: absolute;
965 display: block;
966 left: 0;
967 width: 100%;
968 text-align: center;
969 top: 32px;
970 visibility: hidden;
971 font-size: 0.9em;
973 #text-size-adjustment-ui:hover::after {
974 visibility: visible;
977 /*******************************/
978 /* COMMENTS VIEW MODE SELECTOR */
979 /*******************************/
981 #comments-view-mode-selector {
982 position: absolute;
983 bottom: 30px;
984 left: -40px;
985 opacity: 0.6;
987 #comments-view-mode-selector:hover {
988 opacity: 1.0;
991 /*=---------=*/
992 /*= Buttons =*/
993 /*=---------=*/
995 #comments-view-mode-selector a {
996 display: block;
997 font-family: "Font Awesome", "Font Awesome 5 Free";
998 font-size: 1.25rem;
999 text-align: center;
1000 opacity: 0.4;
1001 padding: 0.25em;
1002 z-index: 1;
1004 #comments-view-mode-selector a.threaded {
1005 transform: scaleY(-1);
1006 font-weight: 900;
1008 #comments-view-mode-selector a.chrono {
1009 font-weight: normal;
1011 #comments-view-mode-selector a.selected,
1012 #comments-view-mode-selector a:hover {
1013 opacity: 1.0;
1014 text-decoration: none;
1016 #comments-view-mode-selector a.selected {
1017 cursor: default;
1020 /*****************/
1021 /* KEYBOARD HELP */
1022 /*****************/
1024 #keyboard-help-overlay {
1025 width: 100vw;
1026 height: 100vh;
1027 background-color: rgba(0,0,0,0.7);
1028 position: fixed;
1029 left: 0;
1030 top: 0;
1031 z-index: 5001;
1033 display: flex;
1034 justify-content: center;
1035 align-items: center;
1036 padding: 20px 30px 30px 20px;
1038 visibility: hidden;
1041 #keyboard-help-overlay .keyboard-help-container {
1042 background-color: #fff;
1043 filter: drop-shadow(4px 4px 2px #000);
1044 flex: 1 1 auto;
1045 max-width: 1500px;
1046 max-height: 100%;
1047 overflow-y: auto;
1048 position: relative;
1050 #keyboard-help-overlay .keyboard-help-container h1 {
1051 text-align: center;
1052 border-bottom: 1px solid #ddd;
1053 margin: 0;
1054 padding: 10px 20px;
1056 #keyboard-help-overlay .keyboard-help-container .note {
1057 margin: 0.5em auto;
1058 padding: 0 1em;
1059 width: fit-content;
1061 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1062 column-width: 21em;
1063 column-count: auto;
1064 column-gap: 1.5em;
1065 border-top: 1px solid #ddd;
1066 padding: 15px 20px;
1068 #keyboard-help-overlay .keyboard-help-container ul {
1069 list-style-type: none;
1070 margin: 0;
1071 padding: 0;
1072 break-inside: avoid;
1073 white-space: nowrap;
1075 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1076 margin: 20px 0 0 0;
1078 #keyboard-help-overlay .keyboard-help-container ul li.section {
1079 font-weight: bold;
1080 font-size: 1.125rem;
1081 break-after: avoid;
1083 #keyboard-help-overlay .keyboard-help-container .keys {
1084 margin: 0 0.5em 0 0;
1085 min-width: 4.5em;
1086 display: inline-block;
1088 #keyboard-help-overlay .keyboard-help-container .keys code {
1089 margin: 0 6px 0 0;
1091 #keyboard-help-overlay .keyboard-help-container code {
1092 display: inline-block;
1093 background-color: #eee;
1094 border: 1px solid #ccc;
1095 padding: 3px 8px 4px 8px;
1096 margin: 0 1px;
1098 #keyboard-help-overlay .keyboard-help-container code.ak {
1099 background-color: #ffeb83;
1100 border-color: #d4a500;
1102 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1103 content: "ak+";
1104 opacity: 0.3;
1107 #nav-item-about button.open-keyboard-help {
1108 display: none;
1110 @media only screen and (hover:hover) and (pointer:fine) {
1111 #nav-item-about {
1112 position: relative;
1113 padding-right: 0.25em;
1115 #nav-item-about button.open-keyboard-help {
1116 font-family: "Font Awesome", "Font Awesome 5 Free";
1117 font-weight: 900;
1118 position: absolute;
1119 top: 0;
1120 right: 0;
1121 height: 100%;
1122 padding: 8px;
1123 display: initial;
1124 line-height: 1;
1125 background-color: transparent;
1129 #keyboard-help-overlay button.close-keyboard-help {
1130 position: absolute;
1131 right: 0;
1132 top: 0;
1133 font-family: "Font Awesome", "Font Awesome 5 Free";
1134 font-size: 1.5rem;
1135 padding: 10px 12px;
1138 /************/
1139 /* ARCHIVES */
1140 /************/
1142 .archive-nav {
1143 margin: 1.25em 0.5em 0 0.5em;
1144 padding: 0.25em;
1146 .archive-nav > * {
1147 display: flex;
1149 .archive-nav *[class^='archive-nav-item'] {
1150 line-height: 1;
1151 flex: 1 1 5%;
1152 text-align: center;
1153 padding: 6px 4px 4px 4px;
1154 max-width: 8%;
1156 @-moz-document url-prefix() {
1157 .archive-nav *[class^='archive-nav-item'] {
1158 padding: 5px 4px;
1161 .archive-nav-days .archive-nav-item-day {
1162 font-size: 0.8em;
1163 padding: 7px 0 5px 0;
1164 max-width: 4%;
1166 .archive-nav-days .archive-nav-item-day:first-child {
1167 flex-basis: 10%;
1170 /************/
1171 /* ARCHIVES */
1172 /************/
1174 .archive-nav {
1175 margin: 1.25em 0.5em 0 0.5em;
1176 padding: 0.25em;
1178 .archive-nav > * {
1179 display: flex;
1181 .archive-nav *[class^='archive-nav-item'] {
1182 line-height: 1;
1183 flex: 1 1 5%;
1184 text-align: center;
1185 padding: 6px 4px 4px 4px;
1186 max-width: 8%;
1188 @-moz-document url-prefix() {
1189 .archive-nav *[class^='archive-nav-item'] {
1190 padding: 5px 4px;
1193 .archive-nav-days .archive-nav-item-day {
1194 font-size: 0.8em;
1195 padding: 7px 0 5px 0;
1196 max-width: 4%;
1198 .archive-nav-days .archive-nav-item-day:first-child {
1199 flex-basis: 10%;
1202 /************/
1203 /* LISTINGS */
1204 /************/
1206 h1.listing {
1207 font-size: 1.875rem;
1208 line-height: 1.15;
1209 max-height: 1.15em;
1210 position: relative;
1213 h1.listing a {
1214 position: relative;
1217 /* Links to link-posts (not the link-post links themselves; that's below) */
1218 h1.listing .link-post-link + a {
1219 margin-left: 0.25em;
1222 h1.listing .link-post-link {
1223 font-size: 0.8em;
1224 display: inline;
1225 vertical-align: top;
1226 position: relative;
1227 top: 4px;
1230 /*=----------------------=*/
1231 /*= Listing hover reveal =*/
1232 /*=----------------------=*/
1233 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1235 @media only screen and (min-width: 1160px) {
1236 h1.listing a {
1237 max-width: 100%;
1238 display: inline-block;
1239 white-space: nowrap;
1240 text-overflow: ellipsis;
1241 overflow: hidden;
1242 border-bottom: 1px solid transparent;
1243 -webkit-hyphens: auto;
1244 -moz-hyphens: auto;
1245 -ms-hyphens: auto;
1246 hyphens: auto;
1247 z-index: 1;
1248 padding: 0 0 1px 1px;
1250 h1.listing .link-post-link + a {
1251 max-width: calc(100% - 40px);
1253 h1.listing a:hover,
1254 h1.listing a:focus {
1255 text-decoration: dotted underline;
1256 white-space: initial;
1257 overflow: visible;
1258 z-index: 2;
1260 h1.listing:focus-within::before {
1261 content: "\F105";
1262 font-family: "Font Awesome", "Font Awesome 5 Free";
1263 display: block;
1264 position: absolute;
1265 left: -0.75em;
1268 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1269 mouse movements) */
1271 h1.listing a:not(.edit-post-link):hover::before {
1272 content: "";
1273 position: absolute;
1274 top: -10px;
1275 right: -10px;
1276 bottom: -10px;
1277 left: -10px;
1278 z-index: -1;
1280 h1.listing .link-post-link:hover {
1281 text-decoration: none;
1285 /*=-----------------------=*/
1286 /*= In-listing edit links =*/
1287 /*=-----------------------=*/
1289 h1.listing .edit-post-link {
1290 position: absolute;
1291 margin: 0;
1294 /*=---------------------------------=*/
1295 /*= Error messages on listing pages =*/
1296 /*=---------------------------------=*/
1298 .listing-message {
1299 width: 100%;
1300 text-align: center;
1301 padding: 1.25em 0 1.25em 0;
1302 font-size: 1.375em;
1305 /*********************/
1306 /* LISTING POST-META */
1307 /*********************/
1309 h1.listing + .post-meta {
1310 position: relative;
1311 justify-content: flex-start;
1312 margin: 0 20px 0 21px;
1315 h1.listing + .post-meta > * {
1316 margin: 0 1em 0 0;
1319 h1.listing + .post-meta .post-section {
1320 width: 0;
1321 margin: 0;
1322 overflow: hidden;
1324 h1.listing + .post-meta .post-section::before {
1325 position: absolute;
1326 left: -36px;
1329 h1.listing + .post-meta .read-time {
1330 cursor: default;
1333 /********************/
1334 /* SEQUENCES & TAGS */
1335 /********************/
1337 .sequence-text, .tag-description {
1338 font-size: 1.2rem;
1339 padding: 0 22px;
1342 #content.tag-index-page .tag-description {
1343 margin: 1em 0 0;
1346 section {
1347 max-width: 100%;
1348 margin-top: 2em;
1349 margin-bottom: 4em;
1352 h1.sequence-chapter {
1353 font-size: 2.3rem;
1356 article {
1357 max-width: 100%;
1360 .post-meta + .comments {
1361 margin-top: 3em;
1364 .tag-list {
1365 column-count: auto;
1366 column-width: 15em;
1367 margin-top: 0;
1368 border-bottom: 1px solid #999;
1369 padding-bottom: 1em;
1370 margin-bottom: 0;
1373 /**************/
1374 /* USER PAGES */
1375 /**************/
1377 /*=---------------------=*/
1378 /*= User's display name =*/
1379 /*=---------------------=*/
1381 #content.user-page h1.page-main-heading {
1382 margin: 0.25em 0 0 0;
1383 line-height: 1.1;
1384 grid-column: 1 / span 2;
1385 order: -2;
1388 #content.user-page h1.page-main-heading .user-full-name {
1389 font-size: 1rem;
1390 font-weight: normal;
1391 padding-left: 0.5em;
1394 /*=--------------------=*/
1395 /*= User's karma total =*/
1396 /*=--------------------=*/
1398 #content.user-page .user-stats {
1399 grid-column: 3;
1400 order: -2;
1401 text-align: right;
1402 align-self: end;
1405 #content.user-page .user-stats .karma-type {
1406 white-space: nowrap;
1409 /*=----------------------=*/
1410 /*= Expanded vs. compact =*/
1411 /*=----------------------=*/
1413 #content.user-page #comments-list-mode-selector {
1414 grid-row: span 2;
1416 #content.user-page #comments-list-mode-selector button {
1417 display: block;
1420 /*=----------------------------------------------------=*/
1421 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1422 /*=----------------------------------------------------=*/
1424 #content.user-page .sublevel-nav {
1425 margin-bottom: 0.5em;
1428 /*=--------------=*/
1429 /*= User's posts =*/
1430 /*=--------------=*/
1432 #content.user-page h1.listing {
1433 margin: 0.5em 0 0 0;
1436 #content.user-page .user-bio :first-child {
1437 margin-top: 0.5em;
1440 /*****************/
1441 /* CONVERSATIONS */
1442 /*****************/
1444 /*=----------------------=*/
1445 /*= List of participants =*/
1446 /*=----------------------=*/
1448 #content.conversation-page .conversation-participants {
1449 grid-column: 2 / span 2;
1450 text-align: right;
1451 margin: 0.5em 0 0 0;
1453 .post-meta > .conversation-participants {
1454 white-space: normal;
1456 .conversation-participants ul,
1457 .conversation-participants li {
1458 list-style-type: none;
1459 display: inline-block;
1460 margin: 0;
1461 padding: 0;
1463 .conversation-participants li {
1464 margin-left: 0.375em;
1466 .conversation-participants li:not(:last-of-type)::after {
1467 content: ",";
1470 /*=-------------------------=*/
1471 /*= Posting controls (form) =*/
1472 /*=-------------------------=*/
1474 #content.conversation-page .posting-controls {
1475 padding: 0 0 1em 0;
1477 #content.conversation-page .post-meta-fields {
1478 overflow: auto;
1479 display: flex;
1480 flex-flow: row wrap;
1482 .posting-controls.standalone textarea {
1483 margin-top: 0.375em;
1485 .posting-controls.standalone form {
1486 padding: 0 1em;
1488 #content.conversation-page .posting-controls.standalone form {
1489 padding: 0 1em 3em 1em;
1491 .posting-controls.standalone input[type='text'],
1492 .posting-controls.standalone label {
1493 margin: 0.25em 0;
1495 .posting-controls.standalone label {
1496 width: 4em;
1497 text-align: right;
1498 padding: 2px 6px;
1499 border: 1px solid transparent;
1501 .posting-controls.standalone input[type='text'] {
1502 width: calc(100% - 4em);
1503 padding: 0.25em;
1505 .posting-controls.standalone input[type='submit'] {
1506 float: right;
1508 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1509 white-space: nowrap;
1511 .posting-controls.standalone #markdown-hints {
1512 top: calc(100% + 2em);
1515 /*=--------------------=*/
1516 /*= Conversation title =*/
1517 /*=--------------------=*/
1519 #content.conversation-page h1.page-main-heading {
1520 text-align: center;
1521 margin: 0.5em 0;
1522 line-height: 1.15;
1525 /*=----------=*/
1526 /*= Messages =*/
1527 /*=----------=*/
1529 #content.conversation-page > ul.comment-thread:last-of-type {
1530 margin-bottom: 2em;
1533 /******************/
1534 /* SEARCH RESULTS */
1535 /******************/
1537 #content.search-results-page h1.listing,
1538 #content.sequence-page h1.listing,
1539 #content.post-page h1.listing {
1540 font-size: 1.625em;
1543 /**************/
1544 /* LOGIN PAGE */
1545 /**************/
1547 .login-container {
1548 margin: 2em 0;
1549 padding: 1em;
1550 display: flex;
1551 flex-flow: row wrap;
1554 .login-container form {
1555 flex-basis: 50%;
1556 display: grid;
1557 grid-row-gap: 0.5em;
1558 align-content: start;
1560 .login-container form label {
1561 text-align: right;
1562 padding: 0.25em 0.5em;
1563 white-space: nowrap;
1564 grid-column: 1;
1566 .login-container form input {
1567 grid-column: 2;
1568 padding: 0.25em;
1570 .login-container form input[type='submit'],
1571 .login-container form a {
1572 grid-column: 2;
1573 justify-self: center;
1575 .login-container form input[type='submit'] {
1576 width: 10em;
1577 padding: 0.35em;
1578 line-height: 1;
1579 margin: 0.5em 0 0 0;
1581 .login-container form h1 {
1582 text-align: center;
1583 margin: 0;
1584 grid-column: 2;
1587 /* “Log in” form */
1589 #login-form {
1590 grid-template-columns: 5.5em 1fr;
1591 padding: 0.5em 2em 0.5em 0;
1594 /* “Create account” form */
1596 #signup-form {
1597 font-size: 0.9em;
1598 grid-template-columns: 8.5em 1fr;
1599 padding: 0.5em 1em 1em 1em;
1601 #signup-form h1 {
1602 font-size: 1.7em;
1604 #signup-form input[type='submit'] {
1605 padding: 0.4em 0.5em 0.5em 0.5em;
1608 /* Log in tip */
1610 .login-container .login-tip {
1611 padding: 0.5em 0.5em 0.5em 3em;
1612 margin: 2em 4em 0 4em;
1613 text-indent: -2em;
1614 line-height: 1.4;
1616 .login-container .login-tip span {
1617 font-weight: bold;
1620 /* Message box */
1622 #content.login-page .error-box {
1623 margin: 1.5em 0.875em -1.5em 0.875em;
1625 .error-box, .success-box {
1626 padding: 0.25em;
1627 text-align: center;
1630 /***********************/
1631 /* PASSWORD RESET PAGE */
1632 /***********************/
1634 .reset-password-container {
1635 margin-bottom: 2em;
1637 .reset-password-container input[type='submit'] {
1638 padding: 0.2em 0.5em;
1639 width: unset;
1641 .reset-password-container input {
1642 margin-left: 0.5em;
1643 width: 12em;
1645 .reset-password-container label {
1646 display: inline-block;
1647 width: 9em;
1649 .reset-password-container form > div {
1650 margin: 0.2em;
1652 .reset-password-container .action-container {
1653 padding-left: 11em;
1654 padding-top: 0.2em;
1656 .reset-password-container .error-box {
1657 margin: unset;
1660 /*********************/
1661 /* TABLE OF CONTENTS */
1662 /*********************/
1664 .contents {
1665 float: right;
1666 min-width: 6em;
1667 max-width: 40%;
1668 margin: 1.25em 0 0.75em 1.25em;
1669 padding: 7px 14px 10px 10px;
1670 position: relative;
1671 z-index: 1;
1674 .contents-head {
1675 text-align: center;
1676 margin-bottom: 0.25em;
1679 .post-body .contents ul {
1680 list-style-type: none;
1681 margin: 0 0 0 0.5em;
1682 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1683 padding-left: 1em;
1684 font-size: 0.75em;
1686 .post-body .contents li {
1687 margin: 0.15em 0 0.3em 1em;
1688 text-align: left;
1689 text-indent: -1em;
1690 line-height: 1.2;
1691 position: relative;
1693 .post-body .contents li::before {
1694 position: absolute;
1695 width: 3em;
1696 display: block;
1697 text-align: right;
1698 left: -4.5em;
1700 .contents .toc-item-1 {
1701 counter-increment: toc-item-1;
1702 counter-reset: toc-item-2 toc-item-3;
1704 .contents .toc-item-1::before {
1705 content: counter(toc-item-1);
1707 .contents .toc-item-1 ~ .toc-item-2 {
1708 margin-left: 2.9em;
1709 font-size: 0.95em;
1711 .contents .toc-item-2 {
1712 counter-increment: toc-item-2;
1713 counter-reset: toc-item-3;
1715 .contents .toc-item-1 ~ .toc-item-2::before {
1716 content: counter(toc-item-1) "." counter(toc-item-2);
1718 .contents .toc-item-2::before {
1719 content: counter(toc-item-2);
1721 .contents .toc-item-1 + .toc-item-3 {
1722 counter-increment: toc-item-2 toc-item-3;
1724 .contents .toc-item-2 ~ .toc-item-3,
1725 .contents .toc-item-1 ~ .toc-item-3 {
1726 margin-left: 2.9em;
1727 font-size: 0.95em;
1729 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1730 margin-left: 5.7em;
1731 font-size: 0.9em;
1733 .contents .toc-item-3 {
1734 counter-increment: toc-item-3;
1736 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1737 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1739 .contents .toc-item-1 ~ .toc-item-3::before {
1740 content: counter(toc-item-1) "." counter(toc-item-3);
1742 .contents .toc-item-2 ~ .toc-item-3::before {
1743 content: counter(toc-item-2) "." counter(toc-item-3);
1745 .contents .toc-item-3::before {
1746 content: counter(toc-item-3);
1748 .contents .toc-item-4,
1749 .contents .toc-item-5,
1750 .contents .toc-item-6 {
1751 display: none;
1754 /********************/
1755 /* POSTS & COMMENTS */
1756 /********************/
1758 .post-meta > *,
1759 .comment-meta > * {
1760 display: inline-block;
1761 margin-right: 1em;
1762 font-size: 1.0625em;
1764 .body-text {
1765 overflow-wrap: break-word;
1766 text-align: justify;
1768 .body-text p {
1769 margin: 1em 0;
1771 .retracted .body-text {
1772 text-decoration: line-through;
1775 .bare-url {
1776 word-break: break-all;
1777 hyphens: auto;
1779 .body-text a:not([href]),
1780 .body-text a:not([href]):hover,
1781 .body-text a:not([href])::before,
1782 .body-text a:not([href])::after {
1783 text-decoration: none;
1784 text-shadow: unset;
1785 border: unset;
1786 color: unset;
1787 content: unset;
1789 /*************/
1790 /* POST-META */
1791 /*************/
1793 .post-meta {
1794 display: flex;
1795 flex-flow: row wrap;
1796 justify-content: center;
1798 .post-meta .lw2-link {
1799 opacity: 0.5;
1800 order: 1;
1802 .post-meta > *,
1803 .post-meta .post-section::before {
1804 margin: 0 0.5em;
1806 .post-meta .post-section {
1807 order: -1;
1808 margin: 0;
1809 visibility: hidden;
1811 .post-meta .post-section::before,
1812 .comment-meta .alignment-forum {
1813 visibility: visible;
1814 font-family: "Font Awesome", "Font Awesome 5 Free";
1815 font-weight: 900;
1817 .post-section.frontpage::before {
1818 content: "\F015";
1820 .post-section.featured::before {
1821 content: "\F005";
1823 .post-section.meta::before {
1824 content: "\F077";
1826 .post-section.events::before {
1827 content: "\F5A0";
1829 .post-section.personal::before {
1830 content: "\F007";
1832 .post-section.draft::before {
1833 content: "\F15B";
1835 .post-section.alignment-forum::before,
1836 .comment-meta .alignment-forum {
1837 content: "AF";
1838 font-family: Concourse, 'Changa One';
1841 /*= Karma controls hover tooltips =*/
1843 @media only screen and (pointer: fine) {
1844 .post .voting-controls,
1845 .comment-item .voting-controls {
1846 position: relative;
1848 .post .karma.active-controls::after,
1849 .comment-item .karma.active-controls::after {
1850 content: "Double-click for strong vote";
1851 position: absolute;
1852 pointer-events: none;
1853 display: block;
1854 left: 6px;
1855 width: 100%;
1856 line-height: 1.15;
1857 white-space: normal;
1858 text-align: center;
1859 font-size: 0.875rem;
1860 opacity: 0;
1861 transition: opacity 0.2s ease;
1863 .post .voting-controls.active-controls:hover::after,
1864 .comment-item .voting-controls.active-controls:hover::after {
1865 opacity: 1.0;
1868 .post .voting-controls .karma-value::after,
1869 .comment-item .voting-controls .karma-value::after {
1870 content: attr(title);
1871 position: absolute;
1872 pointer-events: none;
1873 display: block;
1874 left: 50%;
1875 transform: translateX(-50%);
1876 white-space: pre-wrap;
1877 width: max-content;
1878 text-align: center;
1879 font-size: 0.875rem;
1880 color: #bbb;
1881 opacity: 0;
1882 transition: opacity 0.2s ease;
1884 .post .voting-controls.agreement .karma-value:hover::after,
1885 .comment-item .voting-controls.agreement .karma-value:hover::after {
1886 top: unset;
1887 bottom: 100%;
1889 .post .voting-controls .karma-value:hover::after,
1890 .comment-item .voting-controls .karma-value:hover::after {
1891 opacity: 1.0;
1893 .post .voting-controls.waiting .karma-value:hover::after,
1894 .comment-item .voting-controls.waiting .karma-value:hover::after {
1895 display: none;
1897 .comment-item .voting-controls .karma-value:hover::after {
1898 z-index: 5001;
1901 .author {
1902 position: relative;
1904 .author:not(.redacted)::before {
1905 content: attr(data-full-name);
1906 position: absolute;
1907 pointer-events: none;
1908 display: block;
1909 padding: 0 1em;
1910 left: 50%;
1911 bottom: 2em;
1912 transform: translateX(-50%);
1913 white-space: nowrap;
1914 text-align: center;
1915 font-size: 0.875rem;
1916 font-weight: normal;
1917 opacity: 0;
1918 transition: opacity 0.2s ease;
1919 z-index: 5001;
1921 .author:hover::before {
1922 opacity: 1.0;
1926 /*********/
1927 /* POSTS */
1928 /*********/
1930 .post {
1931 max-width: 100%;
1934 .post-body {
1935 min-height: 8em;
1936 padding: 0 30px;
1937 line-height: 1.5;
1938 font-size: 1.3rem;
1939 overflow: auto;
1940 margin: 0.5em 0 0 0;
1942 h1.post-title {
1943 margin: 1.1em 0 0.35em 0;
1944 padding: 0 30px;
1945 text-align: center;
1946 font-size: 2.5em;
1947 line-height: 1;
1949 .post .post-meta {
1950 text-align: center;
1951 position: relative;
1952 z-index: 2;
1954 .post .top-post-meta:last-child {
1955 margin-bottom: 40px;
1957 .post .bottom-post-meta {
1958 margin: 0;
1959 padding: 20px 0;
1961 .bottom-post-meta {
1962 border-style: solid;
1963 border-width: 1px 0;
1966 /**********/
1967 /* EVENTS */
1968 /**********/
1970 .event-info .map {
1971 position: relative;
1972 width: 100%;
1973 margin: 2em 0 1em;
1976 .event-info .map::before {
1977 content: "";
1978 display: block;
1979 padding-bottom: 50%;
1982 .event-info .map iframe {
1983 width: 100%;
1984 height: 100%;
1985 border: 1px solid #000;
1986 position: absolute;
1987 top: 0;
1988 left: 0;
1991 .event-info ul {
1992 list-style: none;
1993 padding: 0;
1994 text-align: center;
1997 /*******************/
1998 /* POST NAVIGATION */
1999 /*******************/
2001 .post-nav-item {
2002 display: grid;
2003 grid-template: 100% / 32% 36% 32%;
2004 grid-template-areas:
2005 "prev seq next";
2007 .post-nav {
2008 display: flex;
2009 flex-flow: column;
2010 justify-content: flex-end;
2011 padding: 0.5em;
2014 .post-nav-title {
2015 font-size: 1.125em;
2016 line-height: 1.15;
2017 display: inline;
2018 border-top: 1px solid transparent;
2020 .post-nav.prev .post-nav-title,
2021 .post-nav.next .post-nav-title {
2022 border-bottom: 1px solid transparent;
2025 .sequence-title {
2026 align-items: center;
2027 text-align: center;
2028 grid-area: seq;
2030 .sequence-title .post-nav-title {
2031 font-size: 1.5em;
2034 .post-nav.prev {
2035 grid-area: prev;
2036 align-items: flex-start;
2038 .post-nav.prev .post-nav-title::before {
2039 content: "\F0D9\2005";
2041 .post-nav.next {
2042 grid-area: next;
2043 text-align: right;
2044 align-items: flex-end;
2046 .post-nav.prev .post-nav-label,
2047 .post-nav.next .post-nav-label {
2048 display: none;
2050 .post-nav.next .post-nav-title::after {
2051 content: "\2004\F0DA";
2053 .post-nav.prev .post-nav-title::before,
2054 .post-nav.next .post-nav-title::after {
2055 font-family: Font Awesome;
2056 font-weight: 900;
2057 vertical-align: text-bottom;
2058 opacity: 0.75;
2060 .post-nav-links {
2061 max-width: 100%;
2064 @media only screen and (max-width: 900px) {
2065 .post-nav-item {
2066 font-size: 0.875em;
2067 grid-template: auto auto / 50% 50%;
2068 grid-template-areas:
2069 "prev next"
2070 "seq seq";
2072 .post-nav.prev .post-nav-title,
2073 .post-nav.next .post-nav-title {
2074 border-bottom: none;
2076 .post-nav.prev {
2077 margin: 0 0 0 -1px;
2078 position: relative;
2079 left: 1px;
2081 .sequence-title {
2082 padding: 0.75em 0;
2085 @media only screen and (max-width: 520px) {
2086 .post-nav-links + .comments {
2087 padding: 1em 0 0 0;
2091 .related-posts, .related-post-group {
2092 padding-bottom: 1em;
2094 .related-post-type {
2095 font-size: 1.2em;
2096 font-weight: 600;
2097 margin-top: 0.5em;
2098 margin-bottom: -0.5em;
2099 list-style-type: disc;
2100 margin-left: -0.5em;
2101 opacity: 0.7;
2103 .related-post-type::before {
2104 content: "\269c";
2105 font-size: 1.375em;
2106 font-weight: normal;
2107 margin-right: 0.15em;
2108 position: relative;
2109 vertical-align: baseline;
2110 top: 0.05em;
2112 .related-posts .post-type-prefix {
2113 display: none;
2116 .crosspost {
2117 padding: 0.1em 1em;
2118 margin: 1em auto;
2121 /**************/
2122 /* LINK POSTS */
2123 /**************/
2125 .post.link-post > .post-body > p:first-child {
2126 text-align: center;
2127 font-size: 1.125em;
2128 margin: 0.5em 0 0 0;
2130 .post.link-post > .post-body > p:only-child {
2131 font-size: 1.5em;
2132 margin: 1em 0;
2134 .post.link-post a.link-post-link::before {
2135 content: "\F0C1";
2136 font-family: "Font Awesome", "Font Awesome 5 Free";
2137 font-weight: 900;
2138 font-size: 0.75em;
2139 position: relative;
2140 top: -2px;
2141 margin-right: 0.25em;
2144 /************/
2145 /* COMMENTS */
2146 /************/
2148 .comments {
2149 max-width: 100%;
2150 padding: 0 0 1px 0;
2151 position: relative;
2153 .comments::before {
2154 content: "";
2155 position: absolute;
2156 display: block;
2157 top: 0;
2158 left: 0;
2159 width: 100%;
2160 height: 100%;
2161 pointer-events: none;
2163 ul.comment-thread {
2164 list-style-type: none;
2165 padding: 0;
2166 max-width: 100%;
2168 .comments .comment-thread > li {
2169 position: relative;
2171 #content > #top-nav-bar + .comment-thread .comment-item {
2172 margin-top: 0;
2175 .comment-item {
2176 margin: 2em 0 0 0;
2178 .comment-item .comment-item {
2179 margin: 1em 8px 8px 16px;
2181 .comment-item .comment-item + .comment-item {
2182 margin: 2em 8px 8px 16px;
2185 .comment-body {
2186 line-height: 1.45;
2187 font-size: 1.2rem;
2188 padding: 10px;
2190 .comment-body ul {
2191 list-style-type: circle;
2193 .comment-body > *:first-child {
2194 margin-top: 0;
2196 .comment-body > *:last-child {
2197 margin-bottom: 0;
2200 .comments-empty-message {
2201 width: 100%;
2202 text-align: center;
2203 padding: 0.75em 0 0.9em 0;
2204 font-size: 1.375em;
2207 /**********************************/
2208 /* DEEP COMMENT THREAD COLLAPSING */
2209 /**********************************/
2211 .comment-item > input[id^="expand"] {
2212 display: none;
2214 .comment-item > input[id^="expand"] + label {
2215 display: block;
2216 visibility: hidden;
2217 position: relative;
2218 margin: 8px 9px;
2220 .comment-item > input[id^="expand"] + label::after {
2221 content: "(Expand " attr(data-child-count) " below)";
2222 visibility: visible;
2223 position: absolute;
2224 left: 0;
2225 white-space: nowrap;
2226 cursor: pointer;
2228 .comment-item > input[id^="expand"]:checked + label::after {
2229 content: "(Collapse " attr(data-child-count) " below)";
2231 .comment-item > input[id^="expand"] ~ .comment-thread {
2232 max-height: 34px;
2233 overflow: hidden;
2235 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2236 margin-top: 0;
2238 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2239 max-height: 1000000px;
2242 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2243 margin: 0;
2245 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2246 display: none;
2249 /*************/
2250 /* BACKLINKS */
2251 /*************/
2253 .backlinks > input {
2254 display: none;
2257 .backlinks > label {
2258 margin-left: 10px;
2259 display: block;
2260 color: #00f;
2261 cursor: pointer;
2264 .backlinks > label::before {
2265 content: " ";
2266 border-left: 5px solid currentColor;
2267 border-top: 5px solid transparent;
2268 border-bottom: 5px solid transparent;
2269 transition: transform 0.25s ease-out;
2270 transform-origin: 29% 55%;
2271 display: inline-block;
2272 padding-right: 0.5em;
2275 .backlinks > input:checked + label::before {
2276 transform: rotate(90deg);
2279 .backlinks li {
2280 margin-top: 0;
2283 .backlinks > ul {
2284 height: 0;
2285 perspective-origin: top;
2286 transform: perspective(100em) rotateX(-90deg);
2287 transform-origin: center top;
2288 opacity: 0;
2289 margin-top: 0.5em;
2290 margin-bottom: 0.5em;
2293 .backlinks > input:checked ~ ul {
2294 height: auto;
2295 transform: perspective(100em) rotateX(0deg);
2296 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2297 opacity: 1;
2300 /****************/
2301 /* COMMENT-META */
2302 /****************/
2304 .comment-meta {
2305 padding: 2px 24px 2px 10px;
2306 margin: 0 -1px;
2307 border: none;
2308 display: flex;
2309 flex-flow: row wrap;
2310 align-items: baseline;
2312 .user-page .comment-meta,
2313 .conversation-page .comment-meta {
2314 padding-right: 10px;
2316 .comment-meta .comment-post-title {
2317 flex-basis: 100%;
2318 overflow: hidden;
2319 text-overflow: ellipsis;
2320 white-space: nowrap;
2321 line-height: 1.3;
2323 .conversation-page .comment-meta .comment-post-title {
2324 margin: 0;
2325 flex-basis: unset;
2326 flex: 1 0 auto;
2327 text-align: right;
2328 display: none; /* Not sure if we need to display this... */
2330 .comment-item .author:not(.redacted).original-poster::after {
2331 content: "\2004(OP)";
2332 font-size: 0.75em;
2335 /*****************************/
2336 /* COMMENT THREAD NAVIGATION */
2337 /*****************************/
2339 a.comment-parent-link:not(.inline-author),
2340 a.comment-parent-link.inline-author::before {
2341 opacity: 0.5;
2343 a.comment-parent-link:hover {
2344 opacity: 1.0;
2346 a.comment-parent-link::before {
2347 content: "\F062";
2348 font-family: "Font Awesome", "Font Awesome 5 Free";
2349 font-weight: 900;
2350 font-size: 0.75rem;
2351 line-height: 1;
2352 position: absolute;
2353 z-index: 1;
2354 display: block;
2355 padding: 3px 3px 0 3px;
2356 width: 16px;
2357 height: calc(100% + 2px);
2358 top: -1px;
2359 left: -17px;
2361 a.comment-parent-link::after {
2362 content: "";
2363 position: absolute;
2364 z-index: 0;
2365 display: block;
2366 width: calc(100% + 26px);
2367 height: calc(100% + 38px);
2368 top: -29px;
2369 left: -17px;
2370 pointer-events: none;
2371 overflow: hidden;
2372 visibility: hidden;
2374 a.comment-parent-link:hover::after {
2375 visibility: visible;
2378 .comment-child-links {
2379 flex-basis: 100%;
2381 .comment-child-link {
2382 margin: 0 0.25em;
2383 display: inline-block;
2385 .comment-child-link::before {
2386 content: ">";
2387 display: inline-block;
2388 margin: 0 2px 0 0;
2391 .comment-popup {
2392 position: fixed;
2393 top: 10%;
2394 right: 10%;
2395 max-width: 700px;
2396 z-index: 10001;
2397 font-size: 1rem;
2398 white-space: unset;
2399 pointer-events: none;
2401 .comment-popup .comment-parent-link {
2402 display: none;
2404 .comment-popup .comment-body {
2405 font-size: 1.0625rem;
2408 .comment-item.depth-odd {
2409 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2410 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2412 .comment-item.depth-even {
2413 --GW-comment-background-color: var(--GW-comment-background-color-even);
2414 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2417 .comment-item:target {
2418 --GW-comment-background-color: var(--GW-comment-background-color-target);
2420 .comment-item:target > .comment-thread > .comment-item {
2421 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2424 /**********************/
2425 /* COMMENT PERMALINKS */
2426 /**********************/
2427 /********************/
2428 /* COMMENT LW LINKS */
2429 /********************/
2431 .comment-meta .permalink::before,
2432 .comment-meta .lw2-link::before,
2433 .individual-thread-page a.comment-parent-link:empty::before {
2434 content: "";
2435 display: inline-block;
2436 width: 1rem;
2437 height: 1rem;
2438 border-radius: 3px;
2439 box-shadow:
2440 0 0 0 1px #fff,
2441 0 0 0 2px #00e,
2442 0 0 0 3px transparent;
2443 padding: 0 0 0 2px;
2444 background-size: 100%;
2445 position: relative;
2446 top: 2px;
2447 opacity: 0.5;
2449 .comment-meta .permalink::before {
2450 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');
2452 .comment-meta .lw2-link::before {
2453 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==');
2455 .individual-thread-page a.comment-parent-link:empty::before {
2456 left: unset;
2457 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==');
2459 .comment-meta .permalink:hover::before {
2460 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');
2462 .comment-meta .lw2-link:hover::before {
2463 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==');
2465 .individual-thread-page a.comment-parent-link:empty:hover::before {
2466 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=');
2468 .comment-meta .permalink:hover::before,
2469 .comment-meta .lw2-link:hover::before,
2470 .individual-thread-page a.comment-parent-link:empty:hover::before {
2471 box-shadow:
2472 0 0 0 2px #00e,
2473 0 0 0 3px transparent;
2474 opacity: 1.0;
2475 filter: unset;
2477 .comment-meta .permalink:active::before,
2478 .comment-meta .lw2-link:active::before,
2479 .individual-thread-page a.comment-parent-link:empty:active::before {
2480 transform: scale(0.9);
2483 .comment-meta .permalink,
2484 .comment-meta .lw2-link,
2485 .individual-thread-page .comment-parent-link:empty {
2486 position: relative;
2487 opacity: 1.0;
2489 .comment-meta .permalink::after,
2490 .comment-meta .lw2-link::after,
2491 .individual-thread-page .comment-parent-link:empty::after {
2492 content: "";
2493 width: 30px;
2494 height: 30px;
2495 display: block;
2496 position: absolute;
2497 top: -2px;
2498 left: -7px;
2499 box-shadow: none;
2500 pointer-events: auto;
2501 visibility: visible;
2504 /*************************/
2505 /* COMMENTS COMPACT VIEW */
2506 /*************************/
2508 #comments-list-mode-selector,
2509 #content.index-page #comments-list-mode-selector,
2510 #content.user-page #comments-list-mode-selector {
2511 padding-top: 6px;
2512 grid-column: 1;
2513 position: unset;
2514 z-index: 1;
2515 justify-self: start;
2516 align-self: start;
2518 #comments-list-mode-selector button {
2519 color: transparent;
2520 width: 32px;
2521 height: 32px;
2522 padding: 6px;
2523 margin: 1px;
2524 overflow: hidden;
2525 background-repeat: no-repeat;
2526 background-size: 100%;
2527 background-origin: content-box;
2529 #comments-list-mode-selector button:disabled {
2530 cursor: auto;
2532 #comments-list-mode-selector button.expanded {
2533 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2535 #comments-list-mode-selector button.compact {
2536 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2538 @media only screen and (max-resolution: 1dppx) {
2539 #comments-list-mode-selector button.expanded {
2540 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2542 #comments-list-mode-selector button.compact {
2543 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2547 #content > ul.comment-thread > li.comment-item,
2548 #content.compact > ul.comment-thread > li.comment-item {
2549 margin: 0;
2552 #content > .comment-thread {
2553 margin: 1em 0;
2555 #content.compact > .comment-thread {
2556 font-size: 0.9375rem;
2557 margin: 0.5em 0;
2559 #content.compact > .comment-thread:hover {
2560 z-index: 1;
2562 #content.compact > .comment-thread .comment-body {
2563 font-size: 1.0625rem;
2565 #content.compact > .comment-thread .comment-item,
2566 #content.index-page .comment-item.ignored,
2567 #content.inbox-user-page .comment-item.ignored {
2568 max-height: 61px;
2569 margin-top: 1em;
2570 overflow: hidden;
2571 position: relative;
2573 #content.compact > .comment-thread .comment-item {
2574 pointer-events: none;
2576 #content.compact > .comment-thread .comment-item::after {
2577 content: "…";
2578 position: absolute;
2579 right: 0;
2580 bottom: 0;
2581 font-size: 2rem;
2582 line-height: 1;
2583 padding: 0 16px 10px 64px;
2584 pointer-events: auto;
2586 @media only screen and (hover: hover) {
2587 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2588 #content.compact > .comment-thread .comment-item.expanded {
2589 overflow: visible;
2590 pointer-events: auto;
2591 z-index: 10;
2594 @media only screen and (hover: none) {
2595 #content.compact > .comment-thread.expanded .comment-item {
2596 overflow: visible;
2597 pointer-events: auto;
2598 z-index: 10;
2601 #content.compact > .comment-thread .comment-item .comment-meta {
2602 white-space: nowrap;
2603 overflow: hidden;
2604 text-overflow: ellipsis;
2605 padding: 2px 10px;
2607 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2608 white-space: unset;
2610 #content.compact > .comment-thread .comment-item .comment-meta a {
2611 pointer-events: auto;
2613 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2614 display: inline;
2616 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2617 margin-left: 0.75em;
2619 @media only screen and (hover: hover) {
2620 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2621 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2622 max-height: unset;
2624 #content.compact > .comment-thread .comment-item:hover .comment,
2625 #content.compact > .comment-thread .comment-item.expanded .comment {
2626 position: relative;
2627 z-index: 1;
2628 margin-bottom: 2em;
2629 bottom: 0;
2631 #content.compact > .comment-thread .comment-item:hover .comment::before,
2632 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2633 content: "";
2634 position: absolute;
2635 display: block;
2636 width: calc(100% + 20px);
2637 height: calc(100% + 20px);
2638 z-index: -1;
2639 top: -10px;
2640 left: -10px;
2642 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2643 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2644 margin: 0;
2647 @media only screen and (hover: none) {
2648 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2649 max-height: unset;
2651 #content.compact > .comment-thread.expanded .comment-item .comment {
2652 position: relative;
2653 z-index: 1;
2654 margin-bottom: 2em;
2655 bottom: 0;
2657 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2658 content: "";
2659 position: absolute;
2660 display: block;
2661 width: calc(100% + 14px);
2662 height: calc(100% + 20px);
2663 z-index: -1;
2664 top: -10px;
2665 left: -10px;
2667 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2668 margin: 0;
2670 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2671 content: "";
2672 display: block;
2673 position: fixed;
2674 top: 0;
2675 left: 0;
2676 width: 100%;
2677 height: 100%;
2678 z-index: -2;
2679 background-color: rgba(0,0,0,0.5);
2683 /*****************************/
2684 /* HIGHLIGHTING NEW COMMENTS */
2685 /*****************************/
2687 .new-comment::before {
2688 content: "";
2689 position: absolute;
2690 width: 100%;
2691 height: 100%;
2692 z-index: 5000;
2693 pointer-events: none;
2696 /***********************************/
2697 /* COMMENT THREAD MINIMIZE BUTTONS */
2698 /***********************************/
2700 .comment-minimize-button {
2701 font-family: "Font Awesome", "Font Awesome 5 Free";
2702 font-weight: 900;
2703 font-size: 1.25rem;
2704 line-height: 1;
2705 position: absolute;
2706 right: 1px;
2707 top: 1px;
2708 width: 18px;
2709 margin: 0;
2710 cursor: pointer;
2712 .comment-minimize-button:active {
2713 transform: scale(0.9);
2715 .comment-minimize-button::after {
2716 content: attr(data-child-count);
2717 font-weight: normal;
2718 font-size: 0.8125rem;
2719 position: absolute;
2720 left: 0;
2721 width: 100%;
2722 text-align: center;
2723 top: 21px;
2725 #content.individual-thread-page .comment-minimize-button {
2726 display: none;
2729 /*****************/
2730 /* IGNORE SYSTEM */
2731 /*****************/
2733 #content.comment-thread-page .comment-item.ignored {
2734 height: 38px;
2735 overflow: hidden;
2737 .comment-item.ignored > .comment > .comment-meta > .author {
2738 text-decoration: line-through;
2741 /***********************************/
2742 /* INDIVIDUAL COMMENT THREAD PAGES */
2743 /***********************************/
2745 .individual-thread-page > h1 {
2746 line-height: 1;
2747 margin: 0.75em 0 3px 0;
2749 .individual-thread-page .comments {
2750 border: none;
2753 /*************/
2754 /* SHORTFORM */
2755 /*************/
2757 .shortform-index-page .comments::before {
2758 border: none;
2759 box-shadow: none;
2762 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2763 margin-top: 0;
2766 /****************/
2767 /* VOTE BUTTONS */
2768 /****************/
2770 .vote {
2771 margin: 0;
2773 .vote {
2774 font-family: "Font Awesome", "Font Awesome 5 Free";
2775 font-weight: 900;
2776 border: none;
2779 .vote:disabled {
2780 visibility: hidden;
2781 cursor: default;
2784 @keyframes waiting {
2785 0% {background-position: 200% 0%}
2786 100% {background-position: 0% 0%}
2789 .voting-controls .karma-value {
2790 opacity: 1;
2791 transition: opacity 0.5s linear;
2794 .voting-controls.waiting .karma-value {
2795 opacity: 0.5;
2796 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2797 background-clip: text;
2798 -webkit-background-clip: text;
2799 color: transparent;
2800 background-position: 200% 0%;
2801 background-size: 200% 100%;
2802 animation: waiting 1s linear infinite;
2805 /* Replicated karma controls at bottom of comments. */
2806 .comment-controls .voting-controls {
2807 float: left;
2808 font-size: 0.9375em;
2811 .comment-controls .voting-controls:first-of-type {
2812 margin-left: -14px;
2815 /*****************************/
2816 /* COMMENTING AND POSTING UI */
2817 /*****************************/
2819 .comment-controls {
2820 text-align: right;
2821 margin: 0 8px 8px 16px;
2822 position: relative;
2823 z-index: 9999;
2825 .comment-thread .comment-controls + .comment-thread > li:first-child {
2826 margin-top: 8px;
2828 .comments > .comment-controls {
2829 margin: 8px 0 0 0;
2831 .comments > .comment-controls:last-child {
2832 margin: 8px 0 16px 0;
2835 .posting-controls input[type='submit'] {
2836 margin: 6px;
2837 padding: 4px 10px;
2838 font-size: 1.125rem;
2841 .comment-controls .cancel-comment-button {
2842 position: absolute;
2843 right: 0;
2844 margin: 0;
2845 height: 27px;
2846 font-size: inherit;
2847 padding: 4px 8px 2px 4px;
2848 z-index: 1;
2850 .comment-controls .cancel-comment-button::before {
2851 font-family: "Font Awesome", "Font Awesome 5 Free";
2852 margin-right: 3px;
2853 content: '\F00D';
2854 font-weight: 900;
2855 font-size: 0.9em;
2856 opacity: 0.7;
2859 .comment + .comment-controls .action-button {
2860 font-weight: normal;
2861 font-size: 1.0625em;
2862 padding: 1px 6px;
2864 .comment-controls .action-button::before {
2865 font-family: "Font Awesome", "Font Awesome 5 Free";
2866 margin-right: 3px;
2868 .new-comment-button {
2869 font-size: 1.5rem;
2870 margin: 0 0.25em;
2872 .comment-controls .reply-button::before {
2873 content: '\F3E5';
2874 font-weight: 900;
2875 font-size: 0.9em;
2876 opacity: 0.6;
2878 .comment-meta .replied::before {
2879 content: '\F3E5';
2880 font-family: "Font Awesome", "Font Awesome 5 Free";
2881 color: #090;
2882 font-weight: 900;
2883 font-size: 0.9em;
2884 opacity: 0.6;
2887 .post-controls {
2888 text-align: right;
2889 margin: 0.75em 0 0 0;
2890 align-self: start;
2891 justify-self: end;
2893 .edit-post-link {
2894 display: inline-block;
2895 margin-bottom: 0.25em;
2896 font-size: 1.125rem;
2898 .edit-post-link::before {
2899 margin-right: 0.3em;
2901 .comment-controls .edit-button::before,
2902 .edit-post-link::before {
2903 content: '\F303';
2904 font-family: "Font Awesome", "Font Awesome 5 Free";
2905 font-weight: 900;
2906 font-size: 0.75em;
2907 position: relative;
2908 top: -1px;
2911 .comment-controls .delete-button {
2912 margin-right: 0.25em;
2914 .comment-controls .edit-button,
2915 .comment-controls .retract-button,
2916 .comment-controls .unretract-button {
2917 margin-right: 1em;
2919 .comment-controls .retract-button::before {
2920 content: '\F4B3';
2921 opacity: 0.6;
2923 .comment-controls .unretract-button::before {
2924 content: '\F075';
2925 opacity: 0.9;
2927 .comment-controls .delete-button::before {
2928 content: '\F05E';
2929 opacity: 0.7;
2931 .comment-controls .retract-button::before,
2932 .comment-controls .unretract-button::before,
2933 .comment-controls .delete-button::before {
2934 font-weight: 900;
2935 font-size: 0.9em;
2938 .comment-controls form {
2939 position: relative;
2941 .textarea-container {
2942 position: relative;
2944 .posting-controls textarea {
2945 display: block;
2946 width: 100%;
2947 height: 15em;
2948 min-height: 15em;
2949 max-height: calc(100vh - 6em);
2950 margin: 2px 0 0 0;
2951 padding: 4px 5px;
2952 font-size: 1.2rem;
2953 border-style: solid;
2954 border-width: 29px 1px 1px 1px;
2955 resize: none;
2958 /* GUIEdit buttons */
2960 .guiedit-buttons-container {
2961 position: absolute;
2962 left: 1px;
2963 top: 1px;
2964 width: calc(100% - 2px);
2965 height: 28px;
2966 text-align: left;
2967 padding: 1px 4px 0 4px;
2968 overflow: hidden;
2970 .comment-thread-page .guiedit-buttons-container {
2971 padding-right: 60px;
2973 .guiedit-buttons-container button {
2974 height: 26px;
2975 padding: 0 7px;
2976 font-weight: 900;
2977 font-size: 0.875rem;
2978 line-height: 1;
2979 position: static;
2981 .guiedit-buttons-container button:active {
2982 transform: none;
2984 .guiedit-buttons-container button:active div {
2985 transform: scale(0.9);
2987 .guiedit-buttons-container button sup {
2988 font-weight: bold;
2990 .guiedit::after {
2991 content: attr(data-tooltip);
2992 position: absolute;
2993 font-weight: normal;
2994 font-size: 1rem;
2995 top: 2px;
2996 left: 464px;
2997 height: 25px;
2998 padding: 4px 0;
2999 white-space: nowrap;
3000 visibility: hidden;
3002 .guiedit:hover::after {
3003 visibility: visible;
3006 /* Markdown hints */
3008 .posting-controls .markdown-reference-link {
3009 float: left;
3010 padding: 1px 0 0 6px;
3012 .posting-controls .markdown-reference-link a {
3013 padding-right: 1.5em;
3014 margin-right: 0.15em;
3015 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');
3016 background-size: 1.25em;
3017 background-repeat: no-repeat;
3018 background-position: right center;
3021 #markdown-hints-checkbox + label {
3022 float: left;
3023 margin: 2px 0 0 1em;
3024 line-height: 1.3;
3025 cursor: pointer;
3027 #edit-post-form #markdown-hints-checkbox + label {
3028 padding: 0;
3030 #markdown-hints-checkbox {
3031 visibility: hidden;
3032 float: left;
3034 #markdown-hints-checkbox + label::after {
3035 content: "(Show Markdown help)";
3037 #markdown-hints-checkbox:checked + label::after {
3038 content: "(Hide Markdown help)";
3040 #markdown-hints-checkbox + label::before {
3041 content: '\F059';
3042 font-family: "Font Awesome", "Font Awesome 5 Free";
3043 font-weight: 900;
3044 margin-right: 3px;
3046 #markdown-hints-checkbox:checked + label::before {
3047 font-weight: normal;
3049 #markdown-hints {
3050 margin: 4px 0 0 4px;
3051 padding: 4px 8px;
3052 position: absolute;
3053 text-align: left;
3054 top: calc(100% - 1em);
3055 z-index: 1;
3056 display: none;
3058 .comment-controls #markdown-hints {
3059 top: calc(100% + 1.75em);
3061 #markdown-hints-checkbox:checked ~ #markdown-hints {
3062 display: table;
3064 .markdown-hints-row {
3065 display: table-row;
3067 #markdown-hints .markdown-hints-row span,
3068 #markdown-hints .markdown-hints-row code {
3069 float: none;
3070 display: table-cell;
3071 border: none;
3072 background-color: inherit;
3073 padding: 0 12px 0 0;
3076 /******************/
3077 /* EDIT POST FORM */
3078 /******************/
3080 #edit-post-form {
3081 padding: 1em 1em 4em 1em;
3083 #edit-post-form .post-meta-fields {
3084 display: grid;
3085 grid-template-columns: 5em auto auto auto 1fr auto;
3086 margin-bottom: 0.625em;
3089 #edit-post-form label[for='title'],
3090 #edit-post-form label[for='url'],
3091 #edit-post-form label[for='section'] {
3092 grid-column: 1;
3094 #edit-post-form input[type='text'] {
3095 padding: 0.25em;
3096 grid-column: 2 / span 4;
3097 margin-bottom: 0.5em;
3100 #edit-post-form .link-post-checkbox,
3101 #edit-post-form .link-post-checkbox + label {
3102 grid-row: 1;
3103 grid-column: 6;
3105 #edit-post-form .question-checkbox,
3106 #edit-post-form .question-checkbox + label {
3107 grid-row: 3;
3108 grid-column: 5;
3109 justify-self: start;
3110 margin-left: 1.5em;
3113 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3114 grid-row: 4;
3115 grid-column: 2 / span 4;
3116 text-align: left;
3117 margin-top: 8px;
3120 #edit-post-form .post-meta-fields input[type='checkbox'] {
3121 height: 0;
3122 opacity: 0;
3123 pointer-events: none;
3125 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3126 white-space: nowrap;
3127 position: relative;
3128 cursor: pointer;
3129 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3130 align-self: start;
3132 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3133 content: "";
3134 font-family: "Font Awesome", "Font Awesome 5 Free";
3135 font-size: 1.375rem;
3136 line-height: 0.7;
3137 text-indent: 1px;
3138 font-weight: 900;
3139 position: absolute;
3140 width: 20px;
3141 height: 20px;
3142 left: 5px;
3144 #edit-post-form label[for='url'],
3145 #edit-post-form input[name='url'] {
3146 display: none;
3148 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3149 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3150 display: initial;
3152 #edit-post-form label {
3153 line-height: normal;
3154 border: 1px solid transparent;
3155 text-align: right;
3156 padding: 0.25em 0.5em;
3157 white-space: nowrap;
3159 #edit-post-form input[type='radio'] {
3160 width: 0;
3161 margin: 0;
3162 opacity: 0;
3163 pointer-events: none;
3165 #edit-post-form input[type='radio'] + label {
3166 padding: 4px 12px;
3167 text-align: center;
3168 border-style: solid;
3169 border-width: 1px 1px 1px 0;
3170 cursor: pointer;
3172 #edit-post-form input[type='radio']:checked + label {
3173 cursor: default;
3176 #edit-post-form label[for='section'] {
3177 grid-row: 3;
3179 #edit-post-form input[type='radio'] + label {
3180 grid-row: 3;
3182 @supports (width: -moz-fit-content) {
3183 #edit-post-form input[type='radio'] + label {
3184 width: -moz-fit-content;
3187 @supports (width: fit-content) {
3188 #edit-post-form input[type='radio'] + label {
3189 width: fit-content;
3193 #edit-post-form textarea {
3194 min-height: 24em;
3197 #edit-post-form input[type='submit'] {
3198 padding: 6px 12px;
3199 float: right;
3201 #edit-post-form #markdown-hints {
3202 top: calc(100% + 2em);
3205 #edit-post-form button.guiedit div {
3206 overflow: visible;
3208 .guiedit-mobile-auxiliary-button {
3209 display: none;
3212 /***********/
3213 /* BUTTONS */
3214 /***********/
3216 button,
3217 input[type='submit'] {
3218 font-family: inherit;
3219 font-size: inherit;
3220 background-color: inherit;
3221 cursor: pointer;
3222 border: none;
3223 border-radius: 0;
3226 /************/
3227 /* HEADINGS */
3228 /************/
3230 .body-text h1,
3231 .body-text h2,
3232 .body-text h3,
3233 .body-text h4,
3234 .body-text h5,
3235 .body-text h6 {
3236 line-height: 1.1;
3237 margin: 1em 0 0.75em 0;
3238 text-align: left;
3241 .post-body h5,
3242 .post-body h6 {
3243 font-size: 1em;
3245 .post-body h4,
3246 .body-text h4 {
3247 font-size: 1.2em;
3249 .post-body h3,
3250 .body-text h3 {
3251 font-size: 1.4em;
3253 .post-body h2,
3254 .body-text h2 {
3255 font-size: 1.75em;
3257 .post-body h1,
3258 .body-text h1 {
3259 font-size: 2.1em;
3262 .comment-body h5,
3263 .comment-body h6 {
3264 font-size: 1em;
3266 .comment-body h4 {
3267 font-size: 1.15em;
3269 .comment-body h3 {
3270 font-size: 1.3em;
3272 .comment-body h2 {
3273 font-size: 1.5em;
3275 .comment-body h1 {
3276 font-size: 1.75em;
3279 /**********/
3280 /* QUOTES */
3281 /**********/
3283 blockquote,
3284 .post-body .comment-box .comment-body {
3285 font-size: 0.9em;
3286 margin: 1em 0;
3287 padding-left: 0.5em;
3288 margin-left: 1px;
3289 padding-bottom: 3px;
3291 blockquote *:first-child {
3292 margin-top: 0;
3294 blockquote *:last-child {
3295 margin-bottom: 0;
3297 blockquote blockquote {
3298 font-size: 0.95em;
3301 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3303 .post-body .comment-box .user-name {
3304 font-style: italic;
3306 .post-body .comment-box .user-name::after {
3307 content: ":";
3309 .post-body .comment-box {
3310 zoom: 1.25;
3313 /**********/
3314 /* IMAGES */
3315 /**********/
3317 #content img, #content figure {
3318 max-width: 100%;
3321 .prediction-poll > svg {
3322 width: 700px;
3323 max-width: 100%;
3326 img.inline-latex {
3327 position: relative;
3328 top: 2.5px;
3329 margin: 0 2px;
3332 #content figure {
3333 text-align: center;
3334 margin: 1.5em auto;
3337 p.imgonly,
3338 div.imgonly,
3339 figure {
3340 text-align: center;
3341 margin: auto;
3342 clear: both;
3345 .imgonly iframe {
3346 display: block;
3347 width: 100%;
3348 height: 250px;
3349 border: 0;
3352 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3354 [style*="--aspect-ratio"] > * {
3355 width: 100%;
3357 [style*="--aspect-ratio"] > img {
3358 height: auto;
3360 @supports (--custom:property) {
3361 [style*="--aspect-ratio"] {
3362 position: relative;
3364 [style*="--aspect-ratio"]::before {
3365 content: "";
3366 display: block;
3367 padding-bottom: calc(100% / (var(--aspect-ratio)));
3369 [style*="--aspect-ratio"] > * {
3370 position: absolute;
3371 top: 0;
3372 left: 0;
3373 height: 100%;
3377 /**********/
3378 /* TABLES */
3379 /**********/
3381 .body-text table {
3382 border-collapse: collapse;
3383 font-size: 0.875em;
3385 .body-text table th,
3386 .body-text table td {
3387 text-align: left;
3388 padding: 4px 6px;
3389 line-height: 1.3;
3391 .body-text table .numeric {
3392 text-align: right;
3393 font-family: Inconsolata, Menlo, monospace;
3395 .body-text table caption {
3396 margin: 0 0 0.25em 0;
3397 font-weight: bold;
3398 font-size: 1.125em;
3401 /********/
3402 /* MISC */
3403 /********/
3405 /*= Superscripts & subscripts =*/
3407 /* Make sure superscripts and subscripts do not affect line spacing. */
3408 sup, sub {
3409 vertical-align: baseline;
3410 position: relative;
3411 top: -0.5em;
3412 left: 0.05em;
3413 font-size: 0.8em;
3415 sub {
3416 top: 0.3em;
3419 /*= Code blocks & other "unstyled" text. =*/
3421 pre,
3422 code {
3423 font-family: Inconsolata, Menlo, monospace;
3425 pre {
3426 white-space: pre-wrap;
3428 .body-text pre {
3429 text-align: left;
3431 code {
3432 font-size: 0.95em;
3433 display: inline-block;
3434 padding: 0 4px 1px 5px;
3436 pre > code {
3437 display: block;
3438 border-radius: 0;
3439 padding: 3px 4px 5px 8px;
3440 tab-size: 4;
3443 /*= Fractions =*/
3445 .frac::after {
3446 content: "\200B";
3449 /*= Removing browser default styling of various elements =*/
3451 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3452 :focus {
3453 outline: none;
3456 /* Remove "embossed" appearance of horizontal rules. */
3457 hr {
3458 border: none;
3461 input,
3462 button,
3463 textarea {
3464 -webkit-appearance: none;
3465 -moz-appearance: none;
3466 appearance: none;
3469 input {
3470 font-family: inherit;
3471 font-size: inherit;
3472 font-weight: inherit;
3475 /*************/
3476 /* FOOTNOTES */
3477 /*************/
3479 ol {
3480 counter-reset: ordered-list;
3482 .footnote-definition {
3483 font-size: 0.9em;
3484 list-style-type: none;
3485 counter-increment: ordered-list;
3486 position: relative;
3488 .footnote-definition p {
3489 font-size: inherit !important;
3491 .footnote-definition::before {
3492 content: counter(ordered-list) ".";
3493 position: absolute;
3494 left: -2.5em;
3495 font-weight: bold;
3496 text-align: right;
3497 width: 2em;
3500 /*= LW Docs footnotes =*/
3502 .footnote-item {
3503 display: flex;
3506 .footnote-item > :not(.nothing) {
3507 margin: 0 0.2em;
3510 .footnote-item > :first-child {
3511 margin-left: -0.2em;
3512 margin-right: 0;
3515 .footnote-back-link a:not(.nothing) {
3516 font-size: 0;
3517 text-decoration: none;
3518 border: none;
3521 .footnote-back-link a:not(.nothing):hover {
3522 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3523 border: none;
3524 text-decoration: none;
3527 .footnote-back-link a::after {
3528 content: '\F106';
3529 font-family: Font Awesome;
3530 font-size: 1rem;
3531 padding: 0.2em;
3532 text-decoration: none;
3533 font-weight: bold;
3536 .footnote-content > :first-child {
3537 margin-top: 0;
3540 /*********/
3541 /* LISTS */
3542 /*********/
3544 li {
3545 margin-bottom: 0.5em;
3548 .body-text ol p,
3549 .body-text ul p {
3550 margin: 0.5em 0;
3553 .body-text ol {
3554 list-style: none;
3555 padding: 0;
3556 counter-reset: ol;
3558 .body-text ol > li {
3559 position: relative;
3560 counter-increment: ol;
3561 padding: 0 0 0 2.5em;
3562 margin: 0.25em 0 0 0;
3564 .body-text ol > li::before {
3565 content: counter(ol) ".";
3566 position: absolute;
3567 width: 2em;
3568 text-align: right;
3569 left: 0;
3571 .body-text ul {
3572 list-style: none;
3573 padding: 0;
3575 .body-text ul:not(.contents-list) > li:empty {
3576 padding-bottom: 1.25em;
3578 .body-text ul:not(.contents-list) > li {
3579 position: relative;
3580 padding: 0 0 0 1.75em;
3581 margin: 0.25em 0 0 0;
3583 .body-text ul:not(.contents-list) > li ul > li {
3584 padding: 0 0 0 2em;
3586 .body-text ul:not(.contents-list) > li::before {
3587 content: "•";
3588 position: absolute;
3589 width: 1.25em;
3590 text-align: right;
3591 left: 0;
3593 .body-text ul:not(.contents-list) > li ul > li::before {
3594 width: 1.5em;
3596 .body-text li > ul:first-child > li {
3597 padding-left: 0;
3599 .body-text li > ul:first-child > li::before {
3600 content: none;
3603 /**************/
3604 /* ERROR PAGE */
3605 /**************/
3607 .error-retry-form {
3608 margin: 0.5em 0;
3611 .error-retry-form input[type="submit"] {
3612 border: 1px solid #aaa;
3613 font-weight: bold;
3614 font-size: 1.125rem;
3615 padding: 0.5em 1.25em;
3618 /**************/
3619 /* ABOUT PAGE */
3620 /**************/
3622 #content.about-page .contents {
3623 margin-top: 0.25em;
3625 #content.about-page .accesskey-table {
3626 border-collapse: collapse;
3627 margin: auto;
3629 #content.about-page .accesskey-table th,
3630 #content.about-page .accesskey-table td {
3631 padding: 2px 6px;
3633 #content.about-page .accesskey-table td:first-child {
3634 padding-right: 1.5em;
3636 #content.about-page .accesskey-table td:last-child {
3637 text-align: center;
3638 font-family: Inconsolata, Menlo, monospace;
3640 #content.about-page h3:nth-of-type(n+2) {
3641 clear: both;
3644 /******************/
3645 /* IMAGES OVERLAY */
3646 /******************/
3648 #images-overlay + #content .post-body img {
3649 visibility: hidden;
3652 #images-overlay div {
3653 position: absolute;
3655 #images-overlay div::after {
3656 content: "Click to enlarge";
3657 display: block;
3658 position: absolute;
3659 margin: auto;
3660 left: 0;
3661 right: 0;
3662 bottom: 10px;
3663 padding: 6px 10px;
3664 font-size: 1.25rem;
3665 background-color: rgba(0,0,0,0.6);
3666 color: #fff;
3667 border-radius: 5px;
3668 opacity: 0.0;
3669 transition: opacity 0.15s ease;
3670 pointer-events: none;
3672 @supports (width: -moz-fit-content) {
3673 #images-overlay div::after {
3674 width: -moz-fit-content;
3677 @supports (width: fit-content) {
3678 #images-overlay div::after {
3679 width: fit-content;
3682 #images-overlay div:hover::after {
3683 opacity: 1.0;
3686 #images-overlay img {
3687 width: 100%;
3690 /***************/
3691 /* IMAGE FOCUS */
3692 /***************/
3694 /*=--------------=*/
3695 /*= Hover styles =*/
3696 /*=--------------=*/
3698 #content img:hover,
3699 #images-overlay img:hover {
3700 filter: drop-shadow(0 0 3px #777);
3701 cursor: zoom-in;
3703 #content img:active,
3704 #images-overlay img:active {
3705 transform: scale(0.975);
3708 /*=---------=*/
3709 /*= Overlay =*/
3710 /*=---------=*/
3712 #image-focus-overlay {
3713 position: fixed;
3714 top: 0;
3715 right: 0;
3716 bottom: 0;
3717 left: 0;
3718 z-index: 2;
3719 display: none;
3720 cursor: zoom-out;
3722 #image-focus-overlay::before {
3723 content: "";
3724 display: block;
3725 position: absolute;
3726 top: 0;
3727 right: 0;
3728 bottom: 0;
3729 left: 0;
3730 background-color: #000;
3731 opacity: 0.5;
3732 z-index: -1;
3734 #image-focus-overlay.engaged {
3735 display: initial;
3738 #image-focus-overlay img {
3739 margin: auto;
3740 position: absolute;
3741 left: 50%;
3742 top: 50%;
3743 transform: translateX(-50%) translateY(-50%);
3746 /*=-------------------=*/
3747 /*= Single-image mode =*/
3748 /*=-------------------=*/
3750 #image-focus-overlay:not(.slideshow) .image-number,
3751 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3752 visibility: hidden;
3755 /*=---------=*/
3756 /*= Caption =*/
3757 /*=---------=*/
3759 #image-focus-overlay .caption {
3760 position: absolute;
3761 bottom: 0.75em;
3762 background-color: rgba(0,0,0,0.7);
3763 left: 9em;
3764 right: 9em;
3765 margin: auto;
3766 max-width: calc(100% - 18em);
3767 text-align: center;
3768 font-size: 1.375em;
3769 border-radius: 8px;
3770 z-index: 1;
3771 transition:
3772 bottom 0.2s ease;
3774 @supports (width: -moz-fit-content) {
3775 #image-focus-overlay .caption {
3776 width: -moz-fit-content;
3779 @supports (width: fit-content) {
3780 #image-focus-overlay .caption {
3781 width: fit-content;
3784 #image-focus-overlay .caption.hidden {
3785 bottom: -5em;
3786 transition:
3787 bottom 0.5s ease;
3790 #image-focus-overlay .caption p {
3791 margin: 1em 1.25em;
3792 color: #fff;
3795 #image-focus-overlay .caption:not(:empty)::before {
3796 content: "";
3797 display: block;
3798 position: absolute;
3799 width: 100vw;
3800 height: calc(100% + 1.5em);
3801 z-index: -1;
3802 top: -0.75em;
3803 left: calc(-50vw + 50%);
3807 /*=--------------=*/
3808 /*= Help overlay =*/
3809 /*=--------------=*/
3811 #image-focus-overlay .help-overlay {
3812 position: absolute;
3813 display: flex;
3814 flex-flow: column;
3815 z-index: 2;
3816 font-size: 1.5rem;
3817 padding: 1em;
3818 border-radius: 10px;
3819 bottom: 1em;
3820 right: 1em;
3821 overflow: hidden;
3822 white-space: nowrap;
3823 color: transparent;
3824 cursor: default;
3825 visibility: hidden;
3826 transition:
3827 visibility 1s ease,
3828 color 1s ease,
3829 background-color 1s ease,
3830 bottom 0.3s ease;
3832 #image-focus-overlay .help-overlay:hover {
3833 max-width: 24em;
3834 max-height: 14em;
3835 background-color: rgba(0,0,0,0.85);
3836 color: #fff;
3837 visibility: visible;
3838 transition:
3839 visibility 0.2s ease 0.3s,
3840 color 0.2s ease 0.3s,
3841 background-color 0.2s ease 0.3s;
3844 #image-focus-overlay .help-overlay::after {
3845 content: "\F128";
3846 font-family: "Font Awesome", "Font Awesome 5 Free";
3847 font-weight: 900;
3848 font-size: 2rem;
3849 position: absolute;
3850 right: 0;
3851 bottom: 0;
3852 padding: 10px;
3853 color: #000;
3854 filter: drop-shadow(0 0 6px #fff);
3855 visibility: visible;
3856 opacity: 0.85;
3857 transition:
3858 visibility 1s ease;
3860 #image-focus-overlay .help-overlay:hover::after {
3861 visibility: hidden;
3862 transition:
3863 visibility 0.2s ease 0.3s;
3866 #image-focus-overlay .help-overlay p {
3867 margin: 0;
3868 text-indent: -2em;
3869 padding-left: 2em;
3870 max-width: 100%;
3871 overflow: hidden;
3873 #image-focus-overlay .help-overlay p + p {
3874 margin: 0.75em 0 0 0;
3876 #image-focus-overlay .help-overlay.hidden {
3877 bottom: -2em;
3880 /*=--------------=*/
3881 /*= Slide number =*/
3882 /*=--------------=*/
3884 #image-focus-overlay .image-number {
3885 position: absolute;
3886 z-index: 2;
3887 font-size: 1.75rem;
3888 left: 1em;
3889 bottom: 1em;
3890 font-weight: 600;
3891 text-shadow:
3892 0 0 3px #fff,
3893 0 0 5px #fff,
3894 0 0 8px #fff,
3895 0 0 13px #fff;
3896 width: 1.5em;
3897 text-align: right;
3898 white-space: nowrap;
3899 transition: bottom 0.3s ease;
3901 #image-focus-overlay .image-number::before {
3902 content: "#";
3903 opacity: 0.3;
3905 #image-focus-overlay .image-number::after {
3906 content: " of " attr(data-number-of-images);
3907 opacity: 0.3;
3909 #image-focus-overlay .image-number:hover::before,
3910 #image-focus-overlay .image-number:hover::after {
3911 opacity: 1.0;
3913 #image-focus-overlay .image-number.hidden {
3914 bottom: -1.25em;
3917 /*=-------------------=*/
3918 /*= Slideshow buttons =*/
3919 /*=-------------------=*/
3921 #image-focus-overlay .slideshow-buttons {
3922 position: absolute;
3923 top: 0;
3924 left: 0;
3925 width: 100%;
3926 height: 100%;
3927 z-index: 1;
3928 display: flex;
3929 justify-content: space-between;
3930 pointer-events: none;
3932 #image-focus-overlay .slideshow-buttons button {
3933 font-family: "Font Awesome", "Font Awesome 5 Free";
3934 font-weight: 900;
3935 font-size: 3rem;
3936 padding: 0.5em;
3937 color: #ddd;
3938 position: relative;
3939 left: 0;
3940 transition:
3941 left 0.3s ease;
3942 pointer-events: auto;
3944 #image-focus-overlay .slideshow-buttons button::selection {
3945 background-color: transparent;
3947 @media only screen and (hover: hover) {
3948 #image-focus-overlay .slideshow-buttons button:hover {
3949 background-color: rgba(0,0,0,0.1);
3950 color: #777;
3953 #image-focus-overlay .slideshow-buttons button:active {
3954 transform: none;
3955 color: #888;
3957 #image-focus-overlay .slideshow-buttons button:disabled {
3958 text-shadow: none;
3959 background-color: transparent;
3960 color: #ddd;
3961 cursor: default;
3962 opacity: 0.4;
3964 #image-focus-overlay .slideshow-button.previous.hidden {
3965 left: -1.75em;
3967 #image-focus-overlay .slideshow-button.next.hidden {
3968 left: 1.75em;
3971 /*=-----------------=*/
3972 /*= Background blur =*/
3973 /*=-----------------=*/
3975 .blurred {
3976 filter: blur(3px);
3979 /**************************/
3980 /* QUALIFIED HYPERLINKING */
3981 /**************************/
3983 #content.no-nav-bars {
3984 margin: 8px auto;
3986 #content.no-nav-bars + #ui-elements-container > * {
3987 padding-top: 8px;
3990 #aux-about-link {
3991 position: fixed;
3992 top: 40px;
3993 left: calc((100% - 900px) / 2 - 69px);
3994 width: 1.5em;
3995 height: 1.5em;
3996 text-align: center;
3997 display: table;
3999 #aux-about-link a {
4000 display: table-cell;
4001 width: 100%;
4002 vertical-align: middle;
4003 font-family: "Font Awesome", "Font Awesome 5 Free";
4004 font-weight: 900;
4005 font-size: 1.25rem;
4006 opacity: 0.4;
4007 z-index: 1;
4010 .qualified-linking {
4011 margin: 0;
4012 position: relative;
4014 .qualified-linking input[type='checkbox'] {
4015 visibility: hidden;
4016 width: 0;
4017 height: 0;
4018 margin: 0;
4020 .qualified-linking label {
4021 font-family: "Font Awesome", "Font Awesome 5 Free";
4022 font-weight: 900;
4023 font-size: 1rem;
4024 padding: 0 0.5em;
4025 display: inline-block;
4026 margin-left: 0.25em;
4028 .qualified-linking label:hover {
4029 cursor: pointer;
4031 .qualified-linking label:active span {
4032 display: inline-block;
4033 transform: scale(0.9);
4035 .qualified-linking label::selection {
4036 background-color: transparent;
4039 .qualified-linking label::after {
4040 content: "";
4041 width: 100vw;
4042 height: 0;
4043 left: 0;
4044 top: 0;
4045 position: fixed;
4046 z-index: 1;
4047 cursor: default;
4049 .qualified-linking input[type='checkbox']:checked + label::after {
4050 height: 100vh;
4053 .qualified-linking-toolbar {
4054 position: absolute;
4055 right: 0.25em;
4056 top: 110%;
4057 z-index: 1;
4059 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4060 display: none;
4062 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4063 display: block;
4065 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4066 top: unset;
4067 bottom: 125%;
4070 .qualified-linking-toolbar a {
4071 display: block;
4072 padding: 0 6px;
4073 margin: 4px;
4075 .qualified-linking-toolbar a::selection {
4076 background-color: transparent;
4079 /*****************/
4080 /* HOVER PREVIEW */
4081 /*****************/
4083 #preview-popup-toggle {
4084 position: absolute;
4085 right: -67px;
4086 bottom: 285px;
4087 cursor: pointer;
4088 color: var(--GW-toggle-widget-color, #888);
4090 #preview-popup-toggle:hover {
4091 color: var(--GW-toggle-widget-hover-color, #444);
4094 #content.preview:not(not) {
4095 padding: 0;
4097 #content.preview > .comment-thread {
4098 margin: 2px;
4100 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4101 border: none;
4103 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4104 padding: 0 8px;
4106 #content.preview.user-page .page-main-heading {
4107 margin-left: 8px;
4109 #content.preview.not(not) .body-text {
4110 margin-left: 8px;
4111 margin-right: 8px;
4113 #content.preview.user-page .user-stats {
4114 margin-right: 32px;
4116 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4117 display: none;
4119 #content.preview button.vote {
4120 display: none;
4122 #content.preview > h1.listing {
4123 max-height: unset;
4125 #content.preview.user-page > .comment-thread {
4126 margin: 0.5em 0;
4128 #content.preview > .post {
4129 margin: 0 18px;
4131 #content.preview .post-title {
4132 margin-top: 0.5em;
4134 #content.preview .post-meta {
4135 line-height: 1.0;
4137 #content.preview .body-text {
4138 font-size: 1em;
4140 #content.preview nav.contents,
4141 #content.preview .lw2-link {
4142 display: none;
4145 .preview-popup {
4146 position: fixed;
4147 transform-origin: top;
4148 top: 10%;
4149 right: 10%;
4150 max-width: 700px;
4151 z-index: 10001;
4152 background-color: #eee;
4153 border: 1px solid #ccc;
4154 box-shadow: 2px 6px 20px -4px #000;
4155 transition: height 0.2s ease, top 0.2s ease;
4157 .popup-hide-button {
4158 position: fixed;
4159 top: 4px;
4160 right: 4px;
4161 color: #000;
4162 background-color: #fff;
4163 width: 28px;
4164 height: 28px;
4165 display: flex;
4166 font-family: "Font Awesome";
4167 font-size: 14px;
4168 line-height: 1;
4169 border: 1px solid #bbb;
4170 border-radius: 28px;
4171 align-items: center;
4172 justify-content: center;
4173 //padding-bottom: 2px;
4174 padding-left: 1.5px;
4175 font-family: "Font Awesome", "Font Awesome 5 Free";
4176 cursor: pointer;
4178 .popup-hide-button:hover::before {
4179 content: "Turn off preview popups";
4180 display: block;
4181 position: absolute;
4182 width: max-content;
4183 right: 32px;
4184 color #000;
4185 background-color: #fff;
4186 border: 1px solid #eee;
4187 border-radius: 2px;
4188 padding: 4px;
4191 /********/
4192 /* MATH */
4193 /********/
4195 .mathjax-block-container {
4196 display: block;
4197 overflow-y: hidden;
4198 border-radius: 6px;
4199 margin: 1em 0 1.5em 0;
4201 .mathjax-inline-container {
4202 max-width: 100%;
4203 overflow-x: auto;
4204 overflow-y: hidden;
4205 position: relative;
4206 padding: 0 1px;
4208 #content .mathjax-inline-container,
4209 #content .mathjax-inline-container .mjpage,
4210 #content .mathjax-inline-container .mjx-chtml,
4211 #content .mathjax-inline-container .mjx-math,
4212 #content .mathjax-inline-container .mjx-mrow {
4213 display: inline;
4214 white-space: normal;
4216 .post .mathjax-inline-container {
4217 line-height: 1;
4219 .comment .mathjax-inline-container {
4220 line-height: 1;
4222 .mathjax-inline-container .mjx-chtml {
4223 padding: 0;
4226 /************/
4227 /* SPOILERS */
4228 /************/
4230 .spoiler {
4231 color: #000;
4232 background-color: currentColor;
4233 transition: none;
4234 text-shadow: none;
4235 margin: 1em 0;
4236 box-shadow: 0 0 0 1px currentColor inset;
4237 overflow: auto;
4239 .spoiler:not(:last-child) {
4240 margin-bottom: 0;
4242 #content .spoiler * {
4243 color: inherit;
4244 border: none;
4246 .spoiler:hover {
4247 color: unset;
4248 background-color: unset;
4249 text-shadow: unset;
4250 transition:
4251 color 0.1s ease-out 0.1s,
4252 background-color 0.1s ease-out 0.1s,
4253 text-shadow 0.1s ease-out 0.1s;
4255 .spoiler::selection,
4256 .spoiler ::selection {
4257 color: #fff;
4258 background-color: #000;
4260 .spoiler:not(:hover)::selection,
4261 .spoiler:not(:hover) ::selection {
4262 background-color: transparent;
4265 /*= Fix for LessWrong being weird =*/
4267 .spoiler > p {
4268 padding: 0 7px;
4270 .spoiler > p:first-child {
4271 margin-top: 0.25em;
4273 .spoiler > p:last-child {
4274 margin-bottom: 0;
4275 padding-bottom: 0.25em;
4277 .spoiler > p:hover ~ p {
4278 background-color: currentColor;
4280 .spoiler > p + p {
4281 margin-top: -1em;
4283 .spoiler > p:not(:first-child) {
4284 padding-top: 0.5em;
4286 .spoiler > p:not(:last-child) {
4287 padding-bottom: 0.5em;
4290 .spoiler:not(:hover) pre,
4291 .spoiler:not(:hover) code {
4292 background-color: inherit;
4293 box-shadow: none;
4295 #content .spoiler pre {
4296 border-color: currentColor;
4297 border-style: solid;
4298 border-width: 0 1px;
4299 border-radius: 0;
4302 /*******************/
4303 /* PAGE LIST INDEX */
4304 /*******************/
4306 .page-list-index {
4307 margin: 1em 30px;
4308 line-height: 1.2;
4311 .page-list-index > p {
4312 font-weight: bold;
4313 font-size: 1.2em;
4316 .page-list-index > ul * {
4317 margin: 0;
4320 .page-list-index ul {
4321 padding-left: 1.5em;
4324 .page-list-index li {
4325 margin-top: 0.67em;
4328 .page-list-index li > a {
4329 display: block;
4330 font-size: 1.1em;
4331 font-weight: bold;
4332 margin: 0.33em 0;
4335 .page-list-index li > a:last-child {
4336 margin-bottom: 1em;
4340 /*****************/
4341 /* USER MENTIONS */
4342 /*****************/
4344 .textarea-container .autocomplete-container {
4345 position: absolute;
4346 overflow-y: auto;
4347 font-size: 1.125rem;
4348 cursor: default;
4349 backdrop-filter: blur(2px);
4350 width: 360px;
4352 .textarea-container .autocomplete-container:empty {
4353 display: none;
4356 @media only screen and (min-width: 521px) {
4357 .textarea-container .autocomplete-container.inside {
4358 max-height: calc(100% - 36px);
4359 top: 32px;
4361 .textarea-container .autocomplete-container.outside {
4362 max-height: calc(100% - 28px);
4363 top: 28px;
4364 z-index: 10001;
4367 .textarea-container .autocomplete-container.inside.right {
4368 right: 18px;
4370 .textarea-container .autocomplete-container.inside.left {
4371 left: 18px;
4373 .textarea-container .autocomplete-container.outside.right {
4374 left: calc(100% + 3px);
4376 .textarea-container .autocomplete-container.outside.left {
4377 right: calc(100% + 3px);
4380 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4381 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4383 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4384 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4386 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4387 max-width: calc((300px + 40px * 2) / 2);
4391 .textarea-container .autocomplete-container div {
4392 padding: 2px 8px 0 8px;
4393 white-space: nowrap;
4394 display: flex;
4395 justify-content: flex-end;
4398 .textarea-container .autocomplete-container div span.name {
4399 flex: 1 1 auto;
4400 width: calc(100% - 9em);
4401 overflow: hidden;
4402 text-overflow: ellipsis;
4404 .textarea-container .autocomplete-container div span.name:hover {
4405 overflow: visible;
4406 z-index: 1;
4408 .textarea-container .autocomplete-container div span.age,
4409 .textarea-container .autocomplete-container div span.karma {
4410 font-size: 0.9em;
4411 text-align: right;
4413 .textarea-container .autocomplete-container div span.age {
4414 flex: 0 0 3em;
4416 .textarea-container .autocomplete-container div span.karma {
4417 flex: 0 0 6em;
4421 /***************/
4422 /* COLLECTIONS */
4423 /***************/
4425 h2.sequence-chapter,
4426 h3.sequence-chapter,
4427 h4.sequence-chapter {
4428 text-align: center;
4430 h2.sequence-chapter::before,
4431 h3.sequence-chapter::before,
4432 h4.sequence-chapter::before {
4433 display: block;
4434 margin: 1.5em 0 0.75em 0;
4435 font-style: normal;
4436 font-weight: normal;
4437 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
4439 h2.sequence-chapter::before {
4440 content: '\25A3';
4442 h3.sequence-chapter::before {
4443 content: '\25AA\2004\25AA';
4445 h4.sequence-chapter::before {
4446 content: '\00B7\2004\00B7\2004\00B7';
4450 /*******************/
4451 /* ALIGNMENT FORUM */
4452 /*******************/
4454 #content.alignment-forum-index-page::after {
4455 content: "Alignment Forum";
4456 font-size: 1.5rem;
4457 margin: 0.375em 0 0 -0.375em;
4458 order: -1;
4461 /**********************/
4462 /* FOR NARROW SCREENS */
4463 /**********************/
4465 @media only screen and (max-width: 1440px) {
4466 #hns-date-picker {
4467 right: -81px;
4468 padding: 8px 10px 10px 10px;
4469 bottom: 62px;
4470 display: none;
4472 #hns-date-picker::before {
4473 content: "";
4474 position: absolute;
4475 display: block;
4476 z-index: -1;
4477 height: calc(100% + 2px);
4478 top: -1px;
4479 left: -1px;
4480 width: 50%;
4483 @media only screen and (max-width: 1160px) {
4484 #new-comment-nav-ui {
4485 bottom: 180px;
4486 right: -68px;
4488 #hns-date-picker {
4489 bottom: 200px;
4490 right: -36px;
4492 #hns-date-picker::before {
4493 width: calc(100% - 35px);
4495 #theme-selector button::before {
4496 right: unset;
4497 left: 100%;
4499 #theme-selector:hover::after {
4500 content: "";
4501 display: block;
4502 position: absolute;
4503 width: calc(6em - 7px);
4504 height: calc(100% + 2px);
4505 top: 0;
4506 left: calc(100% + 1px);
4508 #anti-kibitzer-toggle {
4509 bottom: 330px;
4512 @media only screen and (max-width: 1080px) {
4513 #width-selector {
4514 right: -30px;
4516 #width-selector button {
4517 display: block;
4519 #text-size-adjustment-ui {
4520 top: 90px;
4521 right: -30px;
4523 #text-size-adjustment-ui button {
4524 display: block;
4525 position: relative;
4527 #text-size-adjustment-ui button.increase {
4528 bottom: 48px;
4530 #text-size-adjustment-ui button.decrease {
4531 top: 50px;
4533 #theme-selector {
4534 top: 46px;
4535 left: -44px;
4537 #theme-tweaker-toggle {
4538 left: -44px;
4539 top: 2px;
4541 #theme-tweaker-toggle button {
4542 height: 2em;
4543 width: 2em;
4544 padding: 7px;
4546 #quick-nav-ui {
4547 right: -54px;
4549 #new-comment-nav-ui {
4550 right: -55px;
4552 #hns-date-picker {
4553 right: -23px;
4555 #hns-date-picker::before {
4556 width: calc(100% - 22px);
4558 #anti-kibitzer-toggle {
4559 right: -54px;
4562 @media only screen and (max-width: 1040px) {
4563 #quick-nav-ui {
4564 right: -49px;
4566 #new-comment-nav-ui {
4567 right: -50px;
4569 #hns-date-picker {
4570 right: -18px;
4572 #hns-date-picker::before {
4573 width: calc(100% - 17px);
4575 #anti-kibitzer-toggle {
4576 right: -50px;
4579 @media only screen and (max-width: 1020px) {
4580 #quick-nav-ui {
4581 right: -20px;
4583 #new-comment-nav-ui {
4584 right: -21px;
4586 #new-comment-nav-ui .new-comments-count::before {
4587 content: "";
4588 position: absolute;
4589 width: 100%;
4590 height: calc(100% + 45px);
4591 z-index: -1;
4592 left: 0;
4593 top: -22px;
4595 #hns-date-picker {
4596 right: 19px;
4598 #hns-date-picker::before {
4599 width: 100%;
4601 #anti-kibitzer-toggle {
4602 right: -20px;
4605 @media only screen and (max-width: 1000px) {
4606 #theme-selector {
4607 left: -17px;
4608 top: 120px;
4609 padding: 3px 0;
4610 max-width: 32px;
4612 #theme-selector button {
4613 margin: 1px 4px;
4615 #text-size-adjustment-ui {
4616 top: 100px;
4617 right: -12px;
4619 @media not screen and (hover: none) {
4620 #quick-nav-ui,
4621 #new-comment-nav-ui,
4622 #new-comment-nav-ui + #hns-date-picker,
4623 #anti-kibitzer-toggle {
4624 opacity: 0.4;
4626 #quick-nav-ui:hover,
4627 #new-comment-nav-ui:hover,
4628 #new-comment-nav-ui + #hns-date-picker:hover,
4629 #new-comment-nav-ui + #hns-date-picker:focus-within,
4630 #new-comment-nav-ui:hover + #hns-date-picker,
4631 #anti-kibitzer-toggle:hover {
4632 opacity: 1.0;
4635 #theme-tweaker-toggle {
4636 top: 70px;
4637 left: -21px;
4641 /**************/
4642 /* PRINT VIEW */
4643 /**************/
4645 @media only print {
4646 .nav-bar {
4647 visibility: hidden;
4648 max-height: 0;
4649 overflow: hidden;
4651 #ui-elements-container {
4652 display: none;
4654 #images-overlay {
4655 display: none;
4657 #images-overlay + #content .post-body img {
4658 visibility: visible;
4660 .comment-controls {
4661 display: none;
4663 #comments-sort-mode-selector {
4664 display: none;
4666 .comment-minimize-button {
4667 display: none;
4669 .post-meta .qualified-linking,
4670 .post-meta .lw2-link {
4671 display: none;
4673 .comment-meta .permalink,
4674 .comment-meta .lw2-link,
4675 .comment-meta .comment-parent-link {
4676 display: none;
4678 .new-comment::before {
4679 display: none;
4681 #content::before {
4682 box-shadow: none;
4686 /*****************/
4687 /* MOBILE LAYOUT */
4688 /*****************/
4690 /* Hide the mobile elements on desktop screens: */
4692 @media only screen and (max-width: 1160px) {
4693 #post-nav-ui-toggle,
4694 #appearance-adjust-ui-toggle {
4695 display: none;
4699 @media only screen and (max-width: 1160px) {
4701 /*====================*/
4702 /* MOBILE UI ELEMENTS */
4703 /*====================*/
4705 #ui-elements-container {
4706 height: unset !important;
4707 position: unset;
4709 #ui-elements-container > * {
4710 position: fixed;
4711 visibility: hidden;
4712 opacity: 1.0;
4713 z-index: 10000;
4716 #ui-elements-container > div[id$='-ui-toggle'] {
4717 visibility: visible;
4718 display: inline-block;
4719 border-radius: 50%;
4720 z-index: 10000;
4722 #ui-elements-container > div[id$='-ui-toggle'] button,
4723 #theme-selector .theme-selector-close-button {
4724 font-family: Font Awesome;
4725 font-weight: 900;
4726 font-size: 32px;
4727 padding: 10px;
4728 opacity: 0.8;
4729 -webkit-tap-highlight-color: transparent;
4730 transition: transform 0.2s ease;
4732 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4733 #theme-selector .theme-selector-close-button::selection {
4734 background-color: transparent;
4736 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4737 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4738 border: none;
4740 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4741 transform: rotate(-90deg);
4742 opacity: 1.0;
4745 #appearance-adjust-ui-toggle {
4746 bottom: 10px;
4747 left: 10px;
4750 #post-nav-ui-toggle {
4751 bottom: 10px;
4752 right: 10px;
4755 #theme-selector.engaged,
4756 #quick-nav-ui.engaged,
4757 #new-comment-nav-ui.engaged,
4758 #hns-date-picker.engaged {
4759 visibility: visible;
4762 #image-focus-overlay.engaged {
4763 visibility: visible;
4765 #image-focus-overlay .help-overlay {
4766 display: none;
4769 /*=========*/
4770 /* GENERAL */
4771 /*=========*/
4773 @media only screen and (max-width: 900px) {
4774 #content,
4775 #images-overlay,
4776 #ui-elements-container {
4777 min-width: unset;
4778 width: unset;
4780 #content {
4781 padding: 0 4px;
4785 /*================*/
4786 /* THEME SELECTOR */
4787 /*================*/
4789 #theme-selector {
4790 display: flex;
4791 flex-flow: column;
4792 background-color: #fff;
4793 width: calc(100vw - 20px);
4794 max-width: 360px;
4795 padding: 0 0 3px 0;
4796 overflow: hidden;
4797 max-height: 0;
4798 transition:
4799 top 0.2s ease,
4800 max-height 0.2s ease,
4801 visibility 0.2s ease;
4802 top: calc(100% + 10px);
4803 left: 0;
4804 right: 0;
4805 margin: auto;
4807 #theme-selector.engaged {
4808 max-height: 1000px;
4809 top: 10px;
4810 z-index: 10001;
4812 #theme-selector::before {
4813 content: "Select theme";
4814 white-space: nowrap;
4815 display: block;
4816 font-weight: 600;
4817 font-size: 2rem;
4818 margin: 0.375em 1em 0.5em 1em;
4819 text-align: center;
4821 #theme-selector button {
4822 width: calc(100% - 0.5em);
4823 background-repeat: no-repeat;
4824 padding: 1em 0.875em;
4825 margin: 1px 4px;
4826 line-height: 1;
4827 height: unset;
4828 position: relative;
4830 #theme-selector button::after {
4831 content: attr(data-theme-description);
4832 color: #000;
4833 white-space: nowrap;
4834 position: absolute;
4835 text-align: left;
4836 left: 2.5em;
4837 top: 1em;
4839 @media only screen and (max-height: 675px) {
4840 #theme-selector button {
4841 padding: 0.875em;
4843 #theme-selector button::after {
4844 top: 0.875em;
4847 #theme-selector .theme-selector-close-button {
4848 position: absolute;
4849 width: unset;
4850 background-color: transparent;
4851 top: 0;
4852 right: -3px;
4854 #theme-selector .theme-selector-close-button,
4855 #theme-selector .theme-selector-close-button:focus,
4856 #theme-selector .theme-selector-close-button:active,
4857 #theme-selector .theme-selector-close-button:hover {
4858 box-shadow: none;
4861 /*===============*/
4862 /* THEME TWEAKER */
4863 /*===============*/
4865 #theme-selector {
4866 padding: 0 0 64px 0;
4868 #theme-selector ~ #theme-tweaker-toggle {
4869 top: 100%;
4871 #theme-selector ~ #theme-tweaker-toggle::after {
4872 content: "Open theme tweaker";
4873 position: absolute;
4874 font-size: 0.625em;
4875 white-space: nowrap;
4876 left: -50%;
4877 top: 100%;
4879 #theme-selector.engaged ~ #theme-tweaker-toggle {
4880 visibility: visible;
4881 top: 530px;
4882 left: 0;
4883 right: 0;
4884 margin: auto;
4885 z-index: 11111;
4886 transition:
4887 top 0.2s ease,
4888 visibility 0.2s ease;
4890 @media only screen and (max-height: 675px) {
4891 #theme-selector.engaged ~ #theme-tweaker-toggle {
4892 top: 492px;
4895 @supports (width: -moz-fit-content) {
4896 #theme-selector.engaged ~ #theme-tweaker-toggle {
4897 width: -moz-fit-content;
4900 @supports (width: fit-content) {
4901 #theme-selector.engaged ~ #theme-tweaker-toggle {
4902 width: fit-content;
4905 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4906 opacity: 1.0;
4909 #theme-tweaker-ui {
4910 visibility: visible;
4913 /*======================*/
4914 /* ANTI-KIBITZER TOGGLE */
4915 /*======================*/
4917 #theme-selector ~ #anti-kibitzer-toggle {
4918 top: 100%;
4919 bottom: unset;
4920 left: 0;
4921 right: 0;
4922 margin: auto;
4923 box-shadow: none;
4924 width: calc(100vw - 44px);
4925 max-width: 330px;
4926 text-align: right;
4927 pointer-events: none;
4929 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4930 visibility: visible;
4931 z-index: 11110;
4932 top: 530px;
4933 transition:
4934 top 0.2s ease,
4935 visibility 0.2s ease;
4937 @media only screen and (max-height: 675px) {
4938 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4939 top: 492px;
4942 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4943 pointer-events: auto;
4944 display: inline-block;
4947 /*=================*/
4948 /* QUICKNAV WIDGET */
4949 /*=================*/
4951 #quick-nav-ui {
4952 max-width: 0px;
4953 transition:
4954 max-width 0.2s ease,
4955 visibility 0.2s ease;
4956 display: flex;
4957 right: 72px;
4958 bottom: 14px;
4960 #quick-nav-ui.engaged {
4961 max-width: 1000px;
4963 #quick-nav-ui a {
4964 position: relative;
4965 margin: 2px;
4967 #quick-nav-ui a + a {
4968 margin-left: 5px;
4970 #quick-nav-ui a::after {
4971 position: absolute;
4972 top: calc(100% + 2px);
4973 font-size: 0.375rem;
4974 left: 0;
4975 right: 0;
4976 margin: auto;
4977 line-height: 1;
4978 padding: 2px;
4979 text-transform: uppercase;
4980 z-index: -1;
4982 @supports (width: -moz-fit-content) {
4983 #quick-nav-ui a::after {
4984 width: -moz-fit-content;
4987 @supports (width: fit-content) {
4988 #quick-nav-ui a::after {
4989 width: fit-content;
4992 #quick-nav-ui a[href='#top']::after {
4993 content: "Top";
4994 left: -1px;
4996 #quick-nav-ui a[href='#comments']::after {
4997 content: "Comments";
4999 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
5000 visibility: hidden;
5001 transition: visibility 0.2s ease;
5003 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
5004 visibility: visible;
5006 #quick-nav-ui a[href='#bottom-bar']::after {
5007 content: "Bottom";
5010 /*======================*/
5011 /* NEW COMMENT QUICKNAV */
5012 /*======================*/
5014 #new-comment-nav-ui {
5015 max-width: 0px;
5016 max-height: 0px;
5017 transition:
5018 max-width 0.2s ease,
5019 max-height 0.2s ease,
5020 visibility 0.2s ease;
5021 display: flex;
5022 right: 78px;
5023 bottom: 70px;
5025 #new-comment-nav-ui::before {
5026 content: "New Comments";
5027 position: absolute;
5028 bottom: 100%;
5029 font-size: 0.5625rem;
5030 left: 0;
5031 right: 0;
5032 margin: auto;
5033 padding: 2px 3px;
5034 text-transform: uppercase;
5035 z-index: -1;
5037 @supports (width: -moz-fit-content) {
5038 #new-comment-nav-ui::before {
5039 width: -moz-fit-content;
5042 @supports (width: fit-content) {
5043 #new-comment-nav-ui::before {
5044 width: fit-content;
5047 #new-comment-nav-ui.engaged {
5048 max-width: 1000px;
5049 max-height: 1000px;
5051 #new-comment-nav-ui .new-comment-sequential-nav-button {
5052 top: unset;
5053 bottom: unset;
5054 padding: 2px 7px;
5056 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5057 padding: 2px 7px 3px 7px;
5059 #new-comment-nav-ui .new-comments-count {
5060 padding: 4px 0 5px 0;
5062 #new-comment-nav-ui .new-comments-count::before {
5063 display: none;
5065 #new-comment-nav-ui button::after {
5066 position: absolute;
5067 font-size: 0.375rem;
5068 left: 0;
5069 right: 0;
5070 margin: auto;
5071 line-height: 1;
5072 text-transform: uppercase;
5073 pointer-events: none;
5075 #new-comment-nav-ui button.new-comment-previous::after {
5076 content: "Previous";
5077 bottom: 5px;
5079 #new-comment-nav-ui button.new-comment-next::after {
5080 content: "Next";
5081 top: 7px;
5084 /*=================*/
5085 /* HNS DATE PICKER */
5086 /*=================*/
5088 #hns-date-picker {
5089 max-height: 0px;
5090 bottom: 132px;
5091 right: 62px;
5092 transition:
5093 max-height 0.2s ease,
5094 visibility 0.2s ease;
5096 #hns-date-picker.engaged {
5097 max-height: 1000px;
5099 #hns-date-picker::before {
5100 width: calc(100% + 2px);
5101 border-width: 1px !important;
5104 /*=========*/
5105 /* NAV BAR */
5106 /*=========*/
5108 #bottom-bar {
5109 margin-left: auto;
5110 margin-right: auto;
5111 width: calc(100% - 9rem + 8px);
5112 background: rgba(255,255,255,0.85);
5113 backdrop-filter: blur(1px);
5115 #content.index-page #bottom-bar {
5116 z-index: 10001;
5118 #bottom-bar .nav-item {
5119 box-shadow: none;
5120 position: relative;
5122 #bottom-bar .nav-inner {
5123 font-size: 2rem;
5124 padding: 1rem 0 1.25rem 0;
5125 visibility: hidden;
5126 position: static;
5127 width: 0;
5129 #content #bottom-bar .nav-item .nav-inner::before {
5130 margin: 0;
5131 visibility: visible;
5132 position: absolute;
5133 width: 100%;
5134 height: 100%;
5135 left: 0;
5136 top: 0;
5137 padding: 1rem 0;
5139 #bottom-bar .nav-inner::after {
5140 display: block;
5141 visibility: visible;
5142 text-transform: uppercase;
5143 color: unset;
5144 font-size: 0.75rem;
5145 top: unset;
5146 left: 0;
5147 bottom: 1rem;
5148 width: 100%;
5150 #bottom-bar #nav-item-first .nav-inner::after {
5151 content: "First Page";
5153 #bottom-bar #nav-item-prev .nav-inner::after {
5154 content: "Prev. Page";
5156 #bottom-bar #nav-item-top .nav-inner::after {
5157 content: "Top";
5159 #bottom-bar #nav-item-next .nav-inner::after {
5160 content: "Next Page";
5162 #bottom-bar #nav-item-last .nav-inner::after {
5163 content: "Last Page";
5166 @media only screen and (max-width: 900px) {
5167 .nav-bar-top {
5168 font-size: 0.75rem;
5170 .nav-bar {
5171 width: calc(100% + 8px);
5172 margin: 0 -4px;
5174 .nav-bar .nav-inner::after {
5175 display: none;
5178 #primary-bar .nav-item {
5179 flex: 1 1 100%;
5181 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5182 flex: 1 1 60px;
5184 .nav-bar-top:not(#anything) .nav-inner {
5185 text-transform: uppercase;
5186 padding: 6px;
5188 .nav-bar-top .nav-inner::before {
5189 display: block;
5190 font-family: "Font Awesome";
5191 font-size: 2em;
5192 font-weight: 900;
5195 #nav-item-home .nav-inner::before {
5196 content: "\F015";
5198 #nav-item-featured .nav-inner::before {
5199 content: "\F005";
5201 #nav-item-all .nav-inner::before {
5202 content: "\F069";
5204 #nav-item-meta .nav-inner::before {
5205 content: "\F077";
5207 #nav-item-tags .nav-inner::before {
5208 content: "\F02C";
5210 #nav-item-recent-comments > * > span {
5211 display: none;
5213 #nav-item-recent-comments .nav-inner::before,
5214 #nav-item-alignment-forum-comments .nav-inner::before {
5215 content: "\F036";
5217 #nav-item-alignment-forum .nav-inner::before {
5218 content: "AF";
5219 font-family: Concourse, 'Changa One';
5221 #nav-item-questions .nav-inner::before {
5222 content: "?";
5223 font-family: Concourse, 'Changa One';
5225 #nav-item-events .nav-inner::before {
5226 content: "\F5A0";
5228 #nav-item-shortform .nav-inner::before {
5229 content: "\F2F2";
5231 #nav-item-archive .nav-inner::before {
5232 content: "\F187";
5234 #nav-item-about .nav-inner::before {
5235 content: "\F129";
5237 #nav-item-search {
5238 font-size: 2em;
5239 padding: 10px;
5241 #nav-item-search .nav-inner::before {
5242 content: none;
5244 #nav-item-search .nav-inner {
5245 height: 100%;
5246 display: flex;
5248 #nav-item-search input {
5249 width: 100%;
5250 height: 100%;
5252 #nav-item-search button {
5253 height: 100%;
5254 padding: 5px 5px 5px 10px;
5255 width: 40px;
5256 overflow: visible;
5257 visibility: hidden;
5259 #nav-item-search button::before {
5260 content: "\F002";
5261 font-family: Font Awesome;
5262 font-weight: 900;
5263 visibility: visible;
5265 #nav-item-login {
5266 padding: 0;
5268 #nav-item-login .nav-inner::before {
5269 content: "\F007";
5272 @media only screen and (max-width: 520px) {
5273 .nav-bar-top {
5274 font-size: 0.5rem;
5277 #nav-item-search,
5278 #nav-item-search .nav-inner {
5279 padding: 0;
5281 #nav-item-search button {
5282 width: 31px;
5285 #bottom-bar #nav-item-first .nav-inner::after {
5286 content: "First";
5288 #bottom-bar #nav-item-prev .nav-inner::after {
5289 content: "Prev";
5291 #bottom-bar #nav-item-next .nav-inner::after {
5292 content: "Next";
5294 #bottom-bar #nav-item-last .nav-inner::after {
5295 content: "Last";
5299 /*=================*/
5300 /* INBOX INDICATOR */
5301 /*=================*/
5303 @media only screen and (max-width: 900px) {
5304 #inbox-indicator {
5305 width: 100%;
5306 top: 0;
5307 pointer-events: none;
5309 #inbox-indicator::before {
5310 width: 100%;
5311 font-size: 1rem;
5312 text-align: right;
5313 padding: 1px 6px;
5315 #inbox-indicator.new-messages {
5316 pointer-events: auto;
5318 #inbox-indicator.new-messages::before {
5319 box-shadow: 0 0 8px 1px #f00 inset;
5322 @media only screen and (max-width: 520px) {
5323 #inbox-indicator::before {
5324 font-size: 0.75rem;
5325 padding: 2px 5px;
5328 @media only screen and (max-width: 374px) {
5329 #inbox-indicator::before {
5330 font-size: 0.625rem;
5334 /*===================*/
5335 /* TOP PAGINATION UI */
5336 /*===================*/
5338 #top-nav-bar {
5339 font-size: 1.75rem;
5342 /*==============*/
5343 /* PAGE TOOLBAR */
5344 /*==============*/
5346 @media only screen and (max-width: 900px) {
5347 #content > .page-toolbar {
5348 font-size: 1rem;
5349 margin-right: 0;
5351 #content.user-page > .page-toolbar {
5352 grid-column: 2 / span 2;
5353 margin: 0 0 6px 0;
5356 @media only screen and (max-width: 520px) {
5357 #content:not(.user-page) .page-toolbar {
5358 display: flex;
5359 flex-direction: column-reverse;
5360 text-align: right;
5361 align-self: start;
5362 padding: 4px 0 0 0;
5364 #content.user-page .page-toolbar {
5365 display: flex;
5366 flex-flow: row;
5367 justify-content: flex-end;
5368 padding: 2px 0 0 0;
5370 #content.user-page .page-toolbar > form,
5371 #content.user-page .page-toolbar > .button {
5372 text-align: center;
5373 flex-basis: 25%;
5374 margin-left: 1.5em;
5376 #content.user-page .page-toolbar .button {
5377 text-transform: uppercase;
5378 font-size: 0.625rem;
5380 #content.user-page .page-toolbar .button::before {
5381 font-size: 1.375rem;
5382 display: block;
5383 padding: 0;
5385 #content.user-page .page-toolbar .rss {
5386 white-space: nowrap;
5387 margin: 0 0 0 1.5em;
5389 .page-toolbar > * {
5390 line-height: 1.15;
5391 padding: 6px 0;
5392 margin: 0;
5396 /*==============*/
5397 /* SUBLEVEL NAV */
5398 /*==============*/
5400 @media only screen and (max-width: 900px) {
5401 .sublevel-nav:not(.sort) {
5402 flex-wrap: wrap;
5403 width: calc(100vw - 200px);
5405 .sublevel-nav:not(.sort) .sublevel-item {
5406 margin: 1px;
5407 flex-basis: 7em;
5410 @media only screen and (max-width: 520px) {
5411 .sublevel-nav:not(.sort) .sublevel-item {
5412 font-size: 1rem;
5416 /*=====================*/
5417 /* SORT ORDER SELECTOR */
5418 /*=====================*/
5420 @media only screen and (max-width: 720px) {
5421 #content.index-page > .sublevel-nav.sort {
5422 flex-flow: column;
5423 margin-left: 4px;
5427 /*==========*/
5428 /* ARCHIVES */
5429 /*==========*/
5431 @media only screen and (max-width: 900px) {
5432 div[class^='archive-nav-'] {
5433 flex-wrap: wrap;
5434 justify-content: flex-start;
5436 .archive-nav *[class^='archive-nav-item'],
5437 .archive-nav *[class^='archive-nav-item']:first-child {
5438 padding: 10px;
5439 margin: 2px;
5440 max-width: unset;
5441 flex: 0 1 calc((100% / 8) - 4px);
5443 .archive-nav .archive-nav-item-day,
5444 .archive-nav .archive-nav-item-day:first-child {
5445 flex-basis: calc((100% / 16) - 4px);
5447 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5448 margin-top: 8px;
5449 position: relative;
5451 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5452 content: "";
5453 display: block;
5454 position: absolute;
5455 height: 1px;
5456 width: calc(100% + 8px);
5457 left: -4px;
5458 top: -4px;
5461 @media only screen and (max-width: 720px) {
5462 .archive-nav .archive-nav-item-day,
5463 .archive-nav .archive-nav-item-day:first-child {
5464 flex-basis: calc((100% / 12) - 4px);
5467 @media only screen and (max-width: 520px) {
5468 .archive-nav *[class^='archive-nav-item'],
5469 .archive-nav *[class^='archive-nav-item']:first-child {
5470 flex-basis: calc((100% / 5) - 4px);
5472 .archive-nav .archive-nav-item-day,
5473 .archive-nav .archive-nav-item-day:first-child {
5474 flex-basis: calc((100% / 8) - 4px);
5478 /*==========*/
5479 /* LISTINGS */
5480 /*==========*/
5482 h1.listing {
5483 max-height: unset;
5486 /*============*/
5487 /* USER PAGES */
5488 /*============*/
5490 #content.user-page h1.page-main-heading {
5491 align-self: end;
5493 @media only screen and (max-width: 520px) {
5494 #content.user-page h1.page-main-heading {
5495 overflow: hidden;
5496 text-overflow: ellipsis;
5498 #content.user-page .user-stats .karma-type {
5499 display: block;
5503 /*============*/
5504 /* LOGIN PAGE */
5505 /*============*/
5507 @media only screen and (max-width: 640px) {
5508 .login-container {
5509 flex-flow: column;
5510 margin: 0 auto 3em auto;
5511 max-width: 400px;
5513 .login-container #login-form,
5514 .login-container #signup-form {
5515 padding: 0 1em 1.25em 1em;
5516 grid-row-gap: 0;
5518 .login-container #signup-form {
5519 padding-top: 1em;
5521 .login-container #login-form > *,
5522 .login-container #signup-form > * {
5523 grid-column: 1 / span 2;
5525 .login-container form label {
5526 text-align: left;
5527 padding: 0;
5528 line-height: 1;
5530 .login-container form input {
5531 margin: 0.25em 0 0.75em 0;
5532 padding: 0.5em;
5534 .login-container form h1 {
5535 grid-column: 1 / span 2;
5536 margin: 0 0 0.25em 0;
5538 .login-container form a {
5539 margin: 0.75em 0 0 0;
5541 .login-container .login-tip {
5542 margin: 1.5em 1em 0 1em;
5546 /*==================*/
5547 /* POSTS & COMMENTS */
5548 /*==================*/
5550 @media only screen and (max-width: 720px) {
5551 .body-text ol > li {
5552 padding: 0 0 0 2.25em;
5554 .body-text ol > li::before {
5555 width: 1.75em;
5557 .body-text ul:not(.contents-list) > li,
5558 .body-text ul:not(.contents-list) > li ul > li {
5559 padding: 0 0 0 0.75em;
5561 .body-text ul:not(.contents-list) > li::before,
5562 .body-text ul:not(.contents-list) > li ul > li::before {
5563 width: 0.125em;
5564 margin-left: -0.06em;
5568 /*===========*/
5569 /* POST-META */
5570 /*===========*/
5572 .post-meta {
5573 line-height: 1.9;
5575 @media only screen and (max-width: 720px) {
5576 .post-meta .lw2-link span,
5577 .post-meta .karma-value span,
5578 .post-meta .comment-count span {
5579 display: none;
5581 .post-meta .comment-count::before {
5582 content: "\F086";
5583 font-family: Font Awesome;
5584 font-size: 0.875em;
5585 margin: 0 0.25em 0 0;
5586 font-weight: 400;
5590 /*===================*/
5591 /* POSTS & BODY TEXT */
5592 /*===================*/
5594 @media only screen and (max-width: 900px) {
5595 .post-body,
5596 h1.post-title,
5597 .tag-description,
5598 .sequence-text {
5599 padding: 0 6px;
5602 @media only screen and (max-width: 520px) {
5603 .post-body {
5604 font-size: 1.2rem;
5605 line-height: 1.45;
5607 h1.post-title {
5608 font-size: 2em;
5612 /*==============*/
5613 /* COMMENT-META */
5614 /*==============*/
5616 a.comment-parent-link::after {
5617 display: none;
5619 @media only screen and (max-width: 900px) {
5620 .comment-meta {
5621 padding: 2px 40px 2px 10px;
5624 @media only screen and (max-width: 720px) {
5625 .comment .karma-value span {
5626 display: none;
5628 .comment-meta .comment-parent-link {
5629 opacity: 1.0;
5632 @media only screen and (max-width: 520px) {
5633 .comment-meta {
5634 padding: 2px 24px 2px 10px;
5635 position: relative;
5637 .comment-meta > * {
5638 order: 3;
5640 .comment-meta > :not(.author) {
5641 line-height: 1.8;
5643 .comment-meta .author,
5644 .comment-meta .date {
5645 order: 1;
5647 .comment-meta:before {
5648 content: "";
5649 order: 2;
5650 flex-basis: 100%;
5652 .comment-post-title2 {
5653 display: block;
5654 text-overflow: ellipsis;
5655 overflow: hidden;
5657 .comment-meta .lw2-link {
5658 display: none;
5662 /*=======================*/
5663 /* COMMENTS COMPACT VIEW */
5664 /*=======================*/
5666 /*===========================*/
5667 /* COMMENT THREAD NAVIGATION */
5668 /*===========================*/
5670 @media only screen and (max-width: 900px) {
5671 a.comment-parent-link {
5672 width: 0;
5673 visibility: hidden;
5674 position: relative;
5676 a.comment-parent-link::before {
5677 padding: 0;
5678 font-size: 1em;
5679 left: 0;
5680 top: 0;
5681 line-height: inherit;
5682 visibility: visible;
5683 content: "\F3BF";
5684 transform: scaleX(-1);
5685 width: 2em;
5686 text-align: center;
5689 @media only screen and (max-width: 520px) {
5690 a.comment-parent-link {
5691 position: static;
5693 a.comment-parent-link::before {
5694 padding: 6px;
5695 left: unset;
5696 right: 0;
5697 top: unset;
5698 bottom: 0;
5699 height: 2em;
5703 /*=================================*/
5704 /* COMMENT THREAD MINIMIZE BUTTONS */
5705 /*=================================*/
5707 @media only screen and (max-width: 520px) {
5708 .comment-minimize-button{
5709 right: 2px;
5713 /*===========================*/
5714 /* COMMENTING AND POSTING UI */
5715 /*===========================*/
5717 @media only screen and (max-width: 900px) {
5718 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5719 font-size: 0;
5721 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5722 font-size: 0.9rem;
5724 .comment-controls .cancel-comment-button {
5725 max-width: 1.3em;
5726 overflow: hidden;
5727 margin-right: 0.125em;
5729 .comment-controls .edit-button::before {
5730 font-size: 0.9375rem;
5732 .comments > .comment-controls .cancel-comment-button {
5733 right: 8px;
5735 .comment-controls .cancel-comment-button::before {
5736 font-size: 1.25rem;
5739 @media only screen and (max-width: 520px) {
5740 .comment-controls {
5741 position: static;
5743 .comment-controls:focus-within {
5744 z-index: 10001;
5746 .comment-controls .cancel-comment-button {
5747 right: 10px;
5749 .textarea-container:focus-within textarea {
5750 position: fixed;
5751 top: 0;
5752 left: 2px;
5753 width: calc(100vw - 4px);
5754 height: calc(100% - 100px);
5755 min-height: unset;
5756 max-height: unset;
5757 border-width: 1px;
5758 z-index: 11001;
5760 #content.conversation-page .textarea-container:focus-within textarea {
5761 height: calc(100% - 54px);
5763 #content.conversation-page .textarea-container:focus-within::after {
5764 content: "";
5765 display: block;
5766 width: 100%;
5767 height: 50px;
5768 position: fixed;
5769 left: 0;
5770 bottom: 0;
5771 z-index: 11000;
5773 .textarea-container:focus-within .guiedit-buttons-container {
5774 position: fixed;
5775 z-index: 11002;
5776 left: 0;
5777 width: 100vw;
5778 height: auto;
5779 background-image: none;
5780 padding: 3px 4px 4px 4px;
5781 margin: 0;
5782 text-align: center;
5783 top: auto;
5784 bottom: 0;
5786 .textarea-container:focus-within button.guiedit {
5787 font-size: 0.9375rem;
5788 line-height: 1.5;
5789 height: auto;
5790 width: calc((100% / 10) - 2px);
5791 padding: 10px 1px 8px 0;
5792 position: relative;
5793 margin: 1px;
5795 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5796 z-index: 11011;
5797 position: fixed;
5798 bottom: 7px;
5799 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5800 font-size: 1.25rem;
5801 padding: 5px 5px 6px 5px;
5802 display: block;
5804 .textarea-container:focus-within button.guiedit sup {
5805 position: absolute;
5806 left: calc(50% + 0.65em);
5807 top: calc(50% - 1.3em);
5809 .textarea-container:focus-within .guiedit-mobile-help-button {
5810 left: 8px;
5812 .textarea-container:focus-within .guiedit-mobile-exit-button {
5813 right: 8px;
5815 .guiedit::after {
5816 display: none;
5819 #markdown-hints,
5820 #edit-post-form #markdown-hints {
5821 z-index: 11111;
5822 position: fixed;
5823 top: 40px;
5824 left: 0;
5825 right: 0;
5826 margin: auto;
5827 padding: 4px 0 4px 8px;
5828 width: 310px;
5829 border-width: 3px;
5830 border-style: double;
5831 pointer-events: none;
5833 #markdown-hints::after {
5834 content: "(Type to hide this help box.)";
5835 color: #090;
5836 display: block;
5837 margin: 12px 18px 13px 10px;
5838 padding: 5px;
5839 font-size: 0.9em;
5840 text-align: center;
5844 /*================*/
5845 /* EDIT POST FORM */
5846 /*================*/
5848 @media only screen and (max-width: 520px) {
5849 #edit-post-form {
5850 padding-bottom: 0;
5852 #edit-post-form .post-meta-fields {
5853 grid-template-columns: 4.5em auto auto auto 1fr auto;
5855 #edit-post-form label[for='url'],
5856 #edit-post-form label[for='section'],
5857 #edit-post-form label[for='title'] {
5858 padding-left: 0;
5860 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5861 white-space: normal;
5862 line-height: 0.9;
5863 top: -1px;
5864 font-family: Font Awesome;
5865 font-weight: 900;
5866 justify-self: start;
5868 #edit-post-form .post-meta-fields .question-checkbox,
5869 #edit-post-form .post-meta-fields .question-checkbox + label {
5870 grid-column: 6;
5871 margin-left: unset;
5873 #edit-post-form .post-meta-fields input[type='radio'] + label {
5874 align-self: start;
5876 #edit-post-form .textarea-container:focus-within textarea {
5877 height: calc(100% - 101px);
5878 min-height: unset;
5881 #markdown-hints-checkbox,
5882 #markdown-hints-checkbox + label {
5883 display: none;
5886 #edit-post-form div:last-child {
5887 clear: both;
5888 overflow: auto;
5890 #edit-post-form input[type='submit'] {
5891 float: none;
5892 display: block;
5893 font-size: 1.5rem;
5894 margin: 1rem auto 1.5rem auto;
5895 padding: 6px 12px 8px 12px;
5898 #edit-post-form .textarea-container .autocomplete-container,
5899 .comment-controls .textarea-container .autocomplete-container {
5900 max-height: calc(50vh - 101px);
5901 position: fixed;
5902 top: 50vh;
5903 left: 4px;
5904 right: 4px;
5905 width: unset;
5906 z-index: 11002;
5910 /*===================*/
5911 /* TABLE OF CONTENTS */
5912 /*===================*/
5914 @media only screen and (max-width: 900px) {
5915 .contents {
5916 float: none;
5917 display: table;
5918 max-width: none;
5919 margin-left: auto;
5920 margin-right: auto;
5923 @media only screen and (max-width: 520px) {
5924 .contents {
5925 max-width: 100%;
5926 margin: 1em auto 0 auto;
5927 display: table;
5929 .contents-head {
5930 font-size: 1.2em;
5932 div.post-body .contents ul {
5933 font-size: unset;
5937 /*========================*/
5938 /* QUALIFIED HYPERLINKING */
5939 /*========================*/
5941 @media only screen and (max-width: 520px) {
5942 .qualified-linking-toolbar {
5943 right: -5em;
5947 } /* END MOBILE LAYOUT */
5950 /**************/
5951 /* THEME ZERO */
5952 /**************/
5954 /*===========*/
5955 /* VARIABLES */
5956 /*===========*/
5958 /* Color scheme.
5960 :root {
5961 --GW-comment-background-color-odd: #eee;
5962 --GW-comment-background-color-even: #fff;
5963 --GW-comment-background-color-target: #ffd;
5966 /*======*/
5967 /* BASE */
5968 /*======*/
5970 body {
5971 color: #000;
5972 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
5973 background-color: #eee;
5975 #content {
5976 line-height: 1.55;
5979 /*=========*/
5980 /* NAV BAR */
5981 /*=========*/
5983 .nav-bar {
5984 background-color: #e4e4e4;
5986 .nav-inner {
5987 font-size: 1.125em;
5988 padding: 11px 30px 13px 30px;
5990 .nav-bar-top:not(#primary-bar) .nav-inner {
5991 font-size: 0.875em;
5993 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
5994 padding: 6px 0 3px 0;
5996 @media only screen and (min-width: 901px) {
5997 .nav-bar-top:not(#primary-bar) #nav-item-sequences .nav-inner {
5998 line-height: 1.1;
6001 .active-bar {
6002 border-top: 2px solid #eee;
6005 .nav-bar a:visited {
6006 color: #00e;
6009 #bottom-bar.decorative {
6010 background-color: transparent;
6012 #bottom-bar.decorative::before,
6013 #bottom-bar.decorative::after {
6014 content: "GW";
6015 display: block;
6016 text-align: center;
6017 padding: 0.25em 0 1em 0;
6019 #bottom-bar.decorative::before {
6020 width: 100%;
6021 color: transparent;
6022 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
6023 background-repeat: repeat-x;
6024 background-position: center 35%;
6025 margin: 0 30px;
6026 filter: contrast(90%);
6028 #bottom-bar.decorative::after {
6029 color: #d8d8d8;
6030 position: absolute;
6031 left: 0;
6032 right: 0;
6033 margin: auto;
6034 background-color: #eee;
6035 padding-right: 4px;
6036 padding-left: 4px;
6038 @supports (width: -moz-fit-content) {
6039 #bottom-bar.decorative::after {
6040 width: -moz-fit-content;
6043 @supports (width: fit-content) {
6044 #bottom-bar.decorative::after {
6045 width: fit-content;
6049 /* Accesskey hints */
6051 .nav-inner::after {
6052 display: block;
6053 position: absolute;
6054 left: 5px;
6055 top: -1px;
6056 font-weight: 400;
6057 font-size: 0.7em;
6058 color: #d8d8d8;
6060 .inactive-bar .nav-inner::after {
6061 color: #ccc;
6063 .nav-inner:hover::after {
6064 color: #bbb;
6067 /* "Tabs" */
6069 .nav-current {
6070 background-color: #eee;
6073 /* Search tab */
6075 #nav-item-search form::before {
6076 font-size: 1.125em;
6078 #nav-item-search button {
6079 border: none;
6080 font-weight: inherit;
6082 #nav-item-search input::placeholder {
6083 color: #d00;
6084 font-weight: normal;
6087 /*= Top pagination UI hover tooltips =*/
6089 #top-nav-bar a::after,
6090 #bottom-bar a::after {
6091 color: #000;
6094 /*==============*/
6095 /* PAGE TOOLBAR */
6096 /*==============*/
6098 .new-post,
6099 .new-post:visited,
6100 .new-private-message,
6101 .new-private-message:visited {
6102 color: #090;
6104 .logout-button {
6105 color: #d33;
6108 /*==============*/
6109 /* SUBLEVEL NAV */
6110 /*==============*/
6112 .sublevel-nav .sublevel-item {
6113 color: #777;
6115 .sublevel-nav .sublevel-item:not(.selected):hover {
6116 background-color: #ddd;
6117 color: #000;
6118 text-decoration: none;
6119 text-shadow: none;
6121 .sublevel-nav .sublevel-item:not(.selected):active,
6122 .sublevel-nav .sublevel-item.selected {
6123 background-color: #ddd;
6124 color: #000;
6125 text-shadow:
6126 0 -1px 0 #fff,
6127 0 0.5px 0.5px #000;
6130 .sublevel-nav:not(.sort) .sublevel-item {
6131 border-style: solid;
6132 border-color: #ccc;
6133 border-width: 1px 0 1px 1px;
6135 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6136 border-radius: 8px 0 0 8px;
6138 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6139 border-width: 1px;
6140 border-radius: 0 8px 8px 0;
6143 /*=====================*/
6144 /* SORT ORDER SELECTOR */
6145 /*=====================*/
6147 .sublevel-nav.sort {
6148 padding: 18px 0 0 0;
6149 border-radius: 8px;
6150 pointer-events: none;
6152 .sublevel-nav.sort::before {
6153 text-transform: uppercase;
6154 font-weight: 600;
6155 color: #444;
6156 text-shadow: 0.5px 0.5px 0 #fff;
6157 z-index: 1;
6159 .sublevel-nav.sort::after {
6160 content: "";
6161 position: absolute;
6162 display: block;
6163 top: 0;
6164 left: 0;
6165 width: 100%;
6166 height: 100%;
6167 border-radius: 6px;
6168 box-shadow:
6169 0 18px 0 0 #eee inset,
6170 0 0 0 1px #ccc inset,
6171 0 18px 0 1px #ccc inset,
6172 0 0 0 2px #eee;
6174 .sublevel-nav.sort .sublevel-item {
6175 padding: 7px 7px 6px 7px;
6176 text-transform: uppercase;
6177 box-shadow: 1px 1px 0 0 #ccc inset;
6178 pointer-events: auto;
6181 /*================*/
6182 /* WIDTH SELECTOR */
6183 /*================*/
6185 #width-selector button {
6186 box-shadow:
6187 0 0 0 4px #eee inset,
6188 0 0 0 5px #aaa inset;
6190 #width-selector button:hover,
6191 #width-selector button.selected {
6192 box-shadow:
6193 0 0 0 1px #eee inset,
6194 0 0 0 2px #aaa inset,
6195 0 0 0 4px #eee inset,
6196 0 0 0 5px #aaa inset;
6198 #width-selector button::after {
6199 color: #999;
6202 /*================*/
6203 /* THEME SELECTOR */
6204 /*================*/
6206 #theme-selector button {
6207 box-shadow:
6208 0 0 0 4px #eee inset,
6209 0 0 0 5px #999 inset;
6211 #theme-selector button:hover,
6212 #theme-selector button.selected {
6213 box-shadow:
6214 0 0 0 1px #eee inset,
6215 0 0 0 2px #999 inset,
6216 0 0 0 4px #eee inset,
6217 0 0 0 5px #999 inset;
6220 #theme-selector button::before {
6221 color: #aaa;
6222 background-color: #eee;
6224 #theme-selector button:hover::before,
6225 #theme-selector button.selected::before {
6226 color: #666;
6229 /*======================*/
6230 /* THEME TWEAKER TOGGLE */
6231 /*======================*/
6233 #theme-tweaker-toggle button {
6234 color: #777;
6237 /*=================*/
6238 /* QUICKNAV WIDGET */
6239 /*=================*/
6241 #quick-nav-ui a {
6242 color: #00c;
6243 border-radius: 4px;
6244 box-shadow: 0 0 0 1px #ddf;
6245 text-decoration: none;
6247 #quick-nav-ui a[href='#bottom-bar'] {
6248 line-height: 1.8;
6250 #quick-nav-ui a:active {
6251 transform: scale(0.9);
6253 #quick-nav-ui a[href='#comments'].no-comments {
6254 opacity: 0.4;
6255 color: #bbb;
6257 @media only screen and (hover: hover) {
6258 #quick-nav-ui a:hover {
6259 color: #f00;
6260 box-shadow: 0 0 0 1px #faa;
6262 #quick-nav-ui a:focus:not(:hover) {
6263 transform: none;
6264 text-shadow: none;
6268 /*======================*/
6269 /* NEW COMMENT QUICKNAV */
6270 /*======================*/
6272 #new-comment-nav-ui .new-comments-count {
6273 font-weight: 600;
6274 color: #666;
6275 text-shadow: 0.5px 0.5px 0 #fff;
6277 #new-comment-nav-ui .new-comments-count::after {
6278 font-weight: 600;
6279 color: #777;
6281 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6282 color: #bbb;
6283 text-shadow: none;
6285 @media only screen and (hover: hover) {
6286 #new-comment-nav-ui .new-comments-count:hover {
6287 text-shadow:
6288 0 0 1px #fff,
6289 0 0 3px #fff,
6290 0 0 5px #fff,
6291 0 0 8px #fff,
6292 0.5px 0.5px 0 #fff;
6294 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6295 color: #d00;
6296 text-shadow:
6297 0 0 1px #fff,
6298 0 0 3px #fff,
6299 0 0 5px #fff;
6303 /*=================*/
6304 /* HNS DATE PICKER */
6305 /*=================*/
6307 #hns-date-picker span {
6308 color: #777;
6309 text-shadow: 0.5px 0.5px 0 #fff;
6310 font-weight: 600;
6312 #hns-date-picker input {
6313 border: 1px solid #777;
6314 background-color: transparent;
6315 color: #666;
6317 #hns-date-picker input:focus {
6318 color: #000;
6321 /*======================*/
6322 /* ANTI-KIBITZER TOGGLE */
6323 /*======================*/
6325 #anti-kibitzer-toggle button::before,
6326 #anti-kibitzer-toggle button::after {
6327 background-color: #aaa;
6328 -webkit-background-clip: text;
6329 color: transparent;
6330 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
6332 #anti-kibitzer-toggle button:hover::before,
6333 #anti-kibitzer-toggle button:hover::after {
6334 background-color: #777;
6337 /*======================*/
6338 /* TEXT SIZE ADJUSTMENT */
6339 /*======================*/
6341 #text-size-adjustment-ui button {
6342 color: #777;
6344 #text-size-adjustment-ui button.default {
6345 font-weight: 600;
6347 #text-size-adjustment-ui button:disabled:hover {
6348 text-shadow: none;
6350 #text-size-adjustment-ui::after {
6351 color: #999;
6354 /*=============================*/
6355 /* COMMENTS VIEW MODE SELECTOR */
6356 /*=============================*/
6358 #comments-view-mode-selector a {
6359 color: #777;
6362 /*==========*/
6363 /* ARCHIVES */
6364 /*==========*/
6366 .archive-nav {
6367 border: 1px solid #aaa;
6369 .archive-nav *[class^='archive-nav-item'] {
6370 border-style: solid;
6371 border-color: #ddd;
6372 border-width: 1px 0 1px 1px;
6373 background-color: #eee;
6375 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6376 border-top-width: 0;
6377 border-bottom-width: 0;
6379 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6380 border-bottom-width: 1px;
6382 .archive-nav *[class^='archive-nav-item']:last-child {
6383 border-right-width: 1px;
6385 .archive-nav span[class^='archive-nav-item'] {
6386 font-weight: bold;
6387 background-color: #ddd;
6390 .archive-nav a:link,
6391 .archive-nav a:visited {
6392 color: rgba(0, 0, 238, 0.7);
6394 .archive-nav a:hover {
6395 text-decoration: none;
6396 color: #c00;
6397 background-color: #e0e0e0;
6398 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6400 .archive-nav a:active {
6401 transform: scale(0.9);
6403 .archive-nav a:focus:not(:hover) {
6404 transform: none;
6406 .archive-nav a.archive-nav-item-day:hover {
6407 background-color: #ddd;
6410 /*==========*/
6411 /* LISTINGS */
6412 /*==========*/
6414 h1.listing {
6415 margin: 0.7em 20px 0.1em 20px;
6416 max-width: calc(100% - 40px);
6417 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif, 'Font Awesome';
6418 font-size: 1.375rem;
6419 line-height: 1.2;
6422 h1.listing .link-post-link {
6423 color: #00c;
6424 font-size: 0.75em;
6426 h1.listing .post-title-link {
6427 color: #000;
6428 font-weight: bold;
6431 @media only screen and (hover: hover) {
6432 h1.listing a:hover,
6433 h1.listing a:focus {
6434 color: #777;
6435 background-color: rgba(238,238,238,0.85);
6437 h1.listing:focus-within::before {
6438 color: #00f;
6439 left: -0.625em;
6440 top: 1px;
6442 h1.listing .link-post-link:hover {
6443 color: #4879ec;
6444 text-shadow:
6445 0.5px 0.5px 0 #fff,
6446 -0.5px -0.5px 0 #fff,
6447 0 0 2px #fff,
6448 0 0 3px #00c;
6452 h1.listing .edit-post-link {
6453 padding: 6px 3px 32px 0.5em;
6454 top: 0;
6455 right: 0;
6457 h1.listing .edit-post-link:hover {
6458 text-decoration: none;
6460 #content.user-page h1.listing .edit-post-link {
6461 background-color: #eee;
6464 /*======*/
6465 /* SPAM */
6466 /*======*/
6468 h1.listing.spam {
6469 opacity: 0.1;
6471 h1.listing.spam + .post-meta {
6472 opacity: 0.25;
6474 h1.listing.spam:hover,
6475 h1.listing.spam + .post-meta:hover,
6476 h1.listing.spam:hover + .post-meta {
6477 opacity: 1.0;
6480 /*===================*/
6481 /* LISTING POST-META */
6482 /*===================*/
6484 h1.listing + .post-meta {
6485 font-size: 0.875rem;
6488 h1.listing + .post-meta .karma-value {
6489 cursor: default;
6492 /*============*/
6493 /* USER PAGES */
6494 /*============*/
6496 #content.user-page h1.page-main-heading {
6497 border-bottom: 1px solid #ccc;
6500 #content.user-page h1.listing,
6501 #content.user-page h1.listing + .post-meta {
6502 border-style: solid;
6503 border-color: #ccc;
6505 #content.user-page h1.listing {
6506 padding: 0 6px;
6507 padding-top: 0.25em;
6508 border-width: 1px 1px 0 1px;
6509 margin: 1rem 0 0 0;
6510 max-width: 100%;
6512 #content.own-user-page h1.listing,
6513 h1.listing.own-post-listing {
6514 padding-right: 36px;
6516 @media only screen and (hover: hover) {
6517 #content.user-page h1.listing:focus-within::before {
6518 left: -0.625em;
6519 top: 6px;
6522 #content.user-page h1.listing + .post-meta {
6523 padding: 0.75em 6px 0.5em 32px;
6524 border-width: 0 1px 1px 1px;
6525 margin: 0 0 1rem 0;
6527 #content.user-page h1.listing + .post-meta .post-section::before {
6528 left: 0;
6531 #content.conversations-user-page h1.listing {
6532 padding: 6px 6px 4px 9px;
6533 font-size: 1.5rem;
6535 #content.conversations-user-page h1.listing + .post-meta {
6536 padding: 6px 4px;
6537 margin: 0;
6540 .user-stats .karma-total {
6541 font-weight: bold;
6544 /*===============*/
6545 /* CONVERSATIONS */
6546 /*===============*/
6548 /*============*/
6549 /* LOGIN PAGE */
6550 /*============*/
6552 .login-container form input[type='submit'] {
6553 font-weight: bold;
6554 background-color: #eee;
6555 border: 1px solid #ccc;
6557 .login-container form input[type='submit']:hover,
6558 .login-container form input[type='submit']:focus {
6559 background-color: #ddd;
6560 border: 1px solid #aaa;
6563 /* “Create account” form */
6565 #signup-form {
6566 background-color: #f3f3f3;
6567 border: 1px solid #ddd;
6569 #signup-form input[type='submit'] {
6570 background-color: #e4e4e4;
6571 border: 1px solid #ccc;
6573 #signup-form input[type='submit']:hover {
6574 background-color: #d8d8d8;
6575 border: 1px solid #aaa;
6578 /* Log in tip */
6580 .login-container .login-tip {
6581 border: 1px solid #eee;
6584 /* Message box */
6586 .error-box {
6587 border: 1px solid red;
6588 background-color: #faa;
6590 .success-box {
6591 border: 1px solid green;
6592 background-color: #afa;
6595 /*=====================*/
6596 /* PASSWORD RESET PAGE */
6597 /*=====================*/
6599 .reset-password-container input[type='submit'] {
6600 background-color: #e4e4e4;
6601 border: 1px solid #ccc;
6602 font-weight: bold;
6605 /*===================*/
6606 /* TABLE OF CONTENTS */
6607 /*===================*/
6609 .contents {
6610 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
6611 background-color: #eee;
6613 .contents-head {
6614 font-weight: bold;
6616 .post-body .contents li::before {
6617 color: #999;
6618 font-feature-settings: "tnum";
6620 .post-body .contents a,
6621 .post-body .contents a:hover {
6622 border: none;
6624 .post-body .contents a:hover {
6625 text-decoration: underline;
6628 /*==================*/
6629 /* POSTS & COMMENTS */
6630 /*==================*/
6632 .body-text {
6633 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
6636 .body-text a {
6637 border-bottom: 1px dotted #bbb;
6639 .body-text a:hover {
6640 text-decoration: none;
6641 border-bottom: 1px solid currentColor;
6644 /*=======*/
6645 /* POSTS */
6646 /*=======*/
6648 .post-body {
6649 font-size: 1.25rem;
6652 h1.post-title {
6653 font-size: 2rem;
6654 line-height: 1.1;
6655 margin: 1em 0 0.25em 0;
6658 /*=================*/
6659 /* POST NAVIGATION */
6660 /*=================*/
6662 .post-nav-links a,
6663 .post-nav-links a:visited {
6664 color: #00e;
6665 font-weight: normal;
6667 .post-nav-links a:hover {
6668 text-decoration: none;
6669 color: #c00;
6671 .post-nav-links a:active {
6672 color: #e00;
6675 .post-nav-label {
6676 opacity: 0.75;
6679 @media only screen and (max-width: 900px) {
6680 .post-nav-item > * {
6681 background-color: #e4e4e4;
6683 .sequence-title {
6684 border-top: 1px solid #fff;
6686 .post-nav.prev {
6687 border-right: 1px solid #fff;
6689 .post-nav.next {
6690 border-left: 1px solid #fff;
6694 /*===========*/
6695 /* POST-META */
6696 /*===========*/
6698 .post-meta .post-section::before,
6699 .comment-meta .alignment-forum {
6700 color: #fff;
6701 text-shadow:
6702 1px 1px 0 #090,
6703 0 1px 0 #090,
6704 0 0 5px #090;
6706 a.post-section:hover {
6707 text-decoration: none;
6709 a.post-section:hover::before {
6710 color: #97ff7c;
6712 .post-meta .post-section.alignment-forum::before {
6713 text-shadow:
6714 1px 1px 0 #626dd7,
6715 0 1px 0 #626dd7,
6716 0 0 5px #626dd7;
6718 a.post-section.alignment-forum:hover::before {
6719 color: #e6e5ff;
6720 text-decoration: none;
6722 .post-meta .date {
6723 color: #888;
6725 .post-meta .author {
6726 color: #090;
6728 .bottom-post-meta {
6729 border-color: #ddd;
6732 /*============*/
6733 /* LINK POSTS */
6734 /*============*/
6736 .post.link-post a.link-post-link {
6737 text-decoration: none;
6738 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
6739 font-weight: 600;
6741 .post.link-post a.link-post-link:hover {
6742 color: #c00;
6744 .post.link-post a.link-post-link:hover::before {
6745 color: #4879ec;
6746 text-shadow:
6747 0.5px 0.5px 0 #fff,
6748 -0.5px -0.5px 0 #fff,
6749 0 0 2px #fff,
6750 0 0 3px #00c;
6752 .post.link-post a.link-post-link:focus {
6753 color: #999;
6754 border-bottom: 2px dotted #999;
6757 /*==========*/
6758 /* COMMENTS */
6759 /*==========*/
6761 .comments::before {
6762 border-top: 1px solid #ddd;
6765 #content > .comment-thread .comment-meta a.date:focus,
6766 #content > .comment-thread .comment-meta a.permalink:focus {
6767 color: #888;
6768 outline: 2px dotted #999;
6769 position: relative;
6770 background-color: #fff;
6771 padding: 0 5px;
6772 left: -5px;
6774 #content > .comment-thread .comment-meta a.date:focus + *,
6775 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6776 margin-left: -10px;
6778 .comment-item {
6779 border: 1px solid #ccc;
6780 background-color: var(--GW-comment-background-color);
6782 .comment-parent-link::after {
6783 box-shadow:
6784 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
6785 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
6786 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
6789 .comment-body {
6790 font-size: 1.1875rem;
6793 /*================================*/
6794 /* DEEP COMMENT THREAD COLLAPSING */
6795 /*================================*/
6797 .comment-item input[id^="expand"] + label::after {
6798 color: #00e;
6799 font-weight: 600;
6801 .comment-item input[id^="expand"] + label:hover::after {
6802 color: #c00;
6804 .comment-item input[id^="expand"] + label:active::after,
6805 .comment-item input[id^="expand"] + label:focus::after{
6806 color: #c00;
6808 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6809 border-width: 1px 0 0 0;
6812 /*==============*/
6813 /* COMMENT-META */
6814 /*==============*/
6816 .comment-meta .author {
6817 font-size: 1.125em;
6818 color: #090;
6820 .comment-item .author:not(.redacted).original-poster::after {
6821 opacity: 0.6;
6822 filter: brightness(60%);
6825 .comment-item .voting-controls.active-controls::after,
6826 .comment-item .voting-controls .karma-value::after,
6827 .post .voting-controls.active-controls::after,
6828 .post .voting-controls .karma-value::after,
6829 .author::before {
6830 background-color: #eee;
6831 color: #777;
6832 border-radius: 4px;
6833 box-shadow: 0 0 0 1px #bbb inset;
6835 .comment-item .voting-controls.active-controls::after,
6836 .post .voting-controls.active-controls::after {
6837 padding: 6px;
6838 bottom: -46px;
6840 .comment-item .voting-controls .karma-value::after,
6841 .post .voting-controls .karma-value::after {
6842 padding: 2px 8px;
6843 top: -26px;
6844 min-width: 60px;
6847 /*====================*/
6848 /* ANTI-KIBITZER MODE */
6849 /*====================*/
6851 .author.redacted,
6852 .inline-author.redacted {
6853 opacity: 0.6;
6854 font-weight: 400;
6857 .karma-value.redacted {
6858 opacity: 0.4;
6861 .link-post-domain.redacted {
6862 opacity: 0.4;
6865 /*===========================*/
6866 /* COMMENT THREAD NAVIGATION */
6867 /*===========================*/
6869 div.comment-parent-link {
6870 font-weight: bold;
6872 a.comment-parent-link {
6873 font-weight: normal;
6875 a.comment-parent-link::before {
6876 color: #bbb;
6878 a.comment-parent-link:hover::before {
6879 background-color: #ffd;
6880 color: #999;
6883 div.comment-child-links {
6884 font-weight: bold;
6886 div.comment-child-links a {
6887 font-weight: normal;
6889 .comment-child-link::before {
6890 color: #aaa;
6893 .comment-item-highlight {
6894 box-shadow:
6895 0 0 2px #e7b200,
6896 0 0 3px #e7b200,
6897 0 0 5px #e7b200,
6898 0 0 7px #e7b200,
6899 0 0 10px #e7b200;
6900 border: 1px solid #e7b200;
6902 .comment-item-highlight-faint {
6903 box-shadow:
6904 0 0 2px #f8e7b5,
6905 0 0 3px #f8e7b5,
6906 0 0 5px #f8e7b5,
6907 0 0 7px #f8e7b5,
6908 0 0 10px #f8e7b5;
6909 border: 1px solid #f8e7b5;
6912 .comment-popup {
6913 background-color: #fff;
6916 /*=======================*/
6917 /* COMMENTS COMPACT VIEW */
6918 /*=======================*/
6920 #comments-list-mode-selector button {
6921 box-shadow:
6922 0 0 0 4px #eee inset,
6923 0 0 0 5px #aaa inset;
6925 #comments-list-mode-selector button:hover,
6926 #comments-list-mode-selector button.selected {
6927 box-shadow:
6928 0 0 0 1px #eee inset,
6929 0 0 0 2px #aaa inset,
6930 0 0 0 4px #eee inset,
6931 0 0 0 5px #aaa inset;
6933 #content.compact > .comment-thread .comment-item {
6934 max-height: 58px;
6936 #content.compact > .comment-thread .comment-item::after {
6937 color: #00e;
6938 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6941 @media only screen and (hover: hover) {
6942 #content.compact > .comment-thread .comment-item:hover .comment,
6943 #content.compact > .comment-thread .comment-item.expanded .comment {
6944 background-color: #fff;
6945 outline: 3px solid #00c;
6947 #content.compact > .comment-thread .comment-item:hover .comment::before,
6948 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6949 background-color: #fff;
6950 box-shadow:
6951 0 0 3px #fff,
6952 0 0 5px #fff,
6953 0 0 7px #fff,
6954 0 0 10px #fff,
6955 0 0 20px #fff,
6956 0 0 30px #fff,
6957 0 0 40px #fff;
6960 @media only screen and (hover: none) {
6961 #content.compact > .comment-thread.expanded .comment-item .comment {
6962 background-color: #fff;
6963 outline: 3px solid #00c;
6965 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6966 background-color: #fff;
6967 box-shadow:
6968 0 0 3px #fff,
6969 0 0 5px #fff,
6970 0 0 7px #fff,
6971 0 0 10px #fff,
6972 0 0 20px #fff,
6973 0 0 30px #fff,
6974 0 0 40px #fff;
6978 #content.user-page.compact > h1.listing {
6979 margin-top: 0.5rem;
6981 #content.user-page.compact > h1.listing + .post-meta {
6982 margin-bottom: 0.5rem;
6985 /*===========================*/
6986 /* HIGHLIGHTING NEW COMMENTS */
6987 /*===========================*/
6989 .new-comment::before {
6990 display: none;
6992 .new-comment {
6993 border: 1px solid #e00;
6994 outline: 1px solid #e00;
6997 /*=================================*/
6998 /* COMMENT THREAD MINIMIZE BUTTONS */
6999 /*=================================*/
7001 .comment-minimize-button {
7002 color: #ccc;
7004 .comment-minimize-button:hover {
7005 color: #aaa;
7006 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7008 .comment-minimize-button::after {
7009 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
7010 color: #777;
7012 .comment-minimize-button.maximized::after {
7013 color: #ccc;
7016 /*==============*/
7017 /* VOTE BUTTONS */
7018 /*==============*/
7020 .vote::before {
7021 content: "";
7022 border-radius: 50%;
7023 background-size: 17px 17px;
7024 width: 17px;
7025 height: 17px;
7026 display: inline-block;
7027 position: relative;
7028 top: 2.5px;
7030 .vote:active {
7031 transform: none;
7033 .vote:disabled {
7034 visibility: unset;
7035 filter: brightness(50%);
7038 /**********/
7039 /* States.
7042 /* _ 1
7044 .upvote {
7045 filter: grayscale(100%) brightness(128%);
7047 .downvote {
7048 filter: grayscale(100%) brightness(188%);
7051 /* _ 2
7053 .vote:not(.none) {
7054 filter: drop-shadow(0 0 1px #fff);
7057 /* 1 _
7059 .vote.two-temp::before {
7060 box-shadow:
7061 0 0 0 1px #fff,
7062 0 0 0 4px #c8c8c8,
7063 0 0 0 5px transparent;
7066 /* 2 _
7068 .upvote.two::before {
7069 box-shadow:
7070 0 0 0 1px #fff,
7071 0 0 0 4px #00d800,
7072 0 0 0 5px transparent;
7074 .downvote.two::before {
7075 box-shadow:
7076 0 0 0 1px #fff,
7077 0 0 0 4px #eb4c2a,
7078 0 0 0 5px transparent;
7081 /*********/
7082 /* Icons.
7085 .karma .upvote::before {
7086 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
7088 .karma .downvote::before {
7089 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
7092 .karma .upvote:disabled::before {
7093 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiBzdHJva2U9IiNEOEQ4RDgiIHN0cm9rZS13aWR0aD0iNCUiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
7095 .karma .downvote:disabled::before {
7096 background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6TTEyNCAyOTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDI2NGM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZjMCA2LjYtNS40IDEyLTEyIDEySDEyNHoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7099 .agreement .upvote::before {
7100 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgZmlsbD0iIzAwRDgwMCIvPjwvc3ZnPg==');
7102 .agreement .downvote::before {
7103 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIGZpbGw9IiNFQjRDMkEiLz48L3N2Zz4=');
7106 .agreement .upvote:disabled::before {
7107 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNNTA0IDI1NmMwIDEzNi45NjctMTExLjAzMyAyNDgtMjQ4IDI0OFM4IDM5Mi45NjcgOCAyNTYgMTE5LjAzMyA4IDI1NiA4czI0OCAxMTEuMDMzIDI0OCAyNDh6TTIyNy4zMTQgMzg3LjMxNGwxODQtMTg0YzYuMjQ4LTYuMjQ4IDYuMjQ4LTE2LjM3OSAwLTIyLjYyN2wtMjIuNjI3LTIyLjYyN2MtNi4yNDgtNi4yNDktMTYuMzc5LTYuMjQ5LTIyLjYyOCAwTDIxNiAzMDguMTE4bC03MC4wNTktNzAuMDU5Yy02LjI0OC02LjI0OC0xNi4zNzktNi4yNDgtMjIuNjI4IDBsLTIyLjYyNyAyMi42MjdjLTYuMjQ4IDYuMjQ4LTYuMjQ4IDE2LjM3OSAwIDIyLjYyN2wxMDQgMTA0YzYuMjQ5IDYuMjQ5IDE2LjM3OSA2LjI0OSAyMi42MjguMDAxeiIgc3Ryb2tlPSIjRDhEOEQ4IiBzdHJva2Utd2lkdGg9IjQlIiBmaWxsPSJ0cmFuc3BhcmVudCIvPjwvc3ZnPg==');
7109 .agreement .downvote:disabled::before {
7110 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTIxLjYgMzEzLjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMzOCAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDI1NiAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEzNC40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMTIgMjU2bDY1LjYgNjUuMXoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
7113 /*===========================*/
7114 /* COMMENTING AND POSTING UI */
7115 /*===========================*/
7117 .posting-controls input[type='submit'] {
7118 background-color: #fff;
7119 border: 1px solid #aaa;
7120 font-weight: bold;
7122 .posting-controls input[type='submit']:hover,
7123 .posting-controls input[type='submit']:focus {
7124 background-color: #ddd;
7125 border: 1px solid #999;
7128 .comment-controls .cancel-comment-button {
7129 font-weight: 600;
7130 color: #c00;
7131 text-shadow:
7132 0 0 1px #fff,
7133 0 0 2px #fff;
7135 .comment-controls .cancel-comment-button:hover {
7136 color: #f00;
7137 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7140 .new-comment-button {
7141 font-weight: 600;
7144 .comment-controls .delete-button,
7145 .comment-controls .retract-button {
7146 color: #c00;
7148 .comment-controls .delete-button::before {
7149 font-size: 1em;
7150 font-weight: 400;
7151 opacity: 0.7;
7153 .comment-controls .edit-button,
7154 .comment-controls .unretract-button {
7155 color: #0a0;
7157 .comment-controls .action-button:hover {
7158 color: #f00
7161 .post-controls {
7162 margin: 0.25em -1em 0 0;
7164 h1.listing .edit-post-link,
7165 h1.listing .edit-post-link:visited,
7166 .post-controls .edit-post-link,
7167 .post-controls .edit-post-link:visited {
7168 color: #090;
7170 h1.listing .edit-post-link:hover,
7171 .post-controls .edit-post-link:hover {
7172 color: #d00;
7175 .posting-controls textarea {
7176 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
7177 color: #000;
7178 border-color: #00e;
7180 .posting-controls textarea:focus {
7181 border-width: 29px 1px 1px 1px;
7182 box-shadow: 0 0 0 1px #00e;
7184 .posting-controls.edit-existing-post textarea:focus,
7185 .posting-controls form.edit-existing-comment textarea:focus {
7186 border-color: #090;
7187 box-shadow: 0 0 0 1px #090;
7190 /*= Scroll bars =*/
7192 .posting-controls textarea::-webkit-scrollbar,
7193 .textarea-container .autocomplete-container::-webkit-scrollbar {
7194 width: 16px;
7195 background-color: transparent;
7197 .posting-controls textarea::-webkit-scrollbar-track,
7198 .textarea-container .autocomplete-container::-webkit-scrollbar-track {
7199 background-color: #fff;
7200 border-left: 1px solid #0040ff;
7201 border-top: 1px solid #eee;
7203 .posting-controls textarea:focus::-webkit-scrollbar-track {
7204 border-top: 1px solid #ddf;
7205 border-left: 2px solid #0040ff;
7207 .posting-controls textarea::-webkit-scrollbar-thumb {
7208 background-color: #acacff;
7209 box-shadow: 0 0 0 1px #eee inset;
7210 border-left: 1px solid #0040ff;
7212 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7213 background-color: #0040ff;
7214 border-left: 2px solid #0040ff;
7215 box-shadow:
7216 0 1px 0 0 #ddf inset,
7217 0 0 0 1px #eee inset;
7219 .textarea-container .autocomplete-container::-webkit-scrollbar-thumb {
7220 background-color: #0040ff;
7221 border-left: 1px solid #0040ff;
7222 box-shadow:
7223 0 1px 0 0 #ddf inset,
7224 0 0 0 1px #eee inset;
7227 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
7228 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
7229 border-left: 2px solid #090;
7231 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
7232 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
7233 border-left: 2px solid #090;
7234 background-color: #28a708;
7237 /* GUIEdit buttons */
7239 .guiedit-buttons-container {
7240 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
7243 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7244 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7245 color: #050;
7247 .guiedit-buttons-container button {
7248 font-family: Font Awesome, 'News Gothic BT', 'Helvetica', sans-serif;
7251 .guiedit::after {
7252 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
7253 color: #777;
7254 text-shadow: none;
7257 /* Markdown hints */
7259 #markdown-hints-checkbox + label {
7260 color: #00e;
7262 #markdown-hints-checkbox + label:hover {
7263 color: #e00;
7264 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7266 #markdown-hints {
7267 border: 1px solid #c00;
7268 background-color: #ffa;
7271 /*================*/
7272 /* EDIT POST FORM */
7273 /*================*/
7275 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7276 top: -2px;
7278 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7279 border-radius: 3px;
7280 border: 1px solid #ddd;
7281 color: #777;
7283 @media only screen and (hover:hover) {
7284 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7285 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7286 text-shadow:
7287 0 0 1px #fff,
7288 0 0 2px #fff,
7289 0 0 2.5px #aaa;
7291 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7292 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7293 border-color: #aaa;
7296 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7297 content: "\F00C";
7299 #edit-post-form input[type='radio'] + label {
7300 color: #777;
7301 border-color: #ddd;
7303 #edit-post-form input[type='radio'][value='all'] + label {
7304 border-radius: 8px 0 0 8px;
7305 border-width: 1px;
7307 #edit-post-form input[type='radio'][value='drafts'] + label {
7308 border-radius: 0 8px 8px 0;
7310 #edit-post-form input[type='radio'] + label:hover,
7311 #edit-post-form input[type='radio']:focus + label {
7312 background-color: #ddd;
7313 color: #000;
7315 #edit-post-form input[type='radio']:focus + label {
7316 color: #000;
7317 box-shadow:
7318 0 0 0 1px #aaa;
7320 #edit-post-form input[type='radio']:checked + label {
7321 background-color: #ddd;
7322 border-color: #ddd;
7323 color: #000;
7324 text-shadow:
7325 0 -1px 0 #fff,
7326 0 0.5px 0.5px #000;
7329 /*=======*/
7330 /* LINKS */
7331 /*=======*/
7334 text-decoration: none;
7335 color: #00e;
7337 a:visited {
7338 color: #551a8b;
7340 a:hover {
7341 text-decoration: underline;
7344 /*=========*/
7345 /* BUTTONS */
7346 /*=========*/
7348 button,
7349 input[type='submit'] {
7350 color: #00e;
7353 button:hover,
7354 input[type='submit']:hover,
7355 button:focus,
7356 input[type='submit']:focus {
7357 color: #d00;
7358 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7360 button:active,
7361 input[type='submit']:active {
7362 color: #f00;
7363 transform: scale(0.9);
7365 .button:visited {
7366 color: #00e;
7368 .button:hover {
7369 color: #d00;
7370 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7371 text-decoration: none;
7373 .button:active {
7374 transform: scale(0.9);
7376 .button:focus:not(:hover) {
7377 transform: none;
7379 @-moz-document url-prefix() {
7380 .button:active {
7381 transform: none;
7385 /*==========*/
7386 /* HEADINGS */
7387 /*==========*/
7389 .body-text h1,
7390 .body-text h2,
7391 .body-text h3,
7392 .body-text h4,
7393 .body-text h5,
7394 .body-text h6 {
7395 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
7397 .body-text h6 {
7398 color: #555;
7401 /*========*/
7402 /* QUOTES */
7403 /*========*/
7405 blockquote {
7406 border-left: 5px solid #ccc;
7409 /*========*/
7410 /* IMAGES */
7411 /*========*/
7413 #content img,
7414 #content figure.image img {
7415 border: 1px solid #ccc;
7417 #content figure img {
7418 border: 1px solid #000;
7420 #content img[src$='.svg'],
7421 #content figure img[src$='.svg'] {
7422 border: none;
7424 #content img[style^='float'] {
7425 border: 1px solid transparent;
7428 /*========*/
7429 /* TABLES */
7430 /*========*/
7432 #content:not(.tag-index-page) .body-text table,
7433 #content:not(.tag-index-page) .body-text table th,
7434 #content:not(.tag-index-page) .body-text table td {
7435 border: 1px solid #ccc;
7438 /*======*/
7439 /* MISC */
7440 /*======*/
7442 hr {
7443 border-bottom: 1px solid #999;
7446 code {
7447 background-color: #f6f6ff;
7448 border: 1px solid #ddf;
7449 border-radius: 4px;
7452 input[type='text'],
7453 input[type='search'],
7454 input[type='password'] {
7455 border: 1px solid #999;
7456 color: #000;
7457 background-color: transparent;
7459 input[type='text']:focus,
7460 input[type='search']:focus,
7461 input[type='password']:focus {
7462 border: 1px solid #00e;
7463 outline: 1px solid #00e;
7466 select {
7467 color: #000;
7470 /*============*/
7471 /* ABOUT PAGE */
7472 /*============*/
7474 .about-page mark {
7475 background-color: #e6e6e6;
7476 text-decoration: none;
7477 box-shadow:
7478 0 -1px 0 0 #000 inset,
7479 0 -3px 1px -2px #000 inset;
7480 padding: 0 1px;
7483 #content.about-page .accesskey-table {
7484 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
7485 border-color: #ddd;
7488 #content.about-page img {
7489 border: 1px solid #000;
7492 /*========================*/
7493 /* QUALIFIED HYPERLINKING */
7494 /*========================*/
7496 #aux-about-link a {
7497 color: #777;
7499 #aux-about-link a:hover {
7500 opacity: 1.0;
7501 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7504 .qualified-linking label {
7505 color: #00e;
7507 .qualified-linking label:hover {
7508 text-shadow:
7509 0 0 1px #fff,
7510 0 0 3px #fff,
7511 0 0 5px #00e;
7514 .qualified-linking-toolbar {
7515 border: 1px solid #000;
7516 background-color: #fff;
7518 .qualified-linking-toolbar a {
7519 background-color: #eee;
7520 border: 1px solid #ccc;
7521 border-radius: 4px;
7523 .qualified-linking-toolbar a:visited {
7524 color: #00e;
7526 .qualified-linking-toolbar a:hover {
7527 text-decoration: none;
7528 background-color: #ddd;
7529 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7531 .qualified-linking label::after {
7532 background-color: #eee;
7533 opacity: 0.8;
7536 /*======*/
7537 /* MATH */
7538 /*======*/
7540 .mathjax-block-container::-webkit-scrollbar {
7541 height: 12px;
7542 background-color: #f6f6ff;
7543 border-radius: 6px;
7544 border: 1px solid #ddf;
7546 .mathjax-block-container::-webkit-scrollbar-thumb {
7547 background-color: #dde;
7548 border-radius: 6px;
7549 border: 1px solid #cce;
7551 .mathjax-inline-container::-webkit-scrollbar {
7552 height: 8px;
7553 background-color: #f6f6ff;
7554 border-radius: 4px;
7555 border: 1px solid #ddf;
7557 .mathjax-inline-container::-webkit-scrollbar-thumb {
7558 background-color: #dde;
7559 border-radius: 4px;
7560 border: 1px solid #cce;
7564 /*===============*/
7565 /* USER MENTIONS */
7566 /*===============*/
7568 .textarea-container .autocomplete-container {
7569 background-color: rgba(255, 255, 170, 0.75);
7570 border: 1px solid rgba(7, 0, 238, 0.75);
7573 .textarea-container .autocomplete-container div.highlighted {
7574 background-color: rgba(7, 0, 238, 0.75);
7575 color: #fff;
7578 .textarea-container .autocomplete-container div:not(.highlighted):hover {
7579 background-color: rgba(7, 0, 238, 0.25);
7582 .textarea-container .autocomplete-container div span.age,
7583 .textarea-container .autocomplete-container div span.karma {
7584 color: #888;
7588 /*=================*/
7589 /* ALIGNMENT FORUM */
7590 /*=================*/
7592 #content.alignment-forum-index-page::before {
7593 background-color: #eaedff;
7595 #content.alignment-forum-index-page::after {
7596 font-family: "Concourse SmallCaps";
7597 font-weight: 600;
7598 background-color: #7f85b2;
7599 color: transparent;
7600 -webkit-background-clip: text;
7601 text-shadow:
7602 rgba(255,255,255,0.5) 0px 3px 3px;
7604 @media only screen and (hover: hover) {
7605 #content.alignment-forum-index-page h1.listing a:hover,
7606 #content.alignment-forum-index-page h1.listing a:focus {
7607 background-color: rgba(234,237,255,0.85);
7611 /*====================*/
7612 /* FOR NARROW SCREENS */
7613 /*====================*/
7615 @media only screen and (max-width: 1440px) {
7616 #hns-date-picker {
7617 background-color: #d8d8d8;
7618 opacity: 1.0;
7620 #hns-date-picker::before {
7621 border: 1px solid #999;
7622 border-width: 1px 0 1px 1px;
7625 @media only screen and (max-width: 1200px) {
7626 #hns-date-picker {
7627 background-color: #eee;
7629 #hns-date-picker::before {
7630 display: none;
7633 @media only screen and (max-width: 1080px) {
7634 #text-size-adjustment-ui button {
7635 border: 1px solid #999;
7636 padding: 0 0 0 1px;
7637 border-radius: 50%;
7638 box-shadow:
7639 0 0 6px #999 inset,
7640 0 0 0 1px transparent;
7642 #theme-tweaker-toggle button {
7643 border: 1px solid #999;
7644 box-shadow:
7645 0 0 10px #999 inset,
7646 0 0 0 1px transparent;
7647 border-radius: 50%;
7648 transform: scale(0.8);
7651 @media only screen and (max-width: 1020px) {
7652 #quick-nav-ui a {
7653 box-shadow:
7654 0 0 0 1px #999,
7655 0 0 0 2px transparent;
7657 #new-comment-nav-ui .new-comments-count::before {
7658 background-color: #d8d8d8;
7659 box-shadow:
7660 0 0 0 1px #999,
7661 0 0 0 2px transparent;
7662 border-radius: 8px;
7665 @media only screen and (max-width: 1160px) {
7666 #theme-selector {
7667 background-color: #eee;
7668 box-shadow:
7669 0 0 0 1px #999,
7670 0 0 0 2px transparent;
7672 #theme-selector:hover::after {
7673 background-color: #999;
7674 width: calc(6em - 3px);
7675 height: calc(100% - 5px);
7676 top: 3px;
7677 left: 100%;
7679 #text-size-adjustment-ui button {
7680 background-color: #ddd;
7682 #text-size-adjustment-ui button:hover {
7683 background-color: #eee;
7685 #theme-tweaker-toggle button {
7686 background-color: #ddd;
7690 /*========*/
7691 /* MOBILE */
7692 /*========*/
7694 /*******************************************************/
7695 @media not screen and (hover:hover) and (pointer:fine) {
7696 /*******************************************************/
7697 #ui-elements-container > div[id$='-ui-toggle'] button,
7698 #theme-selector .theme-selector-close-button {
7699 color: #aaa;
7700 text-shadow:
7701 0 0 1px #fff,
7702 0 0 3px #fff,
7703 0 0 5px #fff,
7704 0 0 10px #fff,
7705 0 0 20px #fff,
7706 0 0 30px #fff;
7709 #theme-selector {
7710 background-color: #eee;
7711 box-shadow:
7712 0 0 0 1px #999,
7713 0 0 1px 3px #fff,
7714 0 0 3px 3px #fff,
7715 0 0 5px 3px #fff,
7716 0 0 10px 3px #fff,
7717 0 0 20px 3px #fff;
7718 border-radius: 12px;
7720 #theme-selector::before {
7721 color: #777;
7722 font-weight: normal;
7723 text-shadow: 0.5px 0.5px 0 #aaa;
7725 #theme-selector button {
7726 background-color: #e6e6e6;
7727 border-radius: 10px;
7729 #theme-selector button::after {
7730 color: #000;
7731 max-width: calc(100% - 3.5em);
7732 overflow: hidden;
7733 text-overflow: ellipsis;
7734 padding: 0 0 2px 0;
7736 #theme-selector button.selected::after {
7737 text-shadow:
7738 0 -1px 0 #fff,
7739 0 0.5px 0.5px #000;
7742 #quick-nav-ui {
7743 background-color: #fff;
7745 #quick-nav-ui,
7746 #new-comment-nav-ui,
7747 #hns-date-picker {
7748 box-shadow:
7749 0 0 1px 3px #fff,
7750 0 0 3px 3px #fff,
7751 0 0 5px 3px #fff,
7752 0 0 10px 3px #fff,
7753 0 0 20px 3px #fff;
7755 #quick-nav-ui a::after,
7756 #new-comment-nav-ui::before {
7757 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
7758 font-weight: bold;
7759 box-shadow:
7760 0 0 1px 0 #fff,
7761 0 0 3px 0 #fff,
7762 0 0 5px 0 #fff;
7763 background-color: #fff;
7764 border-radius: 4px;
7766 #quick-nav-ui,
7767 #new-comment-nav-ui {
7768 border-radius: 8px;
7770 #new-comment-nav-ui {
7771 background-color: #fff;
7772 border: 1px solid #999;
7774 #new-comment-nav-ui::before {
7775 color: #777;
7776 font-weight: bold;
7778 #new-comment-nav-ui .new-comment-sequential-nav-button {
7779 box-shadow: 0 0 0 1px #999;
7780 color: #00c;
7782 #new-comment-nav-ui .new-comments-count {
7783 background-color: inherit;
7784 box-shadow: 0 -1px 0 0 #999;
7786 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7787 color: #bbb;
7789 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7790 border-radius: 7px 0 0 7px;
7792 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7793 border-radius: 0 7px 7px 0;
7795 #new-comment-nav-ui button::after {
7796 font-family: Trade Gothic, Helvetica, 'GW-Symbols', sans-serif;
7798 #hns-date-picker {
7799 background-color: #fff;
7800 border: 1px solid #999;
7803 /*****************************************/
7804 @media only screen and (max-width: 900px) {
7805 /*****************************************/
7806 h1.listing + .post-meta > * {
7807 line-height: 1.5;
7809 h1.listing + .post-meta .post-section {
7810 overflow: visible;
7811 order: 1;
7813 h1.listing + .post-meta .post-section::before {
7814 position: unset;
7817 #primary-bar .nav-inner {
7818 font-size: 1.375em;
7820 .nav-bar-top:not(#primary-bar) .nav-inner {
7821 font-size: 1.125em;
7823 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
7824 padding: 6px 10px;
7827 .archive-nav *[class^='archive-nav-item-'] {
7828 border-width: 1px !important;
7830 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7831 background-color: #aaa;
7834 .comment-item .comment-item {
7835 margin: 0.75em 3px 3px 6px;
7837 .comment-item .comment-item + .comment-item {
7838 margin: 1.5em 3px 3px 6px;
7841 .sublevel-nav:not(.sort) .sublevel-item,
7842 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7843 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7844 border-radius: 8px;
7845 border-width: 1px;
7846 margin: 2px;
7848 /*******************************************/
7849 } @media only screen and (max-width: 720px) {
7850 /*******************************************/
7851 /*******************************************/
7852 } @media only screen and (max-width: 520px) {
7853 /*******************************************/
7854 h1.listing {
7855 font-size: 1.25rem;
7856 margin: 18px 6px 4px 6px;
7857 max-width: calc(100% - 12px);
7859 h1.listing + .post-meta {
7860 margin: 4px 6px;
7862 h1.listing .link-post-link {
7863 top: 2px;
7865 #content.conversations-user-page h1.listing::after {
7866 height: calc(100% + 2.25em);
7868 #content.conversations-user-page h1.listing + .post-meta .date {
7869 margin: 0 0 0 1em;
7872 .comment-body {
7873 font-size: 1.125rem;
7876 #content.compact > .comment-thread .comment-item {
7877 max-height: 105px;
7880 .textarea-container:focus-within textarea {
7881 background-color: #fff;
7882 border-width: 1px;
7884 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7885 padding: 5px 6px 6px 6px;
7886 font-weight: bold;
7888 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7889 box-shadow:
7890 0 0 0 2px #c00;
7891 color: #c00;
7893 .textarea-container:focus-within .guiedit-buttons-container {
7894 background-color: #fff;
7895 border-top: 1px solid #ddf;
7897 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
7898 box-shadow: none;
7900 #content.conversation-page .textarea-container:focus-within::after {
7901 background-color: #fff;
7903 .textarea-container:focus-within button.guiedit {
7904 border: 1px solid #00c;
7905 border-radius: 6px;
7907 #markdown-hints::after {
7908 color: #090;
7911 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7912 top: 2px;
7914 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7915 top: 1px;
7921 /*************/
7922 /* ACCORDIUS */
7923 /*************/
7925 /*======*/
7926 /* TAGS */
7927 /*======*/
7929 #tags {
7930 order: 12;
7931 display: flex;
7932 flex-basis: 100%;
7933 justify-content: center;
7934 margin: 0;
7935 flex-flow: row wrap;
7936 align-items: flex-start;
7939 /*============*/
7940 /* THEME ZERO */
7941 /*============*/
7943 /*++++++*/
7944 /* TAGS */
7945 /*++++++*/
7947 #tags {
7948 padding: 0.5em;
7950 #tags::before {
7951 content: "Tags:";
7952 margin: 0 0.25em 0 0;
7953 opacity: 0.5;
7954 line-height: 1;
7955 align-self: center;
7957 #tags a {
7958 border-radius: 8px;
7959 background-color: #f6f6f6;
7960 border: 1px solid #ccc;
7961 padding: 5px 8px 5px 8px;
7962 line-height: 1;
7963 margin: 0.25em;
7964 font-size: 0.9375em;
7966 #tags a:hover {
7967 text-decoration: none;
7968 background-color: #fff;
7970 #tags a:active {
7971 color: #d00;