Split contents-to-html into top-level function.
[lw2-viewer.git] / www / css / style-rts.windows.css
blob73c7224f0448e3a66d574747ce1273646db02f33
2 /*************/
3 /* VARIABLES */
4 /*************/
6 :root {
7 --GW-comment-background-color-odd: transparent;
8 --GW-comment-background-color-even: transparent;
9 --GW-comment-background-color-target: transparent;
11 --inverted-display: none;
14 /***************/
15 /* BASE LAYOUT */
16 /***************/
18 html {
19 box-sizing: border-box;
20 font-size: 16px;
22 *, *::before, *::after {
23 box-sizing: inherit;
25 script {
26 display: none !important;
29 /*=------=*/
30 /*= Body =*/
31 /*=------=*/
33 body {
34 padding: 0;
35 margin: 0;
37 body::before {
38 background-color: inherit;
39 position: fixed;
40 width: 100%;
41 height: 100%;
44 body.no-scroll {
45 overflow-y: scroll;
46 position: fixed;
47 width: 100%;
50 /*=----------------------------=*/
51 /*= Immediate children of body =*/
52 /*=----------------------------=*/
54 body > * {
55 max-width: 900px;
58 /* Special styles for special browsers.
59 (This one is a fix for Firefox’s built-in screenshot feature.)
61 body > iframe[id^='firefox-screenshots'] {
62 max-width: unset;
65 #content {
66 margin: 0 auto;
67 padding: 0 30px;
68 position: relative;
69 overflow: visible;
70 display: grid;
71 grid-template-columns: 2fr 1fr 2fr;
73 #content::before {
74 content: "";
75 display: block;
76 position: absolute;
77 top: 0;
78 left: 0;
79 width: 100%;
80 height: 100%;
81 z-index: -1;
82 pointer-events: none;
85 /*=---------=*/
86 /*= Content =*/
87 /*=---------=*/
89 #content > * {
90 grid-column: 1 / span 3;
93 /*=----------------------=*/
94 /*= Floating UI elements =*/
95 /*=----------------------=*/
97 #ui-elements-container {
98 position: fixed;
99 height: 100vh;
100 top: 0;
101 left: 0;
102 right: 0;
103 margin: auto;
104 z-index: 10000;
105 pointer-events: none;
107 #ui-elements-container > * {
108 pointer-events: auto;
111 /*=----------------=*/
112 /*= Images overlay =*/
113 /*=----------------=*/
114 /* (To exclude images in posts from theme tweaks) */
116 #images-overlay {
117 position: absolute;
118 z-index: 1;
119 left: 0;
120 right: 0;
121 margin: auto;
124 /***********/
125 /* NAV BAR */
126 /***********/
128 .nav-bar {
129 margin: 0 -30px;
130 display: flex;
131 order: -11;
132 z-index: 1;
135 /*=---------------=*/
136 /*= Nav bar items =*/
137 /*=---------------=*/
139 .nav-item {
140 flex: 1 1 auto;
142 .nav-item * {
143 text-overflow: ellipsis;
144 white-space: nowrap;
145 overflow: hidden;
147 .nav-inner {
148 padding: 12px 30px;
149 text-align: center;
150 display: block;
151 position: relative;
152 line-height: inherit;
153 width: 100%;
154 background: unset;
156 .nav-bar-top:not(#primary-bar) .nav-inner {
157 padding: 4px 0;
160 #nav-item-sequences .nav-inner::before {
161 font-family: "Font Awesome", "Font Awesome 5 Free";
162 content: "\F5DB";
164 @media only screen and (min-width: 901px) {
165 #nav-item-about .nav-inner {
166 margin-right: 0.5em;
168 #nav-item-sequences .nav-inner::before {
169 font-size: 1rem;
170 display: block;
172 #secondary-bar #nav-item-sequences .nav-inner {
173 font-size: 0;
174 line-height: 1.4;
178 /*=------------=*/
179 /*= Bottom bar =*/
180 /*=------------=*/
182 #bottom-bar {
183 order: 11;
185 h1.listing ~ #bottom-bar {
186 margin-top: 1.25em;
188 #bottom-bar .nav-item {
189 flex: 1 1 0;
192 /*=-----------------=*/
193 /*= Accesskey hints =*/
194 /*=-----------------=*/
196 .nav-inner::after {
197 content: attr(accesskey);
198 display: none;
201 /*=---------------=*/
202 /*= Pagination UI =*/
203 /*=---------------=*/
205 #bottom-bar .nav-item a::before,
206 #top-nav-bar a::before {
207 font-family: "Font Awesome", "Font Awesome 5 Free";
208 font-weight: 900;
209 font-size: 0.8em;
210 position: relative;
211 bottom: 1px;
212 margin-right: 0.5em;
214 #bottom-bar #nav-item-first a::before,
215 #top-nav-bar a.nav-item-first::before {
216 content: "\F33e";
218 #bottom-bar #nav-item-top a::before {
219 content: "\F062";
221 #bottom-bar #nav-item-prev a::before,
222 #top-nav-bar a.nav-item-prev::before {
223 content: "\F060";
225 #bottom-bar #nav-item-next a::before,
226 #top-nav-bar a.nav-item-next::before {
227 content: "\F061";
229 #bottom-bar #nav-item-last a::before,
230 #top-nav-bar a.nav-item-last::before {
231 content: "\F340";
233 #bottom-bar #nav-item-next a::before {
234 margin-left: -2em;
235 margin-right: 0;
236 left: 3.8em;
238 #bottom-bar #nav-item-last a::before {
239 margin-left: -1.8em;
240 margin-right: 0;
241 left: 3.4em;
244 /*= Hover tooltips =*/
246 #top-nav-bar a {
247 position: relative;
249 #top-nav-bar a::after {
250 bottom: calc(100% - 3px);
251 content: attr(data-target-page);
253 #top-nav-bar a::after {
254 display: block;
255 position: absolute;
256 font-size: 0.75rem;
257 width: 100%;
258 line-height: 1;
259 visibility: hidden;
261 #top-nav-bar a:hover::after,
262 #bottom-bar a:hover::after {
263 visibility: visible;
266 /*=-----------------------=*/
267 /*= Decorative bottom bar =*/
268 /*=-----------------------=*/
269 /* (On short pages with no pagination) */
271 #bottom-bar.decorative {
272 position: relative;
274 #bottom-bar.decorative .nav-item {
275 display: none;
278 /*=------------=*/
279 /*= Search tab =*/
280 /*=------------=*/
282 #nav-item-search {
283 flex: 4 1 auto;
285 #nav-item-search form::before {
286 content: "\F002";
287 font-family: "Font Awesome", "Font Awesome 5 Free";
288 font-weight: 900;
289 display: inline-block;
290 vertical-align: top;
291 height: 23px;
292 width: 23px;
294 #nav-item-search input {
295 height: 23px;
296 width: calc(95% - 80px);
297 padding: 1px 4px;
299 #nav-item-search button {
300 height: 21px;
303 /*=-----------=*/
304 /*= Login tab =*/
305 /*=-----------=*/
307 #nav-item-login {
308 position: relative;
309 padding-right: 0.5em;
312 /*******************/
313 /* INBOX INDICATOR */
314 /*******************/
316 #inbox-indicator {
317 position: absolute;
318 top: 1px;
319 right: 0;
320 height: 100%;
321 visibility: hidden;
323 #inbox-indicator::before {
324 content: "\F0E0";
325 font-family: "Font Awesome", "Font Awesome 5 Free";
326 color: #bbb;
327 font-size: 1.1875rem;
328 position: absolute;
329 height: 100%;
330 right: 0;
331 top: 0;
332 padding: 0 0.45em;
333 visibility: visible;
334 font-weight: 900;
336 #inbox-indicator.new-messages::before {
337 color: #f00;
338 text-shadow:
339 0 0 1px #777,
340 0.5px 0.5px 1px #777;
342 a#inbox-indicator:hover::before {
343 color: #fff;
344 text-shadow:
345 0 0 1px #000,
346 0 0 2px #000,
347 0 0 4px #000,
348 0 0 1px #777,
349 0.5px 0.5px 1px #777;
351 a#inbox-indicator.new-messages:hover::before {
352 text-shadow:
353 0 0 1px #f00,
354 0 0 2px #f00,
355 0 0 4px #f00,
356 0 0 1px #777,
357 0.5px 0.5px 1px #777;
360 /****************/
361 /* PAGE TOOLBAR */
362 /****************/
364 .page-toolbar {
365 font-size: 0.9em;
366 line-height: 1.8;
367 text-align: right;
368 margin-right: -20px;
370 #content > .page-toolbar {
371 grid-column: 3;
372 grid-row: span 3;
374 #content.user-page > .page-toolbar {
375 grid-column: 2 / span 2;
376 order: -4;
379 /*=--------------------------=*/
380 /*= Page toolbar items (all) =*/
381 /*=--------------------------=*/
383 .page-toolbar > * {
384 display: inline-block;
385 margin-left: 1.5em;
387 .page-toolbar > form button {
388 padding: 0;
389 text-align: right;
390 white-space: unset;
392 .page-toolbar > form button::before {
393 text-align: center;
395 .page-toolbar .button::before {
396 font-family: "Font Awesome", "Font Awesome 5 Free";
397 font-size: 0.9em;
398 padding-right: 0.3em;
401 /*=-------------------------------=*/
402 /*= Page toolbar items (specific) =*/
403 /*=-------------------------------=*/
405 .new-post::before {
406 content: '\F067';
407 font-weight: 900;
409 .new-private-message::before {
410 content: '\F075';
411 font-weight: 400;
413 .logout-button::before {
414 content: '\F2F5';
415 font-weight: 900;
417 #enable-push-notifications::before {
418 content: '\F0F3';
419 font-weight: 400;
421 .ignore-button::before {
422 content: "\F070";
423 font-weight: 400;
425 .unignore-button::before {
426 content: "\F06E";
427 font-weight: 400;
429 .rss::before {
430 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
431 display: inline-block;
432 width: 1em;
433 padding-right: 0.2em;
434 position: relative;
435 top: 1px;
438 /*********************/
439 /* TOP PAGINATION UI */
440 /*********************/
442 #top-nav-bar {
443 grid-column: 2;
444 margin: 0.25em 0 0 0;
445 padding: 0.75em 0 0 0;
446 text-align: center;
447 font-size: 1.25em;
448 display: flex;
449 justify-content: center;
451 #top-nav-bar a {
452 line-height: 1;
454 #top-nav-bar a.disabled {
455 pointer-events: none;
456 visibility: hidden;
458 #top-nav-bar .page-number {
459 position: relative;
460 display: inline-block;
461 width: 1.5em;
463 #top-nav-bar .page-number-label {
464 position: absolute;
465 font-size: 0.5em;
466 text-transform: uppercase;
467 width: 100%;
468 bottom: 90%;
469 left: 0;
471 #top-nav-bar a::before {
472 margin: 0.5em;
473 display: inline-block;
476 /****************/
477 /* SUBLEVEL NAV */
478 /****************/
480 .sublevel-nav {
481 text-align: center;
482 display: flex;
483 justify-content: center;
484 margin: 1em 0 0 0;
486 #content > .sublevel-nav:not(.sort) {
487 grid-column: 2;
488 align-self: start;
490 .sublevel-nav .sublevel-item {
491 flex: 0 0 6em;
492 padding: 0.125em 0.5em;
493 font-size: 1.125rem;
495 .sublevel-nav .sublevel-item:active {
496 transform: none;
498 .sublevel-nav .sublevel-item.selected {
499 cursor: default;
502 /***********************/
503 /* SORT ORDER SELECTOR */
504 /***********************/
506 .sublevel-nav.sort {
507 position: relative;
508 margin-top: 8px;
509 font-size: 0.75em;
511 #content > .sublevel-nav.sort {
512 grid-column: 3;
513 grid-row: span 2;
514 justify-self: end;
515 align-self: start;
516 flex-flow: column;
518 #content.index-page > .sublevel-nav.sort {
519 grid-column: 1;
520 justify-self: start;
521 flex-flow: row;
524 .sublevel-nav.sort::before {
525 content: "Sort";
526 font-size: 0.75rem;
527 position: absolute;
528 top: 0;
529 left: 0;
530 width: 100%;
532 .sublevel-nav.sort .sublevel-item {
533 line-height: 1;
534 font-size: 0.875rem;
535 flex-basis: unset;
538 /*******************************/
539 /* COMMENTS SORT MODE SELECTOR */
540 /*******************************/
542 .comments > .sublevel-nav.sort {
543 margin: 1em auto 0 auto;
545 @supports (width: -moz-fit-content) {
546 .comments > .sublevel-nav.sort {
547 width: -moz-fit-content;
550 @supports (width: fit-content) {
551 .comments > .sublevel-nav.sort {
552 width: fit-content;
556 /******************/
557 /* WIDTH SELECTOR */
558 /******************/
560 #width-selector {
561 position: absolute;
562 top: 4px;
563 right: -78px;
565 #width-selector button {
566 width: 22px;
567 height: 22px;
568 padding: 6px;
569 margin: 1px;
570 overflow: hidden;
571 background-repeat: no-repeat;
572 background-size: 100%;
573 background-origin: content-box;
575 #width-selector button,
576 #width-selector button:active,
577 #width-selector button:focus {
578 text-shadow: none;
579 color: transparent;
581 #width-selector button:disabled {
582 cursor: auto;
584 #width-selector button.select-width-normal {
585 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
587 #width-selector button.select-width-wide {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
590 #width-selector button.select-width-fluid {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
594 /*=----------------=*/
595 /*= Hover tooltips =*/
596 /*=----------------=*/
598 #width-selector button::after {
599 content: attr(data-name);
600 position: absolute;
601 display: block;
602 left: 0;
603 width: 100%;
604 text-align: center;
605 top: 56px;
606 visibility: hidden;
608 #width-selector button.selected::after {
609 content: attr(data-name) " (selected)";
611 #width-selector button:hover:not(:active)::after {
612 visibility: visible;
615 head.content-width-normal + body > * {
616 max-width: 900px;
618 head.content-width-wide + body > * {
619 max-width: 1150px;
621 head.content-width-fluid + body > * {
622 max-width: calc(100% - 300px);
625 /******************/
626 /* THEME SELECTOR */
627 /******************/
629 #theme-selector {
630 position: absolute;
631 top: 3px;
632 left: -41px;
633 opacity: 0.4;
634 display: table;
635 max-width: 40px;
637 #theme-selector:hover {
638 opacity: 1.0;
641 /*=----------------------=*/
642 /*= Theme select buttons =*/
643 /*=----------------------=*/
645 .theme-selector button {
646 display: table-cell;
647 width: 26px;
648 height: 26px;
649 padding: 5px;
650 margin: 1px 7px 0 7px;
651 color: transparent;
652 background-size: 16px 16px;
653 background-origin: content-box;
655 .theme-selector button,
656 .theme-selector button:hover,
657 .theme-selector button:active,
658 .theme-selector button:focus {
659 text-shadow: none;
660 color: transparent;
662 .theme-selector button:disabled {
663 cursor: auto;
666 /*=----------------------------=*/
667 /*= Pre-rendered button images =*/
668 /*=----------------------------=*/
669 /* (Each is just a capital letter A through whatever) */
671 .theme-selector button:nth-of-type(1) {
672 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
674 .theme-selector button:nth-of-type(2) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
677 .theme-selector button:nth-of-type(3) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
680 .theme-selector button:nth-of-type(4) {
681 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
683 .theme-selector button:nth-of-type(5) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
686 .theme-selector button:nth-of-type(6) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
689 .theme-selector button:nth-of-type(7) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
692 .theme-selector button:nth-of-type(8) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
695 .theme-selector button:nth-of-type(9) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
699 /*=------------------------------=*/
700 /*= Theme select button tooltips =*/
701 /*=------------------------------=*/
702 /* (with the name & description of the theme that each button selects) */
704 #theme-selector button {
705 position: relative;
706 z-index: 1;
708 #theme-selector button::before {
709 content: attr(data-theme-name);
710 position: absolute;
711 top: 0;
712 right: 100%;
713 padding: 5px 6px 6px 6px;
714 line-height: 1;
715 width: 6em;
716 text-align: right;
717 z-index: 1;
718 visibility: hidden;
720 #theme-selector:hover button::before {
721 visibility: visible;
723 #theme-selector:hover ~ #theme-tweaker-toggle,
724 #theme-selector:active ~ #theme-tweaker-toggle {
725 z-index: -1;
728 /************************/
729 /* THEME TWEAKER TOGGLE */
730 /************************/
732 #theme-tweaker-toggle {
733 position: absolute;
734 top: 7px;
735 left: -75px;
737 #theme-tweaker-toggle button {
738 font-family: "Font Awesome", "Font Awesome 5 Free";
739 font-weight: 900;
740 font-size: 1.25rem;
741 opacity: 0.4;
742 z-index: 1;
744 #theme-tweaker-toggle button:hover {
745 opacity: 1.0;
748 /*******************/
749 /* QUICKNAV WIDGET */
750 /*******************/
752 #quick-nav-ui {
753 position: absolute;
754 right: -67px;
755 bottom: 20px;
757 #quick-nav-ui a {
758 font-family: "Font Awesome", "Font Awesome 5 Free";
759 font-weight: 900;
760 font-size: 1.5rem;
761 line-height: 1.7;
762 text-align: center;
763 display: block;
764 width: 40px;
765 height: 40px;
766 margin: 10px 0 0 0;
768 #quick-nav-ui a[href='#comments'].no-comments {
769 pointer-events: none;
771 #quick-nav-ui a {
772 visibility: hidden;
774 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
775 visibility: visible;
778 /************************/
779 /* NEW COMMENT QUICKNAV */
780 /************************/
782 #new-comment-nav-ui {
783 position: absolute;
784 right: -112px;
785 bottom: 42px;
787 #new-comment-nav-ui > * {
788 display: block;
789 position: relative;
791 #new-comment-nav-ui.no-comments {
792 display: none;
795 /*=--------------------=*/
796 /*= New comments count =*/
797 /*=--------------------=*/
799 #new-comment-nav-ui .new-comments-count {
800 width: 2em;
801 font-size: 1.25rem;
802 line-height: 1.1;
803 text-align: center;
804 left: 1px;
805 cursor: pointer;
807 #new-comment-nav-ui .new-comments-count::selection {
808 background-color: transparent;
810 #new-comment-nav-ui .new-comments-count::after {
811 content: "NEW";
812 display: block;
813 font-size: 0.625rem;
816 /*=-----------------------------------=*/
817 /*= Next/previous new comment buttons =*/
818 /*=-----------------------------------=*/
820 #new-comment-nav-ui .new-comment-sequential-nav-button {
821 font-size: 1.75rem;
822 font-family: "Font Awesome", "Font Awesome 5 Free";
823 font-weight: 900;
824 width: 1.5em;
825 z-index: 5001;
827 #new-comment-nav-ui .new-comment-previous {
828 top: 8px;
830 #new-comment-nav-ui .new-comment-next {
831 bottom: 6px;
833 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
834 cursor: auto;
835 pointer-events: none;
838 /*******************/
839 /* HNS DATE PICKER */
840 /*******************/
842 #hns-date-picker {
843 position: absolute;
844 bottom: 72px;
845 right: -253px;
846 opacity: 0.6;
848 #hns-date-picker:hover,
849 #hns-date-picker:focus-within {
850 opacity: 1.0;
852 #hns-date-picker.no-comments {
853 display: none;
856 /*=---------------=*/
857 /*= "Since" label =*/
858 /*=---------------=*/
860 #hns-date-picker span {
861 display: block;
862 font-size: 0.75rem;
863 text-transform: uppercase;
866 /*=--------------------=*/
867 /*= "Since" text field =*/
868 /*=--------------------=*/
870 #hns-date-picker input {
871 margin-top: 1px;
872 padding: 1px 3px;
873 width: 140px;
874 text-align: center;
875 box-shadow: 0 0 0 1px transparent;
878 /************************/
879 /* ANTI-KIBITZER TOGGLE */
880 /************************/
882 #anti-kibitzer-toggle {
883 position: absolute;
884 right: -67px;
885 bottom: 225px;
887 #anti-kibitzer-toggle button {
888 display: block;
889 width: 40px;
890 height: 54px;
891 padding: 0;
893 #anti-kibitzer-toggle button::before,
894 #anti-kibitzer-toggle button::after {
895 font-family: "Font Awesome", "Font Awesome 5 Free";
897 #anti-kibitzer-toggle button::before {
898 content: "\F06E";
899 display: block;
900 font-size: 1.75em;
901 font-weight: 400;
903 #anti-kibitzer-toggle button::after {
904 content: "\F007\2004\F164";
905 font-size: 0.875em;
906 font-weight: 900;
908 #anti-kibitzer-toggle.engaged button::before {
909 content: "\F070";
912 /************************/
913 /* TEXT SIZE ADJUSTMENT */
914 /************************/
916 #text-size-adjustment-ui {
917 position: absolute;
918 top: 30px;
919 right: -78px;
920 opacity: 0.4;
922 #text-size-adjustment-ui:hover {
923 opacity: 1.0;
926 /* This doesn't work in Mozilla browsers, so hide it */
927 @-moz-document url-prefix() {
928 #text-size-adjustment-ui {
929 display: none;
933 /*=---------=*/
934 /*= Buttons =*/
935 /*=---------=*/
937 #text-size-adjustment-ui button {
938 font-weight: 900;
939 font-family: "Font Awesome", "Font Awesome 5 Free";
940 font-size: 0.75rem;
941 width: 24px;
942 height: 24px;
943 padding: 0;
945 #text-size-adjustment-ui button.default {
946 font-family: inherit;
947 font-size: 1.125rem;
948 position: relative;
949 top: 1px;
951 #text-size-adjustment-ui button:disabled {
952 opacity: 0.5;
954 #text-size-adjustment-ui button:disabled:hover {
955 cursor: default;
958 /*=----------------=*/
959 /*= Hover tooltips =*/
960 /*=----------------=*/
962 #text-size-adjustment-ui::after {
963 content: "Adjust text size";
964 position: absolute;
965 display: block;
966 left: 0;
967 width: 100%;
968 text-align: center;
969 top: 32px;
970 visibility: hidden;
971 font-size: 0.9em;
973 #text-size-adjustment-ui:hover::after {
974 visibility: visible;
977 /*******************************/
978 /* COMMENTS VIEW MODE SELECTOR */
979 /*******************************/
981 #comments-view-mode-selector {
982 position: absolute;
983 bottom: 30px;
984 left: -40px;
985 opacity: 0.6;
987 #comments-view-mode-selector:hover {
988 opacity: 1.0;
991 /*=---------=*/
992 /*= Buttons =*/
993 /*=---------=*/
995 #comments-view-mode-selector a {
996 display: block;
997 font-family: "Font Awesome", "Font Awesome 5 Free";
998 font-size: 1.25rem;
999 text-align: center;
1000 opacity: 0.4;
1001 padding: 0.25em;
1002 z-index: 1;
1004 #comments-view-mode-selector a.threaded {
1005 transform: scaleY(-1);
1006 font-weight: 900;
1008 #comments-view-mode-selector a.chrono {
1009 font-weight: normal;
1011 #comments-view-mode-selector a.selected,
1012 #comments-view-mode-selector a:hover {
1013 opacity: 1.0;
1014 text-decoration: none;
1016 #comments-view-mode-selector a.selected {
1017 cursor: default;
1020 /*****************/
1021 /* KEYBOARD HELP */
1022 /*****************/
1024 #keyboard-help-overlay {
1025 width: 100vw;
1026 height: 100vh;
1027 background-color: rgba(0,0,0,0.7);
1028 position: fixed;
1029 left: 0;
1030 top: 0;
1031 z-index: 5001;
1033 display: flex;
1034 justify-content: center;
1035 align-items: center;
1036 padding: 20px 30px 30px 20px;
1038 visibility: hidden;
1041 #keyboard-help-overlay .keyboard-help-container {
1042 background-color: #fff;
1043 filter: drop-shadow(4px 4px 2px #000);
1044 flex: 1 1 auto;
1045 max-width: 1500px;
1046 max-height: 100%;
1047 overflow-y: auto;
1048 position: relative;
1050 #keyboard-help-overlay .keyboard-help-container h1 {
1051 text-align: center;
1052 border-bottom: 1px solid #ddd;
1053 margin: 0;
1054 padding: 10px 20px;
1056 #keyboard-help-overlay .keyboard-help-container .note {
1057 margin: 0.5em auto;
1058 padding: 0 1em;
1059 width: fit-content;
1061 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1062 column-width: 21em;
1063 column-count: auto;
1064 column-gap: 1.5em;
1065 border-top: 1px solid #ddd;
1066 padding: 15px 20px;
1068 #keyboard-help-overlay .keyboard-help-container ul {
1069 list-style-type: none;
1070 margin: 0;
1071 padding: 0;
1072 break-inside: avoid;
1073 white-space: nowrap;
1075 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1076 margin: 20px 0 0 0;
1078 #keyboard-help-overlay .keyboard-help-container ul li.section {
1079 font-weight: bold;
1080 font-size: 1.125rem;
1081 break-after: avoid;
1083 #keyboard-help-overlay .keyboard-help-container .keys {
1084 margin: 0 0.5em 0 0;
1085 min-width: 4.5em;
1086 display: inline-block;
1088 #keyboard-help-overlay .keyboard-help-container .keys code {
1089 margin: 0 6px 0 0;
1091 #keyboard-help-overlay .keyboard-help-container code {
1092 display: inline-block;
1093 background-color: #eee;
1094 border: 1px solid #ccc;
1095 padding: 3px 8px 4px 8px;
1096 margin: 0 1px;
1098 #keyboard-help-overlay .keyboard-help-container code.ak {
1099 background-color: #ffeb83;
1100 border-color: #d4a500;
1102 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1103 content: "ak+";
1104 opacity: 0.3;
1107 #nav-item-about button.open-keyboard-help {
1108 display: none;
1110 @media only screen and (hover:hover) and (pointer:fine) {
1111 #nav-item-about {
1112 position: relative;
1113 padding-right: 0.25em;
1115 #nav-item-about button.open-keyboard-help {
1116 font-family: "Font Awesome", "Font Awesome 5 Free";
1117 font-weight: 900;
1118 position: absolute;
1119 top: 0;
1120 right: 0;
1121 height: 100%;
1122 padding: 8px;
1123 display: initial;
1124 line-height: 1;
1125 background-color: transparent;
1129 #keyboard-help-overlay button.close-keyboard-help {
1130 position: absolute;
1131 right: 0;
1132 top: 0;
1133 font-family: "Font Awesome", "Font Awesome 5 Free";
1134 font-size: 1.5rem;
1135 padding: 10px 12px;
1138 /************/
1139 /* ARCHIVES */
1140 /************/
1142 .archive-nav {
1143 margin: 1.25em 0.5em 0 0.5em;
1144 padding: 0.25em;
1146 .archive-nav > * {
1147 display: flex;
1149 .archive-nav *[class^='archive-nav-item'] {
1150 line-height: 1;
1151 flex: 1 1 5%;
1152 text-align: center;
1153 padding: 6px 4px 4px 4px;
1154 max-width: 8%;
1156 @-moz-document url-prefix() {
1157 .archive-nav *[class^='archive-nav-item'] {
1158 padding: 5px 4px;
1161 .archive-nav-days .archive-nav-item-day {
1162 font-size: 0.8em;
1163 padding: 7px 0 5px 0;
1164 max-width: 4%;
1166 .archive-nav-days .archive-nav-item-day:first-child {
1167 flex-basis: 10%;
1170 /************/
1171 /* ARCHIVES */
1172 /************/
1174 .archive-nav {
1175 margin: 1.25em 0.5em 0 0.5em;
1176 padding: 0.25em;
1178 .archive-nav > * {
1179 display: flex;
1181 .archive-nav *[class^='archive-nav-item'] {
1182 line-height: 1;
1183 flex: 1 1 5%;
1184 text-align: center;
1185 padding: 6px 4px 4px 4px;
1186 max-width: 8%;
1188 @-moz-document url-prefix() {
1189 .archive-nav *[class^='archive-nav-item'] {
1190 padding: 5px 4px;
1193 .archive-nav-days .archive-nav-item-day {
1194 font-size: 0.8em;
1195 padding: 7px 0 5px 0;
1196 max-width: 4%;
1198 .archive-nav-days .archive-nav-item-day:first-child {
1199 flex-basis: 10%;
1202 /************/
1203 /* LISTINGS */
1204 /************/
1206 h1.listing {
1207 font-size: 1.875rem;
1208 line-height: 1.15;
1209 max-height: 1.15em;
1210 position: relative;
1213 h1.listing a {
1214 position: relative;
1217 /* Links to link-posts (not the link-post links themselves; that's below) */
1218 h1.listing .link-post-link + a {
1219 margin-left: 0.25em;
1222 h1.listing .link-post-link {
1223 font-size: 0.8em;
1224 display: inline;
1225 vertical-align: top;
1226 position: relative;
1227 top: 4px;
1230 /*=----------------------=*/
1231 /*= Listing hover reveal =*/
1232 /*=----------------------=*/
1233 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1235 @media only screen and (min-width: 1160px) {
1236 h1.listing a {
1237 max-width: 100%;
1238 display: inline-block;
1239 white-space: nowrap;
1240 text-overflow: ellipsis;
1241 overflow: hidden;
1242 border-bottom: 1px solid transparent;
1243 -webkit-hyphens: auto;
1244 -moz-hyphens: auto;
1245 -ms-hyphens: auto;
1246 hyphens: auto;
1247 z-index: 1;
1248 padding: 0 0 1px 1px;
1250 h1.listing .link-post-link + a {
1251 max-width: calc(100% - 40px);
1253 h1.listing a:hover,
1254 h1.listing a:focus {
1255 text-decoration: dotted underline;
1256 white-space: initial;
1257 overflow: visible;
1258 z-index: 2;
1260 h1.listing:focus-within::before {
1261 content: "\F105";
1262 font-family: "Font Awesome", "Font Awesome 5 Free";
1263 display: block;
1264 position: absolute;
1265 left: -0.75em;
1268 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1269 mouse movements) */
1271 h1.listing a:not(.edit-post-link):hover::before {
1272 content: "";
1273 position: absolute;
1274 top: -10px;
1275 right: -10px;
1276 bottom: -10px;
1277 left: -10px;
1278 z-index: -1;
1280 h1.listing .link-post-link:hover {
1281 text-decoration: none;
1285 /*=-----------------------=*/
1286 /*= In-listing edit links =*/
1287 /*=-----------------------=*/
1289 h1.listing .edit-post-link {
1290 position: absolute;
1291 margin: 0;
1294 /*=---------------------------------=*/
1295 /*= Error messages on listing pages =*/
1296 /*=---------------------------------=*/
1298 .listing-message {
1299 width: 100%;
1300 text-align: center;
1301 padding: 1.25em 0 1.25em 0;
1302 font-size: 1.375em;
1305 /*********************/
1306 /* LISTING POST-META */
1307 /*********************/
1309 h1.listing + .post-meta {
1310 position: relative;
1311 justify-content: flex-start;
1312 margin: 0 20px 0 21px;
1315 h1.listing + .post-meta > * {
1316 margin: 0 1em 0 0;
1319 h1.listing + .post-meta .post-section {
1320 width: 0;
1321 margin: 0;
1322 overflow: hidden;
1324 h1.listing + .post-meta .post-section::before {
1325 position: absolute;
1326 left: -36px;
1329 h1.listing + .post-meta .read-time {
1330 cursor: default;
1333 /********************/
1334 /* SEQUENCES & TAGS */
1335 /********************/
1337 .sequence-text, .tag-description {
1338 font-size: 1.2rem;
1339 padding: 0 22px;
1342 #content.tag-index-page .tag-description {
1343 margin: 1em 0 0;
1346 section {
1347 max-width: 100%;
1348 margin-top: 2em;
1349 margin-bottom: 4em;
1352 h1.sequence-chapter {
1353 font-size: 2.3rem;
1356 article {
1357 max-width: 100%;
1360 .post-meta + .comments {
1361 margin-top: 3em;
1364 .tag-list {
1365 column-count: auto;
1366 column-width: 15em;
1367 margin-top: 0;
1368 border-bottom: 1px solid #999;
1369 padding-bottom: 1em;
1370 margin-bottom: 0;
1373 /**************/
1374 /* USER PAGES */
1375 /**************/
1377 /*=---------------------=*/
1378 /*= User's display name =*/
1379 /*=---------------------=*/
1381 #content.user-page h1.page-main-heading {
1382 margin: 0.25em 0 0 0;
1383 line-height: 1.1;
1384 grid-column: 1 / span 2;
1385 order: -2;
1388 #content.user-page h1.page-main-heading .user-full-name {
1389 font-size: 1rem;
1390 font-weight: normal;
1391 padding-left: 0.5em;
1394 /*=--------------------=*/
1395 /*= User's karma total =*/
1396 /*=--------------------=*/
1398 #content.user-page .user-stats {
1399 grid-column: 3;
1400 order: -2;
1401 text-align: right;
1402 align-self: end;
1405 #content.user-page .user-stats .karma-type {
1406 white-space: nowrap;
1409 /*=----------------------=*/
1410 /*= Expanded vs. compact =*/
1411 /*=----------------------=*/
1413 #content.user-page #comments-list-mode-selector {
1414 grid-row: span 2;
1416 #content.user-page #comments-list-mode-selector button {
1417 display: block;
1420 /*=----------------------------------------------------=*/
1421 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1422 /*=----------------------------------------------------=*/
1424 #content.user-page .sublevel-nav {
1425 margin-bottom: 0.5em;
1428 /*=--------------=*/
1429 /*= User's posts =*/
1430 /*=--------------=*/
1432 #content.user-page h1.listing {
1433 margin: 0.5em 0 0 0;
1436 #content.user-page .user-bio :first-child {
1437 margin-top: 0.5em;
1440 /*****************/
1441 /* CONVERSATIONS */
1442 /*****************/
1444 /*=----------------------=*/
1445 /*= List of participants =*/
1446 /*=----------------------=*/
1448 #content.conversation-page .conversation-participants {
1449 grid-column: 2 / span 2;
1450 text-align: right;
1451 margin: 0.5em 0 0 0;
1453 .post-meta > .conversation-participants {
1454 white-space: normal;
1456 .conversation-participants ul,
1457 .conversation-participants li {
1458 list-style-type: none;
1459 display: inline-block;
1460 margin: 0;
1461 padding: 0;
1463 .conversation-participants li {
1464 margin-left: 0.375em;
1466 .conversation-participants li:not(:last-of-type)::after {
1467 content: ",";
1470 /*=-------------------------=*/
1471 /*= Posting controls (form) =*/
1472 /*=-------------------------=*/
1474 #content.conversation-page .posting-controls {
1475 padding: 0 0 1em 0;
1477 #content.conversation-page .post-meta-fields {
1478 overflow: auto;
1479 display: flex;
1480 flex-flow: row wrap;
1482 .posting-controls.standalone textarea {
1483 margin-top: 0.375em;
1485 .posting-controls.standalone form {
1486 padding: 0 1em;
1488 #content.conversation-page .posting-controls.standalone form {
1489 padding: 0 1em 3em 1em;
1491 .posting-controls.standalone input[type='text'],
1492 .posting-controls.standalone label {
1493 margin: 0.25em 0;
1495 .posting-controls.standalone label {
1496 width: 4em;
1497 text-align: right;
1498 padding: 2px 6px;
1499 border: 1px solid transparent;
1501 .posting-controls.standalone input[type='text'] {
1502 width: calc(100% - 4em);
1503 padding: 0.25em;
1505 .posting-controls.standalone input[type='submit'] {
1506 float: right;
1508 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1509 white-space: nowrap;
1511 .posting-controls.standalone #markdown-hints {
1512 top: calc(100% + 2em);
1515 /*=--------------------=*/
1516 /*= Conversation title =*/
1517 /*=--------------------=*/
1519 #content.conversation-page h1.page-main-heading {
1520 text-align: center;
1521 margin: 0.5em 0;
1522 line-height: 1.15;
1525 /*=----------=*/
1526 /*= Messages =*/
1527 /*=----------=*/
1529 #content.conversation-page > ul.comment-thread:last-of-type {
1530 margin-bottom: 2em;
1533 /******************/
1534 /* SEARCH RESULTS */
1535 /******************/
1537 #content.search-results-page h1.listing,
1538 #content.sequence-page h1.listing,
1539 #content.post-page h1.listing {
1540 font-size: 1.625em;
1543 /**************/
1544 /* LOGIN PAGE */
1545 /**************/
1547 .login-container {
1548 margin: 2em 0;
1549 padding: 1em;
1550 display: flex;
1551 flex-flow: row wrap;
1554 .login-container form {
1555 flex-basis: 50%;
1556 display: grid;
1557 grid-row-gap: 0.5em;
1558 align-content: start;
1560 .login-container form label {
1561 text-align: right;
1562 padding: 0.25em 0.5em;
1563 white-space: nowrap;
1564 grid-column: 1;
1566 .login-container form input {
1567 grid-column: 2;
1568 padding: 0.25em;
1570 .login-container form input[type='submit'],
1571 .login-container form a {
1572 grid-column: 2;
1573 justify-self: center;
1575 .login-container form input[type='submit'] {
1576 width: 10em;
1577 padding: 0.35em;
1578 line-height: 1;
1579 margin: 0.5em 0 0 0;
1581 .login-container form h1 {
1582 text-align: center;
1583 margin: 0;
1584 grid-column: 2;
1587 /* “Log in” form */
1589 #login-form {
1590 grid-template-columns: 5.5em 1fr;
1591 padding: 0.5em 2em 0.5em 0;
1594 /* “Create account” form */
1596 #signup-form {
1597 font-size: 0.9em;
1598 grid-template-columns: 8.5em 1fr;
1599 padding: 0.5em 1em 1em 1em;
1601 #signup-form h1 {
1602 font-size: 1.7em;
1604 #signup-form input[type='submit'] {
1605 padding: 0.4em 0.5em 0.5em 0.5em;
1608 /* Log in tip */
1610 .login-container .login-tip {
1611 padding: 0.5em 0.5em 0.5em 3em;
1612 margin: 2em 4em 0 4em;
1613 text-indent: -2em;
1614 line-height: 1.4;
1616 .login-container .login-tip span {
1617 font-weight: bold;
1620 /* Message box */
1622 #content.login-page .error-box {
1623 margin: 1.5em 0.875em -1.5em 0.875em;
1625 .error-box, .success-box {
1626 padding: 0.25em;
1627 text-align: center;
1630 /***********************/
1631 /* PASSWORD RESET PAGE */
1632 /***********************/
1634 .reset-password-container {
1635 margin-bottom: 2em;
1637 .reset-password-container input[type='submit'] {
1638 padding: 0.2em 0.5em;
1639 width: unset;
1641 .reset-password-container input {
1642 margin-left: 0.5em;
1643 width: 12em;
1645 .reset-password-container label {
1646 display: inline-block;
1647 width: 9em;
1649 .reset-password-container form > div {
1650 margin: 0.2em;
1652 .reset-password-container .action-container {
1653 padding-left: 11em;
1654 padding-top: 0.2em;
1656 .reset-password-container .error-box {
1657 margin: unset;
1660 /*********************/
1661 /* TABLE OF CONTENTS */
1662 /*********************/
1664 .contents {
1665 float: right;
1666 min-width: 6em;
1667 max-width: 40%;
1668 margin: 1.25em 0 0.75em 1.25em;
1669 padding: 7px 14px 10px 10px;
1670 position: relative;
1671 z-index: 1;
1674 .contents-head {
1675 text-align: center;
1676 margin-bottom: 0.25em;
1679 .post-body .contents ul {
1680 list-style-type: none;
1681 margin: 0 0 0 0.5em;
1682 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1683 padding-left: 1em;
1684 font-size: 0.75em;
1686 .post-body .contents li {
1687 margin: 0.15em 0 0.3em 1em;
1688 text-align: left;
1689 text-indent: -1em;
1690 line-height: 1.2;
1691 position: relative;
1693 .post-body .contents li::before {
1694 position: absolute;
1695 width: 3em;
1696 display: block;
1697 text-align: right;
1698 left: -4.5em;
1700 .contents .toc-item-1 {
1701 counter-increment: toc-item-1;
1702 counter-reset: toc-item-2 toc-item-3;
1704 .contents .toc-item-1::before {
1705 content: counter(toc-item-1);
1707 .contents .toc-item-1 ~ .toc-item-2 {
1708 margin-left: 2.9em;
1709 font-size: 0.95em;
1711 .contents .toc-item-2 {
1712 counter-increment: toc-item-2;
1713 counter-reset: toc-item-3;
1715 .contents .toc-item-1 ~ .toc-item-2::before {
1716 content: counter(toc-item-1) "." counter(toc-item-2);
1718 .contents .toc-item-2::before {
1719 content: counter(toc-item-2);
1721 .contents .toc-item-1 + .toc-item-3 {
1722 counter-increment: toc-item-2 toc-item-3;
1724 .contents .toc-item-2 ~ .toc-item-3,
1725 .contents .toc-item-1 ~ .toc-item-3 {
1726 margin-left: 2.9em;
1727 font-size: 0.95em;
1729 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1730 margin-left: 5.7em;
1731 font-size: 0.9em;
1733 .contents .toc-item-3 {
1734 counter-increment: toc-item-3;
1736 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1737 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1739 .contents .toc-item-1 ~ .toc-item-3::before {
1740 content: counter(toc-item-1) "." counter(toc-item-3);
1742 .contents .toc-item-2 ~ .toc-item-3::before {
1743 content: counter(toc-item-2) "." counter(toc-item-3);
1745 .contents .toc-item-3::before {
1746 content: counter(toc-item-3);
1748 .contents .toc-item-4,
1749 .contents .toc-item-5,
1750 .contents .toc-item-6 {
1751 display: none;
1754 /********************/
1755 /* POSTS & COMMENTS */
1756 /********************/
1758 .post-meta > *,
1759 .comment-meta > * {
1760 display: inline-block;
1761 margin-right: 1em;
1762 font-size: 1.0625em;
1764 .body-text {
1765 overflow-wrap: break-word;
1766 text-align: justify;
1768 .body-text p {
1769 margin: 1em 0;
1771 .retracted .body-text {
1772 text-decoration: line-through;
1775 .bare-url {
1776 word-break: break-all;
1777 hyphens: auto;
1779 .body-text a:not([href]),
1780 .body-text a:not([href]):hover,
1781 .body-text a:not([href])::before,
1782 .body-text a:not([href])::after {
1783 text-decoration: none;
1784 text-shadow: unset;
1785 border: unset;
1786 color: unset;
1787 content: unset;
1789 /*************/
1790 /* POST-META */
1791 /*************/
1793 .post-meta {
1794 display: flex;
1795 flex-flow: row wrap;
1796 justify-content: center;
1798 .post-meta .lw2-link {
1799 opacity: 0.5;
1800 order: 1;
1802 .post-meta > *,
1803 .post-meta .post-section::before {
1804 margin: 0 0.5em;
1806 .post-meta .post-section {
1807 order: -1;
1808 margin: 0;
1809 visibility: hidden;
1811 .post-meta .post-section::before,
1812 .comment-meta .alignment-forum {
1813 visibility: visible;
1814 font-family: "Font Awesome", "Font Awesome 5 Free";
1815 font-weight: 900;
1817 .post-section.frontpage::before {
1818 content: "\F015";
1820 .post-section.featured::before {
1821 content: "\F005";
1823 .post-section.meta::before {
1824 content: "\F077";
1826 .post-section.events::before {
1827 content: "\F5A0";
1829 .post-section.personal::before {
1830 content: "\F007";
1832 .post-section.draft::before {
1833 content: "\F15B";
1835 .post-section.alignment-forum::before,
1836 .comment-meta .alignment-forum {
1837 content: "AF";
1838 font-family: Concourse, 'Changa One';
1841 /*= Karma controls hover tooltips =*/
1843 @media only screen and (pointer: fine) {
1844 .post .voting-controls,
1845 .comment-item .voting-controls {
1846 position: relative;
1848 .post .karma.active-controls::after,
1849 .comment-item .karma.active-controls::after {
1850 content: "Double-click for strong vote";
1851 position: absolute;
1852 pointer-events: none;
1853 display: block;
1854 left: 6px;
1855 width: 100%;
1856 line-height: 1.15;
1857 white-space: normal;
1858 text-align: center;
1859 font-size: 0.875rem;
1860 opacity: 0;
1861 transition: opacity 0.2s ease;
1863 .post .voting-controls.active-controls:hover::after,
1864 .comment-item .voting-controls.active-controls:hover::after {
1865 opacity: 1.0;
1868 .post .voting-controls .karma-value::after,
1869 .comment-item .voting-controls .karma-value::after {
1870 content: attr(title);
1871 position: absolute;
1872 pointer-events: none;
1873 display: block;
1874 left: 50%;
1875 transform: translateX(-50%);
1876 white-space: pre-wrap;
1877 width: max-content;
1878 text-align: center;
1879 font-size: 0.875rem;
1880 color: #bbb;
1881 opacity: 0;
1882 transition: opacity 0.2s ease;
1884 .post .voting-controls.agreement .karma-value:hover::after,
1885 .comment-item .voting-controls.agreement .karma-value:hover::after {
1886 top: unset;
1887 bottom: 100%;
1889 .post .voting-controls .karma-value:hover::after,
1890 .comment-item .voting-controls .karma-value:hover::after {
1891 opacity: 1.0;
1893 .post .voting-controls.waiting .karma-value:hover::after,
1894 .comment-item .voting-controls.waiting .karma-value:hover::after {
1895 display: none;
1897 .comment-item .voting-controls .karma-value:hover::after {
1898 z-index: 5001;
1901 .author {
1902 position: relative;
1904 .author:not(.redacted)::before {
1905 content: attr(data-full-name);
1906 position: absolute;
1907 pointer-events: none;
1908 display: block;
1909 padding: 0 1em;
1910 left: 50%;
1911 bottom: 2em;
1912 transform: translateX(-50%);
1913 white-space: nowrap;
1914 text-align: center;
1915 font-size: 0.875rem;
1916 font-weight: normal;
1917 opacity: 0;
1918 transition: opacity 0.2s ease;
1919 z-index: 5001;
1921 .author:hover::before {
1922 opacity: 1.0;
1926 /*********/
1927 /* POSTS */
1928 /*********/
1930 .post {
1931 max-width: 100%;
1934 .post-body {
1935 min-height: 8em;
1936 padding: 0 30px;
1937 line-height: 1.5;
1938 font-size: 1.3rem;
1939 overflow: auto;
1940 margin: 0.5em 0 0 0;
1942 h1.post-title {
1943 margin: 1.1em 0 0.35em 0;
1944 padding: 0 30px;
1945 text-align: center;
1946 font-size: 2.5em;
1947 line-height: 1;
1949 .post .post-meta {
1950 text-align: center;
1951 position: relative;
1952 z-index: 2;
1954 .post .top-post-meta:last-child {
1955 margin-bottom: 40px;
1957 .post .bottom-post-meta {
1958 margin: 0;
1959 padding: 20px 0;
1961 .bottom-post-meta {
1962 border-style: solid;
1963 border-width: 1px 0;
1966 /**********/
1967 /* EVENTS */
1968 /**********/
1970 .event-info .map {
1971 position: relative;
1972 width: 100%;
1973 margin: 2em 0 1em;
1976 .event-info .map::before {
1977 content: "";
1978 display: block;
1979 padding-bottom: 50%;
1982 .event-info .map iframe {
1983 width: 100%;
1984 height: 100%;
1985 border: 1px solid #000;
1986 position: absolute;
1987 top: 0;
1988 left: 0;
1991 .event-info ul {
1992 list-style: none;
1993 padding: 0;
1994 text-align: center;
1997 /*******************/
1998 /* POST NAVIGATION */
1999 /*******************/
2001 .post-nav-item {
2002 display: grid;
2003 grid-template: 100% / 32% 36% 32%;
2004 grid-template-areas:
2005 "prev seq next";
2007 .post-nav {
2008 display: flex;
2009 flex-flow: column;
2010 justify-content: flex-end;
2011 padding: 0.5em;
2014 .post-nav-title {
2015 font-size: 1.125em;
2016 line-height: 1.15;
2017 display: inline;
2018 border-top: 1px solid transparent;
2020 .post-nav.prev .post-nav-title,
2021 .post-nav.next .post-nav-title {
2022 border-bottom: 1px solid transparent;
2025 .sequence-title {
2026 align-items: center;
2027 text-align: center;
2028 grid-area: seq;
2030 .sequence-title .post-nav-title {
2031 font-size: 1.5em;
2034 .post-nav.prev {
2035 grid-area: prev;
2036 align-items: flex-start;
2038 .post-nav.prev .post-nav-title::before {
2039 content: "\F0D9\2005";
2041 .post-nav.next {
2042 grid-area: next;
2043 text-align: right;
2044 align-items: flex-end;
2046 .post-nav.prev .post-nav-label,
2047 .post-nav.next .post-nav-label {
2048 display: none;
2050 .post-nav.next .post-nav-title::after {
2051 content: "\2004\F0DA";
2053 .post-nav.prev .post-nav-title::before,
2054 .post-nav.next .post-nav-title::after {
2055 font-family: Font Awesome;
2056 font-weight: 900;
2057 vertical-align: text-bottom;
2058 opacity: 0.75;
2060 .post-nav-links {
2061 max-width: 100%;
2064 @media only screen and (max-width: 900px) {
2065 .post-nav-item {
2066 font-size: 0.875em;
2067 grid-template: auto auto / 50% 50%;
2068 grid-template-areas:
2069 "prev next"
2070 "seq seq";
2072 .post-nav.prev .post-nav-title,
2073 .post-nav.next .post-nav-title {
2074 border-bottom: none;
2076 .post-nav.prev {
2077 margin: 0 0 0 -1px;
2078 position: relative;
2079 left: 1px;
2081 .sequence-title {
2082 padding: 0.75em 0;
2085 @media only screen and (max-width: 520px) {
2086 .post-nav-links + .comments {
2087 padding: 1em 0 0 0;
2091 .related-posts, .related-post-group {
2092 padding-bottom: 1em;
2094 .related-post-type {
2095 font-size: 1.2em;
2096 font-weight: 600;
2097 margin-top: 0.5em;
2098 margin-bottom: -0.5em;
2099 list-style-type: disc;
2100 margin-left: -0.5em;
2101 opacity: 0.7;
2103 .related-post-type::before {
2104 content: "\269c";
2105 font-size: 1.375em;
2106 font-weight: normal;
2107 margin-right: 0.15em;
2108 position: relative;
2109 vertical-align: baseline;
2110 top: 0.05em;
2112 .related-posts .post-type-prefix {
2113 display: none;
2116 .crosspost {
2117 padding: 0.1em 1em;
2118 margin: 1em auto;
2121 /**************/
2122 /* LINK POSTS */
2123 /**************/
2125 .post.link-post > .post-body > p:first-child {
2126 text-align: center;
2127 font-size: 1.125em;
2128 margin: 0.5em 0 0 0;
2130 .post.link-post > .post-body > p:only-child {
2131 font-size: 1.5em;
2132 margin: 1em 0;
2134 .post.link-post a.link-post-link::before {
2135 content: "\F0C1";
2136 font-family: "Font Awesome", "Font Awesome 5 Free";
2137 font-weight: 900;
2138 font-size: 0.75em;
2139 position: relative;
2140 top: -2px;
2141 margin-right: 0.25em;
2144 /************/
2145 /* COMMENTS */
2146 /************/
2148 .comments {
2149 max-width: 100%;
2150 padding: 0 0 1px 0;
2151 position: relative;
2153 .comments::before {
2154 content: "";
2155 position: absolute;
2156 display: block;
2157 top: 0;
2158 left: 0;
2159 width: 100%;
2160 height: 100%;
2161 pointer-events: none;
2163 ul.comment-thread {
2164 list-style-type: none;
2165 padding: 0;
2166 max-width: 100%;
2168 .comments .comment-thread > li {
2169 position: relative;
2171 #content > #top-nav-bar + .comment-thread .comment-item {
2172 margin-top: 0;
2175 .comment-item {
2176 margin: 2em 0 0 0;
2178 .comment-item .comment-item {
2179 margin: 1em 8px 8px 16px;
2181 .comment-item .comment-item + .comment-item {
2182 margin: 2em 8px 8px 16px;
2185 .comment-body {
2186 line-height: 1.45;
2187 font-size: 1.2rem;
2188 padding: 10px;
2190 .comment-body ul {
2191 list-style-type: circle;
2193 .comment-body > *:first-child {
2194 margin-top: 0;
2196 .comment-body > *:last-child {
2197 margin-bottom: 0;
2200 .comments-empty-message {
2201 width: 100%;
2202 text-align: center;
2203 padding: 0.75em 0 0.9em 0;
2204 font-size: 1.375em;
2207 /**********************************/
2208 /* DEEP COMMENT THREAD COLLAPSING */
2209 /**********************************/
2211 .comment-item > input[id^="expand"] {
2212 display: none;
2214 .comment-item > input[id^="expand"] + label {
2215 display: block;
2216 visibility: hidden;
2217 position: relative;
2218 margin: 8px 9px;
2220 .comment-item > input[id^="expand"] + label::after {
2221 content: "(Expand " attr(data-child-count) " below)";
2222 visibility: visible;
2223 position: absolute;
2224 left: 0;
2225 white-space: nowrap;
2226 cursor: pointer;
2228 .comment-item > input[id^="expand"]:checked + label::after {
2229 content: "(Collapse " attr(data-child-count) " below)";
2231 .comment-item > input[id^="expand"] ~ .comment-thread {
2232 max-height: 34px;
2233 overflow: hidden;
2235 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2236 margin-top: 0;
2238 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2239 max-height: 1000000px;
2242 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2243 margin: 0;
2245 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2246 display: none;
2249 /*************/
2250 /* BACKLINKS */
2251 /*************/
2253 .backlinks > input {
2254 display: none;
2257 .backlinks > label {
2258 margin-left: 10px;
2259 display: block;
2260 color: #00f;
2261 cursor: pointer;
2264 .backlinks > label::before {
2265 content: " ";
2266 border-left: 5px solid currentColor;
2267 border-top: 5px solid transparent;
2268 border-bottom: 5px solid transparent;
2269 transition: transform 0.25s ease-out;
2270 transform-origin: 29% 55%;
2271 display: inline-block;
2272 padding-right: 0.5em;
2275 .backlinks > input:checked + label::before {
2276 transform: rotate(90deg);
2279 .backlinks li {
2280 margin-top: 0;
2283 .backlinks > ul {
2284 height: 0;
2285 perspective-origin: top;
2286 transform: perspective(100em) rotateX(-90deg);
2287 transform-origin: center top;
2288 opacity: 0;
2289 margin-top: 0.5em;
2290 margin-bottom: 0.5em;
2293 .backlinks > input:checked ~ ul {
2294 height: auto;
2295 transform: perspective(100em) rotateX(0deg);
2296 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2297 opacity: 1;
2300 /****************/
2301 /* COMMENT-META */
2302 /****************/
2304 .comment-meta {
2305 padding: 2px 24px 2px 10px;
2306 margin: 0 -1px;
2307 border: none;
2308 display: flex;
2309 flex-flow: row wrap;
2310 align-items: baseline;
2312 .user-page .comment-meta,
2313 .conversation-page .comment-meta {
2314 padding-right: 10px;
2316 .comment-meta .comment-post-title {
2317 flex-basis: 100%;
2318 overflow: hidden;
2319 text-overflow: ellipsis;
2320 white-space: nowrap;
2321 line-height: 1.3;
2323 .conversation-page .comment-meta .comment-post-title {
2324 margin: 0;
2325 flex-basis: unset;
2326 flex: 1 0 auto;
2327 text-align: right;
2328 display: none; /* Not sure if we need to display this... */
2330 .comment-item .author:not(.redacted).original-poster::after {
2331 content: "\2004(OP)";
2332 font-size: 0.75em;
2335 /*****************************/
2336 /* COMMENT THREAD NAVIGATION */
2337 /*****************************/
2339 a.comment-parent-link:not(.inline-author),
2340 a.comment-parent-link.inline-author::before {
2341 opacity: 0.5;
2343 a.comment-parent-link:hover {
2344 opacity: 1.0;
2346 a.comment-parent-link::before {
2347 content: "\F062";
2348 font-family: "Font Awesome", "Font Awesome 5 Free";
2349 font-weight: 900;
2350 font-size: 0.75rem;
2351 line-height: 1;
2352 position: absolute;
2353 z-index: 1;
2354 display: block;
2355 padding: 3px 3px 0 3px;
2356 width: 16px;
2357 height: calc(100% + 2px);
2358 top: -1px;
2359 left: -17px;
2361 a.comment-parent-link::after {
2362 content: "";
2363 position: absolute;
2364 z-index: 0;
2365 display: block;
2366 width: calc(100% + 26px);
2367 height: calc(100% + 38px);
2368 top: -29px;
2369 left: -17px;
2370 pointer-events: none;
2371 overflow: hidden;
2372 visibility: hidden;
2374 a.comment-parent-link:hover::after {
2375 visibility: visible;
2378 .comment-child-links {
2379 flex-basis: 100%;
2381 .comment-child-link {
2382 margin: 0 0.25em;
2383 display: inline-block;
2385 .comment-child-link::before {
2386 content: ">";
2387 display: inline-block;
2388 margin: 0 2px 0 0;
2391 .comment-popup {
2392 position: fixed;
2393 top: 10%;
2394 right: 10%;
2395 max-width: 700px;
2396 z-index: 10001;
2397 font-size: 1rem;
2398 white-space: unset;
2399 pointer-events: none;
2401 .comment-popup .comment-parent-link {
2402 display: none;
2404 .comment-popup .comment-body {
2405 font-size: 1.0625rem;
2408 .comment-item.depth-odd {
2409 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2410 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2412 .comment-item.depth-even {
2413 --GW-comment-background-color: var(--GW-comment-background-color-even);
2414 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2417 .comment-item:target {
2418 --GW-comment-background-color: var(--GW-comment-background-color-target);
2420 .comment-item:target > .comment-thread > .comment-item {
2421 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2424 /**********************/
2425 /* COMMENT PERMALINKS */
2426 /**********************/
2427 /********************/
2428 /* COMMENT LW LINKS */
2429 /********************/
2431 .comment-meta .permalink::before,
2432 .comment-meta .lw2-link::before,
2433 .individual-thread-page a.comment-parent-link:empty::before {
2434 content: "";
2435 display: inline-block;
2436 width: 1rem;
2437 height: 1rem;
2438 border-radius: 3px;
2439 box-shadow:
2440 0 0 0 1px #fff,
2441 0 0 0 2px #00e,
2442 0 0 0 3px transparent;
2443 padding: 0 0 0 2px;
2444 background-size: 100%;
2445 position: relative;
2446 top: 2px;
2447 opacity: 0.5;
2449 .comment-meta .permalink::before {
2450 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BxG6SZO6ipS6zJY6zhd7Dtf7Elr7k1u7lZ171178GJ/8GOA8GWC8GmF8WyH8XON8nWP8naP8oOa84Wc84ac9Ied9Iyh9I6j9JCl9ZGl9ZSo9ZWp9Zms9Zut9qKz9qi4962897G/+LPB+LTC+LjF+L3J+cLN+cTP+sXQ+srU+svU+s7X+9DZ+9HZ+9La+9Xd+9bd+9ng/Nrh/Nvh/Obq/ent/e7x/vHz/vL0/vP1/vT2/vj5//n6//r7//v7//z8//39//7+/////wAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAMDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84AAgoOEhYaHiImKi4yNjo+QhgEODQGRiiVDRERDIpeHJ5uiRCWfhAdAo5tCCaaCFZtDHyCxEK4AsERCCxG1twhBqrqttzPCNLeCDTqjOQzJGMKctq4e0kMPkQUbgxSaqtiCAR0DiwbMMoMEACybyJYAATREOQWJBjui6YMr7oPyouodEsBsFAx+/gTFUCWwkIJgo3iUA9CPCLJ4OMBlOyThWwtCFS8KchErgqIAN0SFQGhxkAhRNhhFE3XjAgAVm14AyJBSlIVGJlT5GNVDVSlHHCBKEyVEg7YUP5b2QDHx04QRL2rUaEHCZLKvYMOKHXspEAA7');
2452 .comment-meta .lw2-link::before {
2453 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BZB6RxG6SJL6iZO6ipS6zJY6zhd7D1h7EBk7UJl7Ulr7kts7lFx7mB+8GJ/8GmF8WyH8XON8naP8niR8n+X84GY84+k9JOn9ZSo9ZWp9Zut9qS196W296e396q6962896+++LTC+LzI+b3J+cDM+cXQ+sjS+srU+s7X+9La+9bd+9jf/Nng/Nvh/Nzi/N7k/OXq/efr/ent/eru/e3w/vDz/vHz/vL0/vT2/vb3//f4//r7//z8//39//7+/////wAAt4pHif9/AAAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH5YAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5EHBwoBgwuaB56hgpqciAE3QUE6BQAIPao9BgAmqiAADT6qNac2qjuzAC2qQBQBNaovABqqQSi9v60AHM0iCbpBsifEFtBBO9IM2CwYzUAVNL/BhgG+39IAMqo4w80qPKorie3RgyHNAANu2OcO3CAIPwIG/IGAoCodAwbxawZjBsAYiiYC8dDhQwYAJQB6IAGwQ0Z3AIFEmACE2IMLzX44OKkQiAQBOVTdGEAAVhAanRwGVAkghaoUglyoGoGpqdOnUKNKnUq1qlVEgQAAOw==');
2455 .individual-thread-page a.comment-parent-link:empty::before {
2456 left: unset;
2457 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wAw9QAw9gBj9gB39gB99i8w5y+R9y+R+T8w51eq+V8w51+R9Jeq85eq9ZfY/s/E89fL+dfl/N/E8N/L9N/L9d/4/+fL9OfY9+f4/u/R9e/4/u////fY9ffe9ffe9vfr+/f//////P////9/AAABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAABAuwlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGi0CAcEgsGo/IpHLJbDqf0Kh0Ci1IIFRkgTMaXbLFbbf7BQPEYzIYnVZP2W13lRtvl53wSKgLsqTvSwR0XRMCeyMeAYNeTQ9pFAAEhx+RgyILTAhjGkIDk0IFn00KGxVDnl2UQgcZGAZUqCOqZp2itACxs7S5t7Wpvbi2u4cdwAAMDg0JxszNzs/QZkEAOw==');
2459 .comment-meta .permalink:hover::before {
2460 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6QBW5wBd6wBq6gBq6y8w5y+E7UdW508w509D50996k+k718w51+q71+x71+x8F+38G8w549W55dW55d355ed6pfL9Z++75/L86dd56eq6qex66fR86fY9a9q57+R57/L77/e9b/r+seR58fl+c+d58+k58+36s/L7c/y/8/4/9eq59fl9tf4/9+x59/E6t/e8+e36Oe+6ufL6ufe8Ofy9uf4+ef//+/R6u/e7u////fY6vfe7ffr8ffy9vf////e6//l6//l7P/r7f/y8P/47//48P//8P//8v//8///9f//9v//+f//+v///1X/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84BQgoOEhYaHiImKi4yNjo+Qhk5AQJGLMQcAmh6WhzOaoAAYnYRJE6GaATmkgkSgIzqgLKxQQ6kvRbK0SA6oAAKrrE8lvg20gkYVoQU4x0K+mrOsPdAAL5FMMoNEmb7XUE42QYtKyg+DT1AtmsaDTiEABTyJShSg54PrAO3g8Jryh5YoCwUhHztBT06gMjCv0BEFqAiMU3cQSpMN3hAV6SaBkD5+UFCAWqHICQhQHwzuG1QDFAJGz0AxcAEFhqYIUHZYCEWiEQ1UA0IlQKXhkQ+I1UAFMBGpSYoF1QZkmGjpyQ8VHC5c6CDixrGvYMOKHdspEAA7');
2462 .comment-meta .lw2-link:hover::before {
2463 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6gBD6gBW6gBd6wBq6gBq6wB97S8w5y997Ucw50ed70ek708w50+k7U+q8F8w51+x8G+38Xcw53dD53e38Ye37JdW55fL9ZfR9p/Y9p/e9qdW56dd56dq56d356fe9rdq57ed57fl+b9357/Y8L/y/8eR58+R58/R78/y9s/y/8/4/9eq59fR79fe9df4/9+x59///+e36O/L6u////fY6vfe6vfe6/f////l7P/r7f/y7v/47//48P/4+f/4+v//7///8f//9f//9v//+v///wAAAAAAAAAAwMyACwEAAAAPAAAAAAAAALDBCVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAJDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH2YBHgoOEhYaHiImKi4yNjo+QkZKTlJWWl5FGRkGDRkCaRoOfnZuJRR0AAAU6R0MUqQOsNKkbRz4RqQiIRR6pBKxHKakALEUfqQ1HOcMWu70Av4I3wxpCDrA6MsMnzr7AP7gAEDjDACsi3t3QwEYlqQYj5RcVqRKmz9GCNeX8wyT36QT1WNCvnAAbAFUR4lXuAYhyDBQxTGXihQoYR2YN46AxVQiJz/jF4JFgWIwdwwLMAFmwBREMqQ60egVAwaKJIo+4SDXhiBEUqTJgGkq0qNGjSJMqXcoUUSAAOw==');
2465 .individual-thread-page a.comment-parent-link:empty:hover::before {
2466 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wBD5wBD6i8w50cw50+E6k+k70+q8F8w51+x8G8w529d53cw53e38Idq54ex7oe+8Y9d54/E8Ze+8JfL9aeR6qe+7K/L8t+359/e8N/e8vfe7ffr8ff////r7f/r7v/y7//y8P/47///8P///wABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAAAQwAlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGjECScEgsGo/IpHLJbDqf0Kh0Cg1VLlQkSAEAQLLFbbf7BZPEYzIYnVZP2ePAuAyFt+d17tiC6BYiaXRLInpdFCN9AAcjDIFNGGkSJCKJBpOFAh1MHgNdDUKUXZZnlU4bCxNDoQCjJB8OD1mrrWaTpbWgt7izuLmivba/vSIEXQnAJBwZGsjNzs/Q0bVBADs=');
2468 .comment-meta .permalink:hover::before,
2469 .comment-meta .lw2-link:hover::before,
2470 .individual-thread-page a.comment-parent-link:empty:hover::before {
2471 box-shadow:
2472 0 0 0 2px #00e,
2473 0 0 0 3px transparent;
2474 opacity: 1.0;
2475 filter: unset;
2477 .comment-meta .permalink:active::before,
2478 .comment-meta .lw2-link:active::before,
2479 .individual-thread-page a.comment-parent-link:empty:active::before {
2480 transform: scale(0.9);
2483 .comment-meta .permalink,
2484 .comment-meta .lw2-link,
2485 .individual-thread-page .comment-parent-link:empty {
2486 position: relative;
2487 opacity: 1.0;
2489 .comment-meta .permalink::after,
2490 .comment-meta .lw2-link::after,
2491 .individual-thread-page .comment-parent-link:empty::after {
2492 content: "";
2493 width: 30px;
2494 height: 30px;
2495 display: block;
2496 position: absolute;
2497 top: -2px;
2498 left: -7px;
2499 box-shadow: none;
2500 pointer-events: auto;
2501 visibility: visible;
2504 /*************************/
2505 /* COMMENTS COMPACT VIEW */
2506 /*************************/
2508 #comments-list-mode-selector,
2509 #content.index-page #comments-list-mode-selector,
2510 #content.user-page #comments-list-mode-selector {
2511 padding-top: 6px;
2512 grid-column: 1;
2513 position: unset;
2514 z-index: 1;
2515 justify-self: start;
2516 align-self: start;
2518 #comments-list-mode-selector button {
2519 color: transparent;
2520 width: 32px;
2521 height: 32px;
2522 padding: 6px;
2523 margin: 1px;
2524 overflow: hidden;
2525 background-repeat: no-repeat;
2526 background-size: 100%;
2527 background-origin: content-box;
2529 #comments-list-mode-selector button:disabled {
2530 cursor: auto;
2532 #comments-list-mode-selector button.expanded {
2533 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2535 #comments-list-mode-selector button.compact {
2536 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2538 @media only screen and (max-resolution: 1dppx) {
2539 #comments-list-mode-selector button.expanded {
2540 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2542 #comments-list-mode-selector button.compact {
2543 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2547 #content > ul.comment-thread > li.comment-item,
2548 #content.compact > ul.comment-thread > li.comment-item {
2549 margin: 0;
2552 #content > .comment-thread {
2553 margin: 1em 0;
2555 #content.compact > .comment-thread {
2556 font-size: 0.9375rem;
2557 margin: 0.5em 0;
2559 #content.compact > .comment-thread:hover {
2560 z-index: 1;
2562 #content.compact > .comment-thread .comment-body {
2563 font-size: 1.0625rem;
2565 #content.compact > .comment-thread .comment-item,
2566 #content.index-page .comment-item.ignored,
2567 #content.inbox-user-page .comment-item.ignored {
2568 max-height: 61px;
2569 margin-top: 1em;
2570 overflow: hidden;
2571 position: relative;
2573 #content.compact > .comment-thread .comment-item {
2574 pointer-events: none;
2576 #content.compact > .comment-thread .comment-item::after {
2577 content: "…";
2578 position: absolute;
2579 right: 0;
2580 bottom: 0;
2581 font-size: 2rem;
2582 line-height: 1;
2583 padding: 0 16px 10px 64px;
2584 pointer-events: auto;
2586 @media only screen and (hover: hover) {
2587 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2588 #content.compact > .comment-thread .comment-item.expanded {
2589 overflow: visible;
2590 pointer-events: auto;
2591 z-index: 10;
2594 @media only screen and (hover: none) {
2595 #content.compact > .comment-thread.expanded .comment-item {
2596 overflow: visible;
2597 pointer-events: auto;
2598 z-index: 10;
2601 #content.compact > .comment-thread .comment-item .comment-meta {
2602 white-space: nowrap;
2603 overflow: hidden;
2604 text-overflow: ellipsis;
2605 padding: 2px 10px;
2607 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2608 white-space: unset;
2610 #content.compact > .comment-thread .comment-item .comment-meta a {
2611 pointer-events: auto;
2613 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2614 display: inline;
2616 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2617 margin-left: 0.75em;
2619 @media only screen and (hover: hover) {
2620 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2621 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2622 max-height: unset;
2624 #content.compact > .comment-thread .comment-item:hover .comment,
2625 #content.compact > .comment-thread .comment-item.expanded .comment {
2626 position: relative;
2627 z-index: 1;
2628 margin-bottom: 2em;
2629 bottom: 0;
2631 #content.compact > .comment-thread .comment-item:hover .comment::before,
2632 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2633 content: "";
2634 position: absolute;
2635 display: block;
2636 width: calc(100% + 20px);
2637 height: calc(100% + 20px);
2638 z-index: -1;
2639 top: -10px;
2640 left: -10px;
2642 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2643 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2644 margin: 0;
2647 @media only screen and (hover: none) {
2648 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2649 max-height: unset;
2651 #content.compact > .comment-thread.expanded .comment-item .comment {
2652 position: relative;
2653 z-index: 1;
2654 margin-bottom: 2em;
2655 bottom: 0;
2657 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2658 content: "";
2659 position: absolute;
2660 display: block;
2661 width: calc(100% + 14px);
2662 height: calc(100% + 20px);
2663 z-index: -1;
2664 top: -10px;
2665 left: -10px;
2667 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2668 margin: 0;
2670 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2671 content: "";
2672 display: block;
2673 position: fixed;
2674 top: 0;
2675 left: 0;
2676 width: 100%;
2677 height: 100%;
2678 z-index: -2;
2679 background-color: rgba(0,0,0,0.5);
2683 /*****************************/
2684 /* HIGHLIGHTING NEW COMMENTS */
2685 /*****************************/
2687 .new-comment::before {
2688 content: "";
2689 position: absolute;
2690 width: 100%;
2691 height: 100%;
2692 z-index: 5000;
2693 pointer-events: none;
2696 /***********************************/
2697 /* COMMENT THREAD MINIMIZE BUTTONS */
2698 /***********************************/
2700 .comment-minimize-button {
2701 font-family: "Font Awesome", "Font Awesome 5 Free";
2702 font-weight: 900;
2703 font-size: 1.25rem;
2704 line-height: 1;
2705 position: absolute;
2706 right: 1px;
2707 top: 1px;
2708 width: 18px;
2709 margin: 0;
2710 cursor: pointer;
2712 .comment-minimize-button:active {
2713 transform: scale(0.9);
2715 .comment-minimize-button::after {
2716 content: attr(data-child-count);
2717 font-weight: normal;
2718 font-size: 0.8125rem;
2719 position: absolute;
2720 left: 0;
2721 width: 100%;
2722 text-align: center;
2723 top: 21px;
2725 #content.individual-thread-page .comment-minimize-button {
2726 display: none;
2729 /*****************/
2730 /* IGNORE SYSTEM */
2731 /*****************/
2733 #content.comment-thread-page .comment-item.ignored {
2734 height: 38px;
2735 overflow: hidden;
2737 .comment-item.ignored > .comment > .comment-meta > .author {
2738 text-decoration: line-through;
2741 /***********************************/
2742 /* INDIVIDUAL COMMENT THREAD PAGES */
2743 /***********************************/
2745 .individual-thread-page > h1 {
2746 line-height: 1;
2747 margin: 0.75em 0 3px 0;
2749 .individual-thread-page .comments {
2750 border: none;
2753 /*************/
2754 /* SHORTFORM */
2755 /*************/
2757 .shortform-index-page .comments::before {
2758 border: none;
2759 box-shadow: none;
2762 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2763 margin-top: 0;
2766 /****************/
2767 /* VOTE BUTTONS */
2768 /****************/
2770 .vote {
2771 margin: 0;
2773 .vote {
2774 font-family: "Font Awesome", "Font Awesome 5 Free";
2775 font-weight: 900;
2776 border: none;
2779 .vote:disabled {
2780 visibility: hidden;
2781 cursor: default;
2784 @keyframes waiting {
2785 0% {background-position: 200% 0%}
2786 100% {background-position: 0% 0%}
2789 .voting-controls .karma-value {
2790 opacity: 1;
2791 transition: opacity 0.5s linear;
2794 .voting-controls.waiting .karma-value {
2795 opacity: 0.5;
2796 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2797 background-clip: text;
2798 -webkit-background-clip: text;
2799 color: transparent;
2800 background-position: 200% 0%;
2801 background-size: 200% 100%;
2802 animation: waiting 1s linear infinite;
2805 /* Replicated karma controls at bottom of comments. */
2806 .comment-controls .voting-controls {
2807 float: left;
2808 font-size: 0.9375em;
2811 .comment-controls .voting-controls:first-of-type {
2812 margin-left: -14px;
2815 /*****************************/
2816 /* COMMENTING AND POSTING UI */
2817 /*****************************/
2819 .comment-controls {
2820 text-align: right;
2821 margin: 0 8px 8px 16px;
2822 position: relative;
2823 z-index: 9999;
2825 .comment-thread .comment-controls + .comment-thread > li:first-child {
2826 margin-top: 8px;
2828 .comments > .comment-controls {
2829 margin: 8px 0 0 0;
2831 .comments > .comment-controls:last-child {
2832 margin: 8px 0 16px 0;
2835 .posting-controls input[type='submit'] {
2836 margin: 6px;
2837 padding: 4px 10px;
2838 font-size: 1.125rem;
2841 .comment-controls .cancel-comment-button {
2842 position: absolute;
2843 right: 0;
2844 margin: 0;
2845 height: 27px;
2846 font-size: inherit;
2847 padding: 4px 8px 2px 4px;
2848 z-index: 1;
2850 .comment-controls .cancel-comment-button::before {
2851 font-family: "Font Awesome", "Font Awesome 5 Free";
2852 margin-right: 3px;
2853 content: '\F00D';
2854 font-weight: 900;
2855 font-size: 0.9em;
2856 opacity: 0.7;
2859 .comment + .comment-controls .action-button {
2860 font-weight: normal;
2861 font-size: 1.0625em;
2862 padding: 1px 6px;
2864 .comment-controls .action-button::before {
2865 font-family: "Font Awesome", "Font Awesome 5 Free";
2866 margin-right: 3px;
2868 .new-comment-button {
2869 font-size: 1.5rem;
2870 margin: 0 0.25em;
2872 .comment-controls .reply-button::before {
2873 content: '\F3E5';
2874 font-weight: 900;
2875 font-size: 0.9em;
2876 opacity: 0.6;
2878 .comment-meta .replied::before {
2879 content: '\F3E5';
2880 font-family: "Font Awesome", "Font Awesome 5 Free";
2881 color: #090;
2882 font-weight: 900;
2883 font-size: 0.9em;
2884 opacity: 0.6;
2887 .post-controls {
2888 text-align: right;
2889 margin: 0.75em 0 0 0;
2890 align-self: start;
2891 justify-self: end;
2893 .edit-post-link {
2894 display: inline-block;
2895 margin-bottom: 0.25em;
2896 font-size: 1.125rem;
2898 .edit-post-link::before {
2899 margin-right: 0.3em;
2901 .comment-controls .edit-button::before,
2902 .edit-post-link::before {
2903 content: '\F303';
2904 font-family: "Font Awesome", "Font Awesome 5 Free";
2905 font-weight: 900;
2906 font-size: 0.75em;
2907 position: relative;
2908 top: -1px;
2911 .comment-controls .delete-button {
2912 margin-right: 0.25em;
2914 .comment-controls .edit-button,
2915 .comment-controls .retract-button,
2916 .comment-controls .unretract-button {
2917 margin-right: 1em;
2919 .comment-controls .retract-button::before {
2920 content: '\F4B3';
2921 opacity: 0.6;
2923 .comment-controls .unretract-button::before {
2924 content: '\F075';
2925 opacity: 0.9;
2927 .comment-controls .delete-button::before {
2928 content: '\F05E';
2929 opacity: 0.7;
2931 .comment-controls .retract-button::before,
2932 .comment-controls .unretract-button::before,
2933 .comment-controls .delete-button::before {
2934 font-weight: 900;
2935 font-size: 0.9em;
2938 .comment-controls form {
2939 position: relative;
2941 .textarea-container {
2942 position: relative;
2944 .posting-controls textarea {
2945 display: block;
2946 width: 100%;
2947 height: 15em;
2948 min-height: 15em;
2949 max-height: calc(100vh - 6em);
2950 margin: 2px 0 0 0;
2951 padding: 4px 5px;
2952 font-size: 1.2rem;
2953 border-style: solid;
2954 border-width: 29px 1px 1px 1px;
2955 resize: none;
2958 /* GUIEdit buttons */
2960 .guiedit-buttons-container {
2961 position: absolute;
2962 left: 1px;
2963 top: 1px;
2964 width: calc(100% - 2px);
2965 height: 28px;
2966 text-align: left;
2967 padding: 1px 4px 0 4px;
2968 overflow: hidden;
2970 .comment-thread-page .guiedit-buttons-container {
2971 padding-right: 60px;
2973 .guiedit-buttons-container button {
2974 height: 26px;
2975 padding: 0 7px;
2976 font-weight: 900;
2977 font-size: 0.875rem;
2978 line-height: 1;
2979 position: static;
2981 .guiedit-buttons-container button:active {
2982 transform: none;
2984 .guiedit-buttons-container button:active div {
2985 transform: scale(0.9);
2987 .guiedit-buttons-container button sup {
2988 font-weight: bold;
2990 .guiedit::after {
2991 content: attr(data-tooltip);
2992 position: absolute;
2993 font-weight: normal;
2994 font-size: 1rem;
2995 top: 2px;
2996 left: 464px;
2997 height: 25px;
2998 padding: 4px 0;
2999 white-space: nowrap;
3000 visibility: hidden;
3002 .guiedit:hover::after {
3003 visibility: visible;
3006 /* Markdown hints */
3008 .posting-controls .markdown-reference-link {
3009 float: left;
3010 padding: 1px 0 0 6px;
3012 .posting-controls .markdown-reference-link a {
3013 padding-right: 1.5em;
3014 margin-right: 0.15em;
3015 background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAQAAABNTyozAAAEDklEQVR4Ae3cY3QDjRaG0V1e27Zt27Zt27Ztf7Zt27Zt10jOdZtZzbSN2q41533+tsFO4zRi0TKRJVACJdDiJVACJVACJVACZQmUQAmUQAmUQAmUQFkCJVACJVACJVACJVDWuD7P8icnGRcVbdyJ/uRZ+jTZYxwq/lN2qMcozvtMibmySe/TsPeqi0JZ3XsAHm1SZAua9CjgoMQo6UB4uiim5gbXV7Ab1EQxT+P3RRw/dHtV3e39UL3g8XuOEw39QNX3g4LHcYwU/n5uo+q7beGKNqLwJ3U1cteKuepEQ1cid03BJIESKIESKIESKIESaIkl0I3dv7Q7a293c//ShrWym7l/abdbGaCnidJGPFzre6opUdqDtLJXitJ+svpA4Uy30dru6hJRHaCws37L37CDRbWAwvctf38S1QOqe43l7f2iikDheg+x9J5ksqpA4TS3svju5CJRXaCwvX7lG3KAqDZQ+Jby/U4kUM0rNN+7hAQSrvNAC/c4Ewn0/052C8Xd0fkigebbRp/5DdpHJFCxr5nfr4QEUqzmJYC3iQRq1jXuj8cYT6CyTnAv54oEKm9EJFBnJVAC7eoS0XJn2r8qQP/wNFOipUY8wvbVAeIjooXq3ki1gPhHC0A/oWWgQZ/37ZI2FaUdVPpb33LHlQS6scPFstrDQBtAvEpNdLEfsZJA3N3lYsnOcTvaAuKzomttqW+lgXimabFoYx5N20D8SXSlw9yElQfiE0J5dW+lI6BBu4uOO8+dWB0g1hel/YIOgbiVE0VHXefhrB7QTRwtmra3gS4AcW+Xibab8SJWE4h7uaLpn/Ud6AoQTzIu2uzDrDYQzzUjCo17HF0D4g3qoo1+yWoCld8hv5OuAvFl0XLb6V8rQGws5votXQfqs45oqaPdjLUDdNO5f7Xa32APgBhu6b2SC92VtQTEfVwlXOhO9ASI2zhNLKsRj2atAfFCo55Iz4C4nyvFks16OWsRiPvQUyCeblIs0adYq0B6DsTb1EV5fk+1gfiWKG0XAwnUZyPRtOPdggTiRg4UC7rEPUkg4PbOFIXGPIEEmt+DCmeu5rUkUHHPaXj76Qsk0MK9R/ynv5FAzfdDYS9Da+n/xe6ovd2lS/8vVlyfH7o1vQLKJVACJVACJVACJVACIYGW/A6z/A6zG8RcNbdT9d1eTcx1A8eKhn6s6vtxweNYfisaqvupu+jXV8H63cXP1Asev+Wpopi6aVMVbFpdFPMUlP6jdrY/8AgTYkHZhEcAvFNdFMpq3qFh78y/okIT3qk4j8zborn290hN91S/c6zrzapVsFnXO9bvPFXjYtEykSVQAnVUAiVQAiVQAiVQAiVQlkAJlEAJlEAJlEAJlCVQAiVQAiVQAiVQAmX/BMHb3CdNrgcrAAAAAElFTkSuQmCC');
3016 background-size: 1.25em;
3017 background-repeat: no-repeat;
3018 background-position: right center;
3021 #markdown-hints-checkbox + label {
3022 float: left;
3023 margin: 2px 0 0 1em;
3024 line-height: 1.3;
3025 cursor: pointer;
3027 #edit-post-form #markdown-hints-checkbox + label {
3028 padding: 0;
3030 #markdown-hints-checkbox {
3031 visibility: hidden;
3032 float: left;
3034 #markdown-hints-checkbox + label::after {
3035 content: "(Show Markdown help)";
3037 #markdown-hints-checkbox:checked + label::after {
3038 content: "(Hide Markdown help)";
3040 #markdown-hints-checkbox + label::before {
3041 content: '\F059';
3042 font-family: "Font Awesome", "Font Awesome 5 Free";
3043 font-weight: 900;
3044 margin-right: 3px;
3046 #markdown-hints-checkbox:checked + label::before {
3047 font-weight: normal;
3049 #markdown-hints {
3050 margin: 4px 0 0 4px;
3051 padding: 4px 8px;
3052 position: absolute;
3053 text-align: left;
3054 top: calc(100% - 1em);
3055 z-index: 1;
3056 display: none;
3058 .comment-controls #markdown-hints {
3059 top: calc(100% + 1.75em);
3061 #markdown-hints-checkbox:checked ~ #markdown-hints {
3062 display: table;
3064 .markdown-hints-row {
3065 display: table-row;
3067 #markdown-hints .markdown-hints-row span,
3068 #markdown-hints .markdown-hints-row code {
3069 float: none;
3070 display: table-cell;
3071 border: none;
3072 background-color: inherit;
3073 padding: 0 12px 0 0;
3076 /******************/
3077 /* EDIT POST FORM */
3078 /******************/
3080 #edit-post-form {
3081 padding: 1em 1em 4em 1em;
3083 #edit-post-form .post-meta-fields {
3084 display: grid;
3085 grid-template-columns: 5em auto auto auto 1fr auto;
3086 margin-bottom: 0.625em;
3089 #edit-post-form label[for='title'],
3090 #edit-post-form label[for='url'],
3091 #edit-post-form label[for='section'] {
3092 grid-column: 1;
3094 #edit-post-form input[type='text'] {
3095 padding: 0.25em;
3096 grid-column: 2 / span 4;
3097 margin-bottom: 0.5em;
3100 #edit-post-form .link-post-checkbox,
3101 #edit-post-form .link-post-checkbox + label {
3102 grid-row: 1;
3103 grid-column: 6;
3105 #edit-post-form .question-checkbox,
3106 #edit-post-form .question-checkbox + label {
3107 grid-row: 3;
3108 grid-column: 5;
3109 justify-self: start;
3110 margin-left: 1.5em;
3113 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3114 grid-row: 4;
3115 grid-column: 2 / span 4;
3116 text-align: left;
3117 margin-top: 8px;
3120 #edit-post-form .post-meta-fields input[type='checkbox'] {
3121 height: 0;
3122 opacity: 0;
3123 pointer-events: none;
3125 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3126 white-space: nowrap;
3127 position: relative;
3128 cursor: pointer;
3129 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3130 align-self: start;
3132 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3133 content: "";
3134 font-family: "Font Awesome", "Font Awesome 5 Free";
3135 font-size: 1.375rem;
3136 line-height: 0.7;
3137 text-indent: 1px;
3138 font-weight: 900;
3139 position: absolute;
3140 width: 20px;
3141 height: 20px;
3142 left: 5px;
3144 #edit-post-form label[for='url'],
3145 #edit-post-form input[name='url'] {
3146 display: none;
3148 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3149 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3150 display: initial;
3152 #edit-post-form label {
3153 line-height: normal;
3154 border: 1px solid transparent;
3155 text-align: right;
3156 padding: 0.25em 0.5em;
3157 white-space: nowrap;
3159 #edit-post-form input[type='radio'] {
3160 width: 0;
3161 margin: 0;
3162 opacity: 0;
3163 pointer-events: none;
3165 #edit-post-form input[type='radio'] + label {
3166 padding: 4px 12px;
3167 text-align: center;
3168 border-style: solid;
3169 border-width: 1px 1px 1px 0;
3170 cursor: pointer;
3172 #edit-post-form input[type='radio']:checked + label {
3173 cursor: default;
3176 #edit-post-form label[for='section'] {
3177 grid-row: 3;
3179 #edit-post-form input[type='radio'] + label {
3180 grid-row: 3;
3182 @supports (width: -moz-fit-content) {
3183 #edit-post-form input[type='radio'] + label {
3184 width: -moz-fit-content;
3187 @supports (width: fit-content) {
3188 #edit-post-form input[type='radio'] + label {
3189 width: fit-content;
3193 #edit-post-form textarea {
3194 min-height: 24em;
3197 #edit-post-form input[type='submit'] {
3198 padding: 6px 12px;
3199 float: right;
3201 #edit-post-form #markdown-hints {
3202 top: calc(100% + 2em);
3205 #edit-post-form button.guiedit div {
3206 overflow: visible;
3208 .guiedit-mobile-auxiliary-button {
3209 display: none;
3212 /***********/
3213 /* BUTTONS */
3214 /***********/
3216 button,
3217 input[type='submit'] {
3218 font-family: inherit;
3219 font-size: inherit;
3220 background-color: inherit;
3221 cursor: pointer;
3222 border: none;
3223 border-radius: 0;
3226 /************/
3227 /* HEADINGS */
3228 /************/
3230 .body-text h1,
3231 .body-text h2,
3232 .body-text h3,
3233 .body-text h4,
3234 .body-text h5,
3235 .body-text h6 {
3236 line-height: 1.1;
3237 margin: 1em 0 0.75em 0;
3238 text-align: left;
3241 .post-body h5,
3242 .post-body h6 {
3243 font-size: 1em;
3245 .post-body h4,
3246 .body-text h4 {
3247 font-size: 1.2em;
3249 .post-body h3,
3250 .body-text h3 {
3251 font-size: 1.4em;
3253 .post-body h2,
3254 .body-text h2 {
3255 font-size: 1.75em;
3257 .post-body h1,
3258 .body-text h1 {
3259 font-size: 2.1em;
3262 .comment-body h5,
3263 .comment-body h6 {
3264 font-size: 1em;
3266 .comment-body h4 {
3267 font-size: 1.15em;
3269 .comment-body h3 {
3270 font-size: 1.3em;
3272 .comment-body h2 {
3273 font-size: 1.5em;
3275 .comment-body h1 {
3276 font-size: 1.75em;
3279 /**********/
3280 /* QUOTES */
3281 /**********/
3283 blockquote,
3284 .post-body .comment-box .comment-body {
3285 font-size: 0.9em;
3286 margin: 1em 0;
3287 padding-left: 0.5em;
3288 margin-left: 1px;
3289 padding-bottom: 3px;
3291 blockquote *:first-child {
3292 margin-top: 0;
3294 blockquote *:last-child {
3295 margin-bottom: 0;
3297 blockquote blockquote {
3298 font-size: 0.95em;
3301 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3303 .post-body .comment-box .user-name {
3304 font-style: italic;
3306 .post-body .comment-box .user-name::after {
3307 content: ":";
3309 .post-body .comment-box {
3310 zoom: 1.25;
3313 /**********/
3314 /* IMAGES */
3315 /**********/
3317 #content img, #content figure {
3318 max-width: 100%;
3321 .prediction-poll > svg {
3322 width: 700px;
3323 max-width: 100%;
3326 img.inline-latex {
3327 position: relative;
3328 top: 2.5px;
3329 margin: 0 2px;
3332 #content figure {
3333 text-align: center;
3334 margin: 1.5em auto;
3337 p.imgonly,
3338 div.imgonly,
3339 figure {
3340 text-align: center;
3341 margin: auto;
3342 clear: both;
3345 .imgonly iframe {
3346 display: block;
3347 width: 100%;
3348 height: 250px;
3349 border: 0;
3352 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3354 [style*="--aspect-ratio"] > * {
3355 width: 100%;
3357 [style*="--aspect-ratio"] > img {
3358 height: auto;
3360 @supports (--custom:property) {
3361 [style*="--aspect-ratio"] {
3362 position: relative;
3364 [style*="--aspect-ratio"]::before {
3365 content: "";
3366 display: block;
3367 padding-bottom: calc(100% / (var(--aspect-ratio)));
3369 [style*="--aspect-ratio"] > * {
3370 position: absolute;
3371 top: 0;
3372 left: 0;
3373 height: 100%;
3377 /**********/
3378 /* TABLES */
3379 /**********/
3381 .body-text table {
3382 border-collapse: collapse;
3383 font-size: 0.875em;
3385 .body-text table th,
3386 .body-text table td {
3387 text-align: left;
3388 padding: 4px 6px;
3389 line-height: 1.3;
3391 .body-text table .numeric {
3392 text-align: right;
3393 font-family: Inconsolata, Menlo, monospace;
3395 .body-text table caption {
3396 margin: 0 0 0.25em 0;
3397 font-weight: bold;
3398 font-size: 1.125em;
3401 /********/
3402 /* MISC */
3403 /********/
3405 /*= Superscripts & subscripts =*/
3407 /* Make sure superscripts and subscripts do not affect line spacing. */
3408 sup, sub {
3409 vertical-align: baseline;
3410 position: relative;
3411 top: -0.5em;
3412 left: 0.05em;
3413 font-size: 0.8em;
3415 sub {
3416 top: 0.3em;
3419 /*= Code blocks & other "unstyled" text. =*/
3421 pre,
3422 code {
3423 font-family: Inconsolata, Menlo, monospace;
3425 pre {
3426 white-space: pre-wrap;
3428 .body-text pre {
3429 text-align: left;
3431 code {
3432 font-size: 0.95em;
3433 display: inline-block;
3434 padding: 0 4px 1px 5px;
3436 pre > code {
3437 display: block;
3438 border-radius: 0;
3439 padding: 3px 4px 5px 8px;
3440 tab-size: 4;
3443 /*= Fractions =*/
3445 .frac::after {
3446 content: "\200B";
3449 /*= Removing browser default styling of various elements =*/
3451 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3452 :focus {
3453 outline: none;
3456 /* Remove "embossed" appearance of horizontal rules. */
3457 hr {
3458 border: none;
3461 input,
3462 button,
3463 textarea {
3464 -webkit-appearance: none;
3465 -moz-appearance: none;
3466 appearance: none;
3469 input {
3470 font-family: inherit;
3471 font-size: inherit;
3472 font-weight: inherit;
3475 /*************/
3476 /* FOOTNOTES */
3477 /*************/
3479 ol {
3480 counter-reset: ordered-list;
3482 .footnote-definition {
3483 font-size: 0.9em;
3484 list-style-type: none;
3485 counter-increment: ordered-list;
3486 position: relative;
3488 .footnote-definition p {
3489 font-size: inherit !important;
3491 .footnote-definition::before {
3492 content: counter(ordered-list) ".";
3493 position: absolute;
3494 left: -2.5em;
3495 font-weight: bold;
3496 text-align: right;
3497 width: 2em;
3500 /*= LW Docs footnotes =*/
3502 .footnote-item {
3503 display: flex;
3506 .footnote-item > :not(.nothing) {
3507 margin: 0 0.2em;
3510 .footnote-item > :first-child {
3511 margin-left: -0.2em;
3512 margin-right: 0;
3515 .footnote-back-link a:not(.nothing) {
3516 font-size: 0;
3517 text-decoration: none;
3518 border: none;
3521 .footnote-back-link a:not(.nothing):hover {
3522 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3523 border: none;
3524 text-decoration: none;
3527 .footnote-back-link a::after {
3528 content: '\F106';
3529 font-family: Font Awesome;
3530 font-size: 1rem;
3531 padding: 0.2em;
3532 text-decoration: none;
3533 font-weight: bold;
3536 .footnote-content > :first-child {
3537 margin-top: 0;
3540 /*********/
3541 /* LISTS */
3542 /*********/
3544 li {
3545 margin-bottom: 0.5em;
3548 .body-text ol p,
3549 .body-text ul p {
3550 margin: 0.5em 0;
3553 .body-text ol {
3554 list-style: none;
3555 padding: 0;
3556 counter-reset: ol;
3558 .body-text ol > li {
3559 position: relative;
3560 counter-increment: ol;
3561 padding: 0 0 0 2.5em;
3562 margin: 0.25em 0 0 0;
3564 .body-text ol > li::before {
3565 content: counter(ol) ".";
3566 position: absolute;
3567 width: 2em;
3568 text-align: right;
3569 left: 0;
3571 .body-text ul {
3572 list-style: none;
3573 padding: 0;
3575 .body-text ul:not(.contents-list) > li:empty {
3576 padding-bottom: 1.25em;
3578 .body-text ul:not(.contents-list) > li {
3579 position: relative;
3580 padding: 0 0 0 1.75em;
3581 margin: 0.25em 0 0 0;
3583 .body-text ul:not(.contents-list) > li ul > li {
3584 padding: 0 0 0 2em;
3586 .body-text ul:not(.contents-list) > li::before {
3587 content: "•";
3588 position: absolute;
3589 width: 1.25em;
3590 text-align: right;
3591 left: 0;
3593 .body-text ul:not(.contents-list) > li ul > li::before {
3594 width: 1.5em;
3596 .body-text li > ul:first-child > li {
3597 padding-left: 0;
3599 .body-text li > ul:first-child > li::before {
3600 content: none;
3603 /**************/
3604 /* ERROR PAGE */
3605 /**************/
3607 .error-retry-form {
3608 margin: 0.5em 0;
3611 .error-retry-form input[type="submit"] {
3612 border: 1px solid #aaa;
3613 font-weight: bold;
3614 font-size: 1.125rem;
3615 padding: 0.5em 1.25em;
3618 /**************/
3619 /* ABOUT PAGE */
3620 /**************/
3622 #content.about-page .contents {
3623 margin-top: 0.25em;
3625 #content.about-page .accesskey-table {
3626 border-collapse: collapse;
3627 margin: auto;
3629 #content.about-page .accesskey-table th,
3630 #content.about-page .accesskey-table td {
3631 padding: 2px 6px;
3633 #content.about-page .accesskey-table td:first-child {
3634 padding-right: 1.5em;
3636 #content.about-page .accesskey-table td:last-child {
3637 text-align: center;
3638 font-family: Inconsolata, Menlo, monospace;
3640 #content.about-page h3:nth-of-type(n+2) {
3641 clear: both;
3644 /******************/
3645 /* IMAGES OVERLAY */
3646 /******************/
3648 #images-overlay + #content .post-body img {
3649 visibility: hidden;
3652 #images-overlay div {
3653 position: absolute;
3655 #images-overlay div::after {
3656 content: "Click to enlarge";
3657 display: block;
3658 position: absolute;
3659 margin: auto;
3660 left: 0;
3661 right: 0;
3662 bottom: 10px;
3663 padding: 6px 10px;
3664 font-size: 1.25rem;
3665 background-color: rgba(0,0,0,0.6);
3666 color: #fff;
3667 border-radius: 5px;
3668 opacity: 0.0;
3669 transition: opacity 0.15s ease;
3670 pointer-events: none;
3672 @supports (width: -moz-fit-content) {
3673 #images-overlay div::after {
3674 width: -moz-fit-content;
3677 @supports (width: fit-content) {
3678 #images-overlay div::after {
3679 width: fit-content;
3682 #images-overlay div:hover::after {
3683 opacity: 1.0;
3686 #images-overlay img {
3687 width: 100%;
3690 /***************/
3691 /* IMAGE FOCUS */
3692 /***************/
3694 /*=--------------=*/
3695 /*= Hover styles =*/
3696 /*=--------------=*/
3698 #content img:hover,
3699 #images-overlay img:hover {
3700 filter: drop-shadow(0 0 3px #777);
3701 cursor: zoom-in;
3703 #content img:active,
3704 #images-overlay img:active {
3705 transform: scale(0.975);
3708 /*=---------=*/
3709 /*= Overlay =*/
3710 /*=---------=*/
3712 #image-focus-overlay {
3713 position: fixed;
3714 top: 0;
3715 right: 0;
3716 bottom: 0;
3717 left: 0;
3718 z-index: 2;
3719 display: none;
3720 cursor: zoom-out;
3722 #image-focus-overlay::before {
3723 content: "";
3724 display: block;
3725 position: absolute;
3726 top: 0;
3727 right: 0;
3728 bottom: 0;
3729 left: 0;
3730 background-color: #000;
3731 opacity: 0.5;
3732 z-index: -1;
3734 #image-focus-overlay.engaged {
3735 display: initial;
3738 #image-focus-overlay img {
3739 margin: auto;
3740 position: absolute;
3741 left: 50%;
3742 top: 50%;
3743 transform: translateX(-50%) translateY(-50%);
3746 /*=-------------------=*/
3747 /*= Single-image mode =*/
3748 /*=-------------------=*/
3750 #image-focus-overlay:not(.slideshow) .image-number,
3751 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3752 visibility: hidden;
3755 /*=---------=*/
3756 /*= Caption =*/
3757 /*=---------=*/
3759 #image-focus-overlay .caption {
3760 position: absolute;
3761 bottom: 0.75em;
3762 background-color: rgba(0,0,0,0.7);
3763 left: 9em;
3764 right: 9em;
3765 margin: auto;
3766 max-width: calc(100% - 18em);
3767 text-align: center;
3768 font-size: 1.375em;
3769 border-radius: 8px;
3770 z-index: 1;
3771 transition:
3772 bottom 0.2s ease;
3774 @supports (width: -moz-fit-content) {
3775 #image-focus-overlay .caption {
3776 width: -moz-fit-content;
3779 @supports (width: fit-content) {
3780 #image-focus-overlay .caption {
3781 width: fit-content;
3784 #image-focus-overlay .caption.hidden {
3785 bottom: -5em;
3786 transition:
3787 bottom 0.5s ease;
3790 #image-focus-overlay .caption p {
3791 margin: 1em 1.25em;
3792 color: #fff;
3795 #image-focus-overlay .caption:not(:empty)::before {
3796 content: "";
3797 display: block;
3798 position: absolute;
3799 width: 100vw;
3800 height: calc(100% + 1.5em);
3801 z-index: -1;
3802 top: -0.75em;
3803 left: calc(-50vw + 50%);
3807 /*=--------------=*/
3808 /*= Help overlay =*/
3809 /*=--------------=*/
3811 #image-focus-overlay .help-overlay {
3812 position: absolute;
3813 display: flex;
3814 flex-flow: column;
3815 z-index: 2;
3816 font-size: 1.5rem;
3817 padding: 1em;
3818 border-radius: 10px;
3819 bottom: 1em;
3820 right: 1em;
3821 overflow: hidden;
3822 white-space: nowrap;
3823 color: transparent;
3824 cursor: default;
3825 visibility: hidden;
3826 transition:
3827 visibility 1s ease,
3828 color 1s ease,
3829 background-color 1s ease,
3830 bottom 0.3s ease;
3832 #image-focus-overlay .help-overlay:hover {
3833 max-width: 24em;
3834 max-height: 14em;
3835 background-color: rgba(0,0,0,0.85);
3836 color: #fff;
3837 visibility: visible;
3838 transition:
3839 visibility 0.2s ease 0.3s,
3840 color 0.2s ease 0.3s,
3841 background-color 0.2s ease 0.3s;
3844 #image-focus-overlay .help-overlay::after {
3845 content: "\F128";
3846 font-family: "Font Awesome", "Font Awesome 5 Free";
3847 font-weight: 900;
3848 font-size: 2rem;
3849 position: absolute;
3850 right: 0;
3851 bottom: 0;
3852 padding: 10px;
3853 color: #000;
3854 filter: drop-shadow(0 0 6px #fff);
3855 visibility: visible;
3856 opacity: 0.85;
3857 transition:
3858 visibility 1s ease;
3860 #image-focus-overlay .help-overlay:hover::after {
3861 visibility: hidden;
3862 transition:
3863 visibility 0.2s ease 0.3s;
3866 #image-focus-overlay .help-overlay p {
3867 margin: 0;
3868 text-indent: -2em;
3869 padding-left: 2em;
3870 max-width: 100%;
3871 overflow: hidden;
3873 #image-focus-overlay .help-overlay p + p {
3874 margin: 0.75em 0 0 0;
3876 #image-focus-overlay .help-overlay.hidden {
3877 bottom: -2em;
3880 /*=--------------=*/
3881 /*= Slide number =*/
3882 /*=--------------=*/
3884 #image-focus-overlay .image-number {
3885 position: absolute;
3886 z-index: 2;
3887 font-size: 1.75rem;
3888 left: 1em;
3889 bottom: 1em;
3890 font-weight: 600;
3891 text-shadow:
3892 0 0 3px #fff,
3893 0 0 5px #fff,
3894 0 0 8px #fff,
3895 0 0 13px #fff;
3896 width: 1.5em;
3897 text-align: right;
3898 white-space: nowrap;
3899 transition: bottom 0.3s ease;
3901 #image-focus-overlay .image-number::before {
3902 content: "#";
3903 opacity: 0.3;
3905 #image-focus-overlay .image-number::after {
3906 content: " of " attr(data-number-of-images);
3907 opacity: 0.3;
3909 #image-focus-overlay .image-number:hover::before,
3910 #image-focus-overlay .image-number:hover::after {
3911 opacity: 1.0;
3913 #image-focus-overlay .image-number.hidden {
3914 bottom: -1.25em;
3917 /*=-------------------=*/
3918 /*= Slideshow buttons =*/
3919 /*=-------------------=*/
3921 #image-focus-overlay .slideshow-buttons {
3922 position: absolute;
3923 top: 0;
3924 left: 0;
3925 width: 100%;
3926 height: 100%;
3927 z-index: 1;
3928 display: flex;
3929 justify-content: space-between;
3930 pointer-events: none;
3932 #image-focus-overlay .slideshow-buttons button {
3933 font-family: "Font Awesome", "Font Awesome 5 Free";
3934 font-weight: 900;
3935 font-size: 3rem;
3936 padding: 0.5em;
3937 color: #ddd;
3938 position: relative;
3939 left: 0;
3940 transition:
3941 left 0.3s ease;
3942 pointer-events: auto;
3944 #image-focus-overlay .slideshow-buttons button::selection {
3945 background-color: transparent;
3947 @media only screen and (hover: hover) {
3948 #image-focus-overlay .slideshow-buttons button:hover {
3949 background-color: rgba(0,0,0,0.1);
3950 color: #777;
3953 #image-focus-overlay .slideshow-buttons button:active {
3954 transform: none;
3955 color: #888;
3957 #image-focus-overlay .slideshow-buttons button:disabled {
3958 text-shadow: none;
3959 background-color: transparent;
3960 color: #ddd;
3961 cursor: default;
3962 opacity: 0.4;
3964 #image-focus-overlay .slideshow-button.previous.hidden {
3965 left: -1.75em;
3967 #image-focus-overlay .slideshow-button.next.hidden {
3968 left: 1.75em;
3971 /*=-----------------=*/
3972 /*= Background blur =*/
3973 /*=-----------------=*/
3975 .blurred {
3976 filter: blur(3px);
3979 /**************************/
3980 /* QUALIFIED HYPERLINKING */
3981 /**************************/
3983 #content.no-nav-bars {
3984 margin: 8px auto;
3986 #content.no-nav-bars + #ui-elements-container > * {
3987 padding-top: 8px;
3990 #aux-about-link {
3991 position: fixed;
3992 top: 40px;
3993 left: calc((100% - 900px) / 2 - 69px);
3994 width: 1.5em;
3995 height: 1.5em;
3996 text-align: center;
3997 display: table;
3999 #aux-about-link a {
4000 display: table-cell;
4001 width: 100%;
4002 vertical-align: middle;
4003 font-family: "Font Awesome", "Font Awesome 5 Free";
4004 font-weight: 900;
4005 font-size: 1.25rem;
4006 opacity: 0.4;
4007 z-index: 1;
4010 .qualified-linking {
4011 margin: 0;
4012 position: relative;
4014 .qualified-linking input[type='checkbox'] {
4015 visibility: hidden;
4016 width: 0;
4017 height: 0;
4018 margin: 0;
4020 .qualified-linking label {
4021 font-family: "Font Awesome", "Font Awesome 5 Free";
4022 font-weight: 900;
4023 font-size: 1rem;
4024 padding: 0 0.5em;
4025 display: inline-block;
4026 margin-left: 0.25em;
4028 .qualified-linking label:hover {
4029 cursor: pointer;
4031 .qualified-linking label:active span {
4032 display: inline-block;
4033 transform: scale(0.9);
4035 .qualified-linking label::selection {
4036 background-color: transparent;
4039 .qualified-linking label::after {
4040 content: "";
4041 width: 100vw;
4042 height: 0;
4043 left: 0;
4044 top: 0;
4045 position: fixed;
4046 z-index: 1;
4047 cursor: default;
4049 .qualified-linking input[type='checkbox']:checked + label::after {
4050 height: 100vh;
4053 .qualified-linking-toolbar {
4054 position: absolute;
4055 right: 0.25em;
4056 top: 110%;
4057 z-index: 1;
4059 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4060 display: none;
4062 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4063 display: block;
4065 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4066 top: unset;
4067 bottom: 125%;
4070 .qualified-linking-toolbar a {
4071 display: block;
4072 padding: 0 6px;
4073 margin: 4px;
4075 .qualified-linking-toolbar a::selection {
4076 background-color: transparent;
4079 /*****************/
4080 /* HOVER PREVIEW */
4081 /*****************/
4083 #preview-popup-toggle {
4084 position: absolute;
4085 right: -67px;
4086 bottom: 285px;
4087 cursor: pointer;
4088 color: var(--GW-toggle-widget-color, #888);
4090 #preview-popup-toggle:hover {
4091 color: var(--GW-toggle-widget-hover-color, #444);
4094 #content.preview:not(not) {
4095 padding: 0;
4097 #content.preview > .comment-thread {
4098 margin: 2px;
4100 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4101 border: none;
4103 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4104 padding: 0 8px;
4106 #content.preview.user-page .page-main-heading {
4107 margin-left: 8px;
4109 #content.preview.not(not) .body-text {
4110 margin-left: 8px;
4111 margin-right: 8px;
4113 #content.preview.user-page .user-stats {
4114 margin-right: 32px;
4116 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4117 display: none;
4119 #content.preview button.vote {
4120 display: none;
4122 #content.preview > h1.listing {
4123 max-height: unset;
4125 #content.preview.user-page > .comment-thread {
4126 margin: 0.5em 0;
4128 #content.preview > .post {
4129 margin: 0 18px;
4131 #content.preview .post-title {
4132 margin-top: 0.5em;
4134 #content.preview .post-meta {
4135 line-height: 1.0;
4137 #content.preview .body-text {
4138 font-size: 1em;
4140 #content.preview nav.contents,
4141 #content.preview .lw2-link {
4142 display: none;
4145 .preview-popup {
4146 position: fixed;
4147 transform-origin: top;
4148 top: 10%;
4149 right: 10%;
4150 max-width: 700px;
4151 z-index: 10001;
4152 background-color: #eee;
4153 border: 1px solid #ccc;
4154 box-shadow: 2px 6px 20px -4px #000;
4155 transition: height 0.2s ease, top 0.2s ease;
4157 .popup-hide-button {
4158 position: fixed;
4159 top: 4px;
4160 right: 4px;
4161 color: #000;
4162 background-color: #fff;
4163 width: 28px;
4164 height: 28px;
4165 display: flex;
4166 font-family: "Font Awesome";
4167 font-size: 14px;
4168 line-height: 1;
4169 border: 1px solid #bbb;
4170 border-radius: 28px;
4171 align-items: center;
4172 justify-content: center;
4173 //padding-bottom: 2px;
4174 padding-left: 1.5px;
4175 font-family: "Font Awesome", "Font Awesome 5 Free";
4176 cursor: pointer;
4178 .popup-hide-button:hover::before {
4179 content: "Turn off preview popups";
4180 display: block;
4181 position: absolute;
4182 width: max-content;
4183 right: 32px;
4184 color #000;
4185 background-color: #fff;
4186 border: 1px solid #eee;
4187 border-radius: 2px;
4188 padding: 4px;
4191 /********/
4192 /* MATH */
4193 /********/
4195 .mathjax-block-container {
4196 display: block;
4197 overflow-y: hidden;
4198 border-radius: 6px;
4199 margin: 1em 0 1.5em 0;
4201 .mathjax-inline-container {
4202 max-width: 100%;
4203 overflow-x: auto;
4204 overflow-y: hidden;
4205 position: relative;
4206 padding: 0 1px;
4208 #content .mathjax-inline-container,
4209 #content .mathjax-inline-container .mjpage,
4210 #content .mathjax-inline-container .mjx-chtml,
4211 #content .mathjax-inline-container .mjx-math,
4212 #content .mathjax-inline-container .mjx-mrow {
4213 display: inline;
4214 white-space: normal;
4216 .post .mathjax-inline-container {
4217 line-height: 1;
4219 .comment .mathjax-inline-container {
4220 line-height: 1;
4222 .mathjax-inline-container .mjx-chtml {
4223 padding: 0;
4226 /************/
4227 /* SPOILERS */
4228 /************/
4230 .spoiler {
4231 color: #000;
4232 background-color: currentColor;
4233 transition: none;
4234 text-shadow: none;
4235 margin: 1em 0;
4236 box-shadow: 0 0 0 1px currentColor inset;
4237 overflow: auto;
4239 .spoiler:not(:last-child) {
4240 margin-bottom: 0;
4242 #content .spoiler * {
4243 color: inherit;
4244 border: none;
4246 .spoiler:hover {
4247 color: unset;
4248 background-color: unset;
4249 text-shadow: unset;
4250 transition:
4251 color 0.1s ease-out 0.1s,
4252 background-color 0.1s ease-out 0.1s,
4253 text-shadow 0.1s ease-out 0.1s;
4255 .spoiler::selection,
4256 .spoiler ::selection {
4257 color: #fff;
4258 background-color: #000;
4260 .spoiler:not(:hover)::selection,
4261 .spoiler:not(:hover) ::selection {
4262 background-color: transparent;
4265 /*= Fix for LessWrong being weird =*/
4267 .spoiler > p {
4268 padding: 0 7px;
4270 .spoiler > p:first-child {
4271 margin-top: 0.25em;
4273 .spoiler > p:last-child {
4274 margin-bottom: 0;
4275 padding-bottom: 0.25em;
4277 .spoiler > p:hover ~ p {
4278 background-color: currentColor;
4280 .spoiler > p + p {
4281 margin-top: -1em;
4283 .spoiler > p:not(:first-child) {
4284 padding-top: 0.5em;
4286 .spoiler > p:not(:last-child) {
4287 padding-bottom: 0.5em;
4290 .spoiler:not(:hover) pre,
4291 .spoiler:not(:hover) code {
4292 background-color: inherit;
4293 box-shadow: none;
4295 #content .spoiler pre {
4296 border-color: currentColor;
4297 border-style: solid;
4298 border-width: 0 1px;
4299 border-radius: 0;
4302 /*******************/
4303 /* PAGE LIST INDEX */
4304 /*******************/
4306 .page-list-index {
4307 margin: 1em 30px;
4308 line-height: 1.2;
4311 .page-list-index > p {
4312 font-weight: bold;
4313 font-size: 1.2em;
4316 .page-list-index > ul * {
4317 margin: 0;
4320 .page-list-index ul {
4321 padding-left: 1.5em;
4324 .page-list-index li {
4325 margin-top: 0.67em;
4328 .page-list-index li > a {
4329 display: block;
4330 font-size: 1.1em;
4331 font-weight: bold;
4332 margin: 0.33em 0;
4335 .page-list-index li > a:last-child {
4336 margin-bottom: 1em;
4340 /*****************/
4341 /* USER MENTIONS */
4342 /*****************/
4344 .textarea-container .autocomplete-container {
4345 position: absolute;
4346 overflow-y: auto;
4347 font-size: 1.125rem;
4348 cursor: default;
4349 backdrop-filter: blur(2px);
4350 width: 360px;
4352 .textarea-container .autocomplete-container:empty {
4353 display: none;
4356 @media only screen and (min-width: 521px) {
4357 .textarea-container .autocomplete-container.inside {
4358 max-height: calc(100% - 36px);
4359 top: 32px;
4361 .textarea-container .autocomplete-container.outside {
4362 max-height: calc(100% - 28px);
4363 top: 28px;
4364 z-index: 10001;
4367 .textarea-container .autocomplete-container.inside.right {
4368 right: 18px;
4370 .textarea-container .autocomplete-container.inside.left {
4371 left: 18px;
4373 .textarea-container .autocomplete-container.outside.right {
4374 left: calc(100% + 3px);
4376 .textarea-container .autocomplete-container.outside.left {
4377 right: calc(100% + 3px);
4380 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4381 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4383 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4384 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4386 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4387 max-width: calc((300px + 40px * 2) / 2);
4391 .textarea-container .autocomplete-container div {
4392 padding: 2px 8px 0 8px;
4393 white-space: nowrap;
4394 display: flex;
4395 justify-content: flex-end;
4398 .textarea-container .autocomplete-container div span.name {
4399 flex: 1 1 auto;
4400 width: calc(100% - 9em);
4401 overflow: hidden;
4402 text-overflow: ellipsis;
4404 .textarea-container .autocomplete-container div span.name:hover {
4405 overflow: visible;
4406 z-index: 1;
4408 .textarea-container .autocomplete-container div span.age,
4409 .textarea-container .autocomplete-container div span.karma {
4410 font-size: 0.9em;
4411 text-align: right;
4413 .textarea-container .autocomplete-container div span.age {
4414 flex: 0 0 3em;
4416 .textarea-container .autocomplete-container div span.karma {
4417 flex: 0 0 6em;
4421 /***************/
4422 /* COLLECTIONS */
4423 /***************/
4425 h2.sequence-chapter,
4426 h3.sequence-chapter,
4427 h4.sequence-chapter {
4428 text-align: center;
4430 h2.sequence-chapter::before,
4431 h3.sequence-chapter::before,
4432 h4.sequence-chapter::before {
4433 display: block;
4434 margin: 1.5em 0 0.75em 0;
4435 font-style: normal;
4436 font-weight: normal;
4437 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
4439 h2.sequence-chapter::before {
4440 content: '\25A3';
4442 h3.sequence-chapter::before {
4443 content: '\25AA\2004\25AA';
4445 h4.sequence-chapter::before {
4446 content: '\00B7\2004\00B7\2004\00B7';
4450 /*******************/
4451 /* ALIGNMENT FORUM */
4452 /*******************/
4454 #content.alignment-forum-index-page::after {
4455 content: "Alignment Forum";
4456 font-size: 1.5rem;
4457 margin: 0.375em 0 0 -0.375em;
4458 order: -1;
4461 /**********************/
4462 /* FOR NARROW SCREENS */
4463 /**********************/
4465 @media only screen and (max-width: 1440px) {
4466 #hns-date-picker {
4467 right: -81px;
4468 padding: 8px 10px 10px 10px;
4469 bottom: 62px;
4470 display: none;
4472 #hns-date-picker::before {
4473 content: "";
4474 position: absolute;
4475 display: block;
4476 z-index: -1;
4477 height: calc(100% + 2px);
4478 top: -1px;
4479 left: -1px;
4480 width: 50%;
4483 @media only screen and (max-width: 1160px) {
4484 #new-comment-nav-ui {
4485 bottom: 180px;
4486 right: -68px;
4488 #hns-date-picker {
4489 bottom: 200px;
4490 right: -36px;
4492 #hns-date-picker::before {
4493 width: calc(100% - 35px);
4495 #theme-selector button::before {
4496 right: unset;
4497 left: 100%;
4499 #theme-selector:hover::after {
4500 content: "";
4501 display: block;
4502 position: absolute;
4503 width: calc(6em - 7px);
4504 height: calc(100% + 2px);
4505 top: 0;
4506 left: calc(100% + 1px);
4508 #anti-kibitzer-toggle {
4509 bottom: 330px;
4512 @media only screen and (max-width: 1080px) {
4513 #width-selector {
4514 right: -30px;
4516 #width-selector button {
4517 display: block;
4519 #text-size-adjustment-ui {
4520 top: 90px;
4521 right: -30px;
4523 #text-size-adjustment-ui button {
4524 display: block;
4525 position: relative;
4527 #text-size-adjustment-ui button.increase {
4528 bottom: 48px;
4530 #text-size-adjustment-ui button.decrease {
4531 top: 50px;
4533 #theme-selector {
4534 top: 46px;
4535 left: -44px;
4537 #theme-tweaker-toggle {
4538 left: -44px;
4539 top: 2px;
4541 #theme-tweaker-toggle button {
4542 height: 2em;
4543 width: 2em;
4544 padding: 7px;
4546 #quick-nav-ui {
4547 right: -54px;
4549 #new-comment-nav-ui {
4550 right: -55px;
4552 #hns-date-picker {
4553 right: -23px;
4555 #hns-date-picker::before {
4556 width: calc(100% - 22px);
4558 #anti-kibitzer-toggle {
4559 right: -54px;
4562 @media only screen and (max-width: 1040px) {
4563 #quick-nav-ui {
4564 right: -49px;
4566 #new-comment-nav-ui {
4567 right: -50px;
4569 #hns-date-picker {
4570 right: -18px;
4572 #hns-date-picker::before {
4573 width: calc(100% - 17px);
4575 #anti-kibitzer-toggle {
4576 right: -50px;
4579 @media only screen and (max-width: 1020px) {
4580 #quick-nav-ui {
4581 right: -20px;
4583 #new-comment-nav-ui {
4584 right: -21px;
4586 #new-comment-nav-ui .new-comments-count::before {
4587 content: "";
4588 position: absolute;
4589 width: 100%;
4590 height: calc(100% + 45px);
4591 z-index: -1;
4592 left: 0;
4593 top: -22px;
4595 #hns-date-picker {
4596 right: 19px;
4598 #hns-date-picker::before {
4599 width: 100%;
4601 #anti-kibitzer-toggle {
4602 right: -20px;
4605 @media only screen and (max-width: 1000px) {
4606 #theme-selector {
4607 left: -17px;
4608 top: 120px;
4609 padding: 3px 0;
4610 max-width: 32px;
4612 #theme-selector button {
4613 margin: 1px 4px;
4615 #text-size-adjustment-ui {
4616 top: 100px;
4617 right: -12px;
4619 @media not screen and (hover: none) {
4620 #quick-nav-ui,
4621 #new-comment-nav-ui,
4622 #new-comment-nav-ui + #hns-date-picker,
4623 #anti-kibitzer-toggle {
4624 opacity: 0.4;
4626 #quick-nav-ui:hover,
4627 #new-comment-nav-ui:hover,
4628 #new-comment-nav-ui + #hns-date-picker:hover,
4629 #new-comment-nav-ui + #hns-date-picker:focus-within,
4630 #new-comment-nav-ui:hover + #hns-date-picker,
4631 #anti-kibitzer-toggle:hover {
4632 opacity: 1.0;
4635 #theme-tweaker-toggle {
4636 top: 70px;
4637 left: -21px;
4641 /**************/
4642 /* PRINT VIEW */
4643 /**************/
4645 @media only print {
4646 .nav-bar {
4647 visibility: hidden;
4648 max-height: 0;
4649 overflow: hidden;
4651 #ui-elements-container {
4652 display: none;
4654 #images-overlay {
4655 display: none;
4657 #images-overlay + #content .post-body img {
4658 visibility: visible;
4660 .comment-controls {
4661 display: none;
4663 #comments-sort-mode-selector {
4664 display: none;
4666 .comment-minimize-button {
4667 display: none;
4669 .post-meta .qualified-linking,
4670 .post-meta .lw2-link {
4671 display: none;
4673 .comment-meta .permalink,
4674 .comment-meta .lw2-link,
4675 .comment-meta .comment-parent-link {
4676 display: none;
4678 .new-comment::before {
4679 display: none;
4681 #content::before {
4682 box-shadow: none;
4686 /*****************/
4687 /* MOBILE LAYOUT */
4688 /*****************/
4690 /* Hide the mobile elements on desktop screens: */
4692 @media only screen and (max-width: 1160px) {
4693 #post-nav-ui-toggle,
4694 #appearance-adjust-ui-toggle {
4695 display: none;
4699 @media only screen and (max-width: 1160px) {
4701 /*====================*/
4702 /* MOBILE UI ELEMENTS */
4703 /*====================*/
4705 #ui-elements-container {
4706 height: unset !important;
4707 position: unset;
4709 #ui-elements-container > * {
4710 position: fixed;
4711 visibility: hidden;
4712 opacity: 1.0;
4713 z-index: 10000;
4716 #ui-elements-container > div[id$='-ui-toggle'] {
4717 visibility: visible;
4718 display: inline-block;
4719 border-radius: 50%;
4720 z-index: 10000;
4722 #ui-elements-container > div[id$='-ui-toggle'] button,
4723 #theme-selector .theme-selector-close-button {
4724 font-family: Font Awesome;
4725 font-weight: 900;
4726 font-size: 32px;
4727 padding: 10px;
4728 opacity: 0.8;
4729 -webkit-tap-highlight-color: transparent;
4730 transition: transform 0.2s ease;
4732 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4733 #theme-selector .theme-selector-close-button::selection {
4734 background-color: transparent;
4736 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4737 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4738 border: none;
4740 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4741 transform: rotate(-90deg);
4742 opacity: 1.0;
4745 #appearance-adjust-ui-toggle {
4746 bottom: 10px;
4747 left: 10px;
4750 #post-nav-ui-toggle {
4751 bottom: 10px;
4752 right: 10px;
4755 #theme-selector.engaged,
4756 #quick-nav-ui.engaged,
4757 #new-comment-nav-ui.engaged,
4758 #hns-date-picker.engaged {
4759 visibility: visible;
4762 #image-focus-overlay.engaged {
4763 visibility: visible;
4765 #image-focus-overlay .help-overlay {
4766 display: none;
4769 /*=========*/
4770 /* GENERAL */
4771 /*=========*/
4773 @media only screen and (max-width: 900px) {
4774 #content,
4775 #images-overlay,
4776 #ui-elements-container {
4777 min-width: unset;
4778 width: unset;
4780 #content {
4781 padding: 0 4px;
4785 /*================*/
4786 /* THEME SELECTOR */
4787 /*================*/
4789 #theme-selector {
4790 display: flex;
4791 flex-flow: column;
4792 background-color: #fff;
4793 width: calc(100vw - 20px);
4794 max-width: 360px;
4795 padding: 0 0 3px 0;
4796 overflow: hidden;
4797 max-height: 0;
4798 transition:
4799 top 0.2s ease,
4800 max-height 0.2s ease,
4801 visibility 0.2s ease;
4802 top: calc(100% + 10px);
4803 left: 0;
4804 right: 0;
4805 margin: auto;
4807 #theme-selector.engaged {
4808 max-height: 1000px;
4809 top: 10px;
4810 z-index: 10001;
4812 #theme-selector::before {
4813 content: "Select theme";
4814 white-space: nowrap;
4815 display: block;
4816 font-weight: 600;
4817 font-size: 2rem;
4818 margin: 0.375em 1em 0.5em 1em;
4819 text-align: center;
4821 #theme-selector button {
4822 width: calc(100% - 0.5em);
4823 background-repeat: no-repeat;
4824 padding: 1em 0.875em;
4825 margin: 1px 4px;
4826 line-height: 1;
4827 height: unset;
4828 position: relative;
4830 #theme-selector button::after {
4831 content: attr(data-theme-description);
4832 color: #000;
4833 white-space: nowrap;
4834 position: absolute;
4835 text-align: left;
4836 left: 2.5em;
4837 top: 1em;
4839 @media only screen and (max-height: 675px) {
4840 #theme-selector button {
4841 padding: 0.875em;
4843 #theme-selector button::after {
4844 top: 0.875em;
4847 #theme-selector .theme-selector-close-button {
4848 position: absolute;
4849 width: unset;
4850 background-color: transparent;
4851 top: 0;
4852 right: -3px;
4854 #theme-selector .theme-selector-close-button,
4855 #theme-selector .theme-selector-close-button:focus,
4856 #theme-selector .theme-selector-close-button:active,
4857 #theme-selector .theme-selector-close-button:hover {
4858 box-shadow: none;
4861 /*===============*/
4862 /* THEME TWEAKER */
4863 /*===============*/
4865 #theme-selector {
4866 padding: 0 0 64px 0;
4868 #theme-selector ~ #theme-tweaker-toggle {
4869 top: 100%;
4871 #theme-selector ~ #theme-tweaker-toggle::after {
4872 content: "Open theme tweaker";
4873 position: absolute;
4874 font-size: 0.625em;
4875 white-space: nowrap;
4876 left: -50%;
4877 top: 100%;
4879 #theme-selector.engaged ~ #theme-tweaker-toggle {
4880 visibility: visible;
4881 top: 530px;
4882 left: 0;
4883 right: 0;
4884 margin: auto;
4885 z-index: 11111;
4886 transition:
4887 top 0.2s ease,
4888 visibility 0.2s ease;
4890 @media only screen and (max-height: 675px) {
4891 #theme-selector.engaged ~ #theme-tweaker-toggle {
4892 top: 492px;
4895 @supports (width: -moz-fit-content) {
4896 #theme-selector.engaged ~ #theme-tweaker-toggle {
4897 width: -moz-fit-content;
4900 @supports (width: fit-content) {
4901 #theme-selector.engaged ~ #theme-tweaker-toggle {
4902 width: fit-content;
4905 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4906 opacity: 1.0;
4909 #theme-tweaker-ui {
4910 visibility: visible;
4913 /*======================*/
4914 /* ANTI-KIBITZER TOGGLE */
4915 /*======================*/
4917 #theme-selector ~ #anti-kibitzer-toggle {
4918 top: 100%;
4919 bottom: unset;
4920 left: 0;
4921 right: 0;
4922 margin: auto;
4923 box-shadow: none;
4924 width: calc(100vw - 44px);
4925 max-width: 330px;
4926 text-align: right;
4927 pointer-events: none;
4929 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4930 visibility: visible;
4931 z-index: 11110;
4932 top: 530px;
4933 transition:
4934 top 0.2s ease,
4935 visibility 0.2s ease;
4937 @media only screen and (max-height: 675px) {
4938 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4939 top: 492px;
4942 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4943 pointer-events: auto;
4944 display: inline-block;
4947 /*=================*/
4948 /* QUICKNAV WIDGET */
4949 /*=================*/
4951 #quick-nav-ui {
4952 max-width: 0px;
4953 transition:
4954 max-width 0.2s ease,
4955 visibility 0.2s ease;
4956 display: flex;
4957 right: 72px;
4958 bottom: 14px;
4960 #quick-nav-ui.engaged {
4961 max-width: 1000px;
4963 #quick-nav-ui a {
4964 position: relative;
4965 margin: 2px;
4967 #quick-nav-ui a + a {
4968 margin-left: 5px;
4970 #quick-nav-ui a::after {
4971 position: absolute;
4972 top: calc(100% + 2px);
4973 font-size: 0.375rem;
4974 left: 0;
4975 right: 0;
4976 margin: auto;
4977 line-height: 1;
4978 padding: 2px;
4979 text-transform: uppercase;
4980 z-index: -1;
4982 @supports (width: -moz-fit-content) {
4983 #quick-nav-ui a::after {
4984 width: -moz-fit-content;
4987 @supports (width: fit-content) {
4988 #quick-nav-ui a::after {
4989 width: fit-content;
4992 #quick-nav-ui a[href='#top']::after {
4993 content: "Top";
4994 left: -1px;
4996 #quick-nav-ui a[href='#comments']::after {
4997 content: "Comments";
4999 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
5000 visibility: hidden;
5001 transition: visibility 0.2s ease;
5003 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
5004 visibility: visible;
5006 #quick-nav-ui a[href='#bottom-bar']::after {
5007 content: "Bottom";
5010 /*======================*/
5011 /* NEW COMMENT QUICKNAV */
5012 /*======================*/
5014 #new-comment-nav-ui {
5015 max-width: 0px;
5016 max-height: 0px;
5017 transition:
5018 max-width 0.2s ease,
5019 max-height 0.2s ease,
5020 visibility 0.2s ease;
5021 display: flex;
5022 right: 78px;
5023 bottom: 70px;
5025 #new-comment-nav-ui::before {
5026 content: "New Comments";
5027 position: absolute;
5028 bottom: 100%;
5029 font-size: 0.5625rem;
5030 left: 0;
5031 right: 0;
5032 margin: auto;
5033 padding: 2px 3px;
5034 text-transform: uppercase;
5035 z-index: -1;
5037 @supports (width: -moz-fit-content) {
5038 #new-comment-nav-ui::before {
5039 width: -moz-fit-content;
5042 @supports (width: fit-content) {
5043 #new-comment-nav-ui::before {
5044 width: fit-content;
5047 #new-comment-nav-ui.engaged {
5048 max-width: 1000px;
5049 max-height: 1000px;
5051 #new-comment-nav-ui .new-comment-sequential-nav-button {
5052 top: unset;
5053 bottom: unset;
5054 padding: 2px 7px;
5056 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5057 padding: 2px 7px 3px 7px;
5059 #new-comment-nav-ui .new-comments-count {
5060 padding: 4px 0 5px 0;
5062 #new-comment-nav-ui .new-comments-count::before {
5063 display: none;
5065 #new-comment-nav-ui button::after {
5066 position: absolute;
5067 font-size: 0.375rem;
5068 left: 0;
5069 right: 0;
5070 margin: auto;
5071 line-height: 1;
5072 text-transform: uppercase;
5073 pointer-events: none;
5075 #new-comment-nav-ui button.new-comment-previous::after {
5076 content: "Previous";
5077 bottom: 5px;
5079 #new-comment-nav-ui button.new-comment-next::after {
5080 content: "Next";
5081 top: 7px;
5084 /*=================*/
5085 /* HNS DATE PICKER */
5086 /*=================*/
5088 #hns-date-picker {
5089 max-height: 0px;
5090 bottom: 132px;
5091 right: 62px;
5092 transition:
5093 max-height 0.2s ease,
5094 visibility 0.2s ease;
5096 #hns-date-picker.engaged {
5097 max-height: 1000px;
5099 #hns-date-picker::before {
5100 width: calc(100% + 2px);
5101 border-width: 1px !important;
5104 /*=========*/
5105 /* NAV BAR */
5106 /*=========*/
5108 #bottom-bar {
5109 margin-left: auto;
5110 margin-right: auto;
5111 width: calc(100% - 9rem + 8px);
5112 background: rgba(255,255,255,0.85);
5113 backdrop-filter: blur(1px);
5115 #content.index-page #bottom-bar {
5116 z-index: 10001;
5118 #bottom-bar .nav-item {
5119 box-shadow: none;
5120 position: relative;
5122 #bottom-bar .nav-inner {
5123 font-size: 2rem;
5124 padding: 1rem 0 1.25rem 0;
5125 visibility: hidden;
5126 position: static;
5127 width: 0;
5129 #content #bottom-bar .nav-item .nav-inner::before {
5130 margin: 0;
5131 visibility: visible;
5132 position: absolute;
5133 width: 100%;
5134 height: 100%;
5135 left: 0;
5136 top: 0;
5137 padding: 1rem 0;
5139 #bottom-bar .nav-inner::after {
5140 display: block;
5141 visibility: visible;
5142 text-transform: uppercase;
5143 color: unset;
5144 font-size: 0.75rem;
5145 top: unset;
5146 left: 0;
5147 bottom: 1rem;
5148 width: 100%;
5150 #bottom-bar #nav-item-first .nav-inner::after {
5151 content: "First Page";
5153 #bottom-bar #nav-item-prev .nav-inner::after {
5154 content: "Prev. Page";
5156 #bottom-bar #nav-item-top .nav-inner::after {
5157 content: "Top";
5159 #bottom-bar #nav-item-next .nav-inner::after {
5160 content: "Next Page";
5162 #bottom-bar #nav-item-last .nav-inner::after {
5163 content: "Last Page";
5166 @media only screen and (max-width: 900px) {
5167 .nav-bar-top {
5168 font-size: 0.75rem;
5170 .nav-bar {
5171 width: calc(100% + 8px);
5172 margin: 0 -4px;
5174 .nav-bar .nav-inner::after {
5175 display: none;
5178 #primary-bar .nav-item {
5179 flex: 1 1 100%;
5181 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5182 flex: 1 1 60px;
5184 .nav-bar-top:not(#anything) .nav-inner {
5185 text-transform: uppercase;
5186 padding: 6px;
5188 .nav-bar-top .nav-inner::before {
5189 display: block;
5190 font-family: "Font Awesome";
5191 font-size: 2em;
5192 font-weight: 900;
5195 #nav-item-home .nav-inner::before {
5196 content: "\F015";
5198 #nav-item-featured .nav-inner::before {
5199 content: "\F005";
5201 #nav-item-all .nav-inner::before {
5202 content: "\F069";
5204 #nav-item-meta .nav-inner::before {
5205 content: "\F077";
5207 #nav-item-tags .nav-inner::before {
5208 content: "\F02C";
5210 #nav-item-recent-comments > * > span {
5211 display: none;
5213 #nav-item-recent-comments .nav-inner::before,
5214 #nav-item-alignment-forum-comments .nav-inner::before {
5215 content: "\F036";
5217 #nav-item-alignment-forum .nav-inner::before {
5218 content: "AF";
5219 font-family: Concourse, 'Changa One';
5221 #nav-item-questions .nav-inner::before {
5222 content: "?";
5223 font-family: Concourse, 'Changa One';
5225 #nav-item-events .nav-inner::before {
5226 content: "\F5A0";
5228 #nav-item-shortform .nav-inner::before {
5229 content: "\F2F2";
5231 #nav-item-archive .nav-inner::before {
5232 content: "\F187";
5234 #nav-item-about .nav-inner::before {
5235 content: "\F129";
5237 #nav-item-search {
5238 font-size: 2em;
5239 padding: 10px;
5241 #nav-item-search .nav-inner::before {
5242 content: none;
5244 #nav-item-search .nav-inner {
5245 height: 100%;
5246 display: flex;
5248 #nav-item-search input {
5249 width: 100%;
5250 height: 100%;
5252 #nav-item-search button {
5253 height: 100%;
5254 padding: 5px 5px 5px 10px;
5255 width: 40px;
5256 overflow: visible;
5257 visibility: hidden;
5259 #nav-item-search button::before {
5260 content: "\F002";
5261 font-family: Font Awesome;
5262 font-weight: 900;
5263 visibility: visible;
5265 #nav-item-login {
5266 padding: 0;
5268 #nav-item-login .nav-inner::before {
5269 content: "\F007";
5272 @media only screen and (max-width: 520px) {
5273 .nav-bar-top {
5274 font-size: 0.5rem;
5277 #nav-item-search,
5278 #nav-item-search .nav-inner {
5279 padding: 0;
5281 #nav-item-search button {
5282 width: 31px;
5285 #bottom-bar #nav-item-first .nav-inner::after {
5286 content: "First";
5288 #bottom-bar #nav-item-prev .nav-inner::after {
5289 content: "Prev";
5291 #bottom-bar #nav-item-next .nav-inner::after {
5292 content: "Next";
5294 #bottom-bar #nav-item-last .nav-inner::after {
5295 content: "Last";
5299 /*=================*/
5300 /* INBOX INDICATOR */
5301 /*=================*/
5303 @media only screen and (max-width: 900px) {
5304 #inbox-indicator {
5305 width: 100%;
5306 top: 0;
5307 pointer-events: none;
5309 #inbox-indicator::before {
5310 width: 100%;
5311 font-size: 1rem;
5312 text-align: right;
5313 padding: 1px 6px;
5315 #inbox-indicator.new-messages {
5316 pointer-events: auto;
5318 #inbox-indicator.new-messages::before {
5319 box-shadow: 0 0 8px 1px #f00 inset;
5322 @media only screen and (max-width: 520px) {
5323 #inbox-indicator::before {
5324 font-size: 0.75rem;
5325 padding: 2px 5px;
5328 @media only screen and (max-width: 374px) {
5329 #inbox-indicator::before {
5330 font-size: 0.625rem;
5334 /*===================*/
5335 /* TOP PAGINATION UI */
5336 /*===================*/
5338 #top-nav-bar {
5339 font-size: 1.75rem;
5342 /*==============*/
5343 /* PAGE TOOLBAR */
5344 /*==============*/
5346 @media only screen and (max-width: 900px) {
5347 #content > .page-toolbar {
5348 font-size: 1rem;
5349 margin-right: 0;
5351 #content.user-page > .page-toolbar {
5352 grid-column: 2 / span 2;
5353 margin: 0 0 6px 0;
5356 @media only screen and (max-width: 520px) {
5357 #content:not(.user-page) .page-toolbar {
5358 display: flex;
5359 flex-direction: column-reverse;
5360 text-align: right;
5361 align-self: start;
5362 padding: 4px 0 0 0;
5364 #content.user-page .page-toolbar {
5365 display: flex;
5366 flex-flow: row;
5367 justify-content: flex-end;
5368 padding: 2px 0 0 0;
5370 #content.user-page .page-toolbar > form,
5371 #content.user-page .page-toolbar > .button {
5372 text-align: center;
5373 flex-basis: 25%;
5374 margin-left: 1.5em;
5376 #content.user-page .page-toolbar .button {
5377 text-transform: uppercase;
5378 font-size: 0.625rem;
5380 #content.user-page .page-toolbar .button::before {
5381 font-size: 1.375rem;
5382 display: block;
5383 padding: 0;
5385 #content.user-page .page-toolbar .rss {
5386 white-space: nowrap;
5387 margin: 0 0 0 1.5em;
5389 .page-toolbar > * {
5390 line-height: 1.15;
5391 padding: 6px 0;
5392 margin: 0;
5396 /*==============*/
5397 /* SUBLEVEL NAV */
5398 /*==============*/
5400 @media only screen and (max-width: 900px) {
5401 .sublevel-nav:not(.sort) {
5402 flex-wrap: wrap;
5403 width: calc(100vw - 200px);
5405 .sublevel-nav:not(.sort) .sublevel-item {
5406 margin: 1px;
5407 flex-basis: 7em;
5410 @media only screen and (max-width: 520px) {
5411 .sublevel-nav:not(.sort) .sublevel-item {
5412 font-size: 1rem;
5416 /*=====================*/
5417 /* SORT ORDER SELECTOR */
5418 /*=====================*/
5420 @media only screen and (max-width: 720px) {
5421 #content.index-page > .sublevel-nav.sort {
5422 flex-flow: column;
5423 margin-left: 4px;
5427 /*==========*/
5428 /* ARCHIVES */
5429 /*==========*/
5431 @media only screen and (max-width: 900px) {
5432 div[class^='archive-nav-'] {
5433 flex-wrap: wrap;
5434 justify-content: flex-start;
5436 .archive-nav *[class^='archive-nav-item'],
5437 .archive-nav *[class^='archive-nav-item']:first-child {
5438 padding: 10px;
5439 margin: 2px;
5440 max-width: unset;
5441 flex: 0 1 calc((100% / 8) - 4px);
5443 .archive-nav .archive-nav-item-day,
5444 .archive-nav .archive-nav-item-day:first-child {
5445 flex-basis: calc((100% / 16) - 4px);
5447 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5448 margin-top: 8px;
5449 position: relative;
5451 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5452 content: "";
5453 display: block;
5454 position: absolute;
5455 height: 1px;
5456 width: calc(100% + 8px);
5457 left: -4px;
5458 top: -4px;
5461 @media only screen and (max-width: 720px) {
5462 .archive-nav .archive-nav-item-day,
5463 .archive-nav .archive-nav-item-day:first-child {
5464 flex-basis: calc((100% / 12) - 4px);
5467 @media only screen and (max-width: 520px) {
5468 .archive-nav *[class^='archive-nav-item'],
5469 .archive-nav *[class^='archive-nav-item']:first-child {
5470 flex-basis: calc((100% / 5) - 4px);
5472 .archive-nav .archive-nav-item-day,
5473 .archive-nav .archive-nav-item-day:first-child {
5474 flex-basis: calc((100% / 8) - 4px);
5478 /*==========*/
5479 /* LISTINGS */
5480 /*==========*/
5482 h1.listing {
5483 max-height: unset;
5486 /*============*/
5487 /* USER PAGES */
5488 /*============*/
5490 #content.user-page h1.page-main-heading {
5491 align-self: end;
5493 @media only screen and (max-width: 520px) {
5494 #content.user-page h1.page-main-heading {
5495 overflow: hidden;
5496 text-overflow: ellipsis;
5498 #content.user-page .user-stats .karma-type {
5499 display: block;
5503 /*============*/
5504 /* LOGIN PAGE */
5505 /*============*/
5507 @media only screen and (max-width: 640px) {
5508 .login-container {
5509 flex-flow: column;
5510 margin: 0 auto 3em auto;
5511 max-width: 400px;
5513 .login-container #login-form,
5514 .login-container #signup-form {
5515 padding: 0 1em 1.25em 1em;
5516 grid-row-gap: 0;
5518 .login-container #signup-form {
5519 padding-top: 1em;
5521 .login-container #login-form > *,
5522 .login-container #signup-form > * {
5523 grid-column: 1 / span 2;
5525 .login-container form label {
5526 text-align: left;
5527 padding: 0;
5528 line-height: 1;
5530 .login-container form input {
5531 margin: 0.25em 0 0.75em 0;
5532 padding: 0.5em;
5534 .login-container form h1 {
5535 grid-column: 1 / span 2;
5536 margin: 0 0 0.25em 0;
5538 .login-container form a {
5539 margin: 0.75em 0 0 0;
5541 .login-container .login-tip {
5542 margin: 1.5em 1em 0 1em;
5546 /*==================*/
5547 /* POSTS & COMMENTS */
5548 /*==================*/
5550 @media only screen and (max-width: 720px) {
5551 .body-text ol > li {
5552 padding: 0 0 0 2.25em;
5554 .body-text ol > li::before {
5555 width: 1.75em;
5557 .body-text ul:not(.contents-list) > li,
5558 .body-text ul:not(.contents-list) > li ul > li {
5559 padding: 0 0 0 0.75em;
5561 .body-text ul:not(.contents-list) > li::before,
5562 .body-text ul:not(.contents-list) > li ul > li::before {
5563 width: 0.125em;
5564 margin-left: -0.06em;
5568 /*===========*/
5569 /* POST-META */
5570 /*===========*/
5572 .post-meta {
5573 line-height: 1.9;
5575 @media only screen and (max-width: 720px) {
5576 .post-meta .lw2-link span,
5577 .post-meta .karma-value span,
5578 .post-meta .comment-count span {
5579 display: none;
5581 .post-meta .comment-count::before {
5582 content: "\F086";
5583 font-family: Font Awesome;
5584 font-size: 0.875em;
5585 margin: 0 0.25em 0 0;
5586 font-weight: 400;
5590 /*===================*/
5591 /* POSTS & BODY TEXT */
5592 /*===================*/
5594 @media only screen and (max-width: 900px) {
5595 .post-body,
5596 h1.post-title,
5597 .tag-description,
5598 .sequence-text {
5599 padding: 0 6px;
5602 @media only screen and (max-width: 520px) {
5603 .post-body {
5604 font-size: 1.2rem;
5605 line-height: 1.45;
5607 h1.post-title {
5608 font-size: 2em;
5612 /*==============*/
5613 /* COMMENT-META */
5614 /*==============*/
5616 a.comment-parent-link::after {
5617 display: none;
5619 @media only screen and (max-width: 900px) {
5620 .comment-meta {
5621 padding: 2px 40px 2px 10px;
5624 @media only screen and (max-width: 720px) {
5625 .comment .karma-value span {
5626 display: none;
5628 .comment-meta .comment-parent-link {
5629 opacity: 1.0;
5632 @media only screen and (max-width: 520px) {
5633 .comment-meta {
5634 padding: 2px 24px 2px 10px;
5635 position: relative;
5637 .comment-meta > * {
5638 order: 3;
5640 .comment-meta > :not(.author) {
5641 line-height: 1.8;
5643 .comment-meta .author,
5644 .comment-meta .date {
5645 order: 1;
5647 .comment-meta:before {
5648 content: "";
5649 order: 2;
5650 flex-basis: 100%;
5652 .comment-post-title2 {
5653 display: block;
5654 text-overflow: ellipsis;
5655 overflow: hidden;
5657 .comment-meta .lw2-link {
5658 display: none;
5662 /*=======================*/
5663 /* COMMENTS COMPACT VIEW */
5664 /*=======================*/
5666 /*===========================*/
5667 /* COMMENT THREAD NAVIGATION */
5668 /*===========================*/
5670 @media only screen and (max-width: 900px) {
5671 a.comment-parent-link {
5672 width: 0;
5673 visibility: hidden;
5674 position: relative;
5676 a.comment-parent-link::before {
5677 padding: 0;
5678 font-size: 1em;
5679 left: 0;
5680 top: 0;
5681 line-height: inherit;
5682 visibility: visible;
5683 content: "\F3BF";
5684 transform: scaleX(-1);
5685 width: 2em;
5686 text-align: center;
5689 @media only screen and (max-width: 520px) {
5690 a.comment-parent-link {
5691 position: static;
5693 a.comment-parent-link::before {
5694 padding: 6px;
5695 left: unset;
5696 right: 0;
5697 top: unset;
5698 bottom: 0;
5699 height: 2em;
5703 /*=================================*/
5704 /* COMMENT THREAD MINIMIZE BUTTONS */
5705 /*=================================*/
5707 @media only screen and (max-width: 520px) {
5708 .comment-minimize-button{
5709 right: 2px;
5713 /*===========================*/
5714 /* COMMENTING AND POSTING UI */
5715 /*===========================*/
5717 @media only screen and (max-width: 900px) {
5718 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5719 font-size: 0;
5721 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5722 font-size: 0.9rem;
5724 .comment-controls .cancel-comment-button {
5725 max-width: 1.3em;
5726 overflow: hidden;
5727 margin-right: 0.125em;
5729 .comment-controls .edit-button::before {
5730 font-size: 0.9375rem;
5732 .comments > .comment-controls .cancel-comment-button {
5733 right: 8px;
5735 .comment-controls .cancel-comment-button::before {
5736 font-size: 1.25rem;
5739 @media only screen and (max-width: 520px) {
5740 .comment-controls {
5741 position: static;
5743 .comment-controls:focus-within {
5744 z-index: 10001;
5746 .comment-controls .cancel-comment-button {
5747 right: 10px;
5749 .textarea-container:focus-within textarea {
5750 position: fixed;
5751 top: 0;
5752 left: 2px;
5753 width: calc(100vw - 4px);
5754 height: calc(100% - 100px);
5755 min-height: unset;
5756 max-height: unset;
5757 border-width: 1px;
5758 z-index: 11001;
5760 #content.conversation-page .textarea-container:focus-within textarea {
5761 height: calc(100% - 54px);
5763 #content.conversation-page .textarea-container:focus-within::after {
5764 content: "";
5765 display: block;
5766 width: 100%;
5767 height: 50px;
5768 position: fixed;
5769 left: 0;
5770 bottom: 0;
5771 z-index: 11000;
5773 .textarea-container:focus-within .guiedit-buttons-container {
5774 position: fixed;
5775 z-index: 11002;
5776 left: 0;
5777 width: 100vw;
5778 height: auto;
5779 background-image: none;
5780 padding: 3px 4px 4px 4px;
5781 margin: 0;
5782 text-align: center;
5783 top: auto;
5784 bottom: 0;
5786 .textarea-container:focus-within button.guiedit {
5787 font-size: 0.9375rem;
5788 line-height: 1.5;
5789 height: auto;
5790 width: calc((100% / 10) - 2px);
5791 padding: 10px 1px 8px 0;
5792 position: relative;
5793 margin: 1px;
5795 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5796 z-index: 11011;
5797 position: fixed;
5798 bottom: 7px;
5799 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5800 font-size: 1.25rem;
5801 padding: 5px 5px 6px 5px;
5802 display: block;
5804 .textarea-container:focus-within button.guiedit sup {
5805 position: absolute;
5806 left: calc(50% + 0.65em);
5807 top: calc(50% - 1.3em);
5809 .textarea-container:focus-within .guiedit-mobile-help-button {
5810 left: 8px;
5812 .textarea-container:focus-within .guiedit-mobile-exit-button {
5813 right: 8px;
5815 .guiedit::after {
5816 display: none;
5819 #markdown-hints,
5820 #edit-post-form #markdown-hints {
5821 z-index: 11111;
5822 position: fixed;
5823 top: 40px;
5824 left: 0;
5825 right: 0;
5826 margin: auto;
5827 padding: 4px 0 4px 8px;
5828 width: 310px;
5829 border-width: 3px;
5830 border-style: double;
5831 pointer-events: none;
5833 #markdown-hints::after {
5834 content: "(Type to hide this help box.)";
5835 color: #090;
5836 display: block;
5837 margin: 12px 18px 13px 10px;
5838 padding: 5px;
5839 font-size: 0.9em;
5840 text-align: center;
5844 /*================*/
5845 /* EDIT POST FORM */
5846 /*================*/
5848 @media only screen and (max-width: 520px) {
5849 #edit-post-form {
5850 padding-bottom: 0;
5852 #edit-post-form .post-meta-fields {
5853 grid-template-columns: 4.5em auto auto auto 1fr auto;
5855 #edit-post-form label[for='url'],
5856 #edit-post-form label[for='section'],
5857 #edit-post-form label[for='title'] {
5858 padding-left: 0;
5860 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5861 white-space: normal;
5862 line-height: 0.9;
5863 top: -1px;
5864 font-family: Font Awesome;
5865 font-weight: 900;
5866 justify-self: start;
5868 #edit-post-form .post-meta-fields .question-checkbox,
5869 #edit-post-form .post-meta-fields .question-checkbox + label {
5870 grid-column: 6;
5871 margin-left: unset;
5873 #edit-post-form .post-meta-fields input[type='radio'] + label {
5874 align-self: start;
5876 #edit-post-form .textarea-container:focus-within textarea {
5877 height: calc(100% - 101px);
5878 min-height: unset;
5881 #markdown-hints-checkbox,
5882 #markdown-hints-checkbox + label {
5883 display: none;
5886 #edit-post-form div:last-child {
5887 clear: both;
5888 overflow: auto;
5890 #edit-post-form input[type='submit'] {
5891 float: none;
5892 display: block;
5893 font-size: 1.5rem;
5894 margin: 1rem auto 1.5rem auto;
5895 padding: 6px 12px 8px 12px;
5898 #edit-post-form .textarea-container .autocomplete-container,
5899 .comment-controls .textarea-container .autocomplete-container {
5900 max-height: calc(50vh - 101px);
5901 position: fixed;
5902 top: 50vh;
5903 left: 4px;
5904 right: 4px;
5905 width: unset;
5906 z-index: 11002;
5910 /*===================*/
5911 /* TABLE OF CONTENTS */
5912 /*===================*/
5914 @media only screen and (max-width: 900px) {
5915 .contents {
5916 float: none;
5917 display: table;
5918 max-width: none;
5919 margin-left: auto;
5920 margin-right: auto;
5923 @media only screen and (max-width: 520px) {
5924 .contents {
5925 max-width: 100%;
5926 margin: 1em auto 0 auto;
5927 display: table;
5929 .contents-head {
5930 font-size: 1.2em;
5932 div.post-body .contents ul {
5933 font-size: unset;
5937 /*========================*/
5938 /* QUALIFIED HYPERLINKING */
5939 /*========================*/
5941 @media only screen and (max-width: 520px) {
5942 .qualified-linking-toolbar {
5943 right: -5em;
5947 } /* END MOBILE LAYOUT */
5950 /******************************/
5951 /* READTHESEQUENCES.COM THEME */
5952 /******************************/
5954 /*===========*/
5955 /* VARIABLES */
5956 /*===========*/
5958 /* Color scheme.
5960 :root {
5961 --GW-toggle-widget-color: #bbb;
5962 --GW-toggle-widget-hover-color: #777;
5965 /*======*/
5966 /* BASE */
5967 /*======*/
5969 body {
5970 color: #000;
5971 background-color: #fffffa;
5972 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
5974 #content {
5975 line-height: 1.55;
5978 /*=========*/
5979 /* NAV BAR */
5980 /*=========*/
5982 .nav-inner {
5983 font-size: 1.375em;
5984 font-weight: 600;
5986 .nav-bar-top:not(#primary-bar) .nav-inner {
5987 font-size: 1em;
5990 *.nav-inner,
5991 #nav-item-search button {
5992 font-weight: 300;
5993 color: #888;
5996 #bottom-bar.decorative {
5997 border: none;
5999 #bottom-bar.decorative::before,
6000 #bottom-bar.decorative::after {
6001 content: "GW";
6002 font-weight: 200;
6003 display: block;
6004 text-align: center;
6005 padding: 0.25em 0 1em 0;
6007 #bottom-bar.decorative::before {
6008 width: 100%;
6009 color: transparent;
6010 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
6011 background-repeat: repeat-x;
6012 background-position: center 35%;
6013 margin: 0 30px;
6015 #bottom-bar.decorative::after {
6016 color: #d8d8d8;
6017 position: absolute;
6018 left: 0;
6019 right: 0;
6020 margin: auto;
6021 background-color: #fff;
6022 padding-right: 4px;
6023 padding-left: 4px;
6025 @supports (width: -moz-fit-content) {
6026 #bottom-bar.decorative::after {
6027 width: -moz-fit-content;
6030 @supports (width: fit-content) {
6031 #bottom-bar.decorative::after {
6032 width: fit-content;
6036 /* Accesskey hints */
6038 .nav-inner::after {
6039 display: block;
6040 position: absolute;
6041 left: 5px;
6042 top: -2px;
6043 font-weight: 300;
6044 font-size: 0.7em;
6045 color: #d8d8d8;
6047 .inactive-bar .nav-inner::after {
6048 color: #ccc;
6050 .nav-inner:hover::after {
6051 color: #bbb;
6054 /* This makes the navbar items look like tabs: */
6056 #bottom-bar {
6057 border-top: 1px solid #bbb;
6058 margin-top: 2em;
6060 .post-page #bottom-bar {
6061 margin-top: 0.5em;
6063 #content.no-nav-bars {
6064 margin: auto;
6066 #content.no-comments #bottom-bar {
6067 margin-top: 0.125em;
6069 .nav-bar .nav-item:not(:last-child) {
6070 border-right: 1px solid #bbb;
6072 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
6073 #nav-item-search:focus-within {
6074 background-color: #f0f0eb;
6076 .nav-bar a:hover,
6077 .nav-bar a:focus,
6078 .nav-bar button:hover,
6079 .nav-bar button:focus {
6080 color: #333;
6081 text-shadow: 0px 0px 0.5px #333;
6083 #bottom-bar .nav-item a::before,
6084 #top-nav-bar a::before {
6085 font-size: 1em;
6086 bottom: -2px;
6087 color: #aaa;
6089 #bottom-bar .nav-item a:hover::before,
6090 #top-nav-bar a:hover::before {
6091 color: #333;
6093 #bottom-bar #nav-item-first a::before,
6094 #top-nav-bar a.nav-item-first::before {
6095 content: "\F0D9\F0D9";
6097 #bottom-bar #nav-item-prev a::before,
6098 #top-nav-bar a.nav-item-prev::before {
6099 content: "\F0D9";
6101 #bottom-bar #nav-item-top a::before {
6102 content: "\F0D8";
6104 #bottom-bar #nav-item-next a::before,
6105 #top-nav-bar a.nav-item-next::before {
6106 content: "\F0DA";
6108 #bottom-bar #nav-item-last a::before,
6109 #top-nav-bar a.nav-item-last::before {
6110 content: "\F0DA\F0DA";
6112 #bottom-bar #nav-item-next a::before {
6113 margin-left: -1em;
6114 left: 2.85em;
6116 .nav-bar + .nav-bar {
6117 position: relative;
6118 border-style: solid;
6119 border-color: #bbb;
6121 .nav-bar {
6122 border-width: 1px 0 0 0;
6124 .active-bar {
6125 border-width: 1px 0;
6128 /* Search tab */
6130 #nav-item-search form::before {
6131 color: #999;
6133 #nav-item-search button:hover {
6134 color: #333;
6136 #nav-item-search input::placeholder {
6137 color: #d00;
6138 font-weight: normal;
6141 /* User/login tab */
6143 #inbox-indicator::before {
6144 color: #ddd;
6147 /*= Top pagination UI hover tooltips =*/
6149 #top-nav-bar a::after,
6150 #bottom-bar a::after {
6151 color: #222;
6152 text-shadow: none;
6155 /*==============*/
6156 /* PAGE TOOLBAR */
6157 /*==============*/
6159 .page-toolbar {
6160 z-index: 1;
6162 .page-toolbar * {
6163 color: #888;
6164 font-weight: 400;
6166 .page-toolbar a:hover,
6167 .page-toolbar button:hover {
6168 text-shadow: 0px 0px 0.5px #333;
6170 .logout-button {
6171 color: #d33;
6174 /*===================*/
6175 /* TOP PAGINATION UI */
6176 /*===================*/
6178 #top-nav-bar {
6179 margin: 0;
6180 flex-wrap: wrap;
6181 grid-column: 2;
6182 min-width: 240px;
6184 #top-nav-bar .page-number {
6185 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6186 padding-top: 7px;
6188 #top-nav-bar .page-number-label {
6189 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6190 bottom: 70%;
6192 #top-nav-bar::after {
6193 content: "";
6194 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6195 background-origin: content-box;
6196 background-repeat: no-repeat;
6197 display: block;
6198 margin: 0.125em auto 0 auto;
6199 padding: 0 12.5%;
6200 height: 1px;
6201 flex: 1 0 100%;
6204 /*==============*/
6205 /* SUBLEVEL NAV */
6206 /*==============*/
6208 .sublevel-nav .sublevel-item {
6209 color: #777;
6210 background-color: #fffffa;
6212 .sublevel-nav .sublevel-item:not(.selected):hover {
6213 background-color: #ddd;
6214 color: #000;
6216 .sublevel-nav .sublevel-item:not(.selected):active,
6217 .sublevel-nav .sublevel-item.selected {
6218 background-color: #ddd;
6219 border-color: #ddd;
6220 color: #000;
6221 text-shadow:
6222 0 -1px 0 #fff,
6223 0 0.5px 0.5px #000;
6226 .sublevel-nav:not(.sort) .sublevel-item {
6227 border-style: solid;
6228 border-color: #ddd;
6229 border-width: 1px 0 1px 1px;
6231 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6232 border-radius: 8px 0 0 8px;
6234 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6235 border-width: 1px;
6236 border-radius: 0 8px 8px 0;
6239 /*=====================*/
6240 /* SORT ORDER SELECTOR */
6241 /*=====================*/
6243 .sublevel-nav.sort .sublevel-item {
6244 font-feature-settings: 'smcp';
6245 padding: 7px 7px 6px 7px;
6246 text-transform: uppercase;
6247 box-shadow: 1px 1px 0 0 #bbb inset;
6248 pointer-events: auto;
6250 .sublevel-nav.sort {
6251 padding: 20px 0 0 0;
6252 border-radius: 8px;
6253 pointer-events: none;
6254 background-color: #bbb;
6255 overflow: hidden;
6256 box-shadow:
6257 0 0 1px #aaa,
6258 0 0 3px #aaa,
6259 0 0 5px #aaa;
6261 .sublevel-nav.sort::before {
6262 text-transform: uppercase;
6263 font-weight: 600;
6264 color: #444;
6265 text-shadow: 0.5px 0.5px 0 #fff;
6266 line-height: 2;
6267 z-index: 1;
6269 .sublevel-nav.sort::after {
6270 content: "";
6271 position: absolute;
6272 display: block;
6273 top: 0;
6274 left: 0;
6275 width: 100%;
6276 height: 100%;
6277 border-radius: 6px 6px 8px 8px;
6278 box-shadow:
6279 0 0 0 1px #bbb inset,
6280 0 20px 0 0 #bbb inset,
6281 0 20px 0 1px #aaa inset,
6282 0 0 0 3px #fffffa;
6285 /*================*/
6286 /* WIDTH SELECTOR */
6287 /*================*/
6288 /* THEME SELECTOR */
6289 /*================*/
6291 #width-selector button,
6292 #theme-selector button {
6293 box-shadow:
6294 0 0 0 4px #fffffa inset,
6295 0 0 0 5px #bbb inset;
6297 #width-selector button:hover,
6298 #width-selector button.selected,
6299 #theme-selector button:hover,
6300 #theme-selector button.selected {
6301 box-shadow:
6302 0 0 0 1px #bbb inset,
6303 0 0 0 4px #fffffa inset,
6304 0 0 0 5px #bbb inset;
6307 #theme-selector button::before {
6308 font-size: 0.9375em;
6309 padding: 6px;
6310 font-weight: 300;
6311 color: #bbb;
6312 background-color: #fff;
6314 #theme-selector button:hover::before,
6315 #theme-selector button.selected::before {
6316 color: #444;
6318 #width-selector button::after {
6319 color: #aaa;
6320 font-weight: 300;
6323 /*======================*/
6324 /* THEME TWEAKER TOGGLE */
6325 /*======================*/
6327 #theme-tweaker-toggle button {
6328 color: #777;
6331 /*=================*/
6332 /* QUICKNAV WIDGET */
6333 /*=================*/
6335 #quick-nav-ui a {
6336 box-shadow: 0 0 0 1px #ccc inset;
6337 color: #bbb;
6338 border-radius: 4px;
6340 #quick-nav-ui a[href='#bottom-bar'] {
6341 line-height: 1.8;
6343 #quick-nav-ui a:active {
6344 transform: scale(0.9);
6346 #quick-nav-ui a[href='#comments'].no-comments {
6347 opacity: 0.4;
6348 color: #bbb;
6350 @media only screen and (hover: hover) {
6351 #quick-nav-ui a:hover {
6352 background-color: #f0f0eb;
6353 color: #333;
6354 text-shadow: 0px 0px 0.5px #333;
6356 #quick-nav-ui a:focus:not(:hover) {
6357 transform: none;
6358 text-shadow: none;
6362 /*======================*/
6363 /* NEW COMMENT QUICKNAV */
6364 /*======================*/
6366 #new-comment-nav-ui .new-comments-count,
6367 #new-comment-nav-ui .new-comments-count::after {
6368 color: #999;
6369 font-weight: normal;
6371 #new-comment-nav-ui .new-comments-count {
6372 text-shadow: 0.5px 0.5px 0 #fff;
6374 #new-comment-nav-ui .new-comment-sequential-nav-button {
6375 color: #999;
6377 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6378 color: #e6e6e6;
6379 text-shadow: none;
6381 @media only screen and (hover: hover) {
6382 #new-comment-nav-ui .new-comments-count:hover {
6383 text-shadow:
6384 0 0 1px #fff,
6385 0 0 3px #fff,
6386 0 0 5px #fff,
6387 0 0 8px #fff,
6388 0.5px 0.5px 0 #fff;
6390 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6391 color: #d00;
6395 /*=================*/
6396 /* HNS DATE PICKER */
6397 /*=================*/
6399 #hns-date-picker span {
6400 color: #777;
6401 text-shadow: 0.5px 0.5px 0 #fff;
6402 font-weight: 600;
6404 #hns-date-picker input[type='text'] {
6406 #hns-date-picker input {
6407 border: 1px solid #aaa;
6408 color: #666;
6409 background-color: transparent;
6411 #hns-date-picker input:hover,
6412 #hns-date-picker input:focus {
6413 color: #444;
6415 #hns-date-picker span {
6416 color: #888;
6419 /*======================*/
6420 /* ANTI-KIBITZER TOGGLE */
6421 /*======================*/
6423 #anti-kibitzer-toggle button::before,
6424 #anti-kibitzer-toggle button::after {
6425 background-color: var(--GW-toggle-widget-color);
6426 -webkit-background-clip: text;
6427 color: transparent;
6428 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
6430 #anti-kibitzer-toggle button:hover::before,
6431 #anti-kibitzer-toggle button:hover::after {
6432 background-color: var(--GW-toggle-widget-hover-color);
6435 /*======================*/
6436 /* TEXT SIZE ADJUSTMENT */
6437 /*======================*/
6439 #text-size-adjustment-ui button {
6440 color: #777;
6442 #text-size-adjustment-ui button.default {
6443 font-weight: 600;
6445 #text-size-adjustment-ui button:disabled:hover {
6446 text-shadow: none;
6448 #text-size-adjustment-ui::after {
6449 color: #aaa;
6450 font-weight: 300;
6453 /*=============================*/
6454 /* COMMENTS VIEW MODE SELECTOR */
6455 /*=============================*/
6457 #comments-view-mode-selector a {
6458 color: #777;
6461 /*==========*/
6462 /* ARCHIVES */
6463 /*==========*/
6465 .archive-nav {
6466 border: 1px solid transparent;
6468 .archive-nav *[class^='archive-nav-item'] {
6469 border-style: solid;
6470 border-color: #ddd;
6471 border-width: 1px 0 1px 1px;
6473 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6474 border-top-width: 0;
6475 border-bottom-width: 0;
6477 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6478 border-bottom-width: 1px;
6480 .archive-nav *[class^='archive-nav-item']:last-child {
6481 border-right-width: 1px;
6483 .archive-nav span[class^='archive-nav-item'] {
6484 font-weight: bold;
6485 background-color: #ddd;
6488 .archive-nav a:link,
6489 .archive-nav a:visited {
6490 color: #999;
6491 font-weight: 300;
6493 .archive-nav a:hover,
6494 .archive-nav span[class^='archive-nav-item'] {
6495 font-weight: 300;
6496 background-color: #f0f0eb;
6497 color: #333;
6498 text-shadow: 0px 0px 0.5px #333;
6500 .archive-nav a:active {
6501 transform: scale(0.9);
6503 .archive-nav a:focus:not(:hover) {
6504 transform: none;
6506 .archive-nav a.archive-nav-item-day:hover {
6507 background-color: #ddd;
6510 /*===============*/
6511 /* KEYBOARD HELP */
6512 /*===============*/
6514 #nav-item-about button.open-keyboard-help {
6515 font-weight: 400;
6518 /*==========*/
6519 /* LISTINGS */
6520 /*==========*/
6522 h1.listing {
6523 margin: 0.7em 20px 0.1em 20px;
6524 max-width: calc(100% - 40px);
6525 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif, 'Font Awesome';
6526 text-align: center;
6529 h1.listing .link-post-link {
6530 font-size: 0.6875em;
6531 top: 6px;
6532 color: #888;
6534 h1.listing .post-title-link {
6535 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6536 text-decoration: none;
6537 color: #690010;
6538 font-weight: 500;
6539 text-shadow: 0.5px 0.5px 0.5px #de7069;
6540 padding: 0 2px 1px 1px;
6543 @media only screen and (hover: hover) {
6544 h1.listing .post-title-link {
6545 max-width: calc(100% - 60px);
6546 padding: 2px 2px 1px 1px;
6548 h1.listing a:hover,
6549 h1.listing a:focus {
6550 text-shadow:
6551 0px 0px 0.5px #ff987b,
6552 0px 0px 1.5px #c05651,
6553 0.5px 0.5px 0.5px #de7069;
6554 background-color: rgba(255,255,250,0.85);
6556 h1.listing:focus-within::before {
6557 display: inline-block;
6558 vertical-align: top;
6559 position: relative;
6560 left: -0.125em;
6561 top: 1px;
6562 color: #690010;
6564 h1.listing .link-post-link:hover {
6565 color: #690010;
6566 text-shadow:
6567 0.5px 0.5px 0 #fff,
6568 -0.5px -0.5px 0 #fff,
6569 0 0 2px #fff,
6570 0 0 3px #00c;
6574 h1.listing .edit-post-link {
6575 padding: 5px 3px 36px 0.5em;
6576 top: 0;
6577 right: 0;
6579 h1.listing .edit-post-link:hover {
6580 text-decoration: none;
6582 #content.user-page h1.listing .edit-post-link {
6583 background-color: #fff;
6586 /*======*/
6587 /* SPAM */
6588 /*======*/
6590 h1.listing.spam {
6591 opacity: 0.1;
6593 h1.listing.spam + .post-meta {
6594 opacity: 0.25;
6596 h1.listing.spam:hover,
6597 h1.listing.spam + .post-meta:hover,
6598 h1.listing.spam:hover + .post-meta {
6599 opacity: 1.0;
6602 /*===================*/
6603 /* LISTING POST-META */
6604 /*===================*/
6606 h1.listing + .post-meta {
6607 justify-content: center;
6609 h1.listing + .post-meta > * {
6610 line-height: 1.5;
6612 h1.listing + .post-meta .post-section {
6613 order: 1;
6615 h1.listing + .post-meta .post-section::before {
6616 left: unset;
6618 h1.listing + .post-meta .link-post-domain {
6619 order: 2;
6620 flex-basis: 100%;
6623 /*============*/
6624 /* USER PAGES */
6625 /*============*/
6627 #content.user-page h1.page-main-heading {
6628 border-bottom: 1px solid #ccc;
6631 #content.user-page #top-nav-bar {
6632 margin: -0.5em 0 0.25em 0;
6633 grid-column: 1 / span 3;
6636 #content.user-page h1.listing {
6637 padding: 6px 6px 0 6px;
6638 max-width: 100%;
6639 margin: 1rem 0 0 0;
6641 #content.own-user-page h1.listing,
6642 h1.listing.own-post-listing {
6643 padding-right: 36px;
6645 @media only screen and (hover: hover) {
6646 #content.user-page h1.listing:focus-within::before {
6647 top: -2px;
6650 #content.user-page h1.listing::after {
6651 content: "";
6652 display: block;
6653 position: absolute;
6654 top: 0;
6655 left: 0;
6656 width: 100%;
6657 height: calc(100% + 1.25em);
6658 box-shadow: 0px 0px 10px #555;
6660 #content.user-page h1.listing.link-post-listing::after {
6661 height: calc(100% + 2.125em);
6663 #content.user-page h1.listing + .post-meta {
6664 margin: 6px 6px 1.5rem 35px;
6666 #content.user-page h1.listing + .post-meta::after {
6667 display: none;
6670 #content.conversations-user-page h1.listing {
6671 padding: 8px 6px;
6672 font-size: 1.75rem;
6674 #content.conversations-user-page h1.listing + .post-meta {
6675 padding: 6px 4px;
6676 margin: 0;
6679 .user-stats .karma-total {
6680 font-weight: bold;
6683 /*===============*/
6684 /* CONVERSATIONS */
6685 /*===============*/
6687 #content.conversation-page h1.page-main-heading {
6688 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6691 /*============*/
6692 /* LOGIN PAGE */
6693 /*============*/
6695 .login-container form input[type='submit'] {
6696 font-weight: bold;
6697 background-color: #eee;
6698 border: 1px solid #ccc;
6700 .login-container form input[type='submit']:hover,
6701 .login-container form input[type='submit']:focus {
6702 background-color: #ddd;
6703 border: 1px solid #aaa;
6706 /* “Create account” form */
6708 #signup-form {
6709 background-color: #f3f3f3;
6710 border: 1px solid #ddd;
6712 #signup-form input[type='submit'] {
6713 background-color: #e4e4e4;
6714 border: 1px solid #ccc;
6716 #signup-form input[type='submit']:hover {
6717 background-color: #d8d8d8;
6718 border: 1px solid #aaa;
6721 /* Log in tip */
6723 .login-container .login-tip {
6724 border: 1px solid #eee;
6727 /* Message box */
6729 .error-box {
6730 border: 1px solid red;
6731 background-color: #faa;
6733 .success-box {
6734 border: 1px solid green;
6735 background-color: #afa;
6738 /*=====================*/
6739 /* PASSWORD RESET PAGE */
6740 /*=====================*/
6742 .reset-password-container input[type='submit'] {
6743 background-color: #e4e4e4;
6744 border: 1px solid #ccc;
6745 font-weight: bold;
6748 /*===================*/
6749 /* TABLE OF CONTENTS */
6750 /*===================*/
6752 .contents {
6753 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6754 margin-left: 1.5em;
6755 font-family: Garamond Premier Pro;
6756 min-width: unset;
6758 .contents-head {
6759 font-weight: bold;
6761 .contents-head::after {
6762 content: "";
6763 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6764 display: block;
6765 margin: 0 auto 0.5em auto;
6766 width: 75%;
6767 height: 1px;
6769 .contents a::after {
6770 display: none;
6772 .post-body .contents ul {
6773 margin: 0 0.5em;
6774 padding: 0 1em;
6776 .post-body .contents a,
6777 .post-body .contents a:visited {
6778 color: #690010;
6779 font-weight: 600;
6781 .post-body .contents a:hover {
6782 color: #690010;
6783 text-shadow:
6784 0px 0px 0.5px #ff987b,
6785 0px 0px 1px #c05651;
6786 border: none;
6788 .post-body .contents li::before {
6789 color: #999;
6790 font-feature-settings: 'onum';
6793 /*==================*/
6794 /* POSTS & COMMENTS */
6795 /*==================*/
6797 .body-text {
6798 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6800 h1.post-title {
6801 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6802 font-weight: 600;
6804 .body-text {
6805 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6806 font-weight: 500;
6807 line-height: 1.45;
6810 .body-text a,
6811 .body-text a:visited {
6812 text-decoration: none;
6813 color: inherit;
6815 .body-text a:link::after,
6816 .body-text a:visited::after {
6817 position: relative;
6818 content: "°";
6819 margin-left: 2px;
6820 margin-right: 1px;
6821 color: #933;
6823 .body-text a:hover {
6824 color: #999;
6825 border-bottom: 1px dotted #999;
6828 /*===========*/
6829 /* POST-META */
6830 /*===========*/
6832 .post-meta,
6833 h1.listing + .post-meta {
6834 text-align: center;
6835 font-weight: 400;
6837 .post-meta .post-section::before,
6838 .comment-meta .alignment-forum {
6839 color: #fff;
6840 top: -1px;
6841 text-shadow:
6842 1px 1px 0 #999,
6843 0 1px 0 #999,
6844 0 0 5px #999;
6845 margin: 0 0 0 0.5em;
6847 .comment-meta .alignment-forum {
6848 margin: 0 1em 0 0;
6850 a.post-section:hover {
6851 text-decoration: none;
6853 .post-meta .post-section.alignment-forum::before {
6854 text-shadow:
6855 1px 1px 0 #b9bbff,
6856 0 1px 0 #b9bbff,
6857 0 0 5px #b9bbff;
6859 a.post-section.alignment-forum:hover::before {
6860 color: #e7e8ff;
6862 .post-meta > *,
6863 .comment-meta a {
6864 color: #999;
6866 .post-meta a:hover,
6867 .comment-meta a:hover {
6868 color: #333;
6869 text-shadow: 0px 0px 0.5px #333;=
6871 .bottom-post-meta {
6872 border-color: #ddd;
6875 /*============*/
6876 /* LINK POSTS */
6877 /*============*/
6879 .post.link-post a.link-post-link {
6880 text-decoration: none;
6881 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6882 font-weight: 600;
6883 color: #77121a;
6885 .post.link-post a.link-post-link:hover {
6886 color: #942f2f;
6887 text-shadow:
6888 0px 0px 0.5px #ff987b,
6889 0px 0px 1.5px #c05651,
6890 0.5px 0.5px 0.5px #de7069;
6892 .post.link-post a.link-post-link:hover::before {
6893 color: #4879ec;
6894 text-shadow:
6895 0.5px 0.5px 0 #fff,
6896 -0.5px -0.5px 0 #fff,
6897 0 0 2px #fff,
6898 0 0 3px #00c;
6900 .post.link-post a.link-post-link:focus {
6901 text-shadow:
6902 0px 0px 0.5px #ff987b,
6903 0px 0px 1.5px #c05651,
6904 0.5px 0.5px 0.5px #de7069;
6907 /*=======*/
6908 /* POSTS */
6909 /*=======*/
6911 .post-body {
6912 font-size: 1.375rem;
6914 .post-page .post-meta::after {
6915 display: block;
6916 margin: 0.625em 0 0 0;
6917 font-size: 1.5rem;
6918 flex-basis: 100%;
6919 order: 2;
6921 .post-page .post-meta:first-of-type::after {
6922 content: "❦";
6924 .post-body {
6925 margin: 0;
6928 .post .bottom-post-meta {
6929 border-color: #bbb;
6930 padding-bottom: 17px;
6933 /*=================*/
6934 /* POST NAVIGATION */
6935 /*=================*/
6937 .post-nav-links a,
6938 .post-nav-links a:visited {
6939 color: #888;
6940 font-weight: 200;
6942 .post-nav-links a:hover {
6943 text-decoration: none;
6944 color: #333;
6945 text-shadow:
6946 0px 0px 0.5px #333;
6947 background-color: #f0f0eb;
6950 .post-nav-label {
6951 opacity: 0.75;
6952 font-weight: 300;
6955 .post-nav.prev, .sequence-title {
6956 border-right: 1px solid #bbb;
6959 @media only screen and (max-width: 900px) {
6960 .post-nav.prev,
6961 .post-nav.next {
6962 padding: 0.75em 0.5em 0.5em 0.5em;
6964 .sequence-title {
6965 border-top: 1px solid #bbb;
6966 border-right: none;
6968 .post-nav.prev {
6969 border-right: 1px solid #bbb;
6971 .post-nav.next {
6972 border-left: 1px solid #bbb;
6976 /*==========*/
6977 /* COMMENTS */
6978 /*==========*/
6980 .comments::before {
6981 border-top: 1px solid #bbb;
6984 #content > .comment-thread .comment-meta a.date:focus,
6985 #content > .comment-thread .comment-meta a.permalink:focus {
6986 color: #444;
6987 font-weight: normal;
6988 outline: 2px dotted #444;
6989 position: relative;
6990 background-color: #fff;
6991 padding: 0 5px;
6992 left: -5px;
6994 #content > .comment-thread .comment-meta a.date:focus + *,
6995 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6996 margin-left: -10px;
6998 .comment-item {
6999 border: 1px solid transparent;
7002 .comment-item {
7003 box-shadow:
7004 0 0 3px #bbb,
7005 0 0 5px #bbb,
7006 0 0 7px #bbb,
7007 0 0 10px #bbb;
7009 .comment-body {
7010 font-size: 1.25rem;
7013 /*================================*/
7014 /* DEEP COMMENT THREAD COLLAPSING */
7015 /*================================*/
7017 .comment-item input[id^="expand"] + label::after {
7018 color: #888;
7019 font-weight: 600;
7021 .comment-item input[id^="expand"] + label:hover::after {
7022 color: #c00;
7024 .comment-item input[id^="expand"] + label:active::after,
7025 .comment-item input[id^="expand"] + label:focus::after{
7026 color: #c00;
7028 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
7029 border-width: 1px 0 0 0;
7031 .comment-item input[id^="expand"] ~ .comment-thread {
7032 max-height: 39px;
7033 padding-top: 5px;
7036 /*==============*/
7037 /* COMMENT-META */
7038 /*==============*/
7040 .comment-meta {
7041 font-weight: 400;
7042 padding-top: 5px;
7043 padding-bottom: 4px;
7044 border-bottom: 1px dotted #bbb;
7047 .comment-meta .author {
7048 font-size: 1.125em;
7049 color: #666;
7050 font-weight: 600;
7052 .comment-item .author:not(.redacted).original-poster::after {
7053 opacity: 0.8;
7056 .comment-item .voting-controls.active-controls::after,
7057 .comment-item .voting-controls .karma-value::after,
7058 .post .voting-controls.active-controls::after,
7059 .post .voting-controls .karma-value::after,
7060 .author::before {
7061 background-color: #fff;
7062 color: #777;
7063 box-shadow: 0 0 0 1px #ccc inset;
7064 text-shadow: none;
7065 border-radius: 4px;
7067 .comment-item .voting-controls.active-controls::after,
7068 .post .voting-controls.active-controls::after {
7069 padding: 6px;
7070 bottom: -46px;
7072 .comment-item .voting-controls .karma-value::after,
7073 .post .voting-controls .karma-value::after {
7074 padding: 2px 8px;
7075 top: -26px;
7076 min-width: 64px;
7079 /*====================*/
7080 /* ANTI-KIBITZER MODE */
7081 /*====================*/
7083 .author.redacted,
7084 .inline-author.redacted {
7085 opacity: 0.8;
7086 font-weight: 300;
7089 .karma-value.redacted {
7090 opacity: 0.5;
7093 .link-post-domain.redacted {
7094 opacity: 0.5;
7097 /*===========================*/
7098 /* COMMENT THREAD NAVIGATION */
7099 /*===========================*/
7101 a.comment-parent-link::after {
7102 display: none;
7104 a.comment-parent-link::before {
7105 color: #bbb;
7107 a.comment-parent-link:hover::before {
7108 color: #999;
7109 text-shadow: none;
7110 background-image: linear-gradient(to right, transparent 0%, #bbb 100%);
7111 background-repeat: no-repeat;
7112 box-shadow: 1px 0 0 0 #bbb;
7115 .comment-child-link::before {
7116 color: #ccc;
7119 .comment-item-highlight {
7120 box-shadow:
7121 0 0 2px #e7b200,
7122 0 0 3px #e7b200,
7123 0 0 5px #e7b200,
7124 0 0 7px #e7b200,
7125 0 0 10px #e7b200;
7126 border: 1px solid #e7b200;
7128 .comment-item-highlight-faint {
7129 box-shadow:
7130 0 0 2px #f8e7b5,
7131 0 0 3px #f8e7b5,
7132 0 0 5px #f8e7b5,
7133 0 0 7px #f8e7b5,
7134 0 0 10px #f8e7b5;
7135 border: 1px solid #f8e7b5;
7138 .comment-popup {
7139 background-color: #fff;
7142 /*====================*/
7143 /* COMMENT PERMALINKS */
7144 /*====================*/
7146 .comment-meta .permalink,
7147 .comment-meta .lw2-link,
7148 .individual-thread-page .comment-parent-link:empty {
7149 filter: grayscale(50%);
7151 .comment-meta .permalink:hover,
7152 .comment-meta .lw2-link:hover,
7153 .individual-thread-page .comment-parent-link:empty:hover {
7154 filter: unset;
7157 /*=======================*/
7158 /* COMMENTS COMPACT VIEW */
7159 /*=======================*/
7161 #comments-list-mode-selector button {
7162 box-shadow:
7163 0 0 0 4px #fff inset,
7164 0 0 0 5px #bbb inset;
7166 #comments-list-mode-selector button:hover,
7167 #comments-list-mode-selector button.selected {
7168 box-shadow:
7169 0 0 0 5px #bbb inset;
7171 #content.compact > .comment-thread .comment-item {
7172 max-height: 56px;
7174 #content.compact > .comment-thread .comment-item::after {
7175 color: #888;
7176 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
7179 @media only screen and (hover: hover) {
7180 #content.compact > .comment-thread .comment-item:hover .comment,
7181 #content.compact > .comment-thread .comment-item.expanded .comment {
7182 background-color: #fff;
7183 outline: 3px solid #888;
7185 #content.compact > .comment-thread .comment-item:hover .comment::before,
7186 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7187 background-color: #fff;
7188 box-shadow:
7189 0 0 3px #fff,
7190 0 0 5px #fff,
7191 0 0 7px #fff,
7192 0 0 10px #fff,
7193 0 0 20px #fff,
7194 0 0 30px #fff,
7195 0 0 40px #fff;
7198 @media only screen and (hover: none) {
7199 #content.compact > .comment-thread.expanded .comment-item .comment {
7200 background-color: #fff;
7201 outline: 3px solid #888;
7203 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7204 background-color: #fff;
7205 box-shadow:
7206 0 0 3px #fff,
7207 0 0 5px #fff,
7208 0 0 7px #fff,
7209 0 0 10px #fff,
7210 0 0 20px #fff,
7211 0 0 30px #fff,
7212 0 0 40px #fff;
7216 #content.user-page.compact > h1.listing {
7217 margin-top: 0.5rem;
7219 #content.user-page.compact > h1.listing + .post-meta {
7220 margin-bottom: 1rem;
7223 /*===========================*/
7224 /* HIGHLIGHTING NEW COMMENTS */
7225 /*===========================*/
7227 .new-comment::before {
7228 outline: 2px solid #5a5;
7229 box-shadow:
7230 0 0 6px -2px #5a5 inset,
7231 0 0 4px #5a5,
7232 0 0 6px #5a5;
7235 /*=================================*/
7236 /* COMMENT THREAD MINIMIZE BUTTONS */
7237 /*=================================*/
7239 .comment-minimize-button {
7240 color: #ccc;
7242 .comment-minimize-button:hover {
7243 color: #aaa;
7245 .comment-minimize-button::after {
7246 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7247 color: #777;
7249 .comment-minimize-button.maximized::after {
7250 color: #ccc;
7253 /*=================================*/
7254 /* INDIVIDUAL COMMENT THREAD PAGES */
7255 /*=================================*/
7257 .individual-thread-page > h1 a {
7258 color: #690010;
7260 .individual-thread-page > h1 a:hover {
7261 text-shadow:
7262 0px 0px 0.5px #ff987b,
7263 0px 0px 1.5px #c05651,
7264 0.5px 0.5px 0.5px #de7069;
7267 .individual-thread-page > h1 {
7268 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7271 /*==============*/
7272 /* VOTE BUTTONS */
7273 /*==============*/
7275 .vote {
7276 position: relative;
7278 .vote::before {
7279 position: relative;
7280 z-index: 1;
7282 .vote::after {
7283 position: absolute;
7286 .karma .upvote::before {
7287 content: "\F077";
7288 top: 1px;
7290 .karma .downvote::before {
7291 content: "\F078";
7292 left: -2px;
7294 .karma .upvote::after {
7295 content: "\F325";
7296 left: 6px;
7297 bottom: 4px;
7299 .karma .downvote::after {
7300 content: "\F322";
7301 left: 4px;
7302 top: 4px;
7304 @-moz-document url-prefix() {
7305 .karma .upvote::after {
7306 left: 4px;
7307 bottom: 4px;
7309 .karma .downvote::after {
7310 left: 2px;
7311 top: 5px;
7315 .agreement .upvote::before {
7316 content: "\F00C";
7317 top: 1px;
7319 .agreement .downvote::before {
7320 content: "\F00D";
7321 left: -2px;
7323 .agreement .upvote::after {
7324 content: "\F560";
7325 left: 6px;
7326 bottom: 2px;
7328 .agreement .downvote::after {
7329 content: "\E59B";
7330 left: 2px;
7331 top: 1px;
7333 @-moz-document url-prefix() {
7334 .agreement .upvote::after {
7335 left: 4px;
7336 bottom: 2px;
7338 .agreement .downvote::after {
7339 left: 0;
7340 top: 1px;
7344 /**********/
7345 /* States.
7348 /* _ 1
7350 .vote {
7351 color: #bbb;
7354 /* _ 2
7356 .upvote:hover,
7357 .upvote:not(.none) {
7358 color: var(--GW-upvote-button-color);
7359 text-shadow:
7360 0 0 0.5px #fff,
7361 0 0 8px #0f0;
7363 .downvote:hover,
7364 .downvote:not(.none) {
7365 color: var(--GW-downvote-button-color);
7366 text-shadow:
7367 0 0 0.5px #fff,
7368 0 0 8px #f00;
7371 /* 0 _
7373 .vote::after {
7374 visibility: hidden;
7377 /* 1,2 _
7379 .vote.two-temp::after,
7380 .vote.two::after {
7381 visibility: visible;
7384 /* 1 _
7386 .vote.two-temp::after {
7387 color: #bbb;
7388 text-shadow: none;
7391 /* Disabled.
7393 .vote:disabled {
7394 visibility: unset;
7395 color: #eee;
7397 .vote:disabled:hover {
7398 text-shadow: none;
7401 /*===========================*/
7402 /* COMMENTING AND POSTING UI */
7403 /*===========================*/
7405 .posting-controls input[type='submit'] {
7406 background-color: #fff;
7407 border: 1px solid #aaa;
7408 font-weight: bold;
7410 .posting-controls input[type='submit']:hover,
7411 .posting-controls input[type='submit']:focus {
7412 background-color: #ddd;
7413 border: 1px solid #999;
7415 .comment + .comment-controls .action-button {
7416 font-weight: 400;
7419 .comment-controls .cancel-comment-button {
7420 font-weight: 600;
7421 color: #c00;
7422 text-shadow:
7423 0 0 1px #fff,
7424 0 0 2px #fff;
7426 .comment-controls .cancel-comment-button:hover {
7427 color: #f00;
7430 .new-comment-button {
7431 font-weight: 600;
7434 .comment-controls .delete-button,
7435 .comment-controls .retract-button {
7436 color: #d00;
7438 .comment-controls .delete-button::before {
7439 opacity: 0.6;
7440 font-weight: 400;
7442 .comment-controls .retract-button::before {
7443 opacity: 0.5;
7444 font-weight: 400;
7446 .comment-controls .edit-button,
7447 .comment-controls .unretract-button {
7448 color: #0a0;
7450 .comment-controls .edit-button::before,
7451 .comment-controls .unretract-button::before {
7452 font-weight: 400;
7454 .comment-controls .action-button:hover {
7455 color: #f00;
7456 text-shadow:
7457 0px 0px 0.5px #fff,
7458 0px 0px 1.5px #800,
7461 .post-controls {
7462 margin: 0.5em -0.75em 0 0;
7464 .edit-post-link,
7465 .edit-post-link:visited {
7466 color: #090;
7469 .posting-controls textarea {
7470 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7471 font-size: 1.25rem;
7472 font-weight: 500;
7473 color: #000;
7474 background-color: #fff;
7475 border-color: #aaa;
7476 box-shadow:
7477 0 0 0 1px #eee inset;
7479 .posting-controls textarea:focus {
7480 background-color: #ffd;
7481 border-color: #888;
7482 box-shadow:
7483 0 0 0 1px #ddf inset,
7484 0 0 0 1px #fff,
7485 0 0 0 2px #888;
7487 .posting-controls.edit-existing-post textarea:focus,
7488 .posting-controls form.edit-existing-comment textarea:focus {
7489 border-color: #090;
7490 box-shadow:
7491 0 0 0 1px #81ff7f inset,
7492 0 0 0 1px #fff,
7493 0 0 0 2px #090;
7496 /* GUIEdit buttons */
7498 .guiedit-buttons-container {
7499 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
7502 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7503 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7504 color: #050;
7506 .guiedit-buttons-container button {
7507 font-family: Font Awesome, 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7510 .guiedit::after {
7511 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7512 color: #777;
7513 text-shadow: none;
7516 /* Markdown hints */
7518 #markdown-hints-checkbox + label {
7519 color: #888;
7521 #markdown-hints-checkbox + label:hover {
7522 color: #e00;
7524 #markdown-hints {
7525 border: 1px solid #c00;
7526 background-color: #ffa;
7529 /*================*/
7530 /* EDIT POST FORM */
7531 /*================*/
7533 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7534 border-radius: 3px;
7535 border: 1px solid #ddd;
7536 color: #777;
7538 @media only screen and (hover:hover) {
7539 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7540 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7541 text-shadow:
7542 0 0 1px #fff,
7543 0 0 2px #fff,
7544 0 0 2.5px #aaa;
7546 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7547 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7548 border-color: #aaa;
7551 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7552 content: "\F00C";
7554 #edit-post-form input[type='radio'] + label {
7555 color: #777;
7556 border-color: #ddd;
7558 #edit-post-form input[type='radio'][value='all'] + label {
7559 border-radius: 8px 0 0 8px;
7560 border-width: 1px;
7562 #edit-post-form input[type='radio'][value='drafts'] + label {
7563 border-radius: 0 8px 8px 0;
7565 #edit-post-form input[type='radio'] + label:hover,
7566 #edit-post-form input[type='radio']:focus + label {
7567 background-color: #ddd;
7568 color: #000;
7570 #edit-post-form input[type='radio']:focus + label {
7571 color: #000;
7572 box-shadow:
7573 0 0 0 1px #aaa;
7575 #edit-post-form input[type='radio']:checked + label {
7576 background-color: #ddd;
7577 border-color: #ddd;
7578 color: #000;
7579 text-shadow:
7580 0 -1px 0 #fff,
7581 0 0.5px 0.5px #000;
7584 /*=======*/
7585 /* LINKS */
7586 /*=======*/
7589 text-decoration: none;
7590 color: #888;
7592 a:visited {
7593 color: #888;
7596 /*=========*/
7597 /* BUTTONS */
7598 /*=========*/
7600 button,
7601 input[type='submit'] {
7602 color: #888;
7605 button:active,
7606 input[type='submit']:active {
7607 color: #f00;
7608 transform: scale(0.9);
7610 .button:visited {
7611 color: #888;
7613 .button:active {
7614 transform: scale(0.9);
7616 @-moz-document url-prefix() {
7617 .button:active {
7618 transform: none;
7621 @media only screen and (hover: hover) {
7622 button:hover,
7623 input[type='submit']:hover,
7624 button:focus,
7625 input[type='submit']:focus {
7626 color: #333;
7627 text-shadow: 0px 0px 0.5px #333;
7630 .button:hover {
7631 color: #333;
7632 text-shadow: 0px 0px 0.5px #333;
7633 text-decoration: none;
7635 .button:focus:not(:hover) {
7636 transform: none;
7640 /*==========*/
7641 /* HEADINGS */
7642 /*==========*/
7644 .body-text h1,
7645 .body-text h2,
7646 .body-text h3,
7647 .body-text h4,
7648 .body-text h5,
7649 .body-text h6 {
7650 margin: 1.5em 0 0.25em 0;
7652 .body-text h4 {
7653 font-size: 1.15em;
7655 .body-text h3 {
7656 font-variant: small-caps;
7657 font-size: 1.3em;
7659 .body-text h2 {
7660 font-style: italic;
7661 font-size: 1.5em;
7663 .body-text h1 {
7664 font-size: 1.9em;
7665 border: none;
7667 .post-body h1 {
7668 text-align: center;
7669 margin: 1em 0 0 0;
7671 .post-body h2 {
7672 margin: 1em 0 0 0;
7674 .post-body h1::before {
7675 content: "❦";
7676 display: block;
7677 margin: 0 auto 1em auto;
7678 font-size: 0.625em;
7679 font-weight: normal;
7681 .post-body h2::before {
7682 content: "☙";
7683 text-align: center;
7684 display: block;
7685 margin: 0 auto 0.5em auto;
7686 font-weight: normal;
7687 font-style: normal;
7689 .post-body h1:first-child::before,
7690 .post-body .contents + h1::before,
7691 .post-body h2:first-child::before,
7692 .post-body .contents + h2::before {
7693 content: "";
7696 /*========*/
7697 /* QUOTES */
7698 /*========*/
7700 blockquote {
7701 border-left: 5px solid #ccc;
7704 /*========*/
7705 /* IMAGES */
7706 /*========*/
7708 #content img,
7709 #content figure.image img {
7710 border: 1px solid #ccc;
7712 #content figure img {
7713 border: 1px solid #000;
7715 #content img[src$='.svg'],
7716 #content figure img[src$='.svg'] {
7717 border: none;
7719 #content img[style^='float'] {
7720 border: 1px solid transparent;
7723 /*========*/
7724 /* TABLES */
7725 /*========*/
7727 #content:not(.tag-index-page) .body-text table,
7728 #content:not(.tag-index-page) .body-text table th,
7729 #content:not(.tag-index-page) .body-text table td {
7730 border: 1px solid #ddd;
7733 /*======*/
7734 /* MISC */
7735 /*======*/
7737 hr {
7738 height: 1px;
7739 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
7742 code,
7743 pre {
7744 font-family: Triplicate Code, Courier, Courier New, monospace;
7745 font-size: 0.8125em;
7748 pre {
7749 border: 1px solid #ceccc3;
7750 background-color: #f6f4ea;
7751 border-radius: 4px;
7752 padding: 0 1px;
7755 input[type='text'],
7756 input[type='search'],
7757 input[type='password'] {
7758 background-color: transparent;
7759 border: 1px solid #ccc;
7760 color: #000;
7762 input[type='text']:focus,
7763 input[type='search']:focus,
7764 input[type='password']:focus {
7765 background-color: #ffd;
7766 border: 1px solid #bbb;
7767 box-shadow: 0 0 1px #bbb;
7770 select {
7771 color: #000;
7774 /*============*/
7775 /* ABOUT PAGE */
7776 /*============*/
7778 .about-page mark {
7779 background-color: #e6e6e6;
7780 text-decoration: none;
7781 box-shadow:
7782 0 -1px 0 0 #000 inset,
7783 0 -3px 1px -2px #000 inset;
7784 padding: 0 1px;
7787 #content.about-page .accesskey-table {
7788 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7789 border-color: #ddd;
7792 #content.about-page img {
7793 border: 1px solid #000;
7796 /*========================*/
7797 /* QUALIFIED HYPERLINKING */
7798 /*========================*/
7800 #aux-about-link a {
7801 color: #777;
7803 #aux-about-link a:hover {
7804 opacity: 1.0;
7807 .qualified-linking label {
7808 color: #bbb;
7810 .qualified-linking label:hover {
7811 color: #333;
7812 text-shadow: 0px 0px 0.5px #333;
7815 .qualified-linking-toolbar {
7816 border: 1px solid #000;
7817 background-color: #fff;
7819 .qualified-linking-toolbar a {
7820 background-color: #eee;
7821 border: 1px solid #ccc;
7822 border-radius: 4px;
7824 .qualified-linking-toolbar a:visited {
7825 color: #888;
7827 .qualified-linking-toolbar a:hover {
7828 text-decoration: none;
7829 background-color: #ddd;
7831 .qualified-linking label::after {
7832 background-color: #fffffa;
7833 opacity: 0.8;
7836 /*======*/
7837 /* MATH */
7838 /*======*/
7840 .mathjax-block-container::-webkit-scrollbar {
7841 height: 12px;
7842 background-color: #f6f6ff;
7843 border-radius: 6px;
7844 border: 1px solid #ddf;
7846 .mathjax-block-container::-webkit-scrollbar-thumb {
7847 background-color: #dde;
7848 border-radius: 6px;
7849 border: 1px solid #cce;
7851 .mathjax-inline-container::-webkit-scrollbar {
7852 height: 8px;
7853 background-color: #f6f6ff;
7854 border-radius: 4px;
7855 border: 1px solid #ddf;
7857 .mathjax-inline-container::-webkit-scrollbar-thumb {
7858 background-color: #dde;
7859 border-radius: 4px;
7860 border: 1px solid #cce;
7864 /*===============*/
7865 /* USER MENTIONS */
7866 /*===============*/
7868 .textarea-container .autocomplete-container {
7869 background-color: rgba(255, 255, 170, 0.75);
7870 border: 1px solid rgba(136, 136, 136, 0.75);
7871 font-weight: 300;
7874 .textarea-container .autocomplete-container div.highlighted {
7875 background-color: rgba(136, 136, 136, 0.75);
7876 color: #fff;
7879 .textarea-container .autocomplete-container div:not(.highlighted):hover {
7880 background-color: rgba(136, 136, 136, 0.25);
7883 .textarea-container .autocomplete-container div span.age,
7884 .textarea-container .autocomplete-container div span.karma {
7885 color: #888;
7888 .textarea-container .autocomplete-container div.highlighted span.age,
7889 .textarea-container .autocomplete-container div.highlighted span.karma {
7890 color: #ddd;
7894 /*=================*/
7895 /* ALIGNMENT FORUM */
7896 /*=================*/
7898 #content.alignment-forum-index-page::before {
7899 background-color: #f4f5ff;
7900 border-color: #bbb;
7901 border-style: solid;
7902 border-width: 0 1px;
7904 #content.alignment-forum-index-page::after {
7905 grid-column: 1;
7906 font-family: "Concourse SmallCaps";
7907 font-weight: 600;
7908 background-color: #7f85b2;
7909 color: transparent;
7910 -webkit-background-clip: text;
7911 text-shadow:
7912 rgba(255,255,255,0.5) 0px 3px 3px;
7914 @media only screen and (hover: hover) {
7915 #content.alignment-forum-index-page h1.listing a:hover,
7916 #content.alignment-forum-index-page h1.listing a:focus {
7917 background-color: rgba(244,245,255,0.85);
7921 /*====================*/
7922 /* FOR NARROW SCREENS */
7923 /*====================*/
7925 @media only screen and (max-width: 1440px) {
7926 #hns-date-picker {
7927 background-color: #fffffa;
7928 opacity: 1.0;
7931 @media only screen and (max-width: 1160px) {
7932 #theme-selector:hover::after {
7933 width: calc(6em - 9px);
7934 height: calc(100% - 5px);
7935 top: 3px;
7936 left: 100%;
7938 #text-size-adjustment-ui button {
7939 background-color: #ddd;
7941 #text-size-adjustment-ui button:hover {
7942 background-color: #eee;
7944 #theme-tweaker-toggle button {
7945 background-color: #ddd;
7948 @media only screen and (max-width: 1080px) {
7949 #text-size-adjustment-ui button {
7950 border: 1px solid #999;
7951 padding: 0 0 0 1px;
7952 border-radius: 50%;
7953 box-shadow:
7954 0 0 6px #999 inset,
7955 0 0 0 1px transparent;
7957 #theme-tweaker-toggle button {
7958 border: 1px solid #999;
7959 box-shadow:
7960 0 0 10px #999 inset,
7961 0 0 0 1px transparent;
7962 border-radius: 50%;
7963 transform: scale(0.8);
7967 /*========*/
7968 /* MOBILE */
7969 /*========*/
7971 /*******************************************************/
7972 @media not screen and (hover:hover) and (pointer:fine) {
7973 /*******************************************************/
7974 #ui-elements-container > div[id$='-ui-toggle'] button {
7975 color: #bbb;
7976 text-shadow:
7977 0 0 1px #fffffa,
7978 0 0 3px #fffffa,
7979 0 0 5px #fffffa,
7980 0 0 10px #fffffa,
7981 0 0 20px #fffffa,
7982 0 0 30px #fffffa;
7985 #theme-selector {
7986 background-color: #fffffa;
7987 box-shadow:
7988 0 0 0 1px #ccc,
7989 0 0 1px 3px #fffffa,
7990 0 0 3px 3px #fffffa,
7991 0 0 5px 3px #fffffa,
7992 0 0 10px 3px #fffffa,
7993 0 0 20px 3px #fffffa;
7994 border-radius: 8px;
7996 #theme-selector::before {
7997 color: #999;
7998 font-weight: 300;
7999 text-shadow: 0.5px 0.5px 0 #fff;
8001 #theme-selector button {
8002 background-color: #fffffa;
8003 border-radius: 8px;
8005 #theme-selector button::after {
8006 color: #777;
8007 max-width: calc(100% - 3.5em);
8008 overflow: hidden;
8009 text-overflow: ellipsis;
8011 #theme-selector button.selected::after {
8012 color: #222;
8013 text-shadow:
8014 0 -1px 0 #fff,
8015 0 0.5px 0.5px #000;
8017 #theme-selector .theme-selector-close-button {
8018 color: #fffffa;
8019 text-shadow:
8020 1px 1px 0 #ccc,
8021 0 0 8px #ccc;
8022 opacity: 1.0;
8025 #quick-nav-ui {
8026 background-color: #fffffa;
8028 #quick-nav-ui,
8029 #new-comment-nav-ui,
8030 #hns-date-picker {
8031 box-shadow:
8032 0 0 1px 3px #fffffa,
8033 0 0 3px 3px #fffffa,
8034 0 0 5px 3px #fffffa,
8035 0 0 10px 3px #fffffa,
8036 0 0 20px 3px #fffffa;
8038 #quick-nav-ui a::after,
8039 #new-comment-nav-ui::before {
8040 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
8041 font-weight: bold;
8042 box-shadow:
8043 0 0 1px 0 #fffffa,
8044 0 0 3px 0 #fffffa,
8045 0 0 5px 0 #fffffa;
8046 background-color: #fffffa;
8047 border-radius: 4px;
8049 #quick-nav-ui,
8050 #new-comment-nav-ui {
8051 border-radius: 8px;
8053 #new-comment-nav-ui {
8054 background-color: #fffffa;
8055 border: 1px solid #ccc;
8057 #new-comment-nav-ui::before {
8058 color: #777;
8059 font-weight: 600;
8061 #new-comment-nav-ui .new-comment-sequential-nav-button {
8062 box-shadow: 0 0 0 1px #ccc;
8063 color: #777;
8065 #new-comment-nav-ui .new-comments-count {
8066 background-color: inherit;
8067 box-shadow: 0 -1px 0 0 #ccc;
8069 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
8070 border-radius: 7px 0 0 7px;
8072 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
8073 border-radius: 0 7px 7px 0;
8075 #new-comment-nav-ui button::after {
8076 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
8079 /*****************************************/
8080 @media only screen and (max-width: 900px) {
8081 /*****************************************/
8082 h1.listing {
8083 line-height: 1;
8085 h1.listing + .post-meta .post-section::before {
8086 position: unset;
8088 h1.listing + .post-meta .post-section {
8089 overflow: visible;
8092 .nav-bar-top:not(#primary-bar) .nav-inner {
8093 font-size: 1.125em;
8095 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
8096 padding: 6px 10px;
8099 #top-nav-bar .page-number {
8100 padding-top: 11px;
8102 #top-nav-bar::after {
8103 margin: 0 auto;
8106 .archive-nav *[class^='archive-nav-item-'] {
8107 border-width: 1px !important;
8109 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8110 background-color: #bbb;
8113 .comment-item .comment-item {
8114 margin: 0.75em 3px 3px 6px;
8116 .comment-item .comment-item + .comment-item {
8117 margin: 1.5em 3px 3px 6px;
8120 .sublevel-nav:not(.sort) .sublevel-item,
8121 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8122 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8123 border-radius: 8px;
8124 border-width: 1px;
8125 margin: 2px;
8128 .contents {
8129 margin-left: auto;
8131 /*******************************************/
8132 } @media only screen and (max-width: 720px) {
8133 /*******************************************/
8134 /*******************************************/
8135 } @media only screen and (max-width: 520px) {
8136 /*******************************************/
8137 h1.listing {
8138 font-size: 1.5rem;
8139 margin: 18px 6px 4px 6px;
8140 max-width: calc(100% - 12px);
8142 h1.listing + .post-meta {
8143 margin: 4px 6px;
8145 h1.listing + .post-meta > * {
8146 line-height: 1.4;
8148 h1.listing .link-post-link {
8149 top: 4px;
8152 #content.user-page h1.listing::after {
8153 height: calc(100% + 2.375em);
8155 #content.user-page h1.listing.link-post-listing::after {
8156 height: calc(100% + 3.375em);
8158 #content.user-page h1.listing + .post-meta {
8159 margin-bottom: 1.5rem;
8162 #content.compact > .comment-thread .comment-item {
8163 max-height: 104px;
8165 #content.compact.user-page h1.listing {
8166 margin-top: 0.5rem;
8168 #content.compact.user-page h1.listing + .post-meta {
8169 margin-bottom: 0.75rem;
8172 .comment-body {
8173 font-size: 1.1875rem;
8174 line-height: 1.35;
8177 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8178 padding: 5px 6px 6px 6px;
8179 font-weight: 600;
8181 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8182 box-shadow:
8183 0 0 0 1px #c00,
8184 0 0 0 1px #c00 inset;
8185 color: #c00;
8186 border-color: transparent;
8188 .textarea-container:focus-within .guiedit-buttons-container {
8189 background-color: #fff;
8190 border-top: 1px solid #ddf;
8192 #content.conversation-page .textarea-container:focus-within::after {
8193 background-color: #fff;
8195 .textarea-container:focus-within .guiedit-mobile-auxiliary-button,
8196 .textarea-container:focus-within button.guiedit {
8197 border: 1px solid #bbb;
8198 border-radius: 6px;
8200 #markdown-hints::after {
8201 color: #090;
8204 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8205 top: 2px;
8207 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8208 top: 1px;
8210 #edit-post-form textarea {
8211 min-height: calc(100vh - 440px);
8216 /*************/
8217 /* ACCORDIUS */
8218 /*************/
8220 /*======*/
8221 /* TAGS */
8222 /*======*/
8224 #tags {
8225 order: 12;
8226 display: flex;
8227 flex-basis: 100%;
8228 justify-content: center;
8229 margin: 0;
8230 flex-flow: row wrap;
8231 align-items: flex-start;
8234 /*========================*/
8235 /* READTHESEQUENCES THEME */
8236 /*========================*/
8238 /*++++++*/
8239 /* TAGS */
8240 /*++++++*/
8242 #tags {
8243 padding: 0.5em;
8244 align-items: center;
8246 #tags::before {
8247 content: "\F02C";
8248 font-family: Font Awesome;
8249 font-weight: 400;
8250 font-size: 0.875em;
8251 margin: 0 0.5em 0 0;
8252 opacity: 0.6;
8254 #tags a {
8255 margin: 0 0.375em 0 0;
8257 #tags a:not(:last-of-type)::after {
8258 content: ","
8261 .post-page .post-meta::after {
8262 order: 20;