Fix layout bug introduced in 6780e8b3.
[lw2-viewer.git] / www / css / style-brutalist.linux.css
blob7feabaa58541b9516fe17a16501108178c27f73d
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 margin-top: 2em;
1348 margin-bottom: 4em;
1351 h1.sequence-chapter {
1352 font-size: 2.3rem;
1355 article {
1356 max-width: 100%;
1359 .post-meta + .comments {
1360 margin-top: 3em;
1363 .tag-list {
1364 column-count: auto;
1365 column-width: 15em;
1366 margin-top: 0;
1367 border-bottom: 1px solid #999;
1368 padding-bottom: 1em;
1369 margin-bottom: 0;
1372 /**************/
1373 /* USER PAGES */
1374 /**************/
1376 /*=---------------------=*/
1377 /*= User's display name =*/
1378 /*=---------------------=*/
1380 #content.user-page h1.page-main-heading {
1381 margin: 0.25em 0 0 0;
1382 line-height: 1.1;
1383 grid-column: 1 / span 2;
1384 order: -2;
1387 #content.user-page h1.page-main-heading .user-full-name {
1388 font-size: 1rem;
1389 font-weight: normal;
1390 padding-left: 0.5em;
1393 /*=--------------------=*/
1394 /*= User's karma total =*/
1395 /*=--------------------=*/
1397 #content.user-page .user-stats {
1398 grid-column: 3;
1399 order: -2;
1400 text-align: right;
1401 align-self: end;
1404 #content.user-page .user-stats .karma-type {
1405 white-space: nowrap;
1408 /*=----------------------=*/
1409 /*= Expanded vs. compact =*/
1410 /*=----------------------=*/
1412 #content.user-page #comments-list-mode-selector {
1413 grid-row: span 2;
1415 #content.user-page #comments-list-mode-selector button {
1416 display: block;
1419 /*=----------------------------------------------------=*/
1420 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1421 /*=----------------------------------------------------=*/
1423 #content.user-page .sublevel-nav {
1424 margin-bottom: 0.5em;
1427 /*=--------------=*/
1428 /*= User's posts =*/
1429 /*=--------------=*/
1431 #content.user-page h1.listing {
1432 margin: 0.5em 0 0 0;
1435 #content.user-page .user-bio :first-child {
1436 margin-top: 0.5em;
1439 /*****************/
1440 /* CONVERSATIONS */
1441 /*****************/
1443 /*=----------------------=*/
1444 /*= List of participants =*/
1445 /*=----------------------=*/
1447 #content.conversation-page .conversation-participants {
1448 grid-column: 2 / span 2;
1449 text-align: right;
1450 margin: 0.5em 0 0 0;
1452 .post-meta > .conversation-participants {
1453 white-space: normal;
1455 .conversation-participants ul,
1456 .conversation-participants li {
1457 list-style-type: none;
1458 display: inline-block;
1459 margin: 0;
1460 padding: 0;
1462 .conversation-participants li {
1463 margin-left: 0.375em;
1465 .conversation-participants li:not(:last-of-type)::after {
1466 content: ",";
1469 /*=-------------------------=*/
1470 /*= Posting controls (form) =*/
1471 /*=-------------------------=*/
1473 #content.conversation-page .posting-controls {
1474 padding: 0 0 1em 0;
1476 #content.conversation-page .post-meta-fields {
1477 overflow: auto;
1478 display: flex;
1479 flex-flow: row wrap;
1481 .posting-controls.standalone textarea {
1482 margin-top: 0.375em;
1484 .posting-controls.standalone form {
1485 padding: 0 1em;
1487 #content.conversation-page .posting-controls.standalone form {
1488 padding: 0 1em 3em 1em;
1490 .posting-controls.standalone input[type='text'],
1491 .posting-controls.standalone label {
1492 margin: 0.25em 0;
1494 .posting-controls.standalone label {
1495 width: 4em;
1496 text-align: right;
1497 padding: 2px 6px;
1498 border: 1px solid transparent;
1500 .posting-controls.standalone input[type='text'] {
1501 width: calc(100% - 4em);
1502 padding: 0.25em;
1504 .posting-controls.standalone input[type='submit'] {
1505 float: right;
1507 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1508 white-space: nowrap;
1510 .posting-controls.standalone #markdown-hints {
1511 top: calc(100% + 2em);
1514 /*=--------------------=*/
1515 /*= Conversation title =*/
1516 /*=--------------------=*/
1518 #content.conversation-page h1.page-main-heading {
1519 text-align: center;
1520 margin: 0.5em 0;
1521 line-height: 1.15;
1524 /*=----------=*/
1525 /*= Messages =*/
1526 /*=----------=*/
1528 #content.conversation-page > ul.comment-thread:last-of-type {
1529 margin-bottom: 2em;
1532 /******************/
1533 /* SEARCH RESULTS */
1534 /******************/
1536 #content.search-results-page h1.listing,
1537 #content.sequence-page h1.listing,
1538 #content.post-page h1.listing {
1539 font-size: 1.625em;
1542 /**************/
1543 /* LOGIN PAGE */
1544 /**************/
1546 .login-container {
1547 margin: 2em 0;
1548 padding: 1em;
1549 display: flex;
1550 flex-flow: row wrap;
1553 .login-container form {
1554 flex-basis: 50%;
1555 display: grid;
1556 grid-row-gap: 0.5em;
1557 align-content: start;
1559 .login-container form label {
1560 text-align: right;
1561 padding: 0.25em 0.5em;
1562 white-space: nowrap;
1563 grid-column: 1;
1565 .login-container form input {
1566 grid-column: 2;
1567 padding: 0.25em;
1569 .login-container form input[type='submit'],
1570 .login-container form a {
1571 grid-column: 2;
1572 justify-self: center;
1574 .login-container form input[type='submit'] {
1575 width: 10em;
1576 padding: 0.35em;
1577 line-height: 1;
1578 margin: 0.5em 0 0 0;
1580 .login-container form h1 {
1581 text-align: center;
1582 margin: 0;
1583 grid-column: 2;
1586 /* “Log in” form */
1588 #login-form {
1589 grid-template-columns: 5.5em 1fr;
1590 padding: 0.5em 2em 0.5em 0;
1593 /* “Create account” form */
1595 #signup-form {
1596 font-size: 0.9em;
1597 grid-template-columns: 8.5em 1fr;
1598 padding: 0.5em 1em 1em 1em;
1600 #signup-form h1 {
1601 font-size: 1.7em;
1603 #signup-form input[type='submit'] {
1604 padding: 0.4em 0.5em 0.5em 0.5em;
1607 /* Log in tip */
1609 .login-container .login-tip {
1610 padding: 0.5em 0.5em 0.5em 3em;
1611 margin: 2em 4em 0 4em;
1612 text-indent: -2em;
1613 line-height: 1.4;
1615 .login-container .login-tip span {
1616 font-weight: bold;
1619 /* Message box */
1621 #content.login-page .error-box {
1622 margin: 1.5em 0.875em -1.5em 0.875em;
1624 .error-box, .success-box {
1625 padding: 0.25em;
1626 text-align: center;
1629 /***********************/
1630 /* PASSWORD RESET PAGE */
1631 /***********************/
1633 .reset-password-container {
1634 margin-bottom: 2em;
1636 .reset-password-container input[type='submit'] {
1637 padding: 0.2em 0.5em;
1638 width: unset;
1640 .reset-password-container input {
1641 margin-left: 0.5em;
1642 width: 12em;
1644 .reset-password-container label {
1645 display: inline-block;
1646 width: 9em;
1648 .reset-password-container form > div {
1649 margin: 0.2em;
1651 .reset-password-container .action-container {
1652 padding-left: 11em;
1653 padding-top: 0.2em;
1655 .reset-password-container .error-box {
1656 margin: unset;
1659 /*********************/
1660 /* TABLE OF CONTENTS */
1661 /*********************/
1663 .contents {
1664 float: right;
1665 min-width: 6em;
1666 max-width: 40%;
1667 margin: 1.25em 0 0.75em 1.25em;
1668 padding: 7px 14px 10px 10px;
1669 position: relative;
1670 z-index: 1;
1673 .contents-head {
1674 text-align: center;
1675 margin-bottom: 0.25em;
1678 .post-body .contents ul {
1679 list-style-type: none;
1680 margin: 0 0 0 0.5em;
1681 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1682 padding-left: 1em;
1683 font-size: 0.75em;
1685 .post-body .contents li {
1686 margin: 0.15em 0 0.3em 1em;
1687 text-align: left;
1688 text-indent: -1em;
1689 line-height: 1.2;
1690 position: relative;
1692 .post-body .contents li::before {
1693 position: absolute;
1694 width: 3em;
1695 display: block;
1696 text-align: right;
1697 left: -4.5em;
1699 .contents .toc-item-1 {
1700 counter-increment: toc-item-1;
1701 counter-reset: toc-item-2 toc-item-3;
1703 .contents .toc-item-1::before {
1704 content: counter(toc-item-1);
1706 .contents .toc-item-1 ~ .toc-item-2 {
1707 margin-left: 2.9em;
1708 font-size: 0.95em;
1710 .contents .toc-item-2 {
1711 counter-increment: toc-item-2;
1712 counter-reset: toc-item-3;
1714 .contents .toc-item-1 ~ .toc-item-2::before {
1715 content: counter(toc-item-1) "." counter(toc-item-2);
1717 .contents .toc-item-2::before {
1718 content: counter(toc-item-2);
1720 .contents .toc-item-1 + .toc-item-3 {
1721 counter-increment: toc-item-2 toc-item-3;
1723 .contents .toc-item-2 ~ .toc-item-3,
1724 .contents .toc-item-1 ~ .toc-item-3 {
1725 margin-left: 2.9em;
1726 font-size: 0.95em;
1728 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1729 margin-left: 5.7em;
1730 font-size: 0.9em;
1732 .contents .toc-item-3 {
1733 counter-increment: toc-item-3;
1735 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1736 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1738 .contents .toc-item-1 ~ .toc-item-3::before {
1739 content: counter(toc-item-1) "." counter(toc-item-3);
1741 .contents .toc-item-2 ~ .toc-item-3::before {
1742 content: counter(toc-item-2) "." counter(toc-item-3);
1744 .contents .toc-item-3::before {
1745 content: counter(toc-item-3);
1747 .contents .toc-item-4,
1748 .contents .toc-item-5,
1749 .contents .toc-item-6 {
1750 display: none;
1753 /********************/
1754 /* POSTS & COMMENTS */
1755 /********************/
1757 .post-meta > *,
1758 .comment-meta > * {
1759 display: inline-block;
1760 margin-right: 1em;
1761 font-size: 1.0625em;
1763 .body-text {
1764 overflow-wrap: break-word;
1765 text-align: justify;
1767 .body-text p {
1768 margin: 1em 0;
1770 .retracted .body-text {
1771 text-decoration: line-through;
1774 .bare-url {
1775 word-break: break-all;
1776 hyphens: auto;
1778 .body-text a:not([href]),
1779 .body-text a:not([href]):hover,
1780 .body-text a:not([href])::before,
1781 .body-text a:not([href])::after {
1782 text-decoration: none;
1783 text-shadow: unset;
1784 border: unset;
1785 color: unset;
1786 content: unset;
1788 /*************/
1789 /* POST-META */
1790 /*************/
1792 .post-meta {
1793 display: flex;
1794 flex-flow: row wrap;
1795 justify-content: center;
1797 .post-meta .lw2-link {
1798 opacity: 0.5;
1799 order: 1;
1801 .post-meta > *,
1802 .post-meta .post-section::before {
1803 margin: 0 0.5em;
1805 .post-meta .post-section {
1806 order: -1;
1807 margin: 0;
1808 visibility: hidden;
1810 .post-meta .post-section::before,
1811 .comment-meta .alignment-forum {
1812 visibility: visible;
1813 font-family: "Font Awesome", "Font Awesome 5 Free";
1814 font-weight: 900;
1816 .post-section.frontpage::before {
1817 content: "\F015";
1819 .post-section.featured::before {
1820 content: "\F005";
1822 .post-section.meta::before {
1823 content: "\F077";
1825 .post-section.events::before {
1826 content: "\F5A0";
1828 .post-section.personal::before {
1829 content: "\F007";
1831 .post-section.draft::before {
1832 content: "\F15B";
1834 .post-section.alignment-forum::before,
1835 .comment-meta .alignment-forum {
1836 content: "AF";
1837 font-family: Concourse, 'Changa One';
1840 /*= Karma controls hover tooltips =*/
1842 @media only screen and (pointer: fine) {
1843 .post .voting-controls,
1844 .comment-item .voting-controls {
1845 position: relative;
1847 .post .karma.active-controls::after,
1848 .comment-item .karma.active-controls::after {
1849 content: "Double-click for strong vote";
1850 position: absolute;
1851 pointer-events: none;
1852 display: block;
1853 left: 6px;
1854 width: 100%;
1855 line-height: 1.15;
1856 white-space: normal;
1857 text-align: center;
1858 font-size: 0.875rem;
1859 opacity: 0;
1860 transition: opacity 0.2s ease;
1862 .post .voting-controls.active-controls:hover::after,
1863 .comment-item .voting-controls.active-controls:hover::after {
1864 opacity: 1.0;
1867 .post .voting-controls .karma-value::after,
1868 .comment-item .voting-controls .karma-value::after {
1869 content: attr(title);
1870 position: absolute;
1871 pointer-events: none;
1872 display: block;
1873 left: 50%;
1874 transform: translateX(-50%);
1875 white-space: pre-wrap;
1876 width: max-content;
1877 text-align: center;
1878 font-size: 0.875rem;
1879 color: #bbb;
1880 opacity: 0;
1881 transition: opacity 0.2s ease;
1883 .post .voting-controls.agreement .karma-value:hover::after,
1884 .comment-item .voting-controls.agreement .karma-value:hover::after {
1885 top: unset;
1886 bottom: 100%;
1888 .post .voting-controls .karma-value:hover::after,
1889 .comment-item .voting-controls .karma-value:hover::after {
1890 opacity: 1.0;
1892 .post .voting-controls.waiting .karma-value:hover::after,
1893 .comment-item .voting-controls.waiting .karma-value:hover::after {
1894 display: none;
1896 .comment-item .voting-controls .karma-value:hover::after {
1897 z-index: 5001;
1900 .author {
1901 position: relative;
1903 .author:not(.redacted)::before {
1904 content: attr(data-full-name);
1905 position: absolute;
1906 pointer-events: none;
1907 display: block;
1908 padding: 0 1em;
1909 left: 50%;
1910 bottom: 2em;
1911 transform: translateX(-50%);
1912 white-space: nowrap;
1913 text-align: center;
1914 font-size: 0.875rem;
1915 font-weight: normal;
1916 opacity: 0;
1917 transition: opacity 0.2s ease;
1918 z-index: 5001;
1920 .author:hover::before {
1921 opacity: 1.0;
1925 /*********/
1926 /* POSTS */
1927 /*********/
1929 .post {
1930 max-width: 100%;
1933 .post-body {
1934 min-height: 8em;
1935 padding: 0 30px;
1936 line-height: 1.5;
1937 font-size: 1.3rem;
1938 overflow: auto;
1939 margin: 0.5em 0 0 0;
1941 h1.post-title {
1942 margin: 1.1em 0 0.35em 0;
1943 padding: 0 30px;
1944 text-align: center;
1945 font-size: 2.5em;
1946 line-height: 1;
1948 .post .post-meta {
1949 text-align: center;
1950 position: relative;
1951 z-index: 2;
1953 .post .top-post-meta:last-child {
1954 margin-bottom: 40px;
1956 .post .bottom-post-meta {
1957 margin: 0;
1958 padding: 20px 0;
1960 .bottom-post-meta {
1961 border-style: solid;
1962 border-width: 1px 0;
1965 /**********/
1966 /* EVENTS */
1967 /**********/
1969 .event-info .map {
1970 position: relative;
1971 width: 100%;
1972 margin: 2em 0 1em;
1975 .event-info .map::before {
1976 content: "";
1977 display: block;
1978 padding-bottom: 50%;
1981 .event-info .map iframe {
1982 width: 100%;
1983 height: 100%;
1984 border: 1px solid #000;
1985 position: absolute;
1986 top: 0;
1987 left: 0;
1990 .event-info ul {
1991 list-style: none;
1992 padding: 0;
1993 text-align: center;
1996 /*******************/
1997 /* POST NAVIGATION */
1998 /*******************/
2000 .post-nav-item {
2001 display: grid;
2002 grid-template: 100% / 32% 36% 32%;
2003 grid-template-areas:
2004 "prev seq next";
2006 .post-nav {
2007 display: flex;
2008 flex-flow: column;
2009 justify-content: flex-end;
2010 padding: 0.5em;
2013 .post-nav-title {
2014 font-size: 1.125em;
2015 line-height: 1.15;
2016 display: inline;
2017 border-top: 1px solid transparent;
2019 .post-nav.prev .post-nav-title,
2020 .post-nav.next .post-nav-title {
2021 border-bottom: 1px solid transparent;
2024 .sequence-title {
2025 align-items: center;
2026 text-align: center;
2027 grid-area: seq;
2029 .sequence-title .post-nav-title {
2030 font-size: 1.5em;
2033 .post-nav.prev {
2034 grid-area: prev;
2035 align-items: flex-start;
2037 .post-nav.prev .post-nav-title::before {
2038 content: "\F0D9\2005";
2040 .post-nav.next {
2041 grid-area: next;
2042 text-align: right;
2043 align-items: flex-end;
2045 .post-nav.prev .post-nav-label,
2046 .post-nav.next .post-nav-label {
2047 display: none;
2049 .post-nav.next .post-nav-title::after {
2050 content: "\2004\F0DA";
2052 .post-nav.prev .post-nav-title::before,
2053 .post-nav.next .post-nav-title::after {
2054 font-family: Font Awesome;
2055 font-weight: 900;
2056 vertical-align: text-bottom;
2057 opacity: 0.75;
2059 .post-nav-links {
2060 max-width: 100%;
2063 @media only screen and (max-width: 900px) {
2064 .post-nav-item {
2065 font-size: 0.875em;
2066 grid-template: auto auto / 50% 50%;
2067 grid-template-areas:
2068 "prev next"
2069 "seq seq";
2071 .post-nav.prev .post-nav-title,
2072 .post-nav.next .post-nav-title {
2073 border-bottom: none;
2075 .post-nav.prev {
2076 margin: 0 0 0 -1px;
2077 position: relative;
2078 left: 1px;
2080 .sequence-title {
2081 padding: 0.75em 0;
2084 @media only screen and (max-width: 520px) {
2085 .post-nav-links + .comments {
2086 padding: 1em 0 0 0;
2090 .related-posts, .related-post-group {
2091 padding-bottom: 1em;
2093 .related-post-type {
2094 font-size: 1.2em;
2095 font-weight: 600;
2096 margin-top: 0.5em;
2097 margin-bottom: -0.5em;
2098 list-style-type: disc;
2099 margin-left: -0.5em;
2100 opacity: 0.7;
2102 .related-post-type::before {
2103 content: "\269c";
2104 font-size: 1.375em;
2105 font-weight: normal;
2106 margin-right: 0.15em;
2107 position: relative;
2108 vertical-align: baseline;
2109 top: 0.05em;
2111 .related-posts .post-type-prefix {
2112 display: none;
2115 /**************/
2116 /* LINK POSTS */
2117 /**************/
2119 .post.link-post > .post-body > p:first-child {
2120 text-align: center;
2121 font-size: 1.125em;
2122 margin: 0.5em 0 0 0;
2124 .post.link-post > .post-body > p:only-child {
2125 font-size: 1.5em;
2126 margin: 1em 0;
2128 .post.link-post a.link-post-link::before {
2129 content: "\F0C1";
2130 font-family: "Font Awesome", "Font Awesome 5 Free";
2131 font-weight: 900;
2132 font-size: 0.75em;
2133 position: relative;
2134 top: -2px;
2135 margin-right: 0.25em;
2138 /************/
2139 /* COMMENTS */
2140 /************/
2142 .comments {
2143 max-width: 100%;
2144 padding: 0 0 1px 0;
2145 position: relative;
2147 .comments::before {
2148 content: "";
2149 position: absolute;
2150 display: block;
2151 top: 0;
2152 left: 0;
2153 width: 100%;
2154 height: 100%;
2155 pointer-events: none;
2157 ul.comment-thread {
2158 list-style-type: none;
2159 padding: 0;
2160 max-width: 100%;
2162 .comments .comment-thread > li {
2163 position: relative;
2165 #content > #top-nav-bar + .comment-thread .comment-item {
2166 margin-top: 0;
2169 .comment-item {
2170 margin: 2em 0 0 0;
2172 .comment-item .comment-item {
2173 margin: 1em 8px 8px 16px;
2175 .comment-item .comment-item + .comment-item {
2176 margin: 2em 8px 8px 16px;
2179 .comment-body {
2180 line-height: 1.45;
2181 font-size: 1.2rem;
2182 padding: 10px;
2184 .comment-body ul {
2185 list-style-type: circle;
2187 .comment-body > *:first-child {
2188 margin-top: 0;
2190 .comment-body > *:last-child {
2191 margin-bottom: 0;
2194 .comments-empty-message {
2195 width: 100%;
2196 text-align: center;
2197 padding: 0.75em 0 0.9em 0;
2198 font-size: 1.375em;
2201 /**********************************/
2202 /* DEEP COMMENT THREAD COLLAPSING */
2203 /**********************************/
2205 .comment-item > input[id^="expand"] {
2206 display: none;
2208 .comment-item > input[id^="expand"] + label {
2209 display: block;
2210 visibility: hidden;
2211 position: relative;
2212 margin: 8px 9px;
2214 .comment-item > input[id^="expand"] + label::after {
2215 content: "(Expand " attr(data-child-count) " below)";
2216 visibility: visible;
2217 position: absolute;
2218 left: 0;
2219 white-space: nowrap;
2220 cursor: pointer;
2222 .comment-item > input[id^="expand"]:checked + label::after {
2223 content: "(Collapse " attr(data-child-count) " below)";
2225 .comment-item > input[id^="expand"] ~ .comment-thread {
2226 max-height: 34px;
2227 overflow: hidden;
2229 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2230 margin-top: 0;
2232 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2233 max-height: 1000000px;
2236 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2237 margin: 0;
2239 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2240 display: none;
2243 /*************/
2244 /* BACKLINKS */
2245 /*************/
2247 .backlinks > input {
2248 display: none;
2251 .backlinks > label {
2252 margin-left: 10px;
2253 display: block;
2254 color: #00f;
2255 cursor: pointer;
2258 .backlinks > label::before {
2259 content: " ";
2260 border-left: 5px solid currentColor;
2261 border-top: 5px solid transparent;
2262 border-bottom: 5px solid transparent;
2263 transition: transform 0.25s ease-out;
2264 transform-origin: 29% 55%;
2265 display: inline-block;
2266 padding-right: 0.5em;
2269 .backlinks > input:checked + label::before {
2270 transform: rotate(90deg);
2273 .backlinks li {
2274 margin-top: 0;
2277 .backlinks > ul {
2278 height: 0;
2279 perspective-origin: top;
2280 transform: perspective(100em) rotateX(-90deg);
2281 transform-origin: center top;
2282 opacity: 0;
2283 margin-top: 0.5em;
2284 margin-bottom: 0.5em;
2287 .backlinks > input:checked ~ ul {
2288 height: auto;
2289 transform: perspective(100em) rotateX(0deg);
2290 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2291 opacity: 1;
2294 /****************/
2295 /* COMMENT-META */
2296 /****************/
2298 .comment-meta {
2299 padding: 2px 24px 2px 10px;
2300 margin: 0 -1px;
2301 border: none;
2302 display: flex;
2303 flex-flow: row wrap;
2304 align-items: baseline;
2306 .user-page .comment-meta,
2307 .conversation-page .comment-meta {
2308 padding-right: 10px;
2310 .comment-meta .comment-post-title {
2311 flex-basis: 100%;
2312 overflow: hidden;
2313 text-overflow: ellipsis;
2314 white-space: nowrap;
2315 line-height: 1.3;
2317 .conversation-page .comment-meta .comment-post-title {
2318 margin: 0;
2319 flex-basis: unset;
2320 flex: 1 0 auto;
2321 text-align: right;
2322 display: none; /* Not sure if we need to display this... */
2324 .comment-item .author:not(.redacted).original-poster::after {
2325 content: "\2004(OP)";
2326 font-size: 0.75em;
2329 /*****************************/
2330 /* COMMENT THREAD NAVIGATION */
2331 /*****************************/
2333 a.comment-parent-link:not(.inline-author),
2334 a.comment-parent-link.inline-author::before {
2335 opacity: 0.5;
2337 a.comment-parent-link:hover {
2338 opacity: 1.0;
2340 a.comment-parent-link::before {
2341 content: "\F062";
2342 font-family: "Font Awesome", "Font Awesome 5 Free";
2343 font-weight: 900;
2344 font-size: 0.75rem;
2345 line-height: 1;
2346 position: absolute;
2347 z-index: 1;
2348 display: block;
2349 padding: 3px 3px 0 3px;
2350 width: 16px;
2351 height: calc(100% + 2px);
2352 top: -1px;
2353 left: -17px;
2355 a.comment-parent-link::after {
2356 content: "";
2357 position: absolute;
2358 z-index: 0;
2359 display: block;
2360 width: calc(100% + 26px);
2361 height: calc(100% + 38px);
2362 top: -29px;
2363 left: -17px;
2364 pointer-events: none;
2365 overflow: hidden;
2366 visibility: hidden;
2368 a.comment-parent-link:hover::after {
2369 visibility: visible;
2372 .comment-child-links {
2373 flex-basis: 100%;
2375 .comment-child-link {
2376 margin: 0 0.25em;
2377 display: inline-block;
2379 .comment-child-link::before {
2380 content: ">";
2381 display: inline-block;
2382 margin: 0 2px 0 0;
2385 .comment-popup {
2386 position: fixed;
2387 top: 10%;
2388 right: 10%;
2389 max-width: 700px;
2390 z-index: 10001;
2391 font-size: 1rem;
2392 white-space: unset;
2393 pointer-events: none;
2395 .comment-popup .comment-parent-link {
2396 display: none;
2398 .comment-popup .comment-body {
2399 font-size: 1.0625rem;
2402 .comment-item.depth-odd {
2403 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2404 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2406 .comment-item.depth-even {
2407 --GW-comment-background-color: var(--GW-comment-background-color-even);
2408 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2411 .comment-item:target {
2412 --GW-comment-background-color: var(--GW-comment-background-color-target);
2414 .comment-item:target > .comment-thread > .comment-item {
2415 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2418 /**********************/
2419 /* COMMENT PERMALINKS */
2420 /**********************/
2421 /********************/
2422 /* COMMENT LW LINKS */
2423 /********************/
2425 .comment-meta .permalink::before,
2426 .comment-meta .lw2-link::before,
2427 .individual-thread-page a.comment-parent-link:empty::before {
2428 content: "";
2429 display: inline-block;
2430 width: 1rem;
2431 height: 1rem;
2432 border-radius: 3px;
2433 box-shadow:
2434 0 0 0 1px #fff,
2435 0 0 0 2px #00e,
2436 0 0 0 3px transparent;
2437 padding: 0 0 0 2px;
2438 background-size: 100%;
2439 position: relative;
2440 top: 2px;
2441 opacity: 0.5;
2443 .comment-meta .permalink::before {
2444 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');
2446 .comment-meta .lw2-link::before {
2447 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==');
2449 .individual-thread-page a.comment-parent-link:empty::before {
2450 left: unset;
2451 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==');
2453 .comment-meta .permalink:hover::before {
2454 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');
2456 .comment-meta .lw2-link:hover::before {
2457 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==');
2459 .individual-thread-page a.comment-parent-link:empty:hover::before {
2460 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=');
2462 .comment-meta .permalink:hover::before,
2463 .comment-meta .lw2-link:hover::before,
2464 .individual-thread-page a.comment-parent-link:empty:hover::before {
2465 box-shadow:
2466 0 0 0 2px #00e,
2467 0 0 0 3px transparent;
2468 opacity: 1.0;
2469 filter: unset;
2471 .comment-meta .permalink:active::before,
2472 .comment-meta .lw2-link:active::before,
2473 .individual-thread-page a.comment-parent-link:empty:active::before {
2474 transform: scale(0.9);
2477 .comment-meta .permalink,
2478 .comment-meta .lw2-link,
2479 .individual-thread-page .comment-parent-link:empty {
2480 position: relative;
2481 opacity: 1.0;
2483 .comment-meta .permalink::after,
2484 .comment-meta .lw2-link::after,
2485 .individual-thread-page .comment-parent-link:empty::after {
2486 content: "";
2487 width: 30px;
2488 height: 30px;
2489 display: block;
2490 position: absolute;
2491 top: -2px;
2492 left: -7px;
2493 box-shadow: none;
2494 pointer-events: auto;
2495 visibility: visible;
2498 /*************************/
2499 /* COMMENTS COMPACT VIEW */
2500 /*************************/
2502 #comments-list-mode-selector,
2503 #content.index-page #comments-list-mode-selector,
2504 #content.user-page #comments-list-mode-selector {
2505 padding-top: 6px;
2506 grid-column: 1;
2507 position: unset;
2508 z-index: 1;
2509 justify-self: start;
2510 align-self: start;
2512 #comments-list-mode-selector button {
2513 color: transparent;
2514 width: 32px;
2515 height: 32px;
2516 padding: 6px;
2517 margin: 1px;
2518 overflow: hidden;
2519 background-repeat: no-repeat;
2520 background-size: 100%;
2521 background-origin: content-box;
2523 #comments-list-mode-selector button:disabled {
2524 cursor: auto;
2526 #comments-list-mode-selector button.expanded {
2527 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2529 #comments-list-mode-selector button.compact {
2530 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2532 @media only screen and (max-resolution: 1dppx) {
2533 #comments-list-mode-selector button.expanded {
2534 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2536 #comments-list-mode-selector button.compact {
2537 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2541 #content > ul.comment-thread > li.comment-item,
2542 #content.compact > ul.comment-thread > li.comment-item {
2543 margin: 0;
2546 #content > .comment-thread {
2547 margin: 1em 0;
2549 #content.compact > .comment-thread {
2550 font-size: 0.9375rem;
2551 margin: 0.5em 0;
2553 #content.compact > .comment-thread:hover {
2554 z-index: 1;
2556 #content.compact > .comment-thread .comment-body {
2557 font-size: 1.0625rem;
2559 #content.compact > .comment-thread .comment-item,
2560 #content.index-page .comment-item.ignored,
2561 #content.inbox-user-page .comment-item.ignored {
2562 max-height: 61px;
2563 margin-top: 1em;
2564 overflow: hidden;
2565 position: relative;
2567 #content.compact > .comment-thread .comment-item {
2568 pointer-events: none;
2570 #content.compact > .comment-thread .comment-item::after {
2571 content: "…";
2572 position: absolute;
2573 right: 0;
2574 bottom: 0;
2575 font-size: 2rem;
2576 line-height: 1;
2577 padding: 0 16px 10px 64px;
2578 pointer-events: auto;
2580 @media only screen and (hover: hover) {
2581 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2582 #content.compact > .comment-thread .comment-item.expanded {
2583 overflow: visible;
2584 pointer-events: auto;
2585 z-index: 10;
2588 @media only screen and (hover: none) {
2589 #content.compact > .comment-thread.expanded .comment-item {
2590 overflow: visible;
2591 pointer-events: auto;
2592 z-index: 10;
2595 #content.compact > .comment-thread .comment-item .comment-meta {
2596 white-space: nowrap;
2597 overflow: hidden;
2598 text-overflow: ellipsis;
2599 padding: 2px 10px;
2601 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2602 white-space: unset;
2604 #content.compact > .comment-thread .comment-item .comment-meta a {
2605 pointer-events: auto;
2607 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2608 display: inline;
2610 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2611 margin-left: 0.75em;
2613 @media only screen and (hover: hover) {
2614 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2615 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2616 max-height: unset;
2618 #content.compact > .comment-thread .comment-item:hover .comment,
2619 #content.compact > .comment-thread .comment-item.expanded .comment {
2620 position: relative;
2621 z-index: 1;
2622 margin-bottom: 2em;
2623 bottom: 0;
2625 #content.compact > .comment-thread .comment-item:hover .comment::before,
2626 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2627 content: "";
2628 position: absolute;
2629 display: block;
2630 width: calc(100% + 20px);
2631 height: calc(100% + 20px);
2632 z-index: -1;
2633 top: -10px;
2634 left: -10px;
2636 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2637 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2638 margin: 0;
2641 @media only screen and (hover: none) {
2642 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2643 max-height: unset;
2645 #content.compact > .comment-thread.expanded .comment-item .comment {
2646 position: relative;
2647 z-index: 1;
2648 margin-bottom: 2em;
2649 bottom: 0;
2651 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2652 content: "";
2653 position: absolute;
2654 display: block;
2655 width: calc(100% + 14px);
2656 height: calc(100% + 20px);
2657 z-index: -1;
2658 top: -10px;
2659 left: -10px;
2661 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2662 margin: 0;
2664 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2665 content: "";
2666 display: block;
2667 position: fixed;
2668 top: 0;
2669 left: 0;
2670 width: 100%;
2671 height: 100%;
2672 z-index: -2;
2673 background-color: rgba(0,0,0,0.5);
2677 /*****************************/
2678 /* HIGHLIGHTING NEW COMMENTS */
2679 /*****************************/
2681 .new-comment::before {
2682 content: "";
2683 position: absolute;
2684 width: 100%;
2685 height: 100%;
2686 z-index: 5000;
2687 pointer-events: none;
2690 /***********************************/
2691 /* COMMENT THREAD MINIMIZE BUTTONS */
2692 /***********************************/
2694 .comment-minimize-button {
2695 font-family: "Font Awesome", "Font Awesome 5 Free";
2696 font-weight: 900;
2697 font-size: 1.25rem;
2698 line-height: 1;
2699 position: absolute;
2700 right: 1px;
2701 top: 1px;
2702 width: 18px;
2703 margin: 0;
2704 cursor: pointer;
2706 .comment-minimize-button:active {
2707 transform: scale(0.9);
2709 .comment-minimize-button::after {
2710 content: attr(data-child-count);
2711 font-weight: normal;
2712 font-size: 0.8125rem;
2713 position: absolute;
2714 left: 0;
2715 width: 100%;
2716 text-align: center;
2717 top: 21px;
2719 #content.individual-thread-page .comment-minimize-button {
2720 display: none;
2723 /*****************/
2724 /* IGNORE SYSTEM */
2725 /*****************/
2727 #content.comment-thread-page .comment-item.ignored {
2728 height: 38px;
2729 overflow: hidden;
2731 .comment-item.ignored > .comment > .comment-meta > .author {
2732 text-decoration: line-through;
2735 /***********************************/
2736 /* INDIVIDUAL COMMENT THREAD PAGES */
2737 /***********************************/
2739 .individual-thread-page > h1 {
2740 line-height: 1;
2741 margin: 0.75em 0 3px 0;
2743 .individual-thread-page .comments {
2744 border: none;
2747 /*************/
2748 /* SHORTFORM */
2749 /*************/
2751 .shortform-index-page .comments::before {
2752 border: none;
2753 box-shadow: none;
2756 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2757 margin-top: 0;
2760 /****************/
2761 /* VOTE BUTTONS */
2762 /****************/
2764 .vote {
2765 margin: 0;
2767 .vote {
2768 font-family: "Font Awesome", "Font Awesome 5 Free";
2769 font-weight: 900;
2770 border: none;
2773 .vote:disabled {
2774 visibility: hidden;
2775 cursor: default;
2778 @keyframes waiting {
2779 0% {background-position: 200% 0%}
2780 100% {background-position: 0% 0%}
2783 .voting-controls .karma-value {
2784 opacity: 1;
2785 transition: opacity 0.5s linear;
2788 .voting-controls.waiting .karma-value {
2789 opacity: 0.5;
2790 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2791 background-clip: text;
2792 -webkit-background-clip: text;
2793 color: transparent;
2794 background-position: 200% 0%;
2795 background-size: 200% 100%;
2796 animation: waiting 1s linear infinite;
2799 /* Replicated karma controls at bottom of comments. */
2800 .comment-controls .voting-controls {
2801 float: left;
2802 font-size: 0.9375em;
2805 .comment-controls .voting-controls:first-of-type {
2806 margin-left: -14px;
2809 /*****************************/
2810 /* COMMENTING AND POSTING UI */
2811 /*****************************/
2813 .comment-controls {
2814 text-align: right;
2815 margin: 0 8px 8px 16px;
2816 position: relative;
2817 z-index: 9999;
2819 .comment-thread .comment-controls + .comment-thread > li:first-child {
2820 margin-top: 8px;
2822 .comments > .comment-controls {
2823 margin: 8px 0 0 0;
2825 .comments > .comment-controls:last-child {
2826 margin: 8px 0 16px 0;
2829 .posting-controls input[type='submit'] {
2830 margin: 6px;
2831 padding: 4px 10px;
2832 font-size: 1.125rem;
2835 .comment-controls .cancel-comment-button {
2836 position: absolute;
2837 right: 0;
2838 margin: 0;
2839 height: 27px;
2840 font-size: inherit;
2841 padding: 4px 8px 2px 4px;
2842 z-index: 1;
2844 .comment-controls .cancel-comment-button::before {
2845 font-family: "Font Awesome", "Font Awesome 5 Free";
2846 margin-right: 3px;
2847 content: '\F00D';
2848 font-weight: 900;
2849 font-size: 0.9em;
2850 opacity: 0.7;
2853 .comment + .comment-controls .action-button {
2854 font-weight: normal;
2855 font-size: 1.0625em;
2856 padding: 1px 6px;
2858 .comment-controls .action-button::before {
2859 font-family: "Font Awesome", "Font Awesome 5 Free";
2860 margin-right: 3px;
2862 .new-comment-button {
2863 font-size: 1.5rem;
2864 margin: 0 0.25em;
2866 .comment-controls .reply-button::before {
2867 content: '\F3E5';
2868 font-weight: 900;
2869 font-size: 0.9em;
2870 opacity: 0.6;
2872 .comment-meta .replied::before {
2873 content: '\F3E5';
2874 font-family: "Font Awesome", "Font Awesome 5 Free";
2875 color: #090;
2876 font-weight: 900;
2877 font-size: 0.9em;
2878 opacity: 0.6;
2881 .post-controls {
2882 text-align: right;
2883 margin: 0.75em 0 0 0;
2884 align-self: start;
2885 justify-self: end;
2887 .edit-post-link {
2888 display: inline-block;
2889 margin-bottom: 0.25em;
2890 font-size: 1.125rem;
2892 .edit-post-link::before {
2893 margin-right: 0.3em;
2895 .comment-controls .edit-button::before,
2896 .edit-post-link::before {
2897 content: '\F303';
2898 font-family: "Font Awesome", "Font Awesome 5 Free";
2899 font-weight: 900;
2900 font-size: 0.75em;
2901 position: relative;
2902 top: -1px;
2905 .comment-controls .delete-button {
2906 margin-right: 0.25em;
2908 .comment-controls .edit-button,
2909 .comment-controls .retract-button,
2910 .comment-controls .unretract-button {
2911 margin-right: 1em;
2913 .comment-controls .retract-button::before {
2914 content: '\F4B3';
2915 opacity: 0.6;
2917 .comment-controls .unretract-button::before {
2918 content: '\F075';
2919 opacity: 0.9;
2921 .comment-controls .delete-button::before {
2922 content: '\F05E';
2923 opacity: 0.7;
2925 .comment-controls .retract-button::before,
2926 .comment-controls .unretract-button::before,
2927 .comment-controls .delete-button::before {
2928 font-weight: 900;
2929 font-size: 0.9em;
2932 .comment-controls form {
2933 position: relative;
2935 .textarea-container {
2936 position: relative;
2938 .posting-controls textarea {
2939 display: block;
2940 width: 100%;
2941 height: 15em;
2942 min-height: 15em;
2943 max-height: calc(100vh - 6em);
2944 margin: 2px 0 0 0;
2945 padding: 4px 5px;
2946 font-size: 1.2rem;
2947 border-style: solid;
2948 border-width: 29px 1px 1px 1px;
2949 resize: none;
2952 /* GUIEdit buttons */
2954 .guiedit-buttons-container {
2955 position: absolute;
2956 left: 1px;
2957 top: 1px;
2958 width: calc(100% - 2px);
2959 height: 28px;
2960 text-align: left;
2961 padding: 1px 4px 0 4px;
2962 overflow: hidden;
2964 .comment-thread-page .guiedit-buttons-container {
2965 padding-right: 60px;
2967 .guiedit-buttons-container button {
2968 height: 26px;
2969 padding: 0 7px;
2970 font-weight: 900;
2971 font-size: 0.875rem;
2972 line-height: 1;
2973 position: static;
2975 .guiedit-buttons-container button:active {
2976 transform: none;
2978 .guiedit-buttons-container button:active div {
2979 transform: scale(0.9);
2981 .guiedit-buttons-container button sup {
2982 font-weight: bold;
2984 .guiedit::after {
2985 content: attr(data-tooltip);
2986 position: absolute;
2987 font-weight: normal;
2988 font-size: 1rem;
2989 top: 2px;
2990 left: 464px;
2991 height: 25px;
2992 padding: 4px 0;
2993 white-space: nowrap;
2994 visibility: hidden;
2996 .guiedit:hover::after {
2997 visibility: visible;
3000 /* Markdown hints */
3002 .posting-controls .markdown-reference-link {
3003 float: left;
3004 padding: 1px 0 0 6px;
3006 .posting-controls .markdown-reference-link a {
3007 padding-right: 1.5em;
3008 margin-right: 0.15em;
3009 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');
3010 background-size: 1.25em;
3011 background-repeat: no-repeat;
3012 background-position: right center;
3015 #markdown-hints-checkbox + label {
3016 float: left;
3017 margin: 2px 0 0 1em;
3018 line-height: 1.3;
3019 cursor: pointer;
3021 #edit-post-form #markdown-hints-checkbox + label {
3022 padding: 0;
3024 #markdown-hints-checkbox {
3025 visibility: hidden;
3026 float: left;
3028 #markdown-hints-checkbox + label::after {
3029 content: "(Show Markdown help)";
3031 #markdown-hints-checkbox:checked + label::after {
3032 content: "(Hide Markdown help)";
3034 #markdown-hints-checkbox + label::before {
3035 content: '\F059';
3036 font-family: "Font Awesome", "Font Awesome 5 Free";
3037 font-weight: 900;
3038 margin-right: 3px;
3040 #markdown-hints-checkbox:checked + label::before {
3041 font-weight: normal;
3043 #markdown-hints {
3044 margin: 4px 0 0 4px;
3045 padding: 4px 8px;
3046 position: absolute;
3047 text-align: left;
3048 top: calc(100% - 1em);
3049 z-index: 1;
3050 display: none;
3052 .comment-controls #markdown-hints {
3053 top: calc(100% + 1.75em);
3055 #markdown-hints-checkbox:checked ~ #markdown-hints {
3056 display: table;
3058 .markdown-hints-row {
3059 display: table-row;
3061 #markdown-hints .markdown-hints-row span,
3062 #markdown-hints .markdown-hints-row code {
3063 float: none;
3064 display: table-cell;
3065 border: none;
3066 background-color: inherit;
3067 padding: 0 12px 0 0;
3070 /******************/
3071 /* EDIT POST FORM */
3072 /******************/
3074 #edit-post-form {
3075 padding: 1em 1em 4em 1em;
3077 #edit-post-form .post-meta-fields {
3078 display: grid;
3079 grid-template-columns: 5em auto auto auto 1fr auto;
3080 margin-bottom: 0.625em;
3083 #edit-post-form label[for='title'],
3084 #edit-post-form label[for='url'],
3085 #edit-post-form label[for='section'] {
3086 grid-column: 1;
3088 #edit-post-form input[type='text'] {
3089 padding: 0.25em;
3090 grid-column: 2 / span 4;
3091 margin-bottom: 0.5em;
3094 #edit-post-form .link-post-checkbox,
3095 #edit-post-form .link-post-checkbox + label {
3096 grid-row: 1;
3097 grid-column: 6;
3099 #edit-post-form .question-checkbox,
3100 #edit-post-form .question-checkbox + label {
3101 grid-row: 3;
3102 grid-column: 5;
3103 justify-self: start;
3104 margin-left: 1.5em;
3107 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3108 grid-row: 4;
3109 grid-column: 2 / span 4;
3110 text-align: left;
3111 margin-top: 8px;
3114 #edit-post-form .post-meta-fields input[type='checkbox'] {
3115 height: 0;
3116 opacity: 0;
3117 pointer-events: none;
3119 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3120 white-space: nowrap;
3121 position: relative;
3122 cursor: pointer;
3123 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3124 align-self: start;
3126 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3127 content: "";
3128 font-family: "Font Awesome", "Font Awesome 5 Free";
3129 font-size: 1.375rem;
3130 line-height: 0.7;
3131 text-indent: 1px;
3132 font-weight: 900;
3133 position: absolute;
3134 width: 20px;
3135 height: 20px;
3136 left: 5px;
3138 #edit-post-form label[for='url'],
3139 #edit-post-form input[name='url'] {
3140 display: none;
3142 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3143 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3144 display: initial;
3146 #edit-post-form label {
3147 line-height: normal;
3148 border: 1px solid transparent;
3149 text-align: right;
3150 padding: 0.25em 0.5em;
3151 white-space: nowrap;
3153 #edit-post-form input[type='radio'] {
3154 width: 0;
3155 margin: 0;
3156 opacity: 0;
3157 pointer-events: none;
3159 #edit-post-form input[type='radio'] + label {
3160 padding: 4px 12px;
3161 text-align: center;
3162 border-style: solid;
3163 border-width: 1px 1px 1px 0;
3164 cursor: pointer;
3166 #edit-post-form input[type='radio']:checked + label {
3167 cursor: default;
3170 #edit-post-form label[for='section'] {
3171 grid-row: 3;
3173 #edit-post-form input[type='radio'] + label {
3174 grid-row: 3;
3176 @supports (width: -moz-fit-content) {
3177 #edit-post-form input[type='radio'] + label {
3178 width: -moz-fit-content;
3181 @supports (width: fit-content) {
3182 #edit-post-form input[type='radio'] + label {
3183 width: fit-content;
3187 #edit-post-form textarea {
3188 min-height: 24em;
3191 #edit-post-form input[type='submit'] {
3192 padding: 6px 12px;
3193 float: right;
3195 #edit-post-form #markdown-hints {
3196 top: calc(100% + 2em);
3199 #edit-post-form button.guiedit div {
3200 overflow: visible;
3202 .guiedit-mobile-auxiliary-button {
3203 display: none;
3206 /***********/
3207 /* BUTTONS */
3208 /***********/
3210 button,
3211 input[type='submit'] {
3212 font-family: inherit;
3213 font-size: inherit;
3214 background-color: inherit;
3215 cursor: pointer;
3216 border: none;
3217 border-radius: 0;
3220 /************/
3221 /* HEADINGS */
3222 /************/
3224 .body-text h1,
3225 .body-text h2,
3226 .body-text h3,
3227 .body-text h4,
3228 .body-text h5,
3229 .body-text h6 {
3230 line-height: 1.1;
3231 margin: 1em 0 0.75em 0;
3232 text-align: left;
3235 .post-body h5,
3236 .post-body h6 {
3237 font-size: 1em;
3239 .post-body h4 {
3240 font-size: 1.2em;
3242 .post-body h3 {
3243 font-size: 1.4em;
3245 .post-body h2 {
3246 font-size: 1.75em;
3248 .post-body h1 {
3249 font-size: 2.1em;
3252 .comment-body h5,
3253 .comment-body h6 {
3254 font-size: 1em;
3256 .comment-body h4 {
3257 font-size: 1.15em;
3259 .comment-body h3 {
3260 font-size: 1.3em;
3262 .comment-body h2 {
3263 font-size: 1.5em;
3265 .comment-body h1 {
3266 font-size: 1.75em;
3269 /**********/
3270 /* QUOTES */
3271 /**********/
3273 blockquote,
3274 .post-body .comment-box .comment-body {
3275 font-size: 0.9em;
3276 margin: 1em 0;
3277 padding-left: 0.5em;
3278 margin-left: 1px;
3279 padding-bottom: 3px;
3281 blockquote *:first-child {
3282 margin-top: 0;
3284 blockquote *:last-child {
3285 margin-bottom: 0;
3287 blockquote blockquote {
3288 font-size: 0.95em;
3291 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3293 .post-body .comment-box .user-name {
3294 font-style: italic;
3296 .post-body .comment-box .user-name::after {
3297 content: ":";
3299 .post-body .comment-box {
3300 zoom: 1.25;
3303 /**********/
3304 /* IMAGES */
3305 /**********/
3307 #content img, #content figure {
3308 max-width: 100%;
3311 .prediction-poll > svg {
3312 width: 700px;
3313 max-width: 100%;
3316 img.inline-latex {
3317 position: relative;
3318 top: 2.5px;
3319 margin: 0 2px;
3322 #content figure {
3323 text-align: center;
3324 margin: 1.5em auto;
3327 p.imgonly,
3328 div.imgonly,
3329 figure {
3330 text-align: center;
3331 margin: auto;
3332 clear: both;
3335 .imgonly iframe {
3336 display: block;
3337 width: 100%;
3338 height: 250px;
3339 border: 0;
3342 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3344 [style*="--aspect-ratio"] > * {
3345 width: 100%;
3347 [style*="--aspect-ratio"] > img {
3348 height: auto;
3350 @supports (--custom:property) {
3351 [style*="--aspect-ratio"] {
3352 position: relative;
3354 [style*="--aspect-ratio"]::before {
3355 content: "";
3356 display: block;
3357 padding-bottom: calc(100% / (var(--aspect-ratio)));
3359 [style*="--aspect-ratio"] > * {
3360 position: absolute;
3361 top: 0;
3362 left: 0;
3363 height: 100%;
3367 /**********/
3368 /* TABLES */
3369 /**********/
3371 .body-text table {
3372 border-collapse: collapse;
3373 font-size: 0.875em;
3375 .body-text table th,
3376 .body-text table td {
3377 text-align: left;
3378 padding: 4px 6px;
3379 line-height: 1.3;
3381 .body-text table .numeric {
3382 text-align: right;
3383 font-family: Inconsolata, Menlo, monospace;
3385 .body-text table caption {
3386 margin: 0 0 0.25em 0;
3387 font-weight: bold;
3388 font-size: 1.125em;
3391 /********/
3392 /* MISC */
3393 /********/
3395 /*= Superscripts & subscripts =*/
3397 /* Make sure superscripts and subscripts do not affect line spacing. */
3398 sup, sub {
3399 vertical-align: baseline;
3400 position: relative;
3401 top: -0.5em;
3402 left: 0.05em;
3403 font-size: 0.8em;
3405 sub {
3406 top: 0.3em;
3409 /*= Code blocks & other "unstyled" text. =*/
3411 pre,
3412 code {
3413 font-family: Inconsolata, Menlo, monospace;
3415 pre {
3416 white-space: pre-wrap;
3418 .body-text pre {
3419 text-align: left;
3421 code {
3422 font-size: 0.95em;
3423 display: inline-block;
3424 padding: 0 4px 1px 5px;
3426 pre > code {
3427 display: block;
3428 border-radius: 0;
3429 padding: 3px 4px 5px 8px;
3430 tab-size: 4;
3433 /*= Fractions =*/
3435 .frac::after {
3436 content: "\200B";
3439 /*= Removing browser default styling of various elements =*/
3441 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3442 :focus {
3443 outline: none;
3446 /* Remove "embossed" appearance of horizontal rules. */
3447 hr {
3448 border: none;
3451 input,
3452 button,
3453 textarea {
3454 -webkit-appearance: none;
3455 -moz-appearance: none;
3456 appearance: none;
3459 input {
3460 font-family: inherit;
3461 font-size: inherit;
3462 font-weight: inherit;
3465 /*************/
3466 /* FOOTNOTES */
3467 /*************/
3469 ol {
3470 counter-reset: ordered-list;
3472 .footnote-definition {
3473 font-size: 0.9em;
3474 list-style-type: none;
3475 counter-increment: ordered-list;
3476 position: relative;
3478 .footnote-definition p {
3479 font-size: inherit !important;
3481 .footnote-definition::before {
3482 content: counter(ordered-list) ".";
3483 position: absolute;
3484 left: -2.5em;
3485 font-weight: bold;
3486 text-align: right;
3487 width: 2em;
3490 /*= LW Docs footnotes =*/
3492 .footnote-item {
3493 display: flex;
3496 .footnote-item > :not(.nothing) {
3497 margin: 0 0.2em;
3500 .footnote-item > :first-child {
3501 margin-left: -0.2em;
3502 margin-right: 0;
3505 .footnote-back-link a:not(.nothing) {
3506 font-size: 0;
3507 text-decoration: none;
3508 border: none;
3511 .footnote-back-link a:not(.nothing):hover {
3512 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3513 border: none;
3514 text-decoration: none;
3517 .footnote-back-link a::after {
3518 content: '\F106';
3519 font-family: Font Awesome;
3520 font-size: 1rem;
3521 padding: 0.2em;
3522 text-decoration: none;
3523 font-weight: bold;
3526 .footnote-content > :first-child {
3527 margin-top: 0;
3530 /*********/
3531 /* LISTS */
3532 /*********/
3534 li {
3535 margin-bottom: 0.5em;
3538 .body-text ol p,
3539 .body-text ul p {
3540 margin: 0.5em 0;
3543 .body-text ol {
3544 list-style: none;
3545 padding: 0;
3546 counter-reset: ol;
3548 .body-text ol > li {
3549 position: relative;
3550 counter-increment: ol;
3551 padding: 0 0 0 2.5em;
3552 margin: 0.25em 0 0 0;
3554 .body-text ol > li::before {
3555 content: counter(ol) ".";
3556 position: absolute;
3557 width: 2em;
3558 text-align: right;
3559 left: 0;
3561 .body-text ul {
3562 list-style: none;
3563 padding: 0;
3565 .body-text ul:not(.contents-list) > li:empty {
3566 padding-bottom: 1.25em;
3568 .body-text ul:not(.contents-list) > li {
3569 position: relative;
3570 padding: 0 0 0 1.75em;
3571 margin: 0.25em 0 0 0;
3573 .body-text ul:not(.contents-list) > li ul > li {
3574 padding: 0 0 0 2em;
3576 .body-text ul:not(.contents-list) > li::before {
3577 content: "•";
3578 position: absolute;
3579 width: 1.25em;
3580 text-align: right;
3581 left: 0;
3583 .body-text ul:not(.contents-list) > li ul > li::before {
3584 width: 1.5em;
3586 .body-text li > ul:first-child > li {
3587 padding-left: 0;
3589 .body-text li > ul:first-child > li::before {
3590 content: none;
3593 /**************/
3594 /* ERROR PAGE */
3595 /**************/
3597 .error-retry-form {
3598 margin: 0.5em 0;
3601 .error-retry-form input[type="submit"] {
3602 border: 1px solid #aaa;
3603 font-weight: bold;
3604 font-size: 1.125rem;
3605 padding: 0.5em 1.25em;
3608 /**************/
3609 /* ABOUT PAGE */
3610 /**************/
3612 #content.about-page .contents {
3613 margin-top: 0.25em;
3615 #content.about-page .accesskey-table {
3616 border-collapse: collapse;
3617 margin: auto;
3619 #content.about-page .accesskey-table th,
3620 #content.about-page .accesskey-table td {
3621 padding: 2px 6px;
3623 #content.about-page .accesskey-table td:first-child {
3624 padding-right: 1.5em;
3626 #content.about-page .accesskey-table td:last-child {
3627 text-align: center;
3628 font-family: Inconsolata, Menlo, monospace;
3630 #content.about-page h3:nth-of-type(n+2) {
3631 clear: both;
3634 /******************/
3635 /* IMAGES OVERLAY */
3636 /******************/
3638 #images-overlay + #content .post-body img {
3639 visibility: hidden;
3642 #images-overlay div {
3643 position: absolute;
3645 #images-overlay div::after {
3646 content: "Click to enlarge";
3647 display: block;
3648 position: absolute;
3649 margin: auto;
3650 left: 0;
3651 right: 0;
3652 bottom: 10px;
3653 padding: 6px 10px;
3654 font-size: 1.25rem;
3655 background-color: rgba(0,0,0,0.6);
3656 color: #fff;
3657 border-radius: 5px;
3658 opacity: 0.0;
3659 transition: opacity 0.15s ease;
3660 pointer-events: none;
3662 @supports (width: -moz-fit-content) {
3663 #images-overlay div::after {
3664 width: -moz-fit-content;
3667 @supports (width: fit-content) {
3668 #images-overlay div::after {
3669 width: fit-content;
3672 #images-overlay div:hover::after {
3673 opacity: 1.0;
3676 #images-overlay img {
3677 width: 100%;
3680 /***************/
3681 /* IMAGE FOCUS */
3682 /***************/
3684 /*=--------------=*/
3685 /*= Hover styles =*/
3686 /*=--------------=*/
3688 #content img:hover,
3689 #images-overlay img:hover {
3690 filter: drop-shadow(0 0 3px #777);
3691 cursor: zoom-in;
3693 #content img:active,
3694 #images-overlay img:active {
3695 transform: scale(0.975);
3698 /*=---------=*/
3699 /*= Overlay =*/
3700 /*=---------=*/
3702 #image-focus-overlay {
3703 position: fixed;
3704 top: 0;
3705 right: 0;
3706 bottom: 0;
3707 left: 0;
3708 z-index: 2;
3709 display: none;
3710 cursor: zoom-out;
3712 #image-focus-overlay::before {
3713 content: "";
3714 display: block;
3715 position: absolute;
3716 top: 0;
3717 right: 0;
3718 bottom: 0;
3719 left: 0;
3720 background-color: #000;
3721 opacity: 0.5;
3722 z-index: -1;
3724 #image-focus-overlay.engaged {
3725 display: initial;
3728 #image-focus-overlay img {
3729 margin: auto;
3730 position: absolute;
3731 left: 50%;
3732 top: 50%;
3733 transform: translateX(-50%) translateY(-50%);
3736 /*=-------------------=*/
3737 /*= Single-image mode =*/
3738 /*=-------------------=*/
3740 #image-focus-overlay:not(.slideshow) .image-number,
3741 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3742 visibility: hidden;
3745 /*=---------=*/
3746 /*= Caption =*/
3747 /*=---------=*/
3749 #image-focus-overlay .caption {
3750 position: absolute;
3751 bottom: 0.75em;
3752 background-color: rgba(0,0,0,0.7);
3753 left: 9em;
3754 right: 9em;
3755 margin: auto;
3756 max-width: calc(100% - 18em);
3757 text-align: center;
3758 font-size: 1.375em;
3759 border-radius: 8px;
3760 z-index: 1;
3761 transition:
3762 bottom 0.2s ease;
3764 @supports (width: -moz-fit-content) {
3765 #image-focus-overlay .caption {
3766 width: -moz-fit-content;
3769 @supports (width: fit-content) {
3770 #image-focus-overlay .caption {
3771 width: fit-content;
3774 #image-focus-overlay .caption.hidden {
3775 bottom: -5em;
3776 transition:
3777 bottom 0.5s ease;
3780 #image-focus-overlay .caption p {
3781 margin: 1em 1.25em;
3782 color: #fff;
3785 #image-focus-overlay .caption:not(:empty)::before {
3786 content: "";
3787 display: block;
3788 position: absolute;
3789 width: 100vw;
3790 height: calc(100% + 1.5em);
3791 z-index: -1;
3792 top: -0.75em;
3793 left: calc(-50vw + 50%);
3797 /*=--------------=*/
3798 /*= Help overlay =*/
3799 /*=--------------=*/
3801 #image-focus-overlay .help-overlay {
3802 position: absolute;
3803 display: flex;
3804 flex-flow: column;
3805 z-index: 2;
3806 font-size: 1.5rem;
3807 padding: 1em;
3808 border-radius: 10px;
3809 bottom: 1em;
3810 right: 1em;
3811 overflow: hidden;
3812 white-space: nowrap;
3813 color: transparent;
3814 cursor: default;
3815 visibility: hidden;
3816 transition:
3817 visibility 1s ease,
3818 color 1s ease,
3819 background-color 1s ease,
3820 bottom 0.3s ease;
3822 #image-focus-overlay .help-overlay:hover {
3823 max-width: 24em;
3824 max-height: 14em;
3825 background-color: rgba(0,0,0,0.85);
3826 color: #fff;
3827 visibility: visible;
3828 transition:
3829 visibility 0.2s ease 0.3s,
3830 color 0.2s ease 0.3s,
3831 background-color 0.2s ease 0.3s;
3834 #image-focus-overlay .help-overlay::after {
3835 content: "\F128";
3836 font-family: "Font Awesome", "Font Awesome 5 Free";
3837 font-weight: 900;
3838 font-size: 2rem;
3839 position: absolute;
3840 right: 0;
3841 bottom: 0;
3842 padding: 10px;
3843 color: #000;
3844 filter: drop-shadow(0 0 6px #fff);
3845 visibility: visible;
3846 opacity: 0.85;
3847 transition:
3848 visibility 1s ease;
3850 #image-focus-overlay .help-overlay:hover::after {
3851 visibility: hidden;
3852 transition:
3853 visibility 0.2s ease 0.3s;
3856 #image-focus-overlay .help-overlay p {
3857 margin: 0;
3858 text-indent: -2em;
3859 padding-left: 2em;
3860 max-width: 100%;
3861 overflow: hidden;
3863 #image-focus-overlay .help-overlay p + p {
3864 margin: 0.75em 0 0 0;
3866 #image-focus-overlay .help-overlay.hidden {
3867 bottom: -2em;
3870 /*=--------------=*/
3871 /*= Slide number =*/
3872 /*=--------------=*/
3874 #image-focus-overlay .image-number {
3875 position: absolute;
3876 z-index: 2;
3877 font-size: 1.75rem;
3878 left: 1em;
3879 bottom: 1em;
3880 font-weight: 600;
3881 text-shadow:
3882 0 0 3px #fff,
3883 0 0 5px #fff,
3884 0 0 8px #fff,
3885 0 0 13px #fff;
3886 width: 1.5em;
3887 text-align: right;
3888 white-space: nowrap;
3889 transition: bottom 0.3s ease;
3891 #image-focus-overlay .image-number::before {
3892 content: "#";
3893 opacity: 0.3;
3895 #image-focus-overlay .image-number::after {
3896 content: " of " attr(data-number-of-images);
3897 opacity: 0.3;
3899 #image-focus-overlay .image-number:hover::before,
3900 #image-focus-overlay .image-number:hover::after {
3901 opacity: 1.0;
3903 #image-focus-overlay .image-number.hidden {
3904 bottom: -1.25em;
3907 /*=-------------------=*/
3908 /*= Slideshow buttons =*/
3909 /*=-------------------=*/
3911 #image-focus-overlay .slideshow-buttons {
3912 position: absolute;
3913 top: 0;
3914 left: 0;
3915 width: 100%;
3916 height: 100%;
3917 z-index: 1;
3918 display: flex;
3919 justify-content: space-between;
3920 pointer-events: none;
3922 #image-focus-overlay .slideshow-buttons button {
3923 font-family: "Font Awesome", "Font Awesome 5 Free";
3924 font-weight: 900;
3925 font-size: 3rem;
3926 padding: 0.5em;
3927 color: #ddd;
3928 position: relative;
3929 left: 0;
3930 transition:
3931 left 0.3s ease;
3932 pointer-events: auto;
3934 #image-focus-overlay .slideshow-buttons button::selection {
3935 background-color: transparent;
3937 @media only screen and (hover: hover) {
3938 #image-focus-overlay .slideshow-buttons button:hover {
3939 background-color: rgba(0,0,0,0.1);
3940 color: #777;
3943 #image-focus-overlay .slideshow-buttons button:active {
3944 transform: none;
3945 color: #888;
3947 #image-focus-overlay .slideshow-buttons button:disabled {
3948 text-shadow: none;
3949 background-color: transparent;
3950 color: #ddd;
3951 cursor: default;
3952 opacity: 0.4;
3954 #image-focus-overlay .slideshow-button.previous.hidden {
3955 left: -1.75em;
3957 #image-focus-overlay .slideshow-button.next.hidden {
3958 left: 1.75em;
3961 /*=-----------------=*/
3962 /*= Background blur =*/
3963 /*=-----------------=*/
3965 .blurred {
3966 filter: blur(3px);
3969 /**************************/
3970 /* QUALIFIED HYPERLINKING */
3971 /**************************/
3973 #content.no-nav-bars {
3974 margin: 8px auto;
3976 #content.no-nav-bars + #ui-elements-container > * {
3977 padding-top: 8px;
3980 #aux-about-link {
3981 position: fixed;
3982 top: 40px;
3983 left: calc((100% - 900px) / 2 - 69px);
3984 width: 1.5em;
3985 height: 1.5em;
3986 text-align: center;
3987 display: table;
3989 #aux-about-link a {
3990 display: table-cell;
3991 width: 100%;
3992 vertical-align: middle;
3993 font-family: "Font Awesome", "Font Awesome 5 Free";
3994 font-weight: 900;
3995 font-size: 1.25rem;
3996 opacity: 0.4;
3997 z-index: 1;
4000 .qualified-linking {
4001 margin: 0;
4002 position: relative;
4004 .qualified-linking input[type='checkbox'] {
4005 visibility: hidden;
4006 width: 0;
4007 height: 0;
4008 margin: 0;
4010 .qualified-linking label {
4011 font-family: "Font Awesome", "Font Awesome 5 Free";
4012 font-weight: 900;
4013 font-size: 1rem;
4014 padding: 0 0.5em;
4015 display: inline-block;
4016 margin-left: 0.25em;
4018 .qualified-linking label:hover {
4019 cursor: pointer;
4021 .qualified-linking label:active span {
4022 display: inline-block;
4023 transform: scale(0.9);
4025 .qualified-linking label::selection {
4026 background-color: transparent;
4029 .qualified-linking label::after {
4030 content: "";
4031 width: 100vw;
4032 height: 0;
4033 left: 0;
4034 top: 0;
4035 position: fixed;
4036 z-index: 1;
4037 cursor: default;
4039 .qualified-linking input[type='checkbox']:checked + label::after {
4040 height: 100vh;
4043 .qualified-linking-toolbar {
4044 position: absolute;
4045 right: 0.25em;
4046 top: 110%;
4047 z-index: 1;
4049 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4050 display: none;
4052 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4053 display: block;
4055 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4056 top: unset;
4057 bottom: 125%;
4060 .qualified-linking-toolbar a {
4061 display: block;
4062 padding: 0 6px;
4063 margin: 4px;
4065 .qualified-linking-toolbar a::selection {
4066 background-color: transparent;
4069 /*****************/
4070 /* HOVER PREVIEW */
4071 /*****************/
4073 #preview-popup-toggle {
4074 position: absolute;
4075 right: -67px;
4076 bottom: 285px;
4077 cursor: pointer;
4078 color: var(--GW-toggle-widget-color, #888);
4080 #preview-popup-toggle:hover {
4081 color: var(--GW-toggle-widget-hover-color, #444);
4084 #content.preview:not(not) {
4085 padding: 0;
4087 #content.preview > .comment-thread {
4088 margin: 2px;
4090 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4091 border: none;
4093 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4094 padding: 0 8px;
4096 #content.preview.user-page .page-main-heading {
4097 margin-left: 8px;
4099 #content.preview.not(not) .body-text {
4100 margin-left: 8px;
4101 margin-right: 8px;
4103 #content.preview.user-page .user-stats {
4104 margin-right: 32px;
4106 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4107 display: none;
4109 #content.preview button.vote {
4110 display: none;
4112 #content.preview > h1.listing {
4113 max-height: unset;
4115 #content.preview.user-page > .comment-thread {
4116 margin: 0.5em 0;
4118 #content.preview > .post {
4119 margin: 0 18px;
4121 #content.preview .post-title {
4122 margin-top: 0.5em;
4124 #content.preview .post-meta {
4125 line-height: 1.0;
4127 #content.preview .body-text {
4128 font-size: 1em;
4130 #content.preview nav.contents,
4131 #content.preview .lw2-link {
4132 display: none;
4135 .preview-popup {
4136 position: fixed;
4137 transform-origin: top;
4138 top: 10%;
4139 right: 10%;
4140 max-width: 700px;
4141 z-index: 10001;
4142 background-color: #eee;
4143 border: 1px solid #ccc;
4144 box-shadow: 2px 6px 20px -4px #000;
4145 transition: height 0.2s ease, top 0.2s ease;
4147 .popup-hide-button {
4148 position: fixed;
4149 top: 4px;
4150 right: 4px;
4151 color: #000;
4152 background-color: #fff;
4153 width: 28px;
4154 height: 28px;
4155 display: flex;
4156 font-family: "Font Awesome";
4157 font-size: 14px;
4158 line-height: 1;
4159 border: 1px solid #bbb;
4160 border-radius: 28px;
4161 align-items: center;
4162 justify-content: center;
4163 //padding-bottom: 2px;
4164 padding-left: 1.5px;
4165 font-family: "Font Awesome", "Font Awesome 5 Free";
4166 cursor: pointer;
4168 .popup-hide-button:hover::before {
4169 content: "Turn off preview popups";
4170 display: block;
4171 position: absolute;
4172 width: max-content;
4173 right: 32px;
4174 color #000;
4175 background-color: #fff;
4176 border: 1px solid #eee;
4177 border-radius: 2px;
4178 padding: 4px;
4181 /********/
4182 /* MATH */
4183 /********/
4185 .mathjax-block-container {
4186 display: block;
4187 overflow-y: hidden;
4188 border-radius: 6px;
4189 margin: 1em 0 1.5em 0;
4191 .mathjax-inline-container {
4192 max-width: 100%;
4193 overflow-x: auto;
4194 overflow-y: hidden;
4195 position: relative;
4196 padding: 0 1px;
4198 #content .mathjax-inline-container,
4199 #content .mathjax-inline-container .mjpage,
4200 #content .mathjax-inline-container .mjx-chtml,
4201 #content .mathjax-inline-container .mjx-math,
4202 #content .mathjax-inline-container .mjx-mrow {
4203 display: inline;
4204 white-space: normal;
4206 .post .mathjax-inline-container {
4207 line-height: 1;
4209 .comment .mathjax-inline-container {
4210 line-height: 1;
4212 .mathjax-inline-container .mjx-chtml {
4213 padding: 0;
4216 /************/
4217 /* SPOILERS */
4218 /************/
4220 .spoiler {
4221 color: #000;
4222 background-color: currentColor;
4223 transition: none;
4224 text-shadow: none;
4225 margin: 1em 0;
4226 box-shadow: 0 0 0 1px currentColor inset;
4227 overflow: auto;
4229 .spoiler:not(:last-child) {
4230 margin-bottom: 0;
4232 #content .spoiler * {
4233 color: inherit;
4234 border: none;
4236 .spoiler:hover {
4237 color: unset;
4238 background-color: unset;
4239 text-shadow: unset;
4240 transition:
4241 color 0.1s ease-out 0.1s,
4242 background-color 0.1s ease-out 0.1s,
4243 text-shadow 0.1s ease-out 0.1s;
4245 .spoiler::selection,
4246 .spoiler ::selection {
4247 color: #fff;
4248 background-color: #000;
4250 .spoiler:not(:hover)::selection,
4251 .spoiler:not(:hover) ::selection {
4252 background-color: transparent;
4255 /*= Fix for LessWrong being weird =*/
4257 .spoiler > p {
4258 padding: 0 7px;
4260 .spoiler > p:first-child {
4261 margin-top: 0.25em;
4263 .spoiler > p:last-child {
4264 margin-bottom: 0;
4265 padding-bottom: 0.25em;
4267 .spoiler > p:hover ~ p {
4268 background-color: currentColor;
4270 .spoiler > p + p {
4271 margin-top: -1em;
4273 .spoiler > p:not(:first-child) {
4274 padding-top: 0.5em;
4276 .spoiler > p:not(:last-child) {
4277 padding-bottom: 0.5em;
4280 .spoiler:not(:hover) pre,
4281 .spoiler:not(:hover) code {
4282 background-color: inherit;
4283 box-shadow: none;
4285 #content .spoiler pre {
4286 border-color: currentColor;
4287 border-style: solid;
4288 border-width: 0 1px;
4289 border-radius: 0;
4292 /*******************/
4293 /* PAGE LIST INDEX */
4294 /*******************/
4296 .page-list-index {
4297 margin: 1em 30px;
4298 line-height: 1.2;
4301 .page-list-index > p {
4302 font-weight: bold;
4303 font-size: 1.2em;
4306 .page-list-index > ul * {
4307 margin: 0;
4310 .page-list-index ul {
4311 padding-left: 1.5em;
4314 .page-list-index li {
4315 margin-top: 0.67em;
4318 .page-list-index li > a {
4319 display: block;
4320 font-size: 1.1em;
4321 font-weight: bold;
4322 margin: 0.33em 0;
4325 .page-list-index li > a:last-child {
4326 margin-bottom: 1em;
4329 /*******************/
4330 /* ALIGNMENT FORUM */
4331 /*******************/
4333 #content.alignment-forum-index-page::after {
4334 content: "Alignment Forum";
4335 font-size: 1.5rem;
4336 margin: 0.375em 0 0 -0.375em;
4337 order: -1;
4340 /**********************/
4341 /* FOR NARROW SCREENS */
4342 /**********************/
4344 @media only screen and (max-width: 1440px) {
4345 #hns-date-picker {
4346 right: -81px;
4347 padding: 8px 10px 10px 10px;
4348 bottom: 62px;
4349 display: none;
4351 #hns-date-picker::before {
4352 content: "";
4353 position: absolute;
4354 display: block;
4355 z-index: -1;
4356 height: calc(100% + 2px);
4357 top: -1px;
4358 left: -1px;
4359 width: 50%;
4362 @media only screen and (max-width: 1160px) {
4363 #new-comment-nav-ui {
4364 bottom: 180px;
4365 right: -68px;
4367 #hns-date-picker {
4368 bottom: 200px;
4369 right: -36px;
4371 #hns-date-picker::before {
4372 width: calc(100% - 35px);
4374 #theme-selector button::before {
4375 right: unset;
4376 left: 100%;
4378 #theme-selector:hover::after {
4379 content: "";
4380 display: block;
4381 position: absolute;
4382 width: calc(6em - 7px);
4383 height: calc(100% + 2px);
4384 top: 0;
4385 left: calc(100% + 1px);
4387 #anti-kibitzer-toggle {
4388 bottom: 330px;
4391 @media only screen and (max-width: 1080px) {
4392 #width-selector {
4393 right: -30px;
4395 #width-selector button {
4396 display: block;
4398 #text-size-adjustment-ui {
4399 top: 90px;
4400 right: -30px;
4402 #text-size-adjustment-ui button {
4403 display: block;
4404 position: relative;
4406 #text-size-adjustment-ui button.increase {
4407 bottom: 48px;
4409 #text-size-adjustment-ui button.decrease {
4410 top: 50px;
4412 #theme-selector {
4413 top: 46px;
4414 left: -44px;
4416 #theme-tweaker-toggle {
4417 left: -44px;
4418 top: 2px;
4420 #theme-tweaker-toggle button {
4421 height: 2em;
4422 width: 2em;
4423 padding: 7px;
4425 #quick-nav-ui {
4426 right: -54px;
4428 #new-comment-nav-ui {
4429 right: -55px;
4431 #hns-date-picker {
4432 right: -23px;
4434 #hns-date-picker::before {
4435 width: calc(100% - 22px);
4437 #anti-kibitzer-toggle {
4438 right: -54px;
4441 @media only screen and (max-width: 1040px) {
4442 #quick-nav-ui {
4443 right: -49px;
4445 #new-comment-nav-ui {
4446 right: -50px;
4448 #hns-date-picker {
4449 right: -18px;
4451 #hns-date-picker::before {
4452 width: calc(100% - 17px);
4454 #anti-kibitzer-toggle {
4455 right: -50px;
4458 @media only screen and (max-width: 1020px) {
4459 #quick-nav-ui {
4460 right: -20px;
4462 #new-comment-nav-ui {
4463 right: -21px;
4465 #new-comment-nav-ui .new-comments-count::before {
4466 content: "";
4467 position: absolute;
4468 width: 100%;
4469 height: calc(100% + 45px);
4470 z-index: -1;
4471 left: 0;
4472 top: -22px;
4474 #hns-date-picker {
4475 right: 19px;
4477 #hns-date-picker::before {
4478 width: 100%;
4480 #anti-kibitzer-toggle {
4481 right: -20px;
4484 @media only screen and (max-width: 1000px) {
4485 #theme-selector {
4486 left: -17px;
4487 top: 120px;
4488 padding: 3px 0;
4489 max-width: 32px;
4491 #theme-selector button {
4492 margin: 1px 4px;
4494 #text-size-adjustment-ui {
4495 top: 100px;
4496 right: -12px;
4498 @media not screen and (hover: none) {
4499 #quick-nav-ui,
4500 #new-comment-nav-ui,
4501 #new-comment-nav-ui + #hns-date-picker,
4502 #anti-kibitzer-toggle {
4503 opacity: 0.4;
4505 #quick-nav-ui:hover,
4506 #new-comment-nav-ui:hover,
4507 #new-comment-nav-ui + #hns-date-picker:hover,
4508 #new-comment-nav-ui + #hns-date-picker:focus-within,
4509 #new-comment-nav-ui:hover + #hns-date-picker,
4510 #anti-kibitzer-toggle:hover {
4511 opacity: 1.0;
4514 #theme-tweaker-toggle {
4515 top: 70px;
4516 left: -21px;
4520 /**************/
4521 /* PRINT VIEW */
4522 /**************/
4524 @media only print {
4525 .nav-bar {
4526 visibility: hidden;
4527 max-height: 0;
4528 overflow: hidden;
4530 #ui-elements-container {
4531 display: none;
4533 #images-overlay {
4534 display: none;
4536 #images-overlay + #content .post-body img {
4537 visibility: visible;
4539 .comment-controls {
4540 display: none;
4542 #comments-sort-mode-selector {
4543 display: none;
4545 .comment-minimize-button {
4546 display: none;
4548 .post-meta .qualified-linking,
4549 .post-meta .lw2-link {
4550 display: none;
4552 .comment-meta .permalink,
4553 .comment-meta .lw2-link,
4554 .comment-meta .comment-parent-link {
4555 display: none;
4557 .new-comment::before {
4558 display: none;
4560 #content::before {
4561 box-shadow: none;
4565 /*****************/
4566 /* MOBILE LAYOUT */
4567 /*****************/
4569 /* Hide the mobile elements on desktop screens: */
4571 @media only screen and (max-width: 1160px) {
4572 #post-nav-ui-toggle,
4573 #appearance-adjust-ui-toggle {
4574 display: none;
4578 @media only screen and (max-width: 1160px) {
4580 /*====================*/
4581 /* MOBILE UI ELEMENTS */
4582 /*====================*/
4584 #ui-elements-container {
4585 height: unset !important;
4586 position: unset;
4588 #ui-elements-container > * {
4589 position: fixed;
4590 visibility: hidden;
4591 opacity: 1.0;
4592 z-index: 10000;
4595 #ui-elements-container > div[id$='-ui-toggle'] {
4596 visibility: visible;
4597 display: inline-block;
4598 border-radius: 50%;
4599 z-index: 10000;
4601 #ui-elements-container > div[id$='-ui-toggle'] button,
4602 #theme-selector .theme-selector-close-button {
4603 font-family: Font Awesome;
4604 font-weight: 900;
4605 font-size: 32px;
4606 padding: 10px;
4607 opacity: 0.8;
4608 -webkit-tap-highlight-color: transparent;
4609 transition: transform 0.2s ease;
4611 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4612 #theme-selector .theme-selector-close-button::selection {
4613 background-color: transparent;
4615 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4616 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4617 border: none;
4619 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4620 transform: rotate(-90deg);
4621 opacity: 1.0;
4624 #appearance-adjust-ui-toggle {
4625 bottom: 10px;
4626 left: 10px;
4629 #post-nav-ui-toggle {
4630 bottom: 10px;
4631 right: 10px;
4634 #theme-selector.engaged,
4635 #quick-nav-ui.engaged,
4636 #new-comment-nav-ui.engaged,
4637 #hns-date-picker.engaged {
4638 visibility: visible;
4641 #image-focus-overlay.engaged {
4642 visibility: visible;
4644 #image-focus-overlay .help-overlay {
4645 display: none;
4648 /*=========*/
4649 /* GENERAL */
4650 /*=========*/
4652 @media only screen and (max-width: 900px) {
4653 #content,
4654 #images-overlay,
4655 #ui-elements-container {
4656 min-width: unset;
4657 width: unset;
4659 #content {
4660 padding: 0 4px;
4664 /*================*/
4665 /* THEME SELECTOR */
4666 /*================*/
4668 #theme-selector {
4669 display: flex;
4670 flex-flow: column;
4671 background-color: #fff;
4672 width: calc(100vw - 20px);
4673 max-width: 360px;
4674 padding: 0 0 3px 0;
4675 overflow: hidden;
4676 max-height: 0;
4677 transition:
4678 top 0.2s ease,
4679 max-height 0.2s ease,
4680 visibility 0.2s ease;
4681 top: calc(100% + 10px);
4682 left: 0;
4683 right: 0;
4684 margin: auto;
4686 #theme-selector.engaged {
4687 max-height: 1000px;
4688 top: 10px;
4689 z-index: 10001;
4691 #theme-selector::before {
4692 content: "Select theme";
4693 white-space: nowrap;
4694 display: block;
4695 font-weight: 600;
4696 font-size: 2rem;
4697 margin: 0.375em 1em 0.5em 1em;
4698 text-align: center;
4700 #theme-selector button {
4701 width: calc(100% - 0.5em);
4702 background-repeat: no-repeat;
4703 padding: 1em 0.875em;
4704 margin: 1px 4px;
4705 line-height: 1;
4706 height: unset;
4707 position: relative;
4709 #theme-selector button::after {
4710 content: attr(data-theme-description);
4711 color: #000;
4712 white-space: nowrap;
4713 position: absolute;
4714 text-align: left;
4715 left: 2.5em;
4716 top: 1em;
4718 @media only screen and (max-height: 675px) {
4719 #theme-selector button {
4720 padding: 0.875em;
4722 #theme-selector button::after {
4723 top: 0.875em;
4726 #theme-selector .theme-selector-close-button {
4727 position: absolute;
4728 width: unset;
4729 background-color: transparent;
4730 top: 0;
4731 right: -3px;
4733 #theme-selector .theme-selector-close-button,
4734 #theme-selector .theme-selector-close-button:focus,
4735 #theme-selector .theme-selector-close-button:active,
4736 #theme-selector .theme-selector-close-button:hover {
4737 box-shadow: none;
4740 /*===============*/
4741 /* THEME TWEAKER */
4742 /*===============*/
4744 #theme-selector {
4745 padding: 0 0 64px 0;
4747 #theme-selector ~ #theme-tweaker-toggle {
4748 top: 100%;
4750 #theme-selector ~ #theme-tweaker-toggle::after {
4751 content: "Open theme tweaker";
4752 position: absolute;
4753 font-size: 0.625em;
4754 white-space: nowrap;
4755 left: -50%;
4756 top: 100%;
4758 #theme-selector.engaged ~ #theme-tweaker-toggle {
4759 visibility: visible;
4760 top: 530px;
4761 left: 0;
4762 right: 0;
4763 margin: auto;
4764 z-index: 11111;
4765 transition:
4766 top 0.2s ease,
4767 visibility 0.2s ease;
4769 @media only screen and (max-height: 675px) {
4770 #theme-selector.engaged ~ #theme-tweaker-toggle {
4771 top: 492px;
4774 @supports (width: -moz-fit-content) {
4775 #theme-selector.engaged ~ #theme-tweaker-toggle {
4776 width: -moz-fit-content;
4779 @supports (width: fit-content) {
4780 #theme-selector.engaged ~ #theme-tweaker-toggle {
4781 width: fit-content;
4784 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4785 opacity: 1.0;
4788 #theme-tweaker-ui {
4789 visibility: visible;
4792 /*======================*/
4793 /* ANTI-KIBITZER TOGGLE */
4794 /*======================*/
4796 #theme-selector ~ #anti-kibitzer-toggle {
4797 top: 100%;
4798 bottom: unset;
4799 left: 0;
4800 right: 0;
4801 margin: auto;
4802 box-shadow: none;
4803 width: calc(100vw - 44px);
4804 max-width: 330px;
4805 text-align: right;
4806 pointer-events: none;
4808 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4809 visibility: visible;
4810 z-index: 11110;
4811 top: 530px;
4812 transition:
4813 top 0.2s ease,
4814 visibility 0.2s ease;
4816 @media only screen and (max-height: 675px) {
4817 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4818 top: 492px;
4821 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4822 pointer-events: auto;
4823 display: inline-block;
4826 /*=================*/
4827 /* QUICKNAV WIDGET */
4828 /*=================*/
4830 #quick-nav-ui {
4831 max-width: 0px;
4832 transition:
4833 max-width 0.2s ease,
4834 visibility 0.2s ease;
4835 display: flex;
4836 right: 72px;
4837 bottom: 14px;
4839 #quick-nav-ui.engaged {
4840 max-width: 1000px;
4842 #quick-nav-ui a {
4843 position: relative;
4844 margin: 2px;
4846 #quick-nav-ui a + a {
4847 margin-left: 5px;
4849 #quick-nav-ui a::after {
4850 position: absolute;
4851 top: calc(100% + 2px);
4852 font-size: 0.375rem;
4853 left: 0;
4854 right: 0;
4855 margin: auto;
4856 line-height: 1;
4857 padding: 2px;
4858 text-transform: uppercase;
4859 z-index: -1;
4861 @supports (width: -moz-fit-content) {
4862 #quick-nav-ui a::after {
4863 width: -moz-fit-content;
4866 @supports (width: fit-content) {
4867 #quick-nav-ui a::after {
4868 width: fit-content;
4871 #quick-nav-ui a[href='#top']::after {
4872 content: "Top";
4873 left: -1px;
4875 #quick-nav-ui a[href='#comments']::after {
4876 content: "Comments";
4878 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4879 visibility: hidden;
4880 transition: visibility 0.2s ease;
4882 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4883 visibility: visible;
4885 #quick-nav-ui a[href='#bottom-bar']::after {
4886 content: "Bottom";
4889 /*======================*/
4890 /* NEW COMMENT QUICKNAV */
4891 /*======================*/
4893 #new-comment-nav-ui {
4894 max-width: 0px;
4895 max-height: 0px;
4896 transition:
4897 max-width 0.2s ease,
4898 max-height 0.2s ease,
4899 visibility 0.2s ease;
4900 display: flex;
4901 right: 78px;
4902 bottom: 70px;
4904 #new-comment-nav-ui::before {
4905 content: "New Comments";
4906 position: absolute;
4907 bottom: 100%;
4908 font-size: 0.5625rem;
4909 left: 0;
4910 right: 0;
4911 margin: auto;
4912 padding: 2px 3px;
4913 text-transform: uppercase;
4914 z-index: -1;
4916 @supports (width: -moz-fit-content) {
4917 #new-comment-nav-ui::before {
4918 width: -moz-fit-content;
4921 @supports (width: fit-content) {
4922 #new-comment-nav-ui::before {
4923 width: fit-content;
4926 #new-comment-nav-ui.engaged {
4927 max-width: 1000px;
4928 max-height: 1000px;
4930 #new-comment-nav-ui .new-comment-sequential-nav-button {
4931 top: unset;
4932 bottom: unset;
4933 padding: 2px 7px;
4935 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4936 padding: 2px 7px 3px 7px;
4938 #new-comment-nav-ui .new-comments-count {
4939 padding: 4px 0 5px 0;
4941 #new-comment-nav-ui .new-comments-count::before {
4942 display: none;
4944 #new-comment-nav-ui button::after {
4945 position: absolute;
4946 font-size: 0.375rem;
4947 left: 0;
4948 right: 0;
4949 margin: auto;
4950 line-height: 1;
4951 text-transform: uppercase;
4952 pointer-events: none;
4954 #new-comment-nav-ui button.new-comment-previous::after {
4955 content: "Previous";
4956 bottom: 5px;
4958 #new-comment-nav-ui button.new-comment-next::after {
4959 content: "Next";
4960 top: 7px;
4963 /*=================*/
4964 /* HNS DATE PICKER */
4965 /*=================*/
4967 #hns-date-picker {
4968 max-height: 0px;
4969 bottom: 132px;
4970 right: 62px;
4971 transition:
4972 max-height 0.2s ease,
4973 visibility 0.2s ease;
4975 #hns-date-picker.engaged {
4976 max-height: 1000px;
4978 #hns-date-picker::before {
4979 width: calc(100% + 2px);
4980 border-width: 1px !important;
4983 /*=========*/
4984 /* NAV BAR */
4985 /*=========*/
4987 #bottom-bar {
4988 margin-left: auto;
4989 margin-right: auto;
4990 width: calc(100% - 9rem + 8px);
4991 background: rgba(255,255,255,0.85);
4992 backdrop-filter: blur(1px);
4994 #content.index-page #bottom-bar {
4995 z-index: 10001;
4997 #bottom-bar .nav-item {
4998 box-shadow: none;
4999 position: relative;
5001 #bottom-bar .nav-inner {
5002 font-size: 2rem;
5003 padding: 1rem 0 1.25rem 0;
5004 visibility: hidden;
5005 position: static;
5006 width: 0;
5008 #content #bottom-bar .nav-item .nav-inner::before {
5009 margin: 0;
5010 visibility: visible;
5011 position: absolute;
5012 width: 100%;
5013 height: 100%;
5014 left: 0;
5015 top: 0;
5016 padding: 1rem 0;
5018 #bottom-bar .nav-inner::after {
5019 display: block;
5020 visibility: visible;
5021 text-transform: uppercase;
5022 color: unset;
5023 font-size: 0.75rem;
5024 top: unset;
5025 left: 0;
5026 bottom: 1rem;
5027 width: 100%;
5029 #bottom-bar #nav-item-first .nav-inner::after {
5030 content: "First Page";
5032 #bottom-bar #nav-item-prev .nav-inner::after {
5033 content: "Prev. Page";
5035 #bottom-bar #nav-item-top .nav-inner::after {
5036 content: "Top";
5038 #bottom-bar #nav-item-next .nav-inner::after {
5039 content: "Next Page";
5041 #bottom-bar #nav-item-last .nav-inner::after {
5042 content: "Last Page";
5045 @media only screen and (max-width: 900px) {
5046 .nav-bar-top {
5047 font-size: 0.75rem;
5049 .nav-bar {
5050 width: calc(100% + 8px);
5051 margin: 0 -4px;
5053 .nav-bar .nav-inner::after {
5054 display: none;
5057 #primary-bar .nav-item {
5058 flex: 1 1 100%;
5060 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5061 flex: 1 1 60px;
5063 .nav-bar-top:not(#anything) .nav-inner {
5064 text-transform: uppercase;
5065 padding: 6px;
5067 .nav-bar-top .nav-inner::before {
5068 display: block;
5069 font-family: "Font Awesome";
5070 font-size: 2em;
5071 font-weight: 900;
5074 #nav-item-home .nav-inner::before {
5075 content: "\F015";
5077 #nav-item-featured .nav-inner::before {
5078 content: "\F005";
5080 #nav-item-all .nav-inner::before {
5081 content: "\F069";
5083 #nav-item-meta .nav-inner::before {
5084 content: "\F077";
5086 #nav-item-tags .nav-inner::before {
5087 content: "\F02C";
5089 #nav-item-recent-comments > * > span {
5090 display: none;
5092 #nav-item-recent-comments .nav-inner::before,
5093 #nav-item-alignment-forum-comments .nav-inner::before {
5094 content: "\F036";
5096 #nav-item-alignment-forum .nav-inner::before {
5097 content: "AF";
5098 font-family: Concourse, 'Changa One';
5100 #nav-item-questions .nav-inner::before {
5101 content: "?";
5102 font-family: Concourse, 'Changa One';
5104 #nav-item-events .nav-inner::before {
5105 content: "\F5A0";
5107 #nav-item-shortform .nav-inner::before {
5108 content: "\F2F2";
5110 #nav-item-archive .nav-inner::before {
5111 content: "\F187";
5113 #nav-item-about .nav-inner::before {
5114 content: "\F129";
5116 #nav-item-search {
5117 font-size: 2em;
5118 padding: 10px;
5120 #nav-item-search .nav-inner::before {
5121 content: none;
5123 #nav-item-search .nav-inner {
5124 height: 100%;
5125 display: flex;
5127 #nav-item-search input {
5128 width: 100%;
5129 height: 100%;
5131 #nav-item-search button {
5132 height: 100%;
5133 padding: 5px 5px 5px 10px;
5134 width: 40px;
5135 overflow: visible;
5136 visibility: hidden;
5138 #nav-item-search button::before {
5139 content: "\F002";
5140 font-family: Font Awesome;
5141 font-weight: 900;
5142 visibility: visible;
5144 #nav-item-login {
5145 padding: 0;
5147 #nav-item-login .nav-inner::before {
5148 content: "\F007";
5151 @media only screen and (max-width: 520px) {
5152 .nav-bar-top {
5153 font-size: 0.5rem;
5156 #nav-item-search,
5157 #nav-item-search .nav-inner {
5158 padding: 0;
5160 #nav-item-search button {
5161 width: 31px;
5164 #bottom-bar #nav-item-first .nav-inner::after {
5165 content: "First";
5167 #bottom-bar #nav-item-prev .nav-inner::after {
5168 content: "Prev";
5170 #bottom-bar #nav-item-next .nav-inner::after {
5171 content: "Next";
5173 #bottom-bar #nav-item-last .nav-inner::after {
5174 content: "Last";
5178 /*=================*/
5179 /* INBOX INDICATOR */
5180 /*=================*/
5182 @media only screen and (max-width: 900px) {
5183 #inbox-indicator {
5184 width: 100%;
5185 top: 0;
5186 pointer-events: none;
5188 #inbox-indicator::before {
5189 width: 100%;
5190 font-size: 1rem;
5191 text-align: right;
5192 padding: 1px 6px;
5194 #inbox-indicator.new-messages {
5195 pointer-events: auto;
5197 #inbox-indicator.new-messages::before {
5198 box-shadow: 0 0 8px 1px #f00 inset;
5201 @media only screen and (max-width: 520px) {
5202 #inbox-indicator::before {
5203 font-size: 0.75rem;
5204 padding: 2px 5px;
5207 @media only screen and (max-width: 374px) {
5208 #inbox-indicator::before {
5209 font-size: 0.625rem;
5213 /*===================*/
5214 /* TOP PAGINATION UI */
5215 /*===================*/
5217 #top-nav-bar {
5218 font-size: 1.75rem;
5221 /*==============*/
5222 /* PAGE TOOLBAR */
5223 /*==============*/
5225 @media only screen and (max-width: 900px) {
5226 #content > .page-toolbar {
5227 font-size: 1rem;
5228 margin-right: 0;
5230 #content.user-page > .page-toolbar {
5231 grid-column: 2 / span 2;
5232 margin: 0 0 6px 0;
5235 @media only screen and (max-width: 520px) {
5236 #content:not(.user-page) .page-toolbar {
5237 display: flex;
5238 flex-direction: column-reverse;
5239 text-align: right;
5240 align-self: start;
5241 padding: 4px 0 0 0;
5243 #content.user-page .page-toolbar {
5244 display: flex;
5245 flex-flow: row;
5246 justify-content: flex-end;
5247 padding: 2px 0 0 0;
5249 #content.user-page .page-toolbar > form,
5250 #content.user-page .page-toolbar > .button {
5251 text-align: center;
5252 flex-basis: 25%;
5253 margin-left: 1.5em;
5255 #content.user-page .page-toolbar .button {
5256 text-transform: uppercase;
5257 font-size: 0.625rem;
5259 #content.user-page .page-toolbar .button::before {
5260 font-size: 1.375rem;
5261 display: block;
5262 padding: 0;
5264 #content.user-page .page-toolbar .rss {
5265 white-space: nowrap;
5266 margin: 0 0 0 1.5em;
5268 .page-toolbar > * {
5269 line-height: 1.15;
5270 padding: 6px 0;
5271 margin: 0;
5275 /*==============*/
5276 /* SUBLEVEL NAV */
5277 /*==============*/
5279 @media only screen and (max-width: 900px) {
5280 .sublevel-nav:not(.sort) {
5281 flex-wrap: wrap;
5282 width: calc(100vw - 200px);
5284 .sublevel-nav:not(.sort) .sublevel-item {
5285 margin: 1px;
5286 flex-basis: 7em;
5289 @media only screen and (max-width: 520px) {
5290 .sublevel-nav:not(.sort) .sublevel-item {
5291 font-size: 1rem;
5295 /*=====================*/
5296 /* SORT ORDER SELECTOR */
5297 /*=====================*/
5299 @media only screen and (max-width: 720px) {
5300 #content.index-page > .sublevel-nav.sort {
5301 flex-flow: column;
5302 margin-left: 4px;
5306 /*==========*/
5307 /* ARCHIVES */
5308 /*==========*/
5310 @media only screen and (max-width: 900px) {
5311 div[class^='archive-nav-'] {
5312 flex-wrap: wrap;
5313 justify-content: flex-start;
5315 .archive-nav *[class^='archive-nav-item'],
5316 .archive-nav *[class^='archive-nav-item']:first-child {
5317 padding: 10px;
5318 margin: 2px;
5319 max-width: unset;
5320 flex: 0 1 calc((100% / 8) - 4px);
5322 .archive-nav .archive-nav-item-day,
5323 .archive-nav .archive-nav-item-day:first-child {
5324 flex-basis: calc((100% / 16) - 4px);
5326 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5327 margin-top: 8px;
5328 position: relative;
5330 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5331 content: "";
5332 display: block;
5333 position: absolute;
5334 height: 1px;
5335 width: calc(100% + 8px);
5336 left: -4px;
5337 top: -4px;
5340 @media only screen and (max-width: 720px) {
5341 .archive-nav .archive-nav-item-day,
5342 .archive-nav .archive-nav-item-day:first-child {
5343 flex-basis: calc((100% / 12) - 4px);
5346 @media only screen and (max-width: 520px) {
5347 .archive-nav *[class^='archive-nav-item'],
5348 .archive-nav *[class^='archive-nav-item']:first-child {
5349 flex-basis: calc((100% / 5) - 4px);
5351 .archive-nav .archive-nav-item-day,
5352 .archive-nav .archive-nav-item-day:first-child {
5353 flex-basis: calc((100% / 8) - 4px);
5357 /*==========*/
5358 /* LISTINGS */
5359 /*==========*/
5361 h1.listing {
5362 max-height: unset;
5365 /*============*/
5366 /* USER PAGES */
5367 /*============*/
5369 #content.user-page h1.page-main-heading {
5370 align-self: end;
5372 @media only screen and (max-width: 520px) {
5373 #content.user-page h1.page-main-heading {
5374 overflow: hidden;
5375 text-overflow: ellipsis;
5377 #content.user-page .user-stats .karma-type {
5378 display: block;
5382 /*============*/
5383 /* LOGIN PAGE */
5384 /*============*/
5386 @media only screen and (max-width: 640px) {
5387 .login-container {
5388 flex-flow: column;
5389 margin: 0 auto 3em auto;
5390 max-width: 400px;
5392 .login-container #login-form,
5393 .login-container #signup-form {
5394 padding: 0 1em 1.25em 1em;
5395 grid-row-gap: 0;
5397 .login-container #signup-form {
5398 padding-top: 1em;
5400 .login-container #login-form > *,
5401 .login-container #signup-form > * {
5402 grid-column: 1 / span 2;
5404 .login-container form label {
5405 text-align: left;
5406 padding: 0;
5407 line-height: 1;
5409 .login-container form input {
5410 margin: 0.25em 0 0.75em 0;
5411 padding: 0.5em;
5413 .login-container form h1 {
5414 grid-column: 1 / span 2;
5415 margin: 0 0 0.25em 0;
5417 .login-container form a {
5418 margin: 0.75em 0 0 0;
5420 .login-container .login-tip {
5421 margin: 1.5em 1em 0 1em;
5425 /*==================*/
5426 /* POSTS & COMMENTS */
5427 /*==================*/
5429 @media only screen and (max-width: 720px) {
5430 .body-text ol > li {
5431 padding: 0 0 0 2.25em;
5433 .body-text ol > li::before {
5434 width: 1.75em;
5436 .body-text ul:not(.contents-list) > li,
5437 .body-text ul:not(.contents-list) > li ul > li {
5438 padding: 0 0 0 0.75em;
5440 .body-text ul:not(.contents-list) > li::before,
5441 .body-text ul:not(.contents-list) > li ul > li::before {
5442 width: 0.125em;
5443 margin-left: -0.06em;
5447 /*===========*/
5448 /* POST-META */
5449 /*===========*/
5451 .post-meta {
5452 line-height: 1.9;
5454 @media only screen and (max-width: 720px) {
5455 .post-meta .lw2-link span,
5456 .post-meta .karma-value span,
5457 .post-meta .comment-count span {
5458 display: none;
5460 .post-meta .comment-count::before {
5461 content: "\F086";
5462 font-family: Font Awesome;
5463 font-size: 0.875em;
5464 margin: 0 0.25em 0 0;
5465 font-weight: 400;
5469 /*===================*/
5470 /* POSTS & BODY TEXT */
5471 /*===================*/
5473 @media only screen and (max-width: 900px) {
5474 .post-body,
5475 h1.post-title,
5476 .tag-description,
5477 .sequence-text {
5478 padding: 0 6px;
5481 @media only screen and (max-width: 520px) {
5482 .post-body {
5483 font-size: 1.2rem;
5484 line-height: 1.45;
5486 h1.post-title {
5487 font-size: 2em;
5491 /*==============*/
5492 /* COMMENT-META */
5493 /*==============*/
5495 a.comment-parent-link::after {
5496 display: none;
5498 @media only screen and (max-width: 900px) {
5499 .comment-meta {
5500 padding: 2px 40px 2px 10px;
5503 @media only screen and (max-width: 720px) {
5504 .comment .karma-value span {
5505 display: none;
5507 .comment-meta .comment-parent-link {
5508 opacity: 1.0;
5511 @media only screen and (max-width: 520px) {
5512 .comment-meta {
5513 padding: 2px 24px 2px 10px;
5514 position: relative;
5516 .comment-meta > * {
5517 order: 3;
5519 .comment-meta > :not(.author) {
5520 line-height: 1.8;
5522 .comment-meta .author,
5523 .comment-meta .date {
5524 order: 1;
5526 .comment-meta:before {
5527 content: "";
5528 order: 2;
5529 flex-basis: 100%;
5531 .comment-post-title2 {
5532 display: block;
5533 text-overflow: ellipsis;
5534 overflow: hidden;
5536 .comment-meta .lw2-link {
5537 display: none;
5541 /*=======================*/
5542 /* COMMENTS COMPACT VIEW */
5543 /*=======================*/
5545 /*===========================*/
5546 /* COMMENT THREAD NAVIGATION */
5547 /*===========================*/
5549 @media only screen and (max-width: 900px) {
5550 a.comment-parent-link {
5551 width: 0;
5552 visibility: hidden;
5553 position: relative;
5555 a.comment-parent-link::before {
5556 padding: 0;
5557 font-size: 1em;
5558 left: 0;
5559 top: 0;
5560 line-height: inherit;
5561 visibility: visible;
5562 content: "\F3BF";
5563 transform: scaleX(-1);
5564 width: 2em;
5565 text-align: center;
5568 @media only screen and (max-width: 520px) {
5569 a.comment-parent-link {
5570 position: static;
5572 a.comment-parent-link::before {
5573 padding: 6px;
5574 left: unset;
5575 right: 0;
5576 top: unset;
5577 bottom: 0;
5578 height: 2em;
5582 /*=================================*/
5583 /* COMMENT THREAD MINIMIZE BUTTONS */
5584 /*=================================*/
5586 @media only screen and (max-width: 520px) {
5587 .comment-minimize-button{
5588 right: 2px;
5592 /*===========================*/
5593 /* COMMENTING AND POSTING UI */
5594 /*===========================*/
5596 @media only screen and (max-width: 900px) {
5597 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5598 font-size: 0;
5600 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5601 font-size: 0.9rem;
5603 .comment-controls .cancel-comment-button {
5604 max-width: 1.3em;
5605 overflow: hidden;
5606 margin-right: 0.125em;
5608 .comment-controls .edit-button::before {
5609 font-size: 0.9375rem;
5611 .comments > .comment-controls .cancel-comment-button {
5612 right: 8px;
5614 .comment-controls .cancel-comment-button::before {
5615 font-size: 1.25rem;
5618 @media only screen and (max-width: 520px) {
5619 .comment-controls {
5620 position: static;
5622 .comment-controls:focus-within {
5623 z-index: 10001;
5625 .comment-controls .cancel-comment-button {
5626 right: 10px;
5628 .textarea-container:focus-within textarea {
5629 position: fixed;
5630 top: 0;
5631 left: 2px;
5632 width: calc(100vw - 4px);
5633 height: calc(100% - 100px);
5634 min-height: unset;
5635 max-height: unset;
5636 border-width: 1px;
5637 z-index: 11001;
5639 #content.conversation-page .textarea-container:focus-within textarea {
5640 height: calc(100% - 54px);
5642 #content.conversation-page .textarea-container:focus-within::after {
5643 content: "";
5644 display: block;
5645 width: 100%;
5646 height: 50px;
5647 position: fixed;
5648 left: 0;
5649 bottom: 0;
5650 z-index: 11000;
5652 .textarea-container:focus-within .guiedit-buttons-container {
5653 position: fixed;
5654 z-index: 11002;
5655 left: 0;
5656 width: 100vw;
5657 height: auto;
5658 background-image: none;
5659 padding: 3px 4px 4px 4px;
5660 margin: 0;
5661 text-align: center;
5662 top: auto;
5663 bottom: 0;
5665 .textarea-container:focus-within button.guiedit {
5666 font-size: 0.9375rem;
5667 line-height: 1.5;
5668 height: auto;
5669 width: calc((100% / 10) - 2px);
5670 padding: 10px 1px 8px 0;
5671 position: relative;
5672 margin: 1px;
5674 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5675 z-index: 11011;
5676 position: fixed;
5677 bottom: 7px;
5678 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5679 font-size: 1.25rem;
5680 padding: 5px 5px 6px 5px;
5681 display: block;
5683 .textarea-container:focus-within button.guiedit sup {
5684 position: absolute;
5685 left: calc(50% + 0.65em);
5686 top: calc(50% - 1.3em);
5688 .textarea-container:focus-within .guiedit-mobile-help-button {
5689 left: 8px;
5691 .textarea-container:focus-within .guiedit-mobile-exit-button {
5692 right: 8px;
5694 .guiedit::after {
5695 display: none;
5698 #markdown-hints,
5699 #edit-post-form #markdown-hints {
5700 z-index: 11111;
5701 position: fixed;
5702 top: 40px;
5703 left: 0;
5704 right: 0;
5705 margin: auto;
5706 padding: 4px 0 4px 8px;
5707 width: 310px;
5708 border-width: 3px;
5709 border-style: double;
5710 pointer-events: none;
5712 #markdown-hints::after {
5713 content: "(Type to hide this help box.)";
5714 color: #090;
5715 display: block;
5716 margin: 12px 18px 13px 10px;
5717 padding: 5px;
5718 font-size: 0.9em;
5719 text-align: center;
5723 /*================*/
5724 /* EDIT POST FORM */
5725 /*================*/
5727 @media only screen and (max-width: 520px) {
5728 #edit-post-form {
5729 padding-bottom: 0;
5731 #edit-post-form .post-meta-fields {
5732 grid-template-columns: 4.5em auto auto auto 1fr auto;
5734 #edit-post-form label[for='url'],
5735 #edit-post-form label[for='section'],
5736 #edit-post-form label[for='title'] {
5737 padding-left: 0;
5739 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5740 white-space: normal;
5741 line-height: 0.9;
5742 top: -1px;
5743 font-family: Font Awesome;
5744 font-weight: 900;
5745 justify-self: start;
5747 #edit-post-form .post-meta-fields .question-checkbox,
5748 #edit-post-form .post-meta-fields .question-checkbox + label {
5749 grid-column: 6;
5750 margin-left: unset;
5752 #edit-post-form .post-meta-fields input[type='radio'] + label {
5753 align-self: start;
5755 #edit-post-form .textarea-container:focus-within textarea {
5756 height: calc(100% - 101px);
5757 min-height: unset;
5760 #markdown-hints-checkbox,
5761 #markdown-hints-checkbox + label {
5762 display: none;
5765 #edit-post-form div:last-child {
5766 clear: both;
5767 overflow: auto;
5769 #edit-post-form input[type='submit'] {
5770 float: none;
5771 display: block;
5772 font-size: 1.5rem;
5773 margin: 1rem auto 1.5rem auto;
5774 padding: 6px 12px 8px 12px;
5778 /*===================*/
5779 /* TABLE OF CONTENTS */
5780 /*===================*/
5782 @media only screen and (max-width: 900px) {
5783 .contents {
5784 float: none;
5785 display: table;
5786 max-width: none;
5787 margin-left: auto;
5788 margin-right: auto;
5791 @media only screen and (max-width: 520px) {
5792 .contents {
5793 max-width: 100%;
5794 margin: 1em auto 0 auto;
5795 display: table;
5797 .contents-head {
5798 font-size: 1.2em;
5800 div.post-body .contents ul {
5801 font-size: unset;
5805 /*========================*/
5806 /* QUALIFIED HYPERLINKING */
5807 /*========================*/
5809 @media only screen and (max-width: 520px) {
5810 .qualified-linking-toolbar {
5811 right: -5em;
5815 } /* END MOBILE LAYOUT */
5818 /*******************/
5819 /* BRUTALIST THEME */
5820 /*******************/
5822 /*===========*/
5823 /* VARIABLES */
5824 /*===========*/
5826 /* Color scheme.
5828 :root {
5831 /*======*/
5832 /* BASE */
5833 /*======*/
5835 body {
5836 color: #000;
5837 background-color: #fff;
5838 font-family: 'Anonymous Pro', 'GW-Symbols', monospace;
5840 #content {
5841 line-height: 1.55;
5843 #content::before {
5844 background-color: #fff;
5845 box-shadow:
5846 -1px 0 0 #000 inset,
5847 0 2px 0 #000;
5848 border-style: solid;
5849 border-color: #000;
5850 border-width: 0 1px 0 2px;
5852 #content.no-nav-bars::before {
5853 border-width: 2px;
5854 box-shadow: none;
5857 /*=========*/
5858 /* NAV BAR */
5859 /*=========*/
5861 .nav-bar {
5862 justify-content: flex-start;
5864 .nav-bar:nth-of-type(2) {
5865 border-bottom: 2px solid #000;
5867 .nav-inner {
5868 font-size: 1.375em;
5869 font-weight: 600;
5870 border-style: solid;
5871 border-color: transparent;
5872 border-width: 0 2px;
5874 .nav-bar-top:not(#primary-bar) .nav-inner {
5875 font-size: 1em;
5878 .nav-current:not(#nav-item-search) .nav-inner,
5879 .nav-bar a.nav-inner:hover {
5880 box-shadow:
5881 0 0 0 4px #fff inset,
5882 0 0 0 6px #000 inset;
5884 .nav-bar a.nav-inner:active {
5885 box-shadow:
5886 0 0 0 8px #fff inset,
5887 0 0 0 10px #000 inset;
5890 #bottom-bar.decorative::before,
5891 #bottom-bar.decorative::after {
5892 content: "GW";
5893 display: block;
5894 text-align: center;
5895 padding: 0.25em 0 1em 0;
5897 #bottom-bar.decorative::before {
5898 width: 100%;
5899 color: transparent;
5900 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5901 background-repeat: repeat-x;
5902 background-position: center 35%;
5903 margin: 0 30px;
5904 filter: contrast(90%);
5906 #bottom-bar.decorative::after {
5907 color: #d8d8d8;
5908 position: absolute;
5909 left: 0;
5910 right: 0;
5911 margin: auto;
5912 background-color: #fff;
5913 padding-right: 5px;
5914 padding-left: 6px;
5916 @supports (width: -moz-fit-content) {
5917 #bottom-bar.decorative::after {
5918 width: -moz-fit-content;
5921 @supports (width: fit-content) {
5922 #bottom-bar.decorative::after {
5923 width: fit-content;
5927 /* Accesskey hints */
5929 .nav-inner::after {
5930 display: block;
5931 position: absolute;
5932 left: 8px;
5933 top: 3px;
5934 font-weight: 400;
5935 font-size: 0.7em;
5936 color: #d8d8d8;
5938 .inactive-bar .nav-inner::after {
5939 color: #ccc;
5941 .nav-inner:hover::after {
5942 color: #bbb;
5945 /* Search tab */
5947 #nav-item-search button {
5948 border: none;
5949 font-weight: inherit;
5951 #nav-item-search input::placeholder {
5952 color: #d00;
5953 font-weight: normal;
5956 /* Inbox indicator */
5958 #inbox-indicator {
5959 text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff;
5962 /*==============*/
5963 /* PAGE TOOLBAR */
5964 /*==============*/
5966 .page-toolbar button,
5967 .page-toolbar button:hover,
5968 .page-toolbar button:active,
5969 .page-toolbar button:focus {
5970 border: none;
5971 box-shadow: none;
5973 .page-toolbar a:hover,
5974 .page-toolbar button:hover {
5975 text-decoration: dotted underline;
5977 .page-toolbar a:active,
5978 .page-toolbar button:active {
5979 transform: scale(0.9);
5982 .rss::before {
5983 filter: grayscale(100%);
5986 /*==============*/
5987 /* SUBLEVEL NAV */
5988 /*==============*/
5990 .sublevel-nav .sublevel-item {
5991 border-color: #000;
5992 border-style: solid;
5993 border-width: 1px 1px 1px 0;
5995 .sublevel-nav .sublevel-item:first-child {
5996 border-width: 1px;
5998 .sublevel-nav .sublevel-item:hover {
5999 box-shadow:
6000 0 0 0 2px #fff inset,
6001 0 0 0 3px #000 inset;
6003 .sublevel-nav .sublevel-item:active {
6004 box-shadow:
6005 0 0 0 4px #fff inset,
6006 0 0 0 5px #000 inset;
6007 font-weight: normal;
6009 .sublevel-nav .sublevel-item:disabled,
6010 .sublevel-nav span.sublevel-item {
6011 box-shadow:
6012 0 0 0 2px #fff inset,
6013 0 0 0 3px #000 inset;
6014 font-weight: bold;
6015 color: inherit;
6018 /*=====================*/
6019 /* SORT ORDER SELECTOR */
6020 /*=====================*/
6022 .sublevel-nav.sort {
6023 padding: 18px 0 0 0;
6024 border: 2px solid #000;
6026 .sublevel-nav.sort::before {
6027 text-transform: uppercase;
6028 font-weight: 600;
6030 .sublevel-nav.sort .sublevel-item {
6031 padding: 7px 8px 6px 9px;
6032 text-transform: uppercase;
6033 border: none;
6036 /*================*/
6037 /* WIDTH SELECTOR */
6038 /*================*/
6040 #width-selector button {
6041 box-shadow:
6042 0 0 0 4px #fff inset,
6043 0 0 0 5px #000 inset;
6045 #width-selector button:hover,
6046 #width-selector button.selected {
6047 box-shadow:
6048 0 0 0 1px #fff inset,
6049 0 0 0 2px #000 inset,
6050 0 0 0 4px #fff inset,
6051 0 0 0 5px #000 inset;
6053 #width-selector button::after {
6054 color: #000;
6055 font-size: 0.9em;
6058 /*================*/
6059 /* THEME SELECTOR */
6060 /*================*/
6062 #theme-selector button {
6063 box-shadow:
6064 0 0 0 5px #fff inset;
6066 #theme-selector button:hover,
6067 #theme-selector button.selected {
6068 box-shadow:
6069 0 0 0 2px #fff inset,
6070 0 0 0 3px #000 inset,
6071 0 0 0 5px #fff inset;
6074 #theme-selector button::before {
6075 font-size: 0.9375em;
6076 padding: 6px;
6077 width: 7em;
6078 color: #aaa;
6079 background-color: #fff;
6081 #theme-selector button:hover::before,
6082 #theme-selector button.selected::before {
6083 color: #000;
6086 /*======================*/
6087 /* ANTI-KIBITZER TOGGLE */
6088 /*======================*/
6090 #anti-kibitzer-toggle button::before,
6091 #anti-kibitzer-toggle button::after {
6092 background-color: #999;
6093 -webkit-background-clip: text;
6094 color: transparent;
6095 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
6097 #anti-kibitzer-toggle button:hover {
6098 box-shadow: none;
6100 #anti-kibitzer-toggle button:hover::before,
6101 #anti-kibitzer-toggle button:hover::after {
6102 background-color: #000;
6103 text-shadow: rgba(255,255,255,0.2) 0px 1px 1px;
6106 /*=========================*/
6107 /* TEXT SIZE ADJUSTMENT UI */
6108 /*=========================*/
6110 #text-size-adjustment-ui button:hover,
6111 #text-size-adjustment-ui button:active,
6112 #text-size-adjustment-ui button:focus {
6113 box-shadow: none;
6114 color: #777;
6116 #text-size-adjustment-ui::after {
6117 color: #000;
6120 /*======================*/
6121 /* THEME TWEAKER TOGGLE */
6122 /*======================*/
6124 #theme-tweaker-toggle button:hover,
6125 #theme-tweaker-toggle button:active {
6126 box-shadow: none;
6129 /*=================*/
6130 /* QUICKNAV WIDGET */
6131 /*=================*/
6133 #quick-nav-ui a {
6134 color: #000;
6135 box-shadow:
6136 0 0 0 1px #fff,
6137 0 0 0 3px #000;
6139 #quick-nav-ui a[href='#bottom-bar'] {
6140 line-height: 1.8;
6142 @media only screen and (hover: hover) {
6143 #quick-nav-ui a:hover {
6144 box-shadow:
6145 0 0 0 1px #fff inset,
6146 0 0 0 3px #000 inset,
6147 0 0 0 1px #fff,
6148 0 0 0 3px #000;
6151 #quick-nav-ui a:active {
6152 box-shadow:
6153 0 0 0 3px #fff inset,
6154 0 0 0 5px #000 inset,
6155 0 0 0 1px #fff,
6156 0 0 0 3px #000;
6158 #quick-nav-ui a[href='#comments'].no-comments {
6159 opacity: 0.4;
6160 color: #bbb;
6163 /*======================*/
6164 /* NEW COMMENT QUICKNAV */
6165 /*======================*/
6167 #new-comment-nav-ui .new-comments-count {
6168 left: 2px;
6170 #new-comment-nav-ui .new-comments-count::after {
6171 position: relative;
6172 right: 1px;
6174 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6175 color: #bbb;
6178 /*=================*/
6179 /* HNS DATE PICKER */
6180 /*=================*/
6182 #hns-date-picker {
6183 bottom: 75px;
6184 text-indent: -16px;
6186 #hns-date-picker span {
6187 color: #777;
6188 font-weight: 600;
6189 text-indent: 0px;
6191 #hns-date-picker input {
6192 color: #666;
6193 width: 160px;
6195 #hns-date-picker input:focus {
6196 color: #000;
6199 /*======================*/
6200 /* TEXT SIZE ADJUSTMENT */
6201 /*======================*/
6203 /*=============================*/
6204 /* COMMENTS VIEW MODE SELECTOR */
6205 /*=============================*/
6207 /*===============*/
6208 /* KEYBOARD HELP */
6209 /*===============*/
6211 #keyboard-help-overlay {
6212 font-family: Concourse;
6215 #nav-item-about button.open-keyboard-help {
6216 border: none;
6219 /*==========*/
6220 /* ARCHIVES */
6221 /*==========*/
6223 .archive-nav {
6224 border: 2px solid #000;
6226 .archive-nav span[class^='archive-nav-item'],
6227 .archive-nav a:hover {
6228 font-weight: bold;
6229 box-shadow:
6230 0 0 0 1px #fff inset,
6231 0 0 0 3px #000 inset;
6233 .archive-nav a:active {
6234 transform: none;
6235 box-shadow:
6236 0 0 0 3px #fff inset,
6237 0 0 0 5px #000 inset;
6240 /*==========*/
6241 /* LISTINGS */
6242 /*==========*/
6244 h1.listing {
6245 margin: 0.7em 20px 0.1em 20px;
6246 max-width: calc(100% - 40px);
6247 font-family: 'Anonymous Pro', 'GW-Symbols', monospace, 'Font Awesome';
6248 font-size: 1.625rem;
6251 h1.listing .link-post-link {
6252 font-size: 0.7em;
6253 top: 6px;
6254 color: #fff;
6255 text-shadow:
6256 0.5px 0.5px 0 #000,
6257 -0.5px -0.5px 0 #000,
6258 0 0 2px #000;
6261 @media only screen and (hover: hover) {
6262 h1.listing a:hover,
6263 h1.listing a:focus {
6264 color: #777;
6265 background-color: rgba(255,255,255,0.85);
6267 h1.listing:focus-within::before {
6268 color: #000;
6269 left: -0.625em;
6271 h1.listing .link-post-link:hover {
6272 color: #fff;
6273 text-shadow:
6274 0.5px 0.5px 0 #000,
6275 -0.5px -0.5px 0 #000,
6276 0 0 2px #000,
6277 0 0 3px #000;
6281 h1.listing .edit-post-link {
6282 padding: 5px 3px 36px 0.5em;
6283 top: 0;
6284 right: 0;
6286 h1.listing .edit-post-link:hover {
6287 text-decoration: none;
6289 #content.user-page h1.listing .edit-post-link {
6290 background-color: #fff;
6293 /*===================*/
6294 /* TOP PAGINATION UI */
6295 /*===================*/
6297 #top-nav-bar a:hover {
6298 color: #777;
6300 #bottom-bar #nav-item-last a::before {
6301 margin-left: -2.3em;
6302 left: 3.9em;
6305 /*= Top pagination UI hover tooltips =*/
6307 #top-nav-bar a::after,
6308 #bottom-bar a::after {
6309 color: #000;
6311 #bottom-bar a:not([href='#top'])::after {
6312 background-color: #fff;
6313 left: 0;
6314 right: 0;
6315 margin: auto;
6316 padding: 1px 6px;
6317 bottom: 2px;
6319 @supports (width: -moz-fit-content) {
6320 #bottom-bar a:not([href='#top'])::after {
6321 width: -moz-fit-content;
6324 @supports (width: fit-content) {
6325 #bottom-bar a:not([href='#top'])::after {
6326 width: fit-content;
6330 /*======*/
6331 /* SPAM */
6332 /*======*/
6334 h1.listing.spam {
6335 opacity: 0.1;
6337 h1.listing.spam + .post-meta {
6338 opacity: 0.2;
6340 h1.listing.spam:hover,
6341 h1.listing.spam + .post-meta:hover,
6342 h1.listing.spam:hover + .post-meta {
6343 opacity: 1.0;
6346 /*===================*/
6347 /* LISTING POST-META */
6348 /*===================*/
6350 h1.listing + .post-meta > * {
6351 line-height: 1.5;
6353 h1.listing + .post-meta .read-time {
6354 opacity: 0.5;
6357 /*============*/
6358 /* USER PAGES */
6359 /*============*/
6361 #content.user-page h1.page-main-heading {
6362 border-bottom: 1px dotted #000;
6365 #content.user-page h1.listing,
6366 #content.user-page h1.listing + .post-meta {
6367 border-style: solid;
6368 border-color: #000;
6370 #content.user-page h1.listing {
6371 padding: 0 6px;
6372 padding-top: 0.25em;
6373 border-width: 2px 2px 0 2px;
6374 margin: 1rem 0 0 0;
6375 max-width: 100%;
6377 #content.own-user-page h1.listing,
6378 h1.listing.own-post-listing {
6379 padding-right: 36px;
6381 @media only screen and (hover: hover) {
6382 #content.user-page h1.listing:focus-within::before {
6383 left: -0.625em;
6386 #content.user-page h1.listing + .post-meta {
6387 padding: 0.75em 6px 0.5em 33px;
6388 border-width: 0 2px 2px 2px;
6389 margin: 0 0 1rem 0;
6391 #content.user-page h1.listing + .post-meta .post-section::before {
6392 left: -2px;
6393 top: unset;
6396 #content.conversations-user-page h1.listing {
6397 padding: 8px 6px 8px 10px;
6398 font-size: 1.5rem;
6400 #content.conversations-user-page h1.listing + .post-meta {
6401 padding: 10px 4px 6px 4px;
6402 margin: 0;
6405 .user-stats .karma-total {
6406 font-weight: bold;
6409 /*===============*/
6410 /* CONVERSATIONS */
6411 /*===============*/
6413 #content.conversation-page textarea {
6414 border-top-width: 2px;
6417 /*============*/
6418 /* LOGIN PAGE */
6419 /*============*/
6421 .login-container form input[type='submit'] {
6422 font-weight: bold;
6425 /* “Log in” form */
6426 #login-form {
6427 grid-template-columns: 5.75em 1fr;
6430 #login-form a:hover {
6431 text-decoration: dotted underline;
6433 #login-form a:active {
6434 transform: scale(0.9);
6437 /* “Create account” form */
6439 #signup-form {
6440 grid-template-columns: 10.5em 1fr;
6441 border: 2px solid #000;
6444 /* Log in tip */
6446 .login-container .login-tip {
6447 border: 1px solid #000;
6450 /* Message box */
6452 .error-box {
6453 border: 1px solid red;
6454 background-color: #faa;
6456 .success-box {
6457 border: 1px solid green;
6458 background-color: #afa;
6461 /*=====================*/
6462 /* PASSWORD RESET PAGE */
6463 /*=====================*/
6465 .reset-password-container label {
6466 width: 12em;
6468 .reset-password-container input[type='submit'] {
6469 font-weight: bold;
6472 /*===================*/
6473 /* TABLE OF CONTENTS */
6474 /*===================*/
6476 .contents {
6477 font-family: 'Anonymous Pro', 'GW-Symbols', monospace;
6478 border: 2px solid #000;
6479 background-color: #fff;
6481 .contents-head {
6482 font-weight: bold;
6483 font-size: 1.125em;
6485 .post-body .contents ul {
6486 font-size: 0.9375em;
6488 .contents ul a {
6489 border-bottom: 2px dotted #999;
6491 .post-body .contents li::before {
6492 color: #999;
6493 font-feature-settings: "tnum";
6496 /*==================*/
6497 /* POSTS & COMMENTS */
6498 /*==================*/
6500 .body-text {
6501 font-family: 'Input Sans', sans-serif;
6502 font-weight: 200;
6504 .body-text a {
6505 border-bottom: 2px dotted #000;
6507 .body-text a:hover {
6508 color: #999;
6510 .post-meta a:hover,
6511 .comment-meta a:hover {
6512 text-decoration: dotted underline;
6515 /*===========*/
6516 /* POST-META */
6517 /*===========*/
6519 .post-meta .post-section::before,
6520 .comment-meta .alignment-forum {
6521 color: #fff;
6522 top: -1px;
6523 text-shadow:
6524 1px 1px 0 #777,
6525 0 1px 0 #777,
6526 0 0 5px #777;
6528 a.post-section:hover {
6529 text-decoration: none;
6531 a.post-section:hover::before {
6532 color: #eee;
6534 .post-meta .date {
6535 color: #888;
6537 .bottom-post-meta {
6538 border-color: #000;
6539 border-style: dotted;
6542 /*============*/
6543 /* LINK POSTS */
6544 /*============*/
6546 .post.link-post a.link-post-link {
6547 font-family: 'Anonymous Pro', 'GW-Symbols', monospace;
6548 font-weight: 600;
6549 font-size: 1.25em;
6550 border: none;
6552 .post.link-post a.link-post-link::before {
6553 color: #fff;
6554 text-shadow:
6555 0.5px 0.5px 0 #000,
6556 -0.5px -0.5px 0 #000,
6557 0 0 2px #000;
6559 .post.link-post a.link-post-link:hover {
6560 color: inherit;
6561 border-bottom: 2px dotted #000;
6563 .post.link-post a.link-post-link:hover::before {
6564 text-shadow:
6565 0.5px 0.5px 0 #000,
6566 -0.5px -0.5px 0 #000,
6567 0 0 2px #000,
6568 0 0 3px #000;
6570 .post.link-post a.link-post-link:focus {
6571 color: #999;
6572 border-bottom: 2px dotted #999;
6575 /*=======*/
6576 /* POSTS */
6577 /*=======*/
6579 .post-body {
6580 font-size: 1.125rem;
6581 margin-top: 1em;
6583 h1.post-title {
6584 font-size: 2.25rem;
6585 margin-top: 1.375em;
6588 /*=================*/
6589 /* POST NAVIGATION */
6590 /*=================*/
6592 .post-nav-links a:hover {
6593 box-shadow:
6594 0 0 0 2px #fff inset,
6595 0 0 0 4px #000 inset;
6597 .post-nav-links a:active {
6598 box-shadow:
6599 0 0 0 6px #fff inset,
6600 0 0 0 8px #000 inset;
6603 .post-nav-label {
6604 opacity: 0.75;
6607 @media only screen and (max-width: 900px) {
6608 .sequence-title {
6609 border-top: 1px dotted #000;
6611 .post-nav.prev {
6612 border-right: 1px dotted #000;
6614 .post-nav.next {
6615 border-left: 1px dotted #000;
6619 /*==========*/
6620 /* COMMENTS */
6621 /*==========*/
6623 #comments::before {
6624 border-top: 2px solid #000;
6626 #content > .comment-thread .comment-meta a.date:focus,
6627 #content > .comment-thread .comment-meta a.permalink:focus {
6628 color: #999;
6629 outline: 2px dotted #999;
6630 position: relative;
6631 background-color: #fff;
6632 padding: 0 5px;
6633 left: -5px;
6635 #content > .comment-thread .comment-meta a.date:focus + *,
6636 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6637 margin-left: -10px;
6639 .comment-item {
6640 border: 2px solid #000;
6643 .comment-body {
6644 font-size: 1rem;
6645 line-height: 1.5;
6648 /*================================*/
6649 /* DEEP COMMENT THREAD COLLAPSING */
6650 /*================================*/
6652 .comment-item input[id^="expand"] + label::after {
6653 font-weight: 600;
6655 .comment-item input[id^="expand"] + label:hover::after {
6656 color: #c00;
6658 .comment-item input[id^="expand"] + label:active::after,
6659 .comment-item input[id^="expand"] + label:focus::after{
6660 color: #c00;
6662 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6663 border-width: 1px 0 0 0;
6666 /*==============*/
6667 /* COMMENT-META */
6668 /*==============*/
6670 .comment-meta .author {
6671 font-weight: bold;
6672 font-size: 1.25em;
6674 .comment-item .author:not(.redacted).original-poster::after {
6675 opacity: 0.6;
6678 .comment-item .voting-controls.active-controls::after,
6679 .comment-item .voting-controls .karma-value::after,
6680 .post .voting-controls.active-controls::after,
6681 .post .voting-controls .karma-value::after,
6682 .author::before {
6683 background-color: #fff;
6684 color: #000;
6685 box-shadow: 0 0 0 1px #000 inset;
6687 .comment-item .voting-controls.active-controls::after,
6688 .post .voting-controls.active-controls::after {
6689 padding: 6px;
6690 bottom: -46px;
6691 max-width: unset;
6692 transform: translateX(-2px);
6694 .comment-item .voting-controls .karma-value::after,
6695 .post .voting-controls .karma-value::after {
6696 padding: 2px 8px;
6697 top: -26px;
6698 min-width: 80px;
6701 /*====================*/
6702 /* ANTI-KIBITZER MODE */
6703 /*====================*/
6705 .author.redacted,
6706 .inline-author.redacted {
6707 opacity: 0.5;
6708 font-weight: 400;
6711 .karma-value.redacted {
6712 opacity: 0.5;
6715 .link-post-domain.redacted {
6716 opacity: 0.3;
6719 /*===========================*/
6720 /* COMMENT THREAD NAVIGATION */
6721 /*===========================*/
6723 div.comment-parent-link {
6724 font-weight: 600;
6726 a.comment-parent-link {
6727 font-weight: 400;
6729 a.comment-parent-link::after {
6730 display: none;
6732 a.comment-parent-link::before {
6733 color: #bbb;
6734 padding: 4px 3px 0 2px;
6736 a.comment-parent-link:hover::before {
6737 color: #999;
6740 div.comment-child-links {
6741 font-weight: 600;
6743 div.comment-child-links a {
6744 font-weight: 400;
6746 .comment-child-link::before {
6747 color: #aaa;
6750 .comment-item-highlight,
6751 .comment-item-highlight-faint {
6752 border: 2px solid #ccc;
6755 .comment-popup {
6756 border: 2px solid #000;
6757 background-color: #fff;
6759 .comment-popup .comment-body {
6760 font-size: 0.9375rem;
6763 /*====================*/
6764 /* COMMENT PERMALINKS */
6765 /*====================*/
6767 .comment-meta .permalink,
6768 .comment-meta .lw2-link,
6769 .individual-thread-page .comment-parent-link:empty {
6770 filter: grayscale(100%);
6773 /*=======================*/
6774 /* COMMENTS COMPACT VIEW */
6775 /*=======================*/
6777 #comments-list-mode-selector button {
6778 box-shadow:
6779 0 0 0 4px #fff inset,
6780 0 0 0 5px #000 inset;
6781 border: none;
6783 #comments-list-mode-selector button:hover,
6784 #comments-list-mode-selector button.selected {
6785 box-shadow:
6786 0 0 0 1px #fff inset,
6787 0 0 0 2px #000 inset,
6788 0 0 0 4px #fff inset,
6789 0 0 0 5px #000 inset;
6791 #content.compact > .comment-thread .comment-item::after {
6792 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6795 @media only screen and (hover: hover) {
6796 #content.compact > .comment-thread .comment-item:hover .comment,
6797 #content.compact > .comment-thread .comment-item.expanded .comment {
6798 background-color: #fff;
6799 outline: 3px solid #000;
6801 #content.compact > .comment-thread .comment-item:hover .comment::before,
6802 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6803 background-color: #fff;
6804 box-shadow:
6805 0 0 3px #fff,
6806 0 0 5px #fff,
6807 0 0 7px #fff,
6808 0 0 10px #fff,
6809 0 0 20px #fff,
6810 0 0 30px #fff,
6811 0 0 40px #fff;
6814 @media only screen and (hover: none) {
6815 #content.compact > .comment-thread.expanded .comment-item .comment {
6816 background-color: #fff;
6817 outline: 3px solid #000;
6819 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6820 background-color: #fff;
6821 box-shadow:
6822 0 0 3px #fff,
6823 0 0 5px #fff,
6824 0 0 7px #fff,
6825 0 0 10px #fff,
6826 0 0 20px #fff,
6827 0 0 30px #fff,
6828 0 0 40px #fff;
6832 #content.user-page.compact > h1.listing {
6833 margin-top: 0.5rem;
6835 #content.user-page.compact > h1.listing + .post-meta {
6836 margin-bottom: 0.5rem;
6839 /*===========================*/
6840 /* HIGHLIGHTING NEW COMMENTS */
6841 /*===========================*/
6843 .new-comment {
6844 border: 2px dotted #000;
6846 .new-comment::before {
6847 display: none;
6850 /*=================================*/
6851 /* COMMENT THREAD MINIMIZE BUTTONS */
6852 /*=================================*/
6854 .comment-minimize-button {
6855 color: #ccc;
6856 font-family: Font Awesome, 'Anonymous Pro', 'GW-Symbols', monospace;
6858 .comment-minimize-button:hover {
6859 color: #aaa;
6861 .comment-minimize-button::after {
6862 font-size: 0.8125rem;
6863 top: 20px;
6864 left: 0.5px;
6865 color: #777;
6867 .comment-minimize-button.maximized::after {
6868 color: #ccc;
6871 /*=================================*/
6872 /* INDIVIDUAL COMMENT THREAD PAGES */
6873 /*=================================*/
6875 .individual-thread-page > h1 a:hover {
6876 color: #777;
6877 text-decoration: dotted underline;
6880 .individual-thread-page > .comments {
6881 border-top: 2px solid #000;
6884 /*==============*/
6885 /* VOTE BUTTONS */
6886 /*==============*/
6888 .vote::before {
6889 content: "";
6890 border-radius: 2px;
6891 background-size: 17px 17px;
6892 width: 17px;
6893 height: 17px;
6894 display: inline-block;
6895 position: relative;
6896 top: 2.5px;
6898 .vote:active {
6899 transform: none;
6902 .vote:hover {
6903 box-shadow: none;
6906 /**********/
6907 /* States.
6910 /* _ 1
6912 .vote {
6913 filter: contrast(5%) brightness(182%);
6916 /* _ 2
6918 .vote:not(.none) {
6919 filter: drop-shadow(0 0 1px #fff);
6922 /* 1 _
6924 .vote.two-temp::before {
6925 box-shadow:
6926 0 0 0 3px #ccc,
6927 0 0 0 4px transparent;
6930 /* 2 _
6932 .vote.two::before {
6933 box-shadow:
6934 0 0 0 3px #000,
6935 0 0 0 4px transparent;
6938 /* Disabled.
6940 .vote:disabled {
6941 visibility: unset;
6942 filter: brightness(50%);
6945 /*********/
6946 /* Icons.
6949 .karma .upvote::before {
6950 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHptLTMyIDI1MmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJIOTJjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDkydi05MmMwLTYuNiA1LjQtMTIgMTItMTJoNTZjNi42IDAgMTIgNS40IDEyIDEydjkyaDkyYzYuNiAwIDEyIDUuNCAxMiAxMnY1NnoiLz48L3N2Zz4=');
6952 .karma .downvote::before {
6953 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHpNOTIgMjk2Yy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmgyNjRjNi42IDAgMTIgNS40IDEyIDEydjU2YzAgNi42LTUuNCAxMi0xMiAxMkg5MnoiLz48L3N2Zz4=');
6956 .karma .upvote:disabled::before {
6957 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHptLTMyIDI1MmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJIOTJjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDkydi05MmMwLTYuNiA1LjQtMTIgMTItMTJoNTZjNi42IDAgMTIgNS40IDEyIDEydjkyaDkyYzYuNiAwIDEyIDUuNCAxMiAxMnY1NnoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
6959 .karma .downvote:disabled::before {
6960 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHpNOTIgMjk2Yy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmgyNjRjNi42IDAgMTIgNS40IDEyIDEydjU2YzAgNi42LTUuNCAxMi0xMiAxMkg5MnoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
6963 .agreement .upvote::before {
6964 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDQ4MEg0OGMtMjYuNTEgMC00OC0yMS40OS00OC00OFY4MGMwLTI2LjUxIDIxLjQ5LTQ4IDQ4LTQ4aDM1MmMyNi41MSAwIDQ4IDIxLjQ5IDQ4IDQ4djM1MmMwIDI2LjUxLTIxLjQ5IDQ4LTQ4IDQ4em0tMjA0LjY4Ni05OC4wNTlsMTg0LTE4NGM2LjI0OC02LjI0OCA2LjI0OC0xNi4zNzkgMC0yMi42MjdsLTIyLjYyNy0yMi42MjdjLTYuMjQ4LTYuMjQ4LTE2LjM3OS02LjI0OS0yMi42MjggMEwxODQgMzAyLjc0NWwtNzAuMDU5LTcwLjA1OWMtNi4yNDgtNi4yNDgtMTYuMzc5LTYuMjQ4LTIyLjYyOCAwbC0yMi42MjcgMjIuNjI3Yy02LjI0OCA2LjI0OC02LjI0OCAxNi4zNzkgMCAyMi42MjdsMTA0IDEwNGM2LjI0OSA2LjI1IDE2LjM3OSA2LjI1IDIyLjYyOC4wMDF6Ii8+PC9zdmc+');
6966 .agreement .downvote::before {
6967 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHptLTU0LjQgMjg5LjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMwNiAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDIyNCAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEwMi40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wyODAgMjU2bDY1LjYgNjUuMXoiLz48L3N2Zz4=');
6970 .agreement .upvote:disabled::before {
6971 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDQ4MEg0OGMtMjYuNTEgMC00OC0yMS40OS00OC00OFY4MGMwLTI2LjUxIDIxLjQ5LTQ4IDQ4LTQ4aDM1MmMyNi41MSAwIDQ4IDIxLjQ5IDQ4IDQ4djM1MmMwIDI2LjUxLTIxLjQ5IDQ4LTQ4IDQ4em0tMjA0LjY4Ni05OC4wNTlsMTg0LTE4NGM2LjI0OC02LjI0OCA2LjI0OC0xNi4zNzkgMC0yMi42MjdsLTIyLjYyNy0yMi42MjdjLTYuMjQ4LTYuMjQ4LTE2LjM3OS02LjI0OS0yMi42MjggMEwxODQgMzAyLjc0NWwtNzAuMDU5LTcwLjA1OWMtNi4yNDgtNi4yNDgtMTYuMzc5LTYuMjQ4LTIyLjYyOCAwbC0yMi42MjcgMjIuNjI3Yy02LjI0OCA2LjI0OC02LjI0OCAxNi4zNzkgMCAyMi42MjdsMTA0IDEwNGM2LjI0OSA2LjI1IDE2LjM3OSA2LjI1IDIyLjYyOC4wMDF6IiBzdHJva2U9IiNEOEQ4RDgiIHN0cm9rZS13aWR0aD0iNCUiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
6973 .agreement .downvote:disabled::before {
6974 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHptLTU0LjQgMjg5LjFjNC43IDQuNyA0LjcgMTIuMyAwIDE3TDMwNiAzNzcuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDIyNCAzMTJsLTY1LjEgNjUuNmMtNC43IDQuNy0xMi4zIDQuNy0xNyAwTDEwMi40IDMzOGMtNC43LTQuNy00LjctMTIuMyAwLTE3bDY1LjYtNjUtNjUuNi02NS4xYy00LjctNC43LTQuNy0xMi4zIDAtMTdsMzkuNi0zOS42YzQuNy00LjcgMTIuMy00LjcgMTcgMGw2NSA2NS43IDY1LjEtNjUuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsMzkuNiAzOS42YzQuNyA0LjcgNC43IDEyLjMgMCAxN0wyODAgMjU2bDY1LjYgNjUuMXoiIHN0cm9rZT0iI0Q4RDhEOCIgc3Ryb2tlLXdpZHRoPSI0JSIgZmlsbD0idHJhbnNwYXJlbnQiLz48L3N2Zz4=');
6977 /*===========================*/
6978 /* COMMENTING AND POSTING UI */
6979 /*===========================*/
6981 .comment-controls .cancel-comment-button {
6982 height: 28px;
6983 color: #fff;
6984 padding: 4px 6px 2px 6px;
6987 .posting-controls input[type='submit'],
6988 .comment-controls .cancel-comment-button,
6989 .new-comment-button {
6990 font-weight: 600;
6993 .comment-controls .delete-button::before,
6994 .comment-controls .retract-button::before,
6995 .comment-controls .unretract-button::before {
6996 opacity: 0.8;
6999 .posting-controls .action-button {
7000 border: none;
7002 .posting-controls .action-button:hover,
7003 .posting-controls .action-button:active,
7004 .posting-controls .action-button:focus {
7005 box-shadow: none;
7006 text-decoration: dotted underline;
7008 .posting-controls .action-button:active {
7009 transform: scale(0.9);
7012 .posting-controls textarea {
7013 font-family: 'Input Sans', sans-serif;
7014 font-weight: 200;
7015 font-size: 1rem;
7016 line-height: 1.4;
7017 color: #000;
7018 background-color: #fff;
7019 border-color: #000;
7020 border-width: 28px 2px 2px 2px;
7022 .posting-controls textarea:focus {
7023 border-style: dotted;
7024 border-width: 28px 2px 2px 2px;
7026 .posting-controls textarea::selection {
7027 background-color: #000;
7028 color: #fff;
7030 .posting-controls textarea::-webkit-scrollbar {
7031 width: 18px;
7033 .posting-controls textarea::-webkit-scrollbar-track {
7034 background-color: #fff;
7036 .posting-controls textarea::-webkit-scrollbar-thumb {
7037 background-color: #000;
7038 background-image: url('data:image/gif;base64,R0lGODlhBAAEAPAAMXd3d////ywAAAAABAAEAAACBgQShqgJBQA7');
7039 background-size: 2px 2px;
7040 box-shadow:
7041 0 2px 0 1px #fff inset,
7042 0 0 0 1px #fff inset,
7043 0 2px 0 1.5px #777 inset,
7044 0 0 0 1.5px #777 inset;
7046 .posting-controls textarea::-webkit-scrollbar-thumb:active {
7047 background-image: url('data:image/gif;base64,R0lGODlhBAAEAPAAMQAAAP///ywAAAAABAAEAAACBgQShqgJBQA7');
7048 box-shadow:
7049 0 2px 0 1px #fff inset,
7050 0 0 0 1px #fff inset,
7051 0 2px 0 1.5px #000 inset,
7052 0 0 0 1.5px #000 inset;
7055 /* GUIEdit buttons */
7057 .guiedit-buttons-container {
7058 background-color: #000;
7059 box-shadow: 0 0 0 1px #000;
7062 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7063 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7064 color: #0c0;
7067 button.guiedit {
7068 font-family: Font Awesome, 'Anonymous Pro', 'GW-Symbols', monospace;
7069 color: #fff;
7070 border: none;
7072 button.guiedit:hover,
7073 button.guiedit:active,
7074 button.guiedit:focus {
7075 box-shadow: none;
7076 color: #777;
7078 button.guiedit::after {
7079 color: #fff;
7080 top: 2px;
7081 height: 25px;
7082 text-shadow: none;
7085 /* Markdown hints */
7087 #markdown-hints {
7088 border: 2px solid #000;
7089 background-color: #fff;
7092 /*================*/
7093 /* EDIT POST FORM */
7094 /*================*/
7096 #edit-post-form .post-meta-fields {
7097 grid-template-columns: 6em auto auto auto 1fr auto;
7099 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7100 color: #000;
7101 border: 1px solid #000;
7102 top: 2px;
7104 @media only screen and (hover:hover) {
7105 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7106 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7107 box-shadow:
7108 0 0 0 1px #fff inset,
7109 0 0 0 2px #000 inset;
7112 #edit-post-form .post-meta-fields input[type='checkbox']:active + label::before,
7113 #edit-post-form .post-meta-fields input[type='checkbox']:checked:active + label::before {
7114 background-color: #fff;
7115 box-shadow:
7116 0 0 0 3px #fff inset,
7117 0 0 0 4px #000 inset;
7119 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7120 content: "";
7121 background-color: #000;
7122 box-shadow:
7123 0 0 0 4px #fff inset;
7125 #edit-post-form input[type='radio'] + label {
7126 border-color: #000;
7127 color: #000;
7129 #edit-post-form input[type='radio'][value='all'] + label {
7130 border-width: 1px;
7132 #edit-post-form input[type='radio'][value='drafts'] + label {
7134 #edit-post-form input[type='radio'] + label:hover,
7135 #edit-post-form input[type='radio']:focus + label {
7136 color: #000;
7137 box-shadow:
7138 0 0 0 1px #fff inset,
7139 0 0 0 2px #000 inset;
7141 #edit-post-form input[type='radio']:active + label {
7142 box-shadow:
7143 0 0 0 2px #fff inset,
7144 0 0 0 3px #000 inset;
7146 #edit-post-form input[type='radio']:focus + label {
7147 box-shadow:
7148 0 0 0 1px #000;
7150 #edit-post-form input[type='radio']:checked + label {
7151 border-color: #000;
7152 box-shadow:
7153 0 0 0 1px #fff inset,
7154 0 0 0 2px #000 inset;
7155 font-weight: bold;
7158 #edit-post-form #markdown-hints-checkbox + label {
7159 padding: 4px 0 0 6px;
7162 /*=======*/
7163 /* LINKS */
7164 /*=======*/
7166 a:link,
7167 a:visited {
7168 color: inherit;
7169 text-decoration: none;
7172 /*=========*/
7173 /* BUTTONS */
7174 /*=========*/
7176 button,
7177 input[type='submit'] {
7178 border: 2px solid #000;
7179 box-shadow: 0 0 0 1px transparent;
7181 #ui-elements-container button {
7182 border: none;
7185 button:hover,
7186 input[type='submit']:hover,
7187 button:focus,
7188 input[type='submit']:focus {
7189 text-decoration: none;
7190 background-color: transparent;
7191 color: inherit;
7192 box-shadow:
7193 0 0 0 2px #fff inset,
7194 0 0 0 4px #000 inset,
7195 0 0 0 1px transparent;
7197 button:active,
7198 input[type='submit']:active {
7199 box-shadow:
7200 0 0 0 4px #fff inset,
7201 0 0 0 6px #000 inset,
7202 0 0 0 1px transparent;
7205 /*==========*/
7206 /* HEADINGS */
7207 /*==========*/
7209 .body-text h1,
7210 .body-text h2,
7211 .body-text h4 {
7212 font-family: 'Anonymous Pro', 'GW-Symbols', monospace;
7214 .body-text h3,
7215 .body-text h5,
7216 .body-text h6 {
7217 font-weight: 600;
7219 .body-text h6 {
7220 color: #555;
7222 .body-text h1 {
7223 border-bottom: 2px solid #000;
7226 /*========*/
7227 /* QUOTES */
7228 /*========*/
7230 blockquote {
7231 background-image: url('data:image/gif;base64,R0lGODlhCgAEAPAAMQAAAP///ywAAAAACgAEAAACCgQShqZ5vl6LNBQAOw==');
7232 background-size: 5px 2px;
7233 background-repeat: repeat-y;
7234 background-position: top left;
7235 padding-left: calc(0.5em + 5px);
7238 /*========*/
7239 /* IMAGES */
7240 /*========*/
7242 #content img,
7243 #content figure.image img {
7244 border: 1px dotted #000;
7246 #content figure img {
7247 border: 1px solid #000;
7249 #content img[src$='.svg'],
7250 #content figure img[src$='.svg'] {
7251 border: none;
7253 #content img[style^='float'] {
7254 border: 1px solid transparent;
7257 /*========*/
7258 /* TABLES */
7259 /*========*/
7261 #content:not(.tag-index-page) .body-text table,
7262 #content:not(.tag-index-page) .body-text table th,
7263 #content:not(.tag-index-page) .body-text table td {
7264 border: 1px solid #000;
7267 /*======*/
7268 /* MISC */
7269 /*======*/
7271 hr {
7272 border-bottom: 1px solid #999;
7275 code {
7276 border: 1px dotted #000;
7279 input[type='text'],
7280 input[type='search'],
7281 input[type='password'],
7282 textarea {
7283 background-color: transparent;
7284 border: 1px solid #000;
7285 color: #000;
7287 input[type='text']:focus,
7288 input[type='search']:focus,
7289 input[type='password']:focus,
7290 textarea:focus {
7291 border: 1px dashed #000;
7294 select {
7295 color: #000;
7298 .frac sup {
7299 position: relative;
7300 left: -1px;
7302 .frac sub {
7303 position: relative;
7304 left: -0.5px;
7307 /*============*/
7308 /* ABOUT PAGE */
7309 /*============*/
7311 .about-page mark {
7312 background-color: #e6e6e6;
7313 text-decoration: none;
7314 box-shadow:
7315 0 -1px 0 0 #000 inset,
7316 0 -3px 1px -2px #000 inset;
7317 padding: 0 1px;
7320 #content.about-page .accesskey-table {
7321 font-family: 'Anonymous Pro', 'GW-Symbols', monospace;
7322 border-color: #ddd;
7325 #content.about-page img {
7326 border: 1px solid #000;
7329 /*========================*/
7330 /* QUALIFIED HYPERLINKING */
7331 /*========================*/
7333 #aux-about-link a:hover {
7334 color: #777;
7337 .qualified-linking label:hover {
7338 color: #777;
7341 .qualified-linking-toolbar {
7342 border: 2px solid #000;
7343 background-color: #fff;
7345 .qualified-linking-toolbar a {
7347 .qualified-linking-toolbar a:hover {
7348 box-shadow: 0 0 0 2px #000;
7350 .qualified-linking-toolbar a:active {
7351 box-shadow: 0 0 0 2px #000 inset;
7353 .qualified-linking label::after {
7354 background-color: #fff;
7355 opacity: 0.8;
7358 /*======*/
7359 /* MATH */
7360 /*======*/
7362 .mathjax-block-container::-webkit-scrollbar {
7363 height: 12px;
7364 background-color: #f6f6ff;
7365 border-radius: 6px;
7366 border: 1px solid #ddf;
7368 .mathjax-block-container::-webkit-scrollbar-thumb {
7369 background-color: #dde;
7370 border-radius: 6px;
7371 border: 1px solid #cce;
7373 .mathjax-inline-container::-webkit-scrollbar {
7374 height: 8px;
7375 background-color: #f6f6ff;
7376 border-radius: 4px;
7377 border: 1px solid #ddf;
7379 .mathjax-inline-container::-webkit-scrollbar-thumb {
7380 background-color: #dde;
7381 border-radius: 4px;
7382 border: 1px solid #cce;
7385 /*=================*/
7386 /* ALIGNMENT FORUM */
7387 /*=================*/
7389 #content.alignment-forum-index-page::before {
7390 background-color: #f2f6ff;
7392 #content.alignment-forum-index-page::after {
7393 font-family: "Concourse SmallCaps";
7394 font-weight: 600;
7395 background-color: #7f85b2;
7396 color: transparent;
7397 -webkit-background-clip: text;
7398 text-shadow:
7399 rgba(255,255,255,0.5) 0px 3px 3px;
7401 @media only screen and (hover: hover) {
7402 #content.alignment-forum-index-page h1.listing a:hover,
7403 #content.alignment-forum-index-page h1.listing a:focus {
7404 background-color: rgba(242,246,255,0.85);
7408 /*====================*/
7409 /* FOR NARROW SCREENS */
7410 /*====================*/
7412 @media only screen and (max-width: 1440px) {
7413 #hns-date-picker {
7414 right: -70px;
7415 bottom: 64px;
7416 background-color: #fff;
7417 opacity: 1.0;
7419 #hns-date-picker::before {
7420 width: 56%;
7421 border: 2px solid #000;
7422 box-shadow: 0 0 0 1px #000;
7425 @media only screen and (max-width: 1160px) {
7426 #hns-date-picker {
7427 bottom: 203px;
7428 right: -24px;
7430 #hns-date-picker::before {
7431 width: 85%;
7433 #theme-selector,
7434 #quick-nav-ui,
7435 #new-comment-nav-ui,
7436 #new-comment-nav-ui + #hns-date-picker,
7437 #theme-tweaker-toggle button,
7438 #text-size-adjustment-ui,
7439 #anti-kibitzer-toggle {
7440 opacity: 1.0;
7442 #theme-selector {
7443 background-color: #fff;
7444 border: 1px solid #000;
7446 #theme-selector:hover::after {
7447 width: calc(6em + 6px);
7448 height: calc(100% - 5px);
7449 top: 3px;
7450 left: 100%;
7452 #text-size-adjustment-ui {
7453 background-color: #fff;
7454 box-shadow: 0 0 0 1px #000;
7455 padding: 2px 0 4px 0;
7457 #theme-tweaker-toggle {
7458 left: -19px;
7460 #theme-tweaker-toggle button {
7461 background-color: #fff;
7462 box-shadow: none;
7463 border: 1px solid #000;
7465 #theme-tweaker-toggle button:hover {
7466 color: #777;
7469 @media only screen and (max-width: 1080px) {
7470 #theme-tweaker-toggle button {
7471 border: 1px solid #999;
7472 box-shadow:
7473 0 0 10px #999 inset,
7474 0 0 0 1px transparent;
7475 transform: scale(0.8);
7477 #hns-date-picker {
7478 right: -14px;
7480 #hns-date-picker::before {
7481 width: 92%;
7484 @media only screen and (max-width: 1040px) {
7485 #hns-date-picker {
7486 right: -8px;
7488 #hns-date-picker::before {
7489 width: 94%;
7492 @media only screen and (max-width: 1020px) {
7493 #hns-date-picker {
7494 right: 19px;
7496 #hns-date-picker::before {
7497 width: 100%;
7499 #quick-nav-ui {
7500 background-color: #fff;
7501 box-shadow: 0 9px 0 0px #fff;
7503 #new-comment-nav-ui .new-comments-count::before {
7504 background-color: #fff;
7505 box-shadow:
7506 0 0 0 2px #000,
7507 0 0 0 10px #fff;
7509 #anti-kibitzer-toggle {
7510 background-color: #fff;
7511 box-shadow:
7512 0 0 0 2px #000,
7513 0 0 0 10px #fff;
7517 /*========*/
7518 /* MOBILE */
7519 /*========*/
7521 /*******************************************************/
7522 @media not screen and (hover:hover) and (pointer:fine) {
7523 /*******************************************************/
7524 #ui-elements-container > div[id$='-ui-toggle'] button,
7525 #theme-selector .theme-selector-close-button {
7526 color: #000;
7527 opacity: 1.0;
7529 #appearance-adjust-ui-toggle button,
7530 #post-nav-ui-toggle button {
7531 background-color: #fff;
7532 box-shadow:
7533 0 0 0 2px #fff,
7534 0 0 0 2px #000 inset;
7537 #theme-selector {
7538 background-color: #fff;
7539 box-shadow:
7540 0 0 0 1px #000,
7541 0 0 0 7px #fff;
7543 #theme-selector::before {
7544 color: #000;
7546 #theme-selector button {
7547 background-color: #fff;
7548 box-shadow:
7549 0 0 0 1px #fff inset,
7550 0 0 0 3px #000 inset,
7551 0 0 0 5px #fff inset;
7553 #theme-selector button::after {
7554 color: #000;
7555 max-width: calc(100% - 3.5em);
7556 overflow: hidden;
7557 text-overflow: ellipsis;
7558 padding-left: 1px;
7560 #theme-selector button.selected {
7561 box-shadow:
7562 0 0 0 1px #fff inset,
7563 0 0 0 3px #000 inset,
7564 0 0 0 5px #fff inset,
7565 0 0 0 7px #000 inset;
7567 #theme-selector button.selected::after {
7568 font-weight: bold;
7570 #theme-selector .theme-selector-close-button {
7571 font-weight: 400;
7574 #quick-nav-ui {
7575 background-color: #fff;
7577 #quick-nav-ui a {
7578 box-shadow:
7579 0 0 0 2px #000;
7581 #quick-nav-ui a::after,
7582 #new-comment-nav-ui::before {
7583 font-family: 'Anonymous Pro', 'GW-Symbols', monospace;
7584 font-weight: bold;
7585 font-size: 0.5rem;
7586 background-color: #fff;
7588 #new-comment-nav-ui {
7589 background-color: #fff;
7590 border: 1px solid #000;
7591 box-shadow: 0 0 0 1px #000;
7593 #new-comment-nav-ui::before {
7594 color: #000;
7595 font-size: 0.6875rem;
7596 font-weight: bold;
7597 bottom: calc(100% + 2px);
7598 padding: 2px 0 0 0;
7600 #new-comment-nav-ui .new-comment-sequential-nav-button {
7601 color: #000;
7603 #new-comment-nav-ui .new-comments-count,
7604 #new-comment-nav-ui .new-comments-count::after {
7605 color: #000;
7607 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7608 color: #bbb;
7610 #new-comment-nav-ui button::after {
7611 font-family: 'Anonymous Pro', 'GW-Symbols', monospace;
7614 #hns-date-picker {
7615 bottom: 130px;
7616 right: 52px;
7617 text-indent: 0;
7620 /*****************************************/
7621 @media only screen and (max-width: 900px) {
7622 /*****************************************/
7623 h1.listing {
7624 line-height: 1;
7625 margin-bottom: 6px;
7627 h1.listing + .post-meta {
7628 font-family: Input Sans Narrow;
7629 font-weight: 300;
7631 h1.listing + .post-meta .post-section {
7632 overflow: visible;
7633 order: 1;
7635 h1.listing + .post-meta .post-section::before {
7636 position: unset;
7639 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7640 background-color: #000;
7641 height: 2px;
7644 .comment-item .comment-item {
7645 margin: 0.75em 2px 3px 6px;
7647 .comment-item .comment-item + .comment-item {
7648 margin: 1.5em 2px 3px 6px;
7651 a.comment-parent-link::before {
7652 line-height: 1;
7655 #edit-post-form textarea {
7656 min-height: calc(100vh - 400px)
7658 #edit-post-form #markdown-hints {
7659 position: fixed;
7660 top: 74px;
7661 left: 0;
7662 right: 0;
7663 max-width: 330px;
7664 margin: auto;
7666 #edit-post-form input[type='submit'] {
7667 background-color: #fff;
7670 .comment-controls .cancel-comment-button {
7671 max-width: 1.4em;
7673 .comment-controls .cancel-comment-button::before {
7674 opacity: 1.0;
7675 position: relative;
7676 top: -1px;
7679 .sublevel-nav .sublevel-item,
7680 .sublevel-nav .sublevel-item:first-child,
7681 .sublevel-nav .sublevel-item:last-child {
7682 border-width: 1px;
7684 /*******************************************/
7685 } @media only screen and (max-width: 720px) {
7686 /*******************************************/
7687 #content.conversations-user-page h1.listing + .post-meta .date {
7688 margin: 0 0 0 1em;
7690 /*******************************************/
7691 } @media only screen and (max-width: 520px) {
7692 /*******************************************/
7693 h1.listing {
7694 font-size: 1.375rem;
7695 margin: 18px 6px 4px 6px;
7696 max-width: calc(100% - 12px);
7698 h1.listing .link-post-link {
7699 top: 4px;
7701 h1.listing + .post-meta {
7702 margin: 4px 6px;
7703 font-family: Input Sans Condensed;
7704 font-weight: 300;
7706 h1.listing + .post-meta .post-section {
7707 order: 1;
7708 overflow: visible;
7710 h1.listing + .post-meta .post-section::before {
7711 position: relative;
7712 top: -1px;
7713 left: 0;
7715 #content.conversations-user-page h1.listing {
7716 font-size: 1.375rem;
7718 #content.conversations-user-page h1.listing + .post-meta .conversation-participants {
7719 margin: 0;
7721 #content.conversations-user-page h1.listing + .post-meta .messages-count {
7722 margin: 0 0 0 1em;
7725 #content.compact > .comment-thread .comment-item {
7726 max-height: 110px;
7729 .textarea-container:focus-within textarea {
7730 background-color: #fff;
7731 border: none;
7732 box-shadow:
7733 0 0 0 2px #000;
7735 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7736 padding: 5px 6px 6px 6px;
7737 color: #fff;
7738 font-weight: bold;
7739 box-shadow: none;
7741 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7742 box-shadow:
7743 0 0 0 1px #000 inset,
7744 0 0 0 3px #fff inset,
7745 0 0 0 2px #fff;
7747 .textarea-container:focus-within .guiedit-buttons-container {
7748 border-top: 2px solid #000;
7750 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
7751 padding-bottom: 5px;
7753 #content.conversation-page .textarea-container:focus-within::after {
7754 background-color: #000;
7756 .textarea-container:focus-within button.guiedit {
7757 border: 1px solid transparent;
7759 #markdown-hints,
7760 #edit-post-form #markdown-hints {
7761 border: 2px solid #000;
7762 box-shadow:
7763 0 0 0 2px #fff,
7764 0 0 0 4px #000;
7766 #markdown-hints::after {
7767 color: #000;
7770 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7771 top: 0;
7773 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7774 top: 1px;
7779 /*************/
7780 /* ACCORDIUS */
7781 /*************/
7783 /*======*/
7784 /* TAGS */
7785 /*======*/
7787 #tags {
7788 order: 12;
7789 display: flex;
7790 flex-basis: 100%;
7791 justify-content: center;
7792 margin: 0;
7793 flex-flow: row wrap;
7794 align-items: flex-start;
7797 /*=================*/
7798 /* BRUTALIST THEME */
7799 /*=================*/
7801 /*++++++*/
7802 /* TAGS */
7803 /*++++++*/
7805 #tags {
7806 padding: 0.5em;
7808 #tags::before {
7809 content: "Tags:";
7810 margin: 0 0.25em 0 0;
7811 color: #888;
7813 #tags a {
7814 border: 1px dotted #000;
7815 padding: 5px 7px 4px 7px;
7816 line-height: 1;
7817 margin: 0.25em;
7818 font-size: 0.9375em;
7820 #tags a:hover {
7821 text-decoration: none;
7822 background-color: #fff;
7823 border-style: solid;
7824 box-shadow:
7825 0 0 0 2px #fff inset,
7826 0 0 0 3px #000 inset;
7828 #tags a:active {
7829 box-shadow:
7830 0 0 0 4px #fff inset,
7831 0 0 0 5px #000 inset;