Fix layout bug introduced in 6780e8b3.
[lw2-viewer.git] / www / css / style-rts.linux.css
blobb48615e8027cae05122a7e2b71bc867541b37d18
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 /* READTHESEQUENCES.COM THEME */
5820 /******************************/
5822 /*===========*/
5823 /* VARIABLES */
5824 /*===========*/
5826 /* Color scheme.
5828 :root {
5829 --GW-toggle-widget-color: #bbb;
5830 --GW-toggle-widget-hover-color: #777;
5833 /*======*/
5834 /* BASE */
5835 /*======*/
5837 body {
5838 color: #000;
5839 background-color: #fffffa;
5840 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
5842 #content {
5843 line-height: 1.55;
5846 /*=========*/
5847 /* NAV BAR */
5848 /*=========*/
5850 .nav-inner {
5851 font-size: 1.375em;
5852 font-weight: 600;
5854 .nav-bar-top:not(#primary-bar) .nav-inner {
5855 font-size: 1em;
5858 *.nav-inner,
5859 #nav-item-search button {
5860 font-weight: 300;
5861 color: #888;
5864 #bottom-bar.decorative {
5865 border: none;
5867 #bottom-bar.decorative::before,
5868 #bottom-bar.decorative::after {
5869 content: "GW";
5870 font-weight: 200;
5871 display: block;
5872 text-align: center;
5873 padding: 0.25em 0 1em 0;
5875 #bottom-bar.decorative::before {
5876 width: 100%;
5877 color: transparent;
5878 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5879 background-repeat: repeat-x;
5880 background-position: center 35%;
5881 margin: 0 30px;
5883 #bottom-bar.decorative::after {
5884 color: #d8d8d8;
5885 position: absolute;
5886 left: 0;
5887 right: 0;
5888 margin: auto;
5889 background-color: #fff;
5890 padding-right: 4px;
5891 padding-left: 4px;
5893 @supports (width: -moz-fit-content) {
5894 #bottom-bar.decorative::after {
5895 width: -moz-fit-content;
5898 @supports (width: fit-content) {
5899 #bottom-bar.decorative::after {
5900 width: fit-content;
5904 /* Accesskey hints */
5906 .nav-inner::after {
5907 display: block;
5908 position: absolute;
5909 left: 5px;
5910 top: -2px;
5911 font-weight: 300;
5912 font-size: 0.7em;
5913 color: #d8d8d8;
5915 .inactive-bar .nav-inner::after {
5916 color: #ccc;
5918 .nav-inner:hover::after {
5919 color: #bbb;
5922 /* This makes the navbar items look like tabs: */
5924 #bottom-bar {
5925 border-top: 1px solid #bbb;
5926 margin-top: 2em;
5928 .post-page #bottom-bar {
5929 margin-top: 0.5em;
5931 #content.no-nav-bars {
5932 margin: auto;
5934 #content.no-comments #bottom-bar {
5935 margin-top: 0.125em;
5937 .nav-bar .nav-item:not(:last-child) {
5938 border-right: 1px solid #bbb;
5940 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5941 #nav-item-search:focus-within {
5942 background-color: #f0f0eb;
5944 .nav-bar a:hover,
5945 .nav-bar a:focus,
5946 .nav-bar button:hover,
5947 .nav-bar button:focus {
5948 color: #333;
5949 text-shadow: 0px 0px 0.5px #333;
5951 #bottom-bar .nav-item a::before,
5952 #top-nav-bar a::before {
5953 font-size: 1em;
5954 bottom: -2px;
5955 color: #aaa;
5957 #bottom-bar .nav-item a:hover::before,
5958 #top-nav-bar a:hover::before {
5959 color: #333;
5961 #bottom-bar #nav-item-first a::before,
5962 #top-nav-bar a.nav-item-first::before {
5963 content: "\F0D9\F0D9";
5965 #bottom-bar #nav-item-prev a::before,
5966 #top-nav-bar a.nav-item-prev::before {
5967 content: "\F0D9";
5969 #bottom-bar #nav-item-top a::before {
5970 content: "\F0D8";
5972 #bottom-bar #nav-item-next a::before,
5973 #top-nav-bar a.nav-item-next::before {
5974 content: "\F0DA";
5976 #bottom-bar #nav-item-last a::before,
5977 #top-nav-bar a.nav-item-last::before {
5978 content: "\F0DA\F0DA";
5980 #bottom-bar #nav-item-next a::before {
5981 margin-left: -1em;
5982 left: 2.85em;
5984 .nav-bar + .nav-bar {
5985 position: relative;
5986 border-style: solid;
5987 border-color: #bbb;
5989 .nav-bar {
5990 border-width: 1px 0 0 0;
5992 .active-bar {
5993 border-width: 1px 0;
5996 /* Search tab */
5998 #nav-item-search form::before {
5999 color: #999;
6001 #nav-item-search button:hover {
6002 color: #333;
6004 #nav-item-search input::placeholder {
6005 color: #d00;
6006 font-weight: normal;
6009 /* User/login tab */
6011 #inbox-indicator::before {
6012 color: #ddd;
6015 /*= Top pagination UI hover tooltips =*/
6017 #top-nav-bar a::after,
6018 #bottom-bar a::after {
6019 color: #222;
6020 text-shadow: none;
6023 /*==============*/
6024 /* PAGE TOOLBAR */
6025 /*==============*/
6027 .page-toolbar {
6028 z-index: 1;
6030 .page-toolbar * {
6031 color: #888;
6032 font-weight: 400;
6034 .page-toolbar a:hover,
6035 .page-toolbar button:hover {
6036 text-shadow: 0px 0px 0.5px #333;
6038 .logout-button {
6039 color: #d33;
6042 /*===================*/
6043 /* TOP PAGINATION UI */
6044 /*===================*/
6046 #top-nav-bar {
6047 margin: 0;
6048 flex-wrap: wrap;
6049 grid-column: 2;
6050 min-width: 240px;
6052 #top-nav-bar .page-number {
6053 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6054 padding-top: 7px;
6056 #top-nav-bar .page-number-label {
6057 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6058 bottom: 70%;
6060 #top-nav-bar::after {
6061 content: "";
6062 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6063 background-origin: content-box;
6064 background-repeat: no-repeat;
6065 display: block;
6066 margin: 0.125em auto 0 auto;
6067 padding: 0 12.5%;
6068 height: 1px;
6069 flex: 1 0 100%;
6072 /*==============*/
6073 /* SUBLEVEL NAV */
6074 /*==============*/
6076 .sublevel-nav .sublevel-item {
6077 color: #777;
6078 background-color: #fffffa;
6080 .sublevel-nav .sublevel-item:not(.selected):hover {
6081 background-color: #ddd;
6082 color: #000;
6084 .sublevel-nav .sublevel-item:not(.selected):active,
6085 .sublevel-nav .sublevel-item.selected {
6086 background-color: #ddd;
6087 border-color: #ddd;
6088 color: #000;
6089 text-shadow:
6090 0 -1px 0 #fff,
6091 0 0.5px 0.5px #000;
6094 .sublevel-nav:not(.sort) .sublevel-item {
6095 border-style: solid;
6096 border-color: #ddd;
6097 border-width: 1px 0 1px 1px;
6099 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6100 border-radius: 8px 0 0 8px;
6102 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6103 border-width: 1px;
6104 border-radius: 0 8px 8px 0;
6107 /*=====================*/
6108 /* SORT ORDER SELECTOR */
6109 /*=====================*/
6111 .sublevel-nav.sort .sublevel-item {
6112 font-feature-settings: 'smcp';
6113 padding: 7px 7px 6px 7px;
6114 text-transform: uppercase;
6115 box-shadow: 1px 1px 0 0 #bbb inset;
6116 pointer-events: auto;
6118 .sublevel-nav.sort {
6119 padding: 20px 0 0 0;
6120 border-radius: 8px;
6121 pointer-events: none;
6122 background-color: #bbb;
6123 overflow: hidden;
6124 box-shadow:
6125 0 0 1px #aaa,
6126 0 0 3px #aaa,
6127 0 0 5px #aaa;
6129 .sublevel-nav.sort::before {
6130 text-transform: uppercase;
6131 font-weight: 600;
6132 color: #444;
6133 text-shadow: 0.5px 0.5px 0 #fff;
6134 line-height: 2;
6135 z-index: 1;
6137 .sublevel-nav.sort::after {
6138 content: "";
6139 position: absolute;
6140 display: block;
6141 top: 0;
6142 left: 0;
6143 width: 100%;
6144 height: 100%;
6145 border-radius: 6px 6px 8px 8px;
6146 box-shadow:
6147 0 0 0 1px #bbb inset,
6148 0 20px 0 0 #bbb inset,
6149 0 20px 0 1px #aaa inset,
6150 0 0 0 3px #fffffa;
6153 /*================*/
6154 /* WIDTH SELECTOR */
6155 /*================*/
6156 /* THEME SELECTOR */
6157 /*================*/
6159 #width-selector button,
6160 #theme-selector button {
6161 box-shadow:
6162 0 0 0 4px #fffffa inset,
6163 0 0 0 5px #bbb inset;
6165 #width-selector button:hover,
6166 #width-selector button.selected,
6167 #theme-selector button:hover,
6168 #theme-selector button.selected {
6169 box-shadow:
6170 0 0 0 1px #bbb inset,
6171 0 0 0 4px #fffffa inset,
6172 0 0 0 5px #bbb inset;
6175 #theme-selector button::before {
6176 font-size: 0.9375em;
6177 padding: 6px;
6178 font-weight: 300;
6179 color: #bbb;
6180 background-color: #fff;
6182 #theme-selector button:hover::before,
6183 #theme-selector button.selected::before {
6184 color: #444;
6186 #width-selector button::after {
6187 color: #aaa;
6188 font-weight: 300;
6191 /*======================*/
6192 /* THEME TWEAKER TOGGLE */
6193 /*======================*/
6195 #theme-tweaker-toggle button {
6196 color: #777;
6199 /*=================*/
6200 /* QUICKNAV WIDGET */
6201 /*=================*/
6203 #quick-nav-ui a {
6204 box-shadow: 0 0 0 1px #ccc inset;
6205 color: #bbb;
6206 border-radius: 4px;
6208 #quick-nav-ui a[href='#bottom-bar'] {
6209 line-height: 1.8;
6211 #quick-nav-ui a:active {
6212 transform: scale(0.9);
6214 #quick-nav-ui a[href='#comments'].no-comments {
6215 opacity: 0.4;
6216 color: #bbb;
6218 @media only screen and (hover: hover) {
6219 #quick-nav-ui a:hover {
6220 background-color: #f0f0eb;
6221 color: #333;
6222 text-shadow: 0px 0px 0.5px #333;
6224 #quick-nav-ui a:focus:not(:hover) {
6225 transform: none;
6226 text-shadow: none;
6230 /*======================*/
6231 /* NEW COMMENT QUICKNAV */
6232 /*======================*/
6234 #new-comment-nav-ui .new-comments-count,
6235 #new-comment-nav-ui .new-comments-count::after {
6236 color: #999;
6237 font-weight: normal;
6239 #new-comment-nav-ui .new-comments-count {
6240 text-shadow: 0.5px 0.5px 0 #fff;
6242 #new-comment-nav-ui .new-comment-sequential-nav-button {
6243 color: #999;
6245 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6246 color: #e6e6e6;
6247 text-shadow: none;
6249 @media only screen and (hover: hover) {
6250 #new-comment-nav-ui .new-comments-count:hover {
6251 text-shadow:
6252 0 0 1px #fff,
6253 0 0 3px #fff,
6254 0 0 5px #fff,
6255 0 0 8px #fff,
6256 0.5px 0.5px 0 #fff;
6258 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6259 color: #d00;
6263 /*=================*/
6264 /* HNS DATE PICKER */
6265 /*=================*/
6267 #hns-date-picker span {
6268 color: #777;
6269 text-shadow: 0.5px 0.5px 0 #fff;
6270 font-weight: 600;
6272 #hns-date-picker input[type='text'] {
6274 #hns-date-picker input {
6275 border: 1px solid #aaa;
6276 color: #666;
6277 background-color: transparent;
6279 #hns-date-picker input:hover,
6280 #hns-date-picker input:focus {
6281 color: #444;
6283 #hns-date-picker span {
6284 color: #888;
6287 /*======================*/
6288 /* ANTI-KIBITZER TOGGLE */
6289 /*======================*/
6291 #anti-kibitzer-toggle button::before,
6292 #anti-kibitzer-toggle button::after {
6293 background-color: var(--GW-toggle-widget-color);
6294 -webkit-background-clip: text;
6295 color: transparent;
6296 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
6298 #anti-kibitzer-toggle button:hover::before,
6299 #anti-kibitzer-toggle button:hover::after {
6300 background-color: var(--GW-toggle-widget-hover-color);
6303 /*======================*/
6304 /* TEXT SIZE ADJUSTMENT */
6305 /*======================*/
6307 #text-size-adjustment-ui button {
6308 color: #777;
6310 #text-size-adjustment-ui button.default {
6311 font-weight: 600;
6313 #text-size-adjustment-ui button:disabled:hover {
6314 text-shadow: none;
6316 #text-size-adjustment-ui::after {
6317 color: #aaa;
6318 font-weight: 300;
6321 /*=============================*/
6322 /* COMMENTS VIEW MODE SELECTOR */
6323 /*=============================*/
6325 #comments-view-mode-selector a {
6326 color: #777;
6329 /*==========*/
6330 /* ARCHIVES */
6331 /*==========*/
6333 .archive-nav {
6334 border: 1px solid transparent;
6336 .archive-nav *[class^='archive-nav-item'] {
6337 border-style: solid;
6338 border-color: #ddd;
6339 border-width: 1px 0 1px 1px;
6341 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6342 border-top-width: 0;
6343 border-bottom-width: 0;
6345 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6346 border-bottom-width: 1px;
6348 .archive-nav *[class^='archive-nav-item']:last-child {
6349 border-right-width: 1px;
6351 .archive-nav span[class^='archive-nav-item'] {
6352 font-weight: bold;
6353 background-color: #ddd;
6356 .archive-nav a:link,
6357 .archive-nav a:visited {
6358 color: #999;
6359 font-weight: 300;
6361 .archive-nav a:hover,
6362 .archive-nav span[class^='archive-nav-item'] {
6363 font-weight: 300;
6364 background-color: #f0f0eb;
6365 color: #333;
6366 text-shadow: 0px 0px 0.5px #333;
6368 .archive-nav a:active {
6369 transform: scale(0.9);
6371 .archive-nav a:focus:not(:hover) {
6372 transform: none;
6374 .archive-nav a.archive-nav-item-day:hover {
6375 background-color: #ddd;
6378 /*===============*/
6379 /* KEYBOARD HELP */
6380 /*===============*/
6382 #nav-item-about button.open-keyboard-help {
6383 font-weight: 400;
6386 /*==========*/
6387 /* LISTINGS */
6388 /*==========*/
6390 h1.listing {
6391 margin: 0.7em 20px 0.1em 20px;
6392 max-width: calc(100% - 40px);
6393 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif, 'Font Awesome';
6394 text-align: center;
6397 h1.listing .link-post-link {
6398 font-size: 0.6875em;
6399 top: 6px;
6400 color: #888;
6402 h1.listing .post-title-link {
6403 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6404 text-decoration: none;
6405 color: #690010;
6406 font-weight: 500;
6407 text-shadow: 0.5px 0.5px 0.5px #de7069;
6408 padding: 0 2px 1px 1px;
6411 @media only screen and (hover: hover) {
6412 h1.listing .post-title-link {
6413 max-width: calc(100% - 60px);
6414 padding: 2px 2px 1px 1px;
6416 h1.listing a:hover,
6417 h1.listing a:focus {
6418 text-shadow:
6419 0px 0px 0.5px #ff987b,
6420 0px 0px 1.5px #c05651,
6421 0.5px 0.5px 0.5px #de7069;
6422 background-color: rgba(255,255,250,0.85);
6424 h1.listing:focus-within::before {
6425 display: inline-block;
6426 vertical-align: top;
6427 position: relative;
6428 left: -0.125em;
6429 top: 1px;
6430 color: #690010;
6432 h1.listing .link-post-link:hover {
6433 color: #690010;
6434 text-shadow:
6435 0.5px 0.5px 0 #fff,
6436 -0.5px -0.5px 0 #fff,
6437 0 0 2px #fff,
6438 0 0 3px #00c;
6442 h1.listing .edit-post-link {
6443 padding: 5px 3px 36px 0.5em;
6444 top: 0;
6445 right: 0;
6447 h1.listing .edit-post-link:hover {
6448 text-decoration: none;
6450 #content.user-page h1.listing .edit-post-link {
6451 background-color: #fff;
6454 /*======*/
6455 /* SPAM */
6456 /*======*/
6458 h1.listing.spam {
6459 opacity: 0.1;
6461 h1.listing.spam + .post-meta {
6462 opacity: 0.25;
6464 h1.listing.spam:hover,
6465 h1.listing.spam + .post-meta:hover,
6466 h1.listing.spam:hover + .post-meta {
6467 opacity: 1.0;
6470 /*===================*/
6471 /* LISTING POST-META */
6472 /*===================*/
6474 h1.listing + .post-meta {
6475 justify-content: center;
6477 h1.listing + .post-meta > * {
6478 line-height: 1.5;
6480 h1.listing + .post-meta .post-section {
6481 order: 1;
6483 h1.listing + .post-meta .post-section::before {
6484 left: unset;
6486 h1.listing + .post-meta .link-post-domain {
6487 order: 2;
6488 flex-basis: 100%;
6491 /*============*/
6492 /* USER PAGES */
6493 /*============*/
6495 #content.user-page h1.page-main-heading {
6496 border-bottom: 1px solid #ccc;
6499 #content.user-page #top-nav-bar {
6500 margin: -0.5em 0 0.25em 0;
6501 grid-column: 1 / span 3;
6504 #content.user-page h1.listing {
6505 padding: 6px 6px 0 6px;
6506 max-width: 100%;
6507 margin: 1rem 0 0 0;
6509 #content.own-user-page h1.listing,
6510 h1.listing.own-post-listing {
6511 padding-right: 36px;
6513 @media only screen and (hover: hover) {
6514 #content.user-page h1.listing:focus-within::before {
6515 top: -2px;
6518 #content.user-page h1.listing::after {
6519 content: "";
6520 display: block;
6521 position: absolute;
6522 top: 0;
6523 left: 0;
6524 width: 100%;
6525 height: calc(100% + 1.25em);
6526 box-shadow: 0px 0px 10px #555;
6528 #content.user-page h1.listing.link-post-listing::after {
6529 height: calc(100% + 2.125em);
6531 #content.user-page h1.listing + .post-meta {
6532 margin: 6px 6px 1.5rem 35px;
6534 #content.user-page h1.listing + .post-meta::after {
6535 display: none;
6538 #content.conversations-user-page h1.listing {
6539 padding: 8px 6px;
6540 font-size: 1.75rem;
6542 #content.conversations-user-page h1.listing + .post-meta {
6543 padding: 6px 4px;
6544 margin: 0;
6547 .user-stats .karma-total {
6548 font-weight: bold;
6551 /*===============*/
6552 /* CONVERSATIONS */
6553 /*===============*/
6555 #content.conversation-page h1.page-main-heading {
6556 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6559 /*============*/
6560 /* LOGIN PAGE */
6561 /*============*/
6563 .login-container form input[type='submit'] {
6564 font-weight: bold;
6565 background-color: #eee;
6566 border: 1px solid #ccc;
6568 .login-container form input[type='submit']:hover,
6569 .login-container form input[type='submit']:focus {
6570 background-color: #ddd;
6571 border: 1px solid #aaa;
6574 /* “Create account” form */
6576 #signup-form {
6577 background-color: #f3f3f3;
6578 border: 1px solid #ddd;
6580 #signup-form input[type='submit'] {
6581 background-color: #e4e4e4;
6582 border: 1px solid #ccc;
6584 #signup-form input[type='submit']:hover {
6585 background-color: #d8d8d8;
6586 border: 1px solid #aaa;
6589 /* Log in tip */
6591 .login-container .login-tip {
6592 border: 1px solid #eee;
6595 /* Message box */
6597 .error-box {
6598 border: 1px solid red;
6599 background-color: #faa;
6601 .success-box {
6602 border: 1px solid green;
6603 background-color: #afa;
6606 /*=====================*/
6607 /* PASSWORD RESET PAGE */
6608 /*=====================*/
6610 .reset-password-container input[type='submit'] {
6611 background-color: #e4e4e4;
6612 border: 1px solid #ccc;
6613 font-weight: bold;
6616 /*===================*/
6617 /* TABLE OF CONTENTS */
6618 /*===================*/
6620 .contents {
6621 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6622 margin-left: 1.5em;
6623 font-family: Garamond Premier Pro;
6624 min-width: unset;
6626 .contents-head {
6627 font-weight: bold;
6629 .contents-head::after {
6630 content: "";
6631 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6632 display: block;
6633 margin: 0 auto 0.5em auto;
6634 width: 75%;
6635 height: 1px;
6637 .contents a::after {
6638 display: none;
6640 .post-body .contents ul {
6641 margin: 0 0.5em;
6642 padding: 0 1em;
6644 .post-body .contents a,
6645 .post-body .contents a:visited {
6646 color: #690010;
6647 font-weight: 600;
6649 .post-body .contents a:hover {
6650 color: #690010;
6651 text-shadow:
6652 0px 0px 0.5px #ff987b,
6653 0px 0px 1px #c05651;
6654 border: none;
6656 .post-body .contents li::before {
6657 color: #999;
6658 font-feature-settings: 'onum';
6661 /*==================*/
6662 /* POSTS & COMMENTS */
6663 /*==================*/
6665 .body-text {
6666 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6668 h1.post-title {
6669 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6670 font-weight: 600;
6672 .body-text {
6673 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6674 font-weight: 500;
6675 line-height: 1.45;
6678 .body-text a,
6679 .body-text a:visited {
6680 text-decoration: none;
6681 color: inherit;
6683 .body-text a:link::after,
6684 .body-text a:visited::after {
6685 position: relative;
6686 content: "°";
6687 margin-left: 2px;
6688 margin-right: 1px;
6689 color: #933;
6691 .body-text a:hover {
6692 color: #999;
6693 border-bottom: 1px dotted #999;
6696 /*===========*/
6697 /* POST-META */
6698 /*===========*/
6700 .post-meta,
6701 h1.listing + .post-meta {
6702 text-align: center;
6703 font-weight: 400;
6705 .post-meta .post-section::before,
6706 .comment-meta .alignment-forum {
6707 color: #fff;
6708 top: -1px;
6709 text-shadow:
6710 1px 1px 0 #999,
6711 0 1px 0 #999,
6712 0 0 5px #999;
6713 margin: 0 0 0 0.5em;
6715 .comment-meta .alignment-forum {
6716 margin: 0 1em 0 0;
6718 a.post-section:hover {
6719 text-decoration: none;
6721 .post-meta .post-section.alignment-forum::before {
6722 text-shadow:
6723 1px 1px 0 #b9bbff,
6724 0 1px 0 #b9bbff,
6725 0 0 5px #b9bbff;
6727 a.post-section.alignment-forum:hover::before {
6728 color: #e7e8ff;
6730 .post-meta > *,
6731 .comment-meta a {
6732 color: #999;
6734 .post-meta a:hover,
6735 .comment-meta a:hover {
6736 color: #333;
6737 text-shadow: 0px 0px 0.5px #333;=
6739 .bottom-post-meta {
6740 border-color: #ddd;
6743 /*============*/
6744 /* LINK POSTS */
6745 /*============*/
6747 .post.link-post a.link-post-link {
6748 text-decoration: none;
6749 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6750 font-weight: 600;
6751 color: #77121a;
6753 .post.link-post a.link-post-link:hover {
6754 color: #942f2f;
6755 text-shadow:
6756 0px 0px 0.5px #ff987b,
6757 0px 0px 1.5px #c05651,
6758 0.5px 0.5px 0.5px #de7069;
6760 .post.link-post a.link-post-link:hover::before {
6761 color: #4879ec;
6762 text-shadow:
6763 0.5px 0.5px 0 #fff,
6764 -0.5px -0.5px 0 #fff,
6765 0 0 2px #fff,
6766 0 0 3px #00c;
6768 .post.link-post a.link-post-link:focus {
6769 text-shadow:
6770 0px 0px 0.5px #ff987b,
6771 0px 0px 1.5px #c05651,
6772 0.5px 0.5px 0.5px #de7069;
6775 /*=======*/
6776 /* POSTS */
6777 /*=======*/
6779 .post-body {
6780 font-size: 1.375rem;
6782 .post-page .post-meta::after {
6783 display: block;
6784 margin: 0.625em 0 0 0;
6785 font-size: 1.5rem;
6786 flex-basis: 100%;
6787 order: 2;
6789 .post-page .post-meta:first-of-type::after {
6790 content: "❦";
6792 .post-body {
6793 margin: 0;
6796 .post .bottom-post-meta {
6797 border-color: #bbb;
6798 padding-bottom: 17px;
6801 /*=================*/
6802 /* POST NAVIGATION */
6803 /*=================*/
6805 .post-nav-links a,
6806 .post-nav-links a:visited {
6807 color: #888;
6808 font-weight: 200;
6810 .post-nav-links a:hover {
6811 text-decoration: none;
6812 color: #333;
6813 text-shadow:
6814 0px 0px 0.5px #333;
6815 background-color: #f0f0eb;
6818 .post-nav-label {
6819 opacity: 0.75;
6820 font-weight: 300;
6823 .post-nav.prev, .sequence-title {
6824 border-right: 1px solid #bbb;
6827 @media only screen and (max-width: 900px) {
6828 .post-nav.prev,
6829 .post-nav.next {
6830 padding: 0.75em 0.5em 0.5em 0.5em;
6832 .sequence-title {
6833 border-top: 1px solid #bbb;
6834 border-right: none;
6836 .post-nav.prev {
6837 border-right: 1px solid #bbb;
6839 .post-nav.next {
6840 border-left: 1px solid #bbb;
6844 /*==========*/
6845 /* COMMENTS */
6846 /*==========*/
6848 .comments::before {
6849 border-top: 1px solid #bbb;
6852 #content > .comment-thread .comment-meta a.date:focus,
6853 #content > .comment-thread .comment-meta a.permalink:focus {
6854 color: #444;
6855 font-weight: normal;
6856 outline: 2px dotted #444;
6857 position: relative;
6858 background-color: #fff;
6859 padding: 0 5px;
6860 left: -5px;
6862 #content > .comment-thread .comment-meta a.date:focus + *,
6863 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6864 margin-left: -10px;
6866 .comment-item {
6867 border: 1px solid transparent;
6870 .comment-item {
6871 box-shadow:
6872 0 0 3px #bbb,
6873 0 0 5px #bbb,
6874 0 0 7px #bbb,
6875 0 0 10px #bbb;
6877 .comment-body {
6878 font-size: 1.25rem;
6881 /*================================*/
6882 /* DEEP COMMENT THREAD COLLAPSING */
6883 /*================================*/
6885 .comment-item input[id^="expand"] + label::after {
6886 color: #888;
6887 font-weight: 600;
6889 .comment-item input[id^="expand"] + label:hover::after {
6890 color: #c00;
6892 .comment-item input[id^="expand"] + label:active::after,
6893 .comment-item input[id^="expand"] + label:focus::after{
6894 color: #c00;
6896 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6897 border-width: 1px 0 0 0;
6899 .comment-item input[id^="expand"] ~ .comment-thread {
6900 max-height: 39px;
6901 padding-top: 5px;
6904 /*==============*/
6905 /* COMMENT-META */
6906 /*==============*/
6908 .comment-meta {
6909 font-weight: 400;
6910 padding-top: 5px;
6911 padding-bottom: 4px;
6912 border-bottom: 1px dotted #bbb;
6915 .comment-meta .author {
6916 font-size: 1.125em;
6917 color: #666;
6918 font-weight: 600;
6920 .comment-item .author:not(.redacted).original-poster::after {
6921 opacity: 0.8;
6924 .comment-item .voting-controls.active-controls::after,
6925 .comment-item .voting-controls .karma-value::after,
6926 .post .voting-controls.active-controls::after,
6927 .post .voting-controls .karma-value::after,
6928 .author::before {
6929 background-color: #fff;
6930 color: #777;
6931 box-shadow: 0 0 0 1px #ccc inset;
6932 text-shadow: none;
6933 border-radius: 4px;
6935 .comment-item .voting-controls.active-controls::after,
6936 .post .voting-controls.active-controls::after {
6937 padding: 6px;
6938 bottom: -46px;
6940 .comment-item .voting-controls .karma-value::after,
6941 .post .voting-controls .karma-value::after {
6942 padding: 2px 8px;
6943 top: -26px;
6944 min-width: 64px;
6947 /*====================*/
6948 /* ANTI-KIBITZER MODE */
6949 /*====================*/
6951 .author.redacted,
6952 .inline-author.redacted {
6953 opacity: 0.8;
6954 font-weight: 300;
6957 .karma-value.redacted {
6958 opacity: 0.5;
6961 .link-post-domain.redacted {
6962 opacity: 0.5;
6965 /*===========================*/
6966 /* COMMENT THREAD NAVIGATION */
6967 /*===========================*/
6969 a.comment-parent-link::after {
6970 display: none;
6972 a.comment-parent-link::before {
6973 color: #bbb;
6975 a.comment-parent-link:hover::before {
6976 color: #999;
6977 text-shadow: none;
6978 background-image: linear-gradient(to right, transparent 0%, #bbb 100%);
6979 background-repeat: no-repeat;
6980 box-shadow: 1px 0 0 0 #bbb;
6983 .comment-child-link::before {
6984 color: #ccc;
6987 .comment-item-highlight {
6988 box-shadow:
6989 0 0 2px #e7b200,
6990 0 0 3px #e7b200,
6991 0 0 5px #e7b200,
6992 0 0 7px #e7b200,
6993 0 0 10px #e7b200;
6994 border: 1px solid #e7b200;
6996 .comment-item-highlight-faint {
6997 box-shadow:
6998 0 0 2px #f8e7b5,
6999 0 0 3px #f8e7b5,
7000 0 0 5px #f8e7b5,
7001 0 0 7px #f8e7b5,
7002 0 0 10px #f8e7b5;
7003 border: 1px solid #f8e7b5;
7006 .comment-popup {
7007 background-color: #fff;
7010 /*====================*/
7011 /* COMMENT PERMALINKS */
7012 /*====================*/
7014 .comment-meta .permalink,
7015 .comment-meta .lw2-link,
7016 .individual-thread-page .comment-parent-link:empty {
7017 filter: grayscale(50%);
7019 .comment-meta .permalink:hover,
7020 .comment-meta .lw2-link:hover,
7021 .individual-thread-page .comment-parent-link:empty:hover {
7022 filter: unset;
7025 /*=======================*/
7026 /* COMMENTS COMPACT VIEW */
7027 /*=======================*/
7029 #comments-list-mode-selector button {
7030 box-shadow:
7031 0 0 0 4px #fff inset,
7032 0 0 0 5px #bbb inset;
7034 #comments-list-mode-selector button:hover,
7035 #comments-list-mode-selector button.selected {
7036 box-shadow:
7037 0 0 0 5px #bbb inset;
7039 #content.compact > .comment-thread .comment-item {
7040 max-height: 56px;
7042 #content.compact > .comment-thread .comment-item::after {
7043 color: #888;
7044 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
7047 @media only screen and (hover: hover) {
7048 #content.compact > .comment-thread .comment-item:hover .comment,
7049 #content.compact > .comment-thread .comment-item.expanded .comment {
7050 background-color: #fff;
7051 outline: 3px solid #888;
7053 #content.compact > .comment-thread .comment-item:hover .comment::before,
7054 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7055 background-color: #fff;
7056 box-shadow:
7057 0 0 3px #fff,
7058 0 0 5px #fff,
7059 0 0 7px #fff,
7060 0 0 10px #fff,
7061 0 0 20px #fff,
7062 0 0 30px #fff,
7063 0 0 40px #fff;
7066 @media only screen and (hover: none) {
7067 #content.compact > .comment-thread.expanded .comment-item .comment {
7068 background-color: #fff;
7069 outline: 3px solid #888;
7071 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7072 background-color: #fff;
7073 box-shadow:
7074 0 0 3px #fff,
7075 0 0 5px #fff,
7076 0 0 7px #fff,
7077 0 0 10px #fff,
7078 0 0 20px #fff,
7079 0 0 30px #fff,
7080 0 0 40px #fff;
7084 #content.user-page.compact > h1.listing {
7085 margin-top: 0.5rem;
7087 #content.user-page.compact > h1.listing + .post-meta {
7088 margin-bottom: 1rem;
7091 /*===========================*/
7092 /* HIGHLIGHTING NEW COMMENTS */
7093 /*===========================*/
7095 .new-comment::before {
7096 outline: 2px solid #5a5;
7097 box-shadow:
7098 0 0 6px -2px #5a5 inset,
7099 0 0 4px #5a5,
7100 0 0 6px #5a5;
7103 /*=================================*/
7104 /* COMMENT THREAD MINIMIZE BUTTONS */
7105 /*=================================*/
7107 .comment-minimize-button {
7108 color: #ccc;
7110 .comment-minimize-button:hover {
7111 color: #aaa;
7113 .comment-minimize-button::after {
7114 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7115 color: #777;
7117 .comment-minimize-button.maximized::after {
7118 color: #ccc;
7121 /*=================================*/
7122 /* INDIVIDUAL COMMENT THREAD PAGES */
7123 /*=================================*/
7125 .individual-thread-page > h1 a {
7126 color: #690010;
7128 .individual-thread-page > h1 a:hover {
7129 text-shadow:
7130 0px 0px 0.5px #ff987b,
7131 0px 0px 1.5px #c05651,
7132 0.5px 0.5px 0.5px #de7069;
7135 .individual-thread-page > h1 {
7136 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7139 /*==============*/
7140 /* VOTE BUTTONS */
7141 /*==============*/
7143 .vote {
7144 position: relative;
7146 .vote::before {
7147 position: relative;
7148 z-index: 1;
7150 .vote::after {
7151 position: absolute;
7154 .karma .upvote::before {
7155 content: "\F077";
7156 top: 1px;
7158 .karma .downvote::before {
7159 content: "\F078";
7160 left: -2px;
7162 .karma .upvote::after {
7163 content: "\F325";
7164 left: 6px;
7165 bottom: 4px;
7167 .karma .downvote::after {
7168 content: "\F322";
7169 left: 4px;
7170 top: 4px;
7172 @-moz-document url-prefix() {
7173 .karma .upvote::after {
7174 left: 4px;
7175 bottom: 4px;
7177 .karma .downvote::after {
7178 left: 2px;
7179 top: 5px;
7183 .agreement .upvote::before {
7184 content: "\F00C";
7185 top: 1px;
7187 .agreement .downvote::before {
7188 content: "\F00D";
7189 left: -2px;
7191 .agreement .upvote::after {
7192 content: "\F560";
7193 left: 6px;
7194 bottom: 2px;
7196 .agreement .downvote::after {
7197 content: "\E59B";
7198 left: 2px;
7199 top: 1px;
7201 @-moz-document url-prefix() {
7202 .agreement .upvote::after {
7203 left: 4px;
7204 bottom: 2px;
7206 .agreement .downvote::after {
7207 left: 0;
7208 top: 1px;
7212 /**********/
7213 /* States.
7216 /* _ 1
7218 .vote {
7219 color: #bbb;
7222 /* _ 2
7224 .upvote:hover,
7225 .upvote:not(.none) {
7226 color: var(--GW-upvote-button-color);
7227 text-shadow:
7228 0 0 0.5px #fff,
7229 0 0 8px #0f0;
7231 .downvote:hover,
7232 .downvote:not(.none) {
7233 color: var(--GW-downvote-button-color);
7234 text-shadow:
7235 0 0 0.5px #fff,
7236 0 0 8px #f00;
7239 /* 0 _
7241 .vote::after {
7242 visibility: hidden;
7245 /* 1,2 _
7247 .vote.two-temp::after,
7248 .vote.two::after {
7249 visibility: visible;
7252 /* 1 _
7254 .vote.two-temp::after {
7255 color: #bbb;
7256 text-shadow: none;
7259 /* Disabled.
7261 .vote:disabled {
7262 visibility: unset;
7263 color: #eee;
7265 .vote:disabled:hover {
7266 text-shadow: none;
7269 /*===========================*/
7270 /* COMMENTING AND POSTING UI */
7271 /*===========================*/
7273 .posting-controls input[type='submit'] {
7274 background-color: #fff;
7275 border: 1px solid #aaa;
7276 font-weight: bold;
7278 .posting-controls input[type='submit']:hover,
7279 .posting-controls input[type='submit']:focus {
7280 background-color: #ddd;
7281 border: 1px solid #999;
7283 .comment + .comment-controls .action-button {
7284 font-weight: 400;
7287 .comment-controls .cancel-comment-button {
7288 font-weight: 600;
7289 color: #c00;
7290 text-shadow:
7291 0 0 1px #fff,
7292 0 0 2px #fff;
7294 .comment-controls .cancel-comment-button:hover {
7295 color: #f00;
7298 .new-comment-button {
7299 font-weight: 600;
7302 .comment-controls .delete-button,
7303 .comment-controls .retract-button {
7304 color: #d00;
7306 .comment-controls .delete-button::before {
7307 opacity: 0.6;
7308 font-weight: 400;
7310 .comment-controls .retract-button::before {
7311 opacity: 0.5;
7312 font-weight: 400;
7314 .comment-controls .edit-button,
7315 .comment-controls .unretract-button {
7316 color: #0a0;
7318 .comment-controls .edit-button::before,
7319 .comment-controls .unretract-button::before {
7320 font-weight: 400;
7322 .comment-controls .action-button:hover {
7323 color: #f00;
7324 text-shadow:
7325 0px 0px 0.5px #fff,
7326 0px 0px 1.5px #800,
7329 .post-controls {
7330 margin: 0.5em -0.75em 0 0;
7332 .edit-post-link,
7333 .edit-post-link:visited {
7334 color: #090;
7337 .posting-controls textarea {
7338 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7339 font-size: 1.25rem;
7340 font-weight: 500;
7341 color: #000;
7342 background-color: #fff;
7343 border-color: #aaa;
7344 box-shadow:
7345 0 0 0 1px #eee inset;
7347 .posting-controls textarea:focus {
7348 background-color: #ffd;
7349 border-color: #888;
7350 box-shadow:
7351 0 0 0 1px #ddf inset,
7352 0 0 0 1px #fff,
7353 0 0 0 2px #888;
7355 .posting-controls.edit-existing-post textarea:focus,
7356 .posting-controls form.edit-existing-comment textarea:focus {
7357 border-color: #090;
7358 box-shadow:
7359 0 0 0 1px #81ff7f inset,
7360 0 0 0 1px #fff,
7361 0 0 0 2px #090;
7364 /* GUIEdit buttons */
7366 .guiedit-buttons-container {
7367 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
7370 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7371 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7372 color: #050;
7374 .guiedit-buttons-container button {
7375 font-family: Font Awesome, 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7378 .guiedit::after {
7379 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7380 color: #777;
7381 text-shadow: none;
7384 /* Markdown hints */
7386 #markdown-hints-checkbox + label {
7387 color: #888;
7389 #markdown-hints-checkbox + label:hover {
7390 color: #e00;
7392 #markdown-hints {
7393 border: 1px solid #c00;
7394 background-color: #ffa;
7397 /*================*/
7398 /* EDIT POST FORM */
7399 /*================*/
7401 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7402 border-radius: 3px;
7403 border: 1px solid #ddd;
7404 color: #777;
7406 @media only screen and (hover:hover) {
7407 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7408 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7409 text-shadow:
7410 0 0 1px #fff,
7411 0 0 2px #fff,
7412 0 0 2.5px #aaa;
7414 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7415 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7416 border-color: #aaa;
7419 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7420 content: "\F00C";
7422 #edit-post-form input[type='radio'] + label {
7423 color: #777;
7424 border-color: #ddd;
7426 #edit-post-form input[type='radio'][value='all'] + label {
7427 border-radius: 8px 0 0 8px;
7428 border-width: 1px;
7430 #edit-post-form input[type='radio'][value='drafts'] + label {
7431 border-radius: 0 8px 8px 0;
7433 #edit-post-form input[type='radio'] + label:hover,
7434 #edit-post-form input[type='radio']:focus + label {
7435 background-color: #ddd;
7436 color: #000;
7438 #edit-post-form input[type='radio']:focus + label {
7439 color: #000;
7440 box-shadow:
7441 0 0 0 1px #aaa;
7443 #edit-post-form input[type='radio']:checked + label {
7444 background-color: #ddd;
7445 border-color: #ddd;
7446 color: #000;
7447 text-shadow:
7448 0 -1px 0 #fff,
7449 0 0.5px 0.5px #000;
7452 /*=======*/
7453 /* LINKS */
7454 /*=======*/
7457 text-decoration: none;
7458 color: #888;
7460 a:visited {
7461 color: #888;
7464 /*=========*/
7465 /* BUTTONS */
7466 /*=========*/
7468 button,
7469 input[type='submit'] {
7470 color: #888;
7473 button:active,
7474 input[type='submit']:active {
7475 color: #f00;
7476 transform: scale(0.9);
7478 .button:visited {
7479 color: #888;
7481 .button:active {
7482 transform: scale(0.9);
7484 @-moz-document url-prefix() {
7485 .button:active {
7486 transform: none;
7489 @media only screen and (hover: hover) {
7490 button:hover,
7491 input[type='submit']:hover,
7492 button:focus,
7493 input[type='submit']:focus {
7494 color: #333;
7495 text-shadow: 0px 0px 0.5px #333;
7498 .button:hover {
7499 color: #333;
7500 text-shadow: 0px 0px 0.5px #333;
7501 text-decoration: none;
7503 .button:focus:not(:hover) {
7504 transform: none;
7508 /*==========*/
7509 /* HEADINGS */
7510 /*==========*/
7512 .body-text h1,
7513 .body-text h2,
7514 .body-text h3,
7515 .body-text h4,
7516 .body-text h5,
7517 .body-text h6 {
7518 margin: 1.5em 0 0.25em 0;
7520 .body-text h4 {
7521 font-size: 1.15em;
7523 .body-text h3 {
7524 font-variant: small-caps;
7525 font-size: 1.3em;
7527 .body-text h2 {
7528 font-style: italic;
7529 font-size: 1.5em;
7531 .body-text h1 {
7532 font-size: 1.9em;
7533 border: none;
7535 .post-body h1 {
7536 text-align: center;
7537 margin: 1em 0 0 0;
7539 .post-body h2 {
7540 margin: 1em 0 0 0;
7542 .post-body h1::before {
7543 content: "❦";
7544 display: block;
7545 margin: 0 auto 1em auto;
7546 font-size: 0.625em;
7547 font-weight: normal;
7549 .post-body h2::before {
7550 content: "☙";
7551 text-align: center;
7552 display: block;
7553 margin: 0 auto 0.5em auto;
7554 font-weight: normal;
7555 font-style: normal;
7557 .post-body h1:first-child::before,
7558 .post-body .contents + h1::before,
7559 .post-body h2:first-child::before,
7560 .post-body .contents + h2::before {
7561 content: "";
7564 /*========*/
7565 /* QUOTES */
7566 /*========*/
7568 blockquote {
7569 border-left: 5px solid #ccc;
7572 /*========*/
7573 /* IMAGES */
7574 /*========*/
7576 #content img,
7577 #content figure.image img {
7578 border: 1px solid #ccc;
7580 #content figure img {
7581 border: 1px solid #000;
7583 #content img[src$='.svg'],
7584 #content figure img[src$='.svg'] {
7585 border: none;
7587 #content img[style^='float'] {
7588 border: 1px solid transparent;
7591 /*========*/
7592 /* TABLES */
7593 /*========*/
7595 #content:not(.tag-index-page) .body-text table,
7596 #content:not(.tag-index-page) .body-text table th,
7597 #content:not(.tag-index-page) .body-text table td {
7598 border: 1px solid #ddd;
7601 /*======*/
7602 /* MISC */
7603 /*======*/
7605 hr {
7606 height: 1px;
7607 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
7610 code,
7611 pre {
7612 font-family: Triplicate Code, Courier, Courier New, monospace;
7613 font-size: 0.8125em;
7616 pre {
7617 border: 1px solid #ceccc3;
7618 background-color: #f6f4ea;
7619 border-radius: 4px;
7620 padding: 0 1px;
7623 input[type='text'],
7624 input[type='search'],
7625 input[type='password'] {
7626 background-color: transparent;
7627 border: 1px solid #ccc;
7628 color: #000;
7630 input[type='text']:focus,
7631 input[type='search']:focus,
7632 input[type='password']:focus {
7633 background-color: #ffd;
7634 border: 1px solid #bbb;
7635 box-shadow: 0 0 1px #bbb;
7638 select {
7639 color: #000;
7642 /*============*/
7643 /* ABOUT PAGE */
7644 /*============*/
7646 .about-page mark {
7647 background-color: #e6e6e6;
7648 text-decoration: none;
7649 box-shadow:
7650 0 -1px 0 0 #000 inset,
7651 0 -3px 1px -2px #000 inset;
7652 padding: 0 1px;
7655 #content.about-page .accesskey-table {
7656 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7657 border-color: #ddd;
7660 #content.about-page img {
7661 border: 1px solid #000;
7664 /*========================*/
7665 /* QUALIFIED HYPERLINKING */
7666 /*========================*/
7668 #aux-about-link a {
7669 color: #777;
7671 #aux-about-link a:hover {
7672 opacity: 1.0;
7675 .qualified-linking label {
7676 color: #bbb;
7678 .qualified-linking label:hover {
7679 color: #333;
7680 text-shadow: 0px 0px 0.5px #333;
7683 .qualified-linking-toolbar {
7684 border: 1px solid #000;
7685 background-color: #fff;
7687 .qualified-linking-toolbar a {
7688 background-color: #eee;
7689 border: 1px solid #ccc;
7690 border-radius: 4px;
7692 .qualified-linking-toolbar a:visited {
7693 color: #888;
7695 .qualified-linking-toolbar a:hover {
7696 text-decoration: none;
7697 background-color: #ddd;
7699 .qualified-linking label::after {
7700 background-color: #fffffa;
7701 opacity: 0.8;
7704 /*======*/
7705 /* MATH */
7706 /*======*/
7708 .mathjax-block-container::-webkit-scrollbar {
7709 height: 12px;
7710 background-color: #f6f6ff;
7711 border-radius: 6px;
7712 border: 1px solid #ddf;
7714 .mathjax-block-container::-webkit-scrollbar-thumb {
7715 background-color: #dde;
7716 border-radius: 6px;
7717 border: 1px solid #cce;
7719 .mathjax-inline-container::-webkit-scrollbar {
7720 height: 8px;
7721 background-color: #f6f6ff;
7722 border-radius: 4px;
7723 border: 1px solid #ddf;
7725 .mathjax-inline-container::-webkit-scrollbar-thumb {
7726 background-color: #dde;
7727 border-radius: 4px;
7728 border: 1px solid #cce;
7731 /*=================*/
7732 /* ALIGNMENT FORUM */
7733 /*=================*/
7735 #content.alignment-forum-index-page::before {
7736 background-color: #f4f5ff;
7737 border-color: #bbb;
7738 border-style: solid;
7739 border-width: 0 1px;
7741 #content.alignment-forum-index-page::after {
7742 grid-column: 1;
7743 font-family: "Concourse SmallCaps";
7744 font-weight: 600;
7745 background-color: #7f85b2;
7746 color: transparent;
7747 -webkit-background-clip: text;
7748 text-shadow:
7749 rgba(255,255,255,0.5) 0px 3px 3px;
7751 @media only screen and (hover: hover) {
7752 #content.alignment-forum-index-page h1.listing a:hover,
7753 #content.alignment-forum-index-page h1.listing a:focus {
7754 background-color: rgba(244,245,255,0.85);
7758 /*====================*/
7759 /* FOR NARROW SCREENS */
7760 /*====================*/
7762 @media only screen and (max-width: 1440px) {
7763 #hns-date-picker {
7764 background-color: #fffffa;
7765 opacity: 1.0;
7768 @media only screen and (max-width: 1160px) {
7769 #theme-selector:hover::after {
7770 width: calc(6em - 9px);
7771 height: calc(100% - 5px);
7772 top: 3px;
7773 left: 100%;
7775 #text-size-adjustment-ui button {
7776 background-color: #ddd;
7778 #text-size-adjustment-ui button:hover {
7779 background-color: #eee;
7781 #theme-tweaker-toggle button {
7782 background-color: #ddd;
7785 @media only screen and (max-width: 1080px) {
7786 #text-size-adjustment-ui button {
7787 border: 1px solid #999;
7788 padding: 0 0 0 1px;
7789 border-radius: 50%;
7790 box-shadow:
7791 0 0 6px #999 inset,
7792 0 0 0 1px transparent;
7794 #theme-tweaker-toggle button {
7795 border: 1px solid #999;
7796 box-shadow:
7797 0 0 10px #999 inset,
7798 0 0 0 1px transparent;
7799 border-radius: 50%;
7800 transform: scale(0.8);
7804 /*========*/
7805 /* MOBILE */
7806 /*========*/
7808 /*******************************************************/
7809 @media not screen and (hover:hover) and (pointer:fine) {
7810 /*******************************************************/
7811 #ui-elements-container > div[id$='-ui-toggle'] button {
7812 color: #bbb;
7813 text-shadow:
7814 0 0 1px #fffffa,
7815 0 0 3px #fffffa,
7816 0 0 5px #fffffa,
7817 0 0 10px #fffffa,
7818 0 0 20px #fffffa,
7819 0 0 30px #fffffa;
7822 #theme-selector {
7823 background-color: #fffffa;
7824 box-shadow:
7825 0 0 0 1px #ccc,
7826 0 0 1px 3px #fffffa,
7827 0 0 3px 3px #fffffa,
7828 0 0 5px 3px #fffffa,
7829 0 0 10px 3px #fffffa,
7830 0 0 20px 3px #fffffa;
7831 border-radius: 8px;
7833 #theme-selector::before {
7834 color: #999;
7835 font-weight: 300;
7836 text-shadow: 0.5px 0.5px 0 #fff;
7838 #theme-selector button {
7839 background-color: #fffffa;
7840 border-radius: 8px;
7842 #theme-selector button::after {
7843 color: #777;
7844 max-width: calc(100% - 3.5em);
7845 overflow: hidden;
7846 text-overflow: ellipsis;
7848 #theme-selector button.selected::after {
7849 color: #222;
7850 text-shadow:
7851 0 -1px 0 #fff,
7852 0 0.5px 0.5px #000;
7854 #theme-selector .theme-selector-close-button {
7855 color: #fffffa;
7856 text-shadow:
7857 1px 1px 0 #ccc,
7858 0 0 8px #ccc;
7859 opacity: 1.0;
7862 #quick-nav-ui {
7863 background-color: #fffffa;
7865 #quick-nav-ui,
7866 #new-comment-nav-ui,
7867 #hns-date-picker {
7868 box-shadow:
7869 0 0 1px 3px #fffffa,
7870 0 0 3px 3px #fffffa,
7871 0 0 5px 3px #fffffa,
7872 0 0 10px 3px #fffffa,
7873 0 0 20px 3px #fffffa;
7875 #quick-nav-ui a::after,
7876 #new-comment-nav-ui::before {
7877 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7878 font-weight: bold;
7879 box-shadow:
7880 0 0 1px 0 #fffffa,
7881 0 0 3px 0 #fffffa,
7882 0 0 5px 0 #fffffa;
7883 background-color: #fffffa;
7884 border-radius: 4px;
7886 #quick-nav-ui,
7887 #new-comment-nav-ui {
7888 border-radius: 8px;
7890 #new-comment-nav-ui {
7891 background-color: #fffffa;
7892 border: 1px solid #ccc;
7894 #new-comment-nav-ui::before {
7895 color: #777;
7896 font-weight: 600;
7898 #new-comment-nav-ui .new-comment-sequential-nav-button {
7899 box-shadow: 0 0 0 1px #ccc;
7900 color: #777;
7902 #new-comment-nav-ui .new-comments-count {
7903 background-color: inherit;
7904 box-shadow: 0 -1px 0 0 #ccc;
7906 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7907 border-radius: 7px 0 0 7px;
7909 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7910 border-radius: 0 7px 7px 0;
7912 #new-comment-nav-ui button::after {
7913 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7916 /*****************************************/
7917 @media only screen and (max-width: 900px) {
7918 /*****************************************/
7919 h1.listing {
7920 line-height: 1;
7922 h1.listing + .post-meta .post-section::before {
7923 position: unset;
7925 h1.listing + .post-meta .post-section {
7926 overflow: visible;
7929 .nav-bar-top:not(#primary-bar) .nav-inner {
7930 font-size: 1.125em;
7932 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
7933 padding: 6px 10px;
7936 #top-nav-bar .page-number {
7937 padding-top: 11px;
7939 #top-nav-bar::after {
7940 margin: 0 auto;
7943 .archive-nav *[class^='archive-nav-item-'] {
7944 border-width: 1px !important;
7946 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7947 background-color: #bbb;
7950 .comment-item .comment-item {
7951 margin: 0.75em 3px 3px 6px;
7953 .comment-item .comment-item + .comment-item {
7954 margin: 1.5em 3px 3px 6px;
7957 .sublevel-nav:not(.sort) .sublevel-item,
7958 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7959 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7960 border-radius: 8px;
7961 border-width: 1px;
7962 margin: 2px;
7965 .contents {
7966 margin-left: auto;
7968 /*******************************************/
7969 } @media only screen and (max-width: 720px) {
7970 /*******************************************/
7971 /*******************************************/
7972 } @media only screen and (max-width: 520px) {
7973 /*******************************************/
7974 h1.listing {
7975 font-size: 1.5rem;
7976 margin: 18px 6px 4px 6px;
7977 max-width: calc(100% - 12px);
7979 h1.listing + .post-meta {
7980 margin: 4px 6px;
7982 h1.listing + .post-meta > * {
7983 line-height: 1.4;
7985 h1.listing .link-post-link {
7986 top: 4px;
7989 #content.user-page h1.listing::after {
7990 height: calc(100% + 2.375em);
7992 #content.user-page h1.listing.link-post-listing::after {
7993 height: calc(100% + 3.375em);
7995 #content.user-page h1.listing + .post-meta {
7996 margin-bottom: 1.5rem;
7999 #content.compact > .comment-thread .comment-item {
8000 max-height: 104px;
8002 #content.compact.user-page h1.listing {
8003 margin-top: 0.5rem;
8005 #content.compact.user-page h1.listing + .post-meta {
8006 margin-bottom: 0.75rem;
8009 .comment-body {
8010 font-size: 1.1875rem;
8011 line-height: 1.35;
8014 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8015 padding: 5px 6px 6px 6px;
8016 font-weight: 600;
8018 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8019 box-shadow:
8020 0 0 0 1px #c00,
8021 0 0 0 1px #c00 inset;
8022 color: #c00;
8023 border-color: transparent;
8025 .textarea-container:focus-within .guiedit-buttons-container {
8026 background-color: #fff;
8027 border-top: 1px solid #ddf;
8029 #content.conversation-page .textarea-container:focus-within::after {
8030 background-color: #fff;
8032 .textarea-container:focus-within .guiedit-mobile-auxiliary-button,
8033 .textarea-container:focus-within button.guiedit {
8034 border: 1px solid #bbb;
8035 border-radius: 6px;
8037 #markdown-hints::after {
8038 color: #090;
8041 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8042 top: 2px;
8044 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8045 top: 1px;
8047 #edit-post-form textarea {
8048 min-height: calc(100vh - 440px);
8053 /*************/
8054 /* ACCORDIUS */
8055 /*************/
8057 /*======*/
8058 /* TAGS */
8059 /*======*/
8061 #tags {
8062 order: 12;
8063 display: flex;
8064 flex-basis: 100%;
8065 justify-content: center;
8066 margin: 0;
8067 flex-flow: row wrap;
8068 align-items: flex-start;
8071 /*========================*/
8072 /* READTHESEQUENCES THEME */
8073 /*========================*/
8075 /*++++++*/
8076 /* TAGS */
8077 /*++++++*/
8079 #tags {
8080 padding: 0.5em;
8081 align-items: center;
8083 #tags::before {
8084 content: "\F02C";
8085 font-family: Font Awesome;
8086 font-weight: 400;
8087 font-size: 0.875em;
8088 margin: 0 0.5em 0 0;
8089 opacity: 0.6;
8091 #tags a {
8092 margin: 0 0.375em 0 0;
8094 #tags a:not(:last-of-type)::after {
8095 content: ","
8098 .post-page .post-meta::after {
8099 order: 20;