Merge branch 'toc-collapse'
[lw2-viewer.git] / www / css / style-classic.windows.css
blob72162892741372342b555ed62affd55ae9e1a337
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 #content.sequence-page h1 {
1374 margin-top: 0.1em;
1377 /**************/
1378 /* USER PAGES */
1379 /**************/
1381 /*=---------------------=*/
1382 /*= User's display name =*/
1383 /*=---------------------=*/
1385 #content.user-page h1.page-main-heading {
1386 margin: 0.25em 0 0 0;
1387 line-height: 1.1;
1388 grid-column: 1 / span 2;
1389 order: -2;
1392 #content.user-page h1.page-main-heading .user-full-name {
1393 font-size: 1rem;
1394 font-weight: normal;
1395 padding-left: 0.5em;
1398 /*=--------------------=*/
1399 /*= User's karma total =*/
1400 /*=--------------------=*/
1402 #content.user-page .user-stats {
1403 grid-column: 3;
1404 order: -2;
1405 text-align: right;
1406 align-self: end;
1409 #content.user-page .user-stats .karma-type {
1410 white-space: nowrap;
1413 /*=----------------------=*/
1414 /*= Expanded vs. compact =*/
1415 /*=----------------------=*/
1417 #content.user-page #comments-list-mode-selector {
1418 grid-row: span 2;
1420 #content.user-page #comments-list-mode-selector button {
1421 display: block;
1424 /*=----------------------------------------------------=*/
1425 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1426 /*=----------------------------------------------------=*/
1428 #content.user-page .sublevel-nav {
1429 margin-bottom: 0.5em;
1432 /*=--------------=*/
1433 /*= User's posts =*/
1434 /*=--------------=*/
1436 #content.user-page h1.listing {
1437 margin: 0.5em 0 0 0;
1440 #content.user-page .user-bio :first-child {
1441 margin-top: 0.5em;
1444 /*****************/
1445 /* CONVERSATIONS */
1446 /*****************/
1448 /*=----------------------=*/
1449 /*= List of participants =*/
1450 /*=----------------------=*/
1452 #content.conversation-page .conversation-participants {
1453 grid-column: 2 / span 2;
1454 text-align: right;
1455 margin: 0.5em 0 0 0;
1457 .post-meta > .conversation-participants {
1458 white-space: normal;
1460 .conversation-participants ul,
1461 .conversation-participants li {
1462 list-style-type: none;
1463 display: inline-block;
1464 margin: 0;
1465 padding: 0;
1467 .conversation-participants li {
1468 margin-left: 0.375em;
1470 .conversation-participants li:not(:last-of-type)::after {
1471 content: ",";
1474 /*=-------------------------=*/
1475 /*= Posting controls (form) =*/
1476 /*=-------------------------=*/
1478 #content.conversation-page .posting-controls {
1479 padding: 0 0 1em 0;
1481 #content.conversation-page .post-meta-fields {
1482 overflow: auto;
1483 display: flex;
1484 flex-flow: row wrap;
1486 .posting-controls.standalone textarea {
1487 margin-top: 0.375em;
1489 .posting-controls.standalone form {
1490 padding: 0 1em;
1492 #content.conversation-page .posting-controls.standalone form {
1493 padding: 0 1em 3em 1em;
1495 .posting-controls.standalone input[type='text'],
1496 .posting-controls.standalone label {
1497 margin: 0.25em 0;
1499 .posting-controls.standalone label {
1500 width: 4em;
1501 text-align: right;
1502 padding: 2px 6px;
1503 border: 1px solid transparent;
1505 .posting-controls.standalone input[type='text'] {
1506 width: calc(100% - 4em);
1507 padding: 0.25em;
1509 .posting-controls.standalone input[type='submit'] {
1510 float: right;
1512 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1513 white-space: nowrap;
1515 .posting-controls.standalone #markdown-hints {
1516 top: calc(100% + 2em);
1519 /*=--------------------=*/
1520 /*= Conversation title =*/
1521 /*=--------------------=*/
1523 #content.conversation-page h1.page-main-heading {
1524 text-align: center;
1525 margin: 0.5em 0;
1526 line-height: 1.15;
1529 /*=----------=*/
1530 /*= Messages =*/
1531 /*=----------=*/
1533 #content.conversation-page > ul.comment-thread:last-of-type {
1534 margin-bottom: 2em;
1537 /******************/
1538 /* SEARCH RESULTS */
1539 /******************/
1541 #content.search-results-page h1.listing,
1542 #content.sequence-page h1.listing,
1543 #content.post-page h1.listing {
1544 font-size: 1.625em;
1547 /**************/
1548 /* LOGIN PAGE */
1549 /**************/
1551 .login-container {
1552 margin: 2em 0;
1553 padding: 1em;
1554 display: flex;
1555 flex-flow: row wrap;
1558 .login-container form {
1559 flex-basis: 50%;
1560 display: grid;
1561 grid-row-gap: 0.5em;
1562 align-content: start;
1564 .login-container form label {
1565 text-align: right;
1566 padding: 0.25em 0.5em;
1567 white-space: nowrap;
1568 grid-column: 1;
1570 .login-container form input {
1571 grid-column: 2;
1572 padding: 0.25em;
1574 .login-container form input[type='submit'],
1575 .login-container form a {
1576 grid-column: 2;
1577 justify-self: center;
1579 .login-container form input[type='submit'] {
1580 width: 10em;
1581 padding: 0.35em;
1582 line-height: 1;
1583 margin: 0.5em 0 0 0;
1585 .login-container form h1 {
1586 text-align: center;
1587 margin: 0;
1588 grid-column: 2;
1591 /* “Log in” form */
1593 #login-form {
1594 grid-template-columns: 5.5em 1fr;
1595 padding: 0.5em 2em 0.5em 0;
1598 /* “Create account” form */
1600 #signup-form {
1601 font-size: 0.9em;
1602 grid-template-columns: 8.5em 1fr;
1603 padding: 0.5em 1em 1em 1em;
1605 #signup-form h1 {
1606 font-size: 1.7em;
1608 #signup-form input[type='submit'] {
1609 padding: 0.4em 0.5em 0.5em 0.5em;
1612 /* Log in tip */
1614 .login-container .login-tip {
1615 padding: 0.5em 0.5em 0.5em 3em;
1616 margin: 2em 4em 0 4em;
1617 text-indent: -2em;
1618 line-height: 1.4;
1620 .login-container .login-tip span {
1621 font-weight: bold;
1624 /* Message box */
1626 #content.login-page .error-box {
1627 margin: 1.5em 0.875em -1.5em 0.875em;
1629 .error-box, .success-box {
1630 padding: 0.25em;
1631 text-align: center;
1634 /***********************/
1635 /* PASSWORD RESET PAGE */
1636 /***********************/
1638 .reset-password-container {
1639 margin-bottom: 2em;
1641 .reset-password-container input[type='submit'] {
1642 padding: 0.2em 0.5em;
1643 width: unset;
1645 .reset-password-container input {
1646 margin-left: 0.5em;
1647 width: 12em;
1649 .reset-password-container label {
1650 display: inline-block;
1651 width: 9em;
1653 .reset-password-container form > div {
1654 margin: 0.2em;
1656 .reset-password-container .action-container {
1657 padding-left: 11em;
1658 padding-top: 0.2em;
1660 .reset-password-container .error-box {
1661 margin: unset;
1665 /*********************/
1666 /* TABLE OF CONTENTS */
1667 /*********************/
1669 .contents {
1670 float: right;
1671 min-width: 6em;
1672 max-width: 40%;
1673 margin: 1.25em 0 0.75em 1.25em;
1674 padding: 7px 14px 10px 10px;
1675 position: relative;
1676 z-index: 1;
1679 .collection-page .contents {
1680 margin-top: 0;
1683 .contents-head {
1684 text-align: center;
1685 margin-bottom: 0.25em;
1688 .body-text .contents ul {
1689 list-style-type: none;
1690 margin: 0 0 0 0.5em;
1691 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1692 padding-left: 1em;
1693 font-size: 0.75em;
1695 .body-text .contents li {
1696 margin: 0.15em 0 0.3em 1em;
1697 text-align: left;
1698 text-indent: -1em;
1699 line-height: 1.2;
1700 position: relative;
1702 .body-text .contents li::before {
1703 position: absolute;
1704 width: 3em;
1705 display: block;
1706 text-align: right;
1707 left: -4.5em;
1709 .contents .toc-item-1 {
1710 counter-increment: toc-item-1;
1711 counter-reset: toc-item-2 toc-item-3;
1713 .contents .toc-item-1::before {
1714 content: counter(toc-item-1);
1716 .contents .toc-item-1 ~ .toc-item-2 {
1717 margin-left: 2.9em;
1718 font-size: 0.95em;
1720 .contents .toc-item-2 {
1721 counter-increment: toc-item-2;
1722 counter-reset: toc-item-3;
1724 .contents .toc-item-1 ~ .toc-item-2::before {
1725 content: counter(toc-item-1) "." counter(toc-item-2);
1727 .contents .toc-item-2::before {
1728 content: counter(toc-item-2);
1730 .contents .toc-item-1 + .toc-item-3 {
1731 counter-increment: toc-item-2 toc-item-3;
1733 .contents .toc-item-2 ~ .toc-item-3,
1734 .contents .toc-item-1 ~ .toc-item-3 {
1735 margin-left: 2.9em;
1736 font-size: 0.95em;
1738 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1739 margin-left: 5.7em;
1740 font-size: 0.9em;
1742 .contents .toc-item-3 {
1743 counter-increment: toc-item-3;
1745 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1746 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1748 .contents .toc-item-1 ~ .toc-item-3::before {
1749 content: counter(toc-item-1) "." counter(toc-item-3);
1751 .contents .toc-item-2 ~ .toc-item-3::before {
1752 content: counter(toc-item-2) "." counter(toc-item-3);
1754 .contents .toc-item-3::before {
1755 content: counter(toc-item-3);
1757 .contents .toc-item-4,
1758 .contents .toc-item-5,
1759 .contents .toc-item-6 {
1760 display: none;
1763 .contents.collapsed {
1764 margin-bottom: 0.25em;
1765 padding-left: 1em;
1766 padding-right: 1.75em;
1769 .contents.collapsed .contents-head {
1770 margin: 0;
1772 .contents.collapsed .contents-list {
1773 display: none;
1776 .contents .toc-collapse-toggle-button {
1777 position: absolute;
1778 top: 1px;
1779 right: 1.5px;
1780 font-family: "Font Awesome", "Font Awesome 5 Free";
1781 font-weight: 900;
1782 font-size: 1.5rem;
1783 padding: 0;
1785 .contents .toc-collapse-toggle-button:active {
1786 transform: translateX(1px) translateY(1px);
1789 .contents.collapsed .toc-collapse-toggle-button {
1790 width: calc(100% - 3px);
1791 height: calc(100% - 2px);
1792 background-color: transparent;
1793 display: flex;
1794 justify-content: flex-end;
1795 align-items: flex-start;
1799 /********************/
1800 /* POSTS & COMMENTS */
1801 /********************/
1803 .post-meta > *,
1804 .comment-meta > * {
1805 display: inline-block;
1806 margin-right: 1em;
1807 font-size: 1.0625em;
1809 .body-text {
1810 overflow-wrap: break-word;
1811 text-align: justify;
1813 .body-text p {
1814 margin: 1em 0;
1816 .retracted .body-text {
1817 text-decoration: line-through;
1820 .bare-url {
1821 word-break: break-all;
1822 hyphens: auto;
1824 .body-text a:not([href]),
1825 .body-text a:not([href]):hover,
1826 .body-text a:not([href])::before,
1827 .body-text a:not([href])::after {
1828 text-decoration: none;
1829 text-shadow: unset;
1830 border: unset;
1831 color: unset;
1832 content: unset;
1834 /*************/
1835 /* POST-META */
1836 /*************/
1838 .post-meta {
1839 display: flex;
1840 flex-flow: row wrap;
1841 justify-content: center;
1843 .post-meta .lw2-link {
1844 opacity: 0.5;
1845 order: 1;
1847 .post-meta > *,
1848 .post-meta .post-section::before {
1849 margin: 0 0.5em;
1851 .post-meta .post-section {
1852 order: -1;
1853 margin: 0;
1854 visibility: hidden;
1856 .post-meta .post-section::before,
1857 .comment-meta .alignment-forum {
1858 visibility: visible;
1859 font-family: "Font Awesome", "Font Awesome 5 Free";
1860 font-weight: 900;
1862 .post-section.frontpage::before {
1863 content: "\F015";
1865 .post-section.featured::before {
1866 content: "\F005";
1868 .post-section.meta::before {
1869 content: "\F077";
1871 .post-section.events::before {
1872 content: "\F5A0";
1874 .post-section.personal::before {
1875 content: "\F007";
1877 .post-section.draft::before {
1878 content: "\F15B";
1880 .post-section.alignment-forum::before,
1881 .comment-meta .alignment-forum {
1882 content: "AF";
1883 font-family: Concourse, 'Changa One';
1886 /*= Karma controls hover tooltips =*/
1888 @media only screen and (pointer: fine) {
1889 .post .voting-controls,
1890 .comment-item .voting-controls {
1891 position: relative;
1893 .post .karma.active-controls::after,
1894 .comment-item .karma.active-controls::after {
1895 content: "Double-click for strong vote";
1896 position: absolute;
1897 pointer-events: none;
1898 display: block;
1899 left: 6px;
1900 width: 100%;
1901 line-height: 1.15;
1902 white-space: normal;
1903 text-align: center;
1904 font-size: 0.875rem;
1905 opacity: 0;
1906 transition: opacity 0.2s ease;
1908 .post .voting-controls.active-controls:hover::after,
1909 .comment-item .voting-controls.active-controls:hover::after {
1910 opacity: 1.0;
1913 .post .voting-controls .karma-value::after,
1914 .comment-item .voting-controls .karma-value::after {
1915 content: attr(title);
1916 position: absolute;
1917 pointer-events: none;
1918 display: block;
1919 left: 50%;
1920 transform: translateX(-50%);
1921 white-space: pre-wrap;
1922 width: max-content;
1923 text-align: center;
1924 font-size: 0.875rem;
1925 color: #bbb;
1926 opacity: 0;
1927 transition: opacity 0.2s ease;
1929 .post .voting-controls.agreement .karma-value:hover::after,
1930 .comment-item .voting-controls.agreement .karma-value:hover::after {
1931 top: unset;
1932 bottom: 100%;
1934 .post .voting-controls .karma-value:hover::after,
1935 .comment-item .voting-controls .karma-value:hover::after {
1936 opacity: 1.0;
1938 .post .voting-controls.waiting .karma-value:hover::after,
1939 .comment-item .voting-controls.waiting .karma-value:hover::after {
1940 display: none;
1942 .comment-item .voting-controls .karma-value:hover::after {
1943 z-index: 5001;
1946 .author {
1947 position: relative;
1949 .author:not(.redacted)::before {
1950 content: attr(data-full-name);
1951 position: absolute;
1952 pointer-events: none;
1953 display: block;
1954 padding: 0 1em;
1955 left: 50%;
1956 bottom: 2em;
1957 transform: translateX(-50%);
1958 white-space: nowrap;
1959 text-align: center;
1960 font-size: 0.875rem;
1961 font-weight: normal;
1962 opacity: 0;
1963 transition: opacity 0.2s ease;
1964 z-index: 5001;
1966 .author:hover::before {
1967 opacity: 1.0;
1971 /*********/
1972 /* POSTS */
1973 /*********/
1975 .post {
1976 max-width: 100%;
1979 .post-body {
1980 min-height: 8em;
1981 padding: 0 30px;
1982 line-height: 1.5;
1983 font-size: 1.3rem;
1984 overflow: auto;
1985 margin: 0.5em 0 0 0;
1987 h1.post-title {
1988 margin: 1.1em 0 0.35em 0;
1989 padding: 0 30px;
1990 text-align: center;
1991 font-size: 2.5em;
1992 line-height: 1;
1994 .post .post-meta {
1995 text-align: center;
1996 position: relative;
1997 z-index: 2;
1999 .post .top-post-meta:last-child {
2000 margin-bottom: 40px;
2002 .post .bottom-post-meta {
2003 margin: 0;
2004 padding: 20px 0;
2006 .bottom-post-meta {
2007 border-style: solid;
2008 border-width: 1px 0;
2011 /**********/
2012 /* EVENTS */
2013 /**********/
2015 .event-info .map {
2016 position: relative;
2017 width: 100%;
2018 margin: 2em 0 1em;
2021 .event-info .map::before {
2022 content: "";
2023 display: block;
2024 padding-bottom: 50%;
2027 .event-info .map iframe {
2028 width: 100%;
2029 height: 100%;
2030 border: 1px solid #000;
2031 position: absolute;
2032 top: 0;
2033 left: 0;
2036 .event-info ul {
2037 list-style: none;
2038 padding: 0;
2039 text-align: center;
2042 /*******************/
2043 /* POST NAVIGATION */
2044 /*******************/
2046 .post-nav-item {
2047 display: grid;
2048 grid-template: 100% / 32% 36% 32%;
2049 grid-template-areas:
2050 "prev seq next";
2052 .post-nav {
2053 display: flex;
2054 flex-flow: column;
2055 justify-content: flex-end;
2056 padding: 0.5em;
2059 .post-nav-title {
2060 font-size: 1.125em;
2061 line-height: 1.15;
2062 display: inline;
2063 border-top: 1px solid transparent;
2065 .post-nav.prev .post-nav-title,
2066 .post-nav.next .post-nav-title {
2067 border-bottom: 1px solid transparent;
2070 .sequence-title {
2071 align-items: center;
2072 text-align: center;
2073 grid-area: seq;
2075 .sequence-title .post-nav-title {
2076 font-size: 1.5em;
2079 .post-nav.prev {
2080 grid-area: prev;
2081 align-items: flex-start;
2083 .post-nav.prev .post-nav-title::before {
2084 content: "\F0D9\2005";
2086 .post-nav.next {
2087 grid-area: next;
2088 text-align: right;
2089 align-items: flex-end;
2091 .post-nav.prev .post-nav-label,
2092 .post-nav.next .post-nav-label {
2093 display: none;
2095 .post-nav.next .post-nav-title::after {
2096 content: "\2004\F0DA";
2098 .post-nav.prev .post-nav-title::before,
2099 .post-nav.next .post-nav-title::after {
2100 font-family: Font Awesome;
2101 font-weight: 900;
2102 vertical-align: text-bottom;
2103 opacity: 0.75;
2105 .post-nav-links {
2106 max-width: 100%;
2109 @media only screen and (max-width: 900px) {
2110 .post-nav-item {
2111 font-size: 0.875em;
2112 grid-template: auto auto / 50% 50%;
2113 grid-template-areas:
2114 "prev next"
2115 "seq seq";
2117 .post-nav.prev .post-nav-title,
2118 .post-nav.next .post-nav-title {
2119 border-bottom: none;
2121 .post-nav.prev {
2122 margin: 0 0 0 -1px;
2123 position: relative;
2124 left: 1px;
2126 .sequence-title {
2127 padding: 0.75em 0;
2130 @media only screen and (max-width: 520px) {
2131 .post-nav-links + .comments {
2132 padding: 1em 0 0 0;
2136 .related-posts, .related-post-group {
2137 padding-bottom: 1em;
2139 .related-post-type {
2140 font-size: 1.2em;
2141 font-weight: 600;
2142 margin-top: 0.5em;
2143 margin-bottom: -0.5em;
2144 list-style-type: disc;
2145 margin-left: -0.5em;
2146 opacity: 0.7;
2148 .related-post-type::before {
2149 content: "\269c";
2150 font-size: 1.375em;
2151 font-weight: normal;
2152 margin-right: 0.15em;
2153 position: relative;
2154 vertical-align: baseline;
2155 top: 0.05em;
2157 .related-posts .post-type-prefix {
2158 display: none;
2161 .crosspost {
2162 padding: 0.1em 1em;
2163 margin: 1em auto;
2166 /**************/
2167 /* LINK POSTS */
2168 /**************/
2170 .post.link-post > .post-body > p:first-child {
2171 text-align: center;
2172 font-size: 1.125em;
2173 margin: 0.5em 0 0 0;
2175 .post.link-post > .post-body > p:only-child {
2176 font-size: 1.5em;
2177 margin: 1em 0;
2179 .post.link-post a.link-post-link::before {
2180 content: "\F0C1";
2181 font-family: "Font Awesome", "Font Awesome 5 Free";
2182 font-weight: 900;
2183 font-size: 0.75em;
2184 position: relative;
2185 top: -2px;
2186 margin-right: 0.25em;
2189 /************/
2190 /* COMMENTS */
2191 /************/
2193 .comments {
2194 max-width: 100%;
2195 padding: 0 0 1px 0;
2196 position: relative;
2198 .comments::before {
2199 content: "";
2200 position: absolute;
2201 display: block;
2202 top: 0;
2203 left: 0;
2204 width: 100%;
2205 height: 100%;
2206 pointer-events: none;
2208 ul.comment-thread {
2209 list-style-type: none;
2210 padding: 0;
2211 max-width: 100%;
2213 .comments .comment-thread > li {
2214 position: relative;
2216 #content > #top-nav-bar + .comment-thread .comment-item {
2217 margin-top: 0;
2220 .comment-item {
2221 margin: 2em 0 0 0;
2223 .comment-item .comment-item {
2224 margin: 1em 8px 8px 16px;
2226 .comment-item .comment-item + .comment-item {
2227 margin: 2em 8px 8px 16px;
2230 .comment-body {
2231 line-height: 1.45;
2232 font-size: 1.2rem;
2233 padding: 10px;
2235 .comment-body ul {
2236 list-style-type: circle;
2238 .comment-body > *:first-child {
2239 margin-top: 0;
2241 .comment-body > *:last-child {
2242 margin-bottom: 0;
2245 .comments-empty-message {
2246 width: 100%;
2247 text-align: center;
2248 padding: 0.75em 0 0.9em 0;
2249 font-size: 1.375em;
2252 /**********************************/
2253 /* DEEP COMMENT THREAD COLLAPSING */
2254 /**********************************/
2256 .comment-item > input[id^="expand"] {
2257 display: none;
2259 .comment-item > input[id^="expand"] + label {
2260 display: block;
2261 visibility: hidden;
2262 position: relative;
2263 margin: 8px 9px;
2265 .comment-item > input[id^="expand"] + label::after {
2266 content: "(Expand " attr(data-child-count) " below)";
2267 visibility: visible;
2268 position: absolute;
2269 left: 0;
2270 white-space: nowrap;
2271 cursor: pointer;
2273 .comment-item > input[id^="expand"]:checked + label::after {
2274 content: "(Collapse " attr(data-child-count) " below)";
2276 .comment-item > input[id^="expand"] ~ .comment-thread {
2277 max-height: 34px;
2278 overflow: hidden;
2280 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2281 margin-top: 0;
2283 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2284 max-height: 1000000px;
2287 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2288 margin: 0;
2290 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2291 display: none;
2294 /*************/
2295 /* BACKLINKS */
2296 /*************/
2298 .backlinks > input {
2299 display: none;
2302 .backlinks > label {
2303 margin-left: 10px;
2304 display: block;
2305 color: #00f;
2306 cursor: pointer;
2309 .backlinks > label::before {
2310 content: " ";
2311 border-left: 5px solid currentColor;
2312 border-top: 5px solid transparent;
2313 border-bottom: 5px solid transparent;
2314 transition: transform 0.25s ease-out;
2315 transform-origin: 29% 55%;
2316 display: inline-block;
2317 padding-right: 0.5em;
2320 .backlinks > input:checked + label::before {
2321 transform: rotate(90deg);
2324 .backlinks li {
2325 margin-top: 0;
2328 .backlinks > ul {
2329 height: 0;
2330 perspective-origin: top;
2331 transform: perspective(100em) rotateX(-90deg);
2332 transform-origin: center top;
2333 opacity: 0;
2334 margin-top: 0.5em;
2335 margin-bottom: 0.5em;
2338 .backlinks > input:checked ~ ul {
2339 height: auto;
2340 transform: perspective(100em) rotateX(0deg);
2341 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2342 opacity: 1;
2345 /****************/
2346 /* COMMENT-META */
2347 /****************/
2349 .comment-meta {
2350 padding: 2px 24px 2px 10px;
2351 margin: 0 -1px;
2352 border: none;
2353 display: flex;
2354 flex-flow: row wrap;
2355 align-items: baseline;
2357 .user-page .comment-meta,
2358 .conversation-page .comment-meta {
2359 padding-right: 10px;
2361 .comment-meta .comment-post-title {
2362 flex-basis: 100%;
2363 overflow: hidden;
2364 text-overflow: ellipsis;
2365 white-space: nowrap;
2366 line-height: 1.3;
2368 .conversation-page .comment-meta .comment-post-title {
2369 margin: 0;
2370 flex-basis: unset;
2371 flex: 1 0 auto;
2372 text-align: right;
2373 display: none; /* Not sure if we need to display this... */
2375 .comment-item .author:not(.redacted).original-poster::after {
2376 content: "\2004(OP)";
2377 font-size: 0.75em;
2380 /*****************************/
2381 /* COMMENT THREAD NAVIGATION */
2382 /*****************************/
2384 a.comment-parent-link:not(.inline-author),
2385 a.comment-parent-link.inline-author::before {
2386 opacity: 0.5;
2388 a.comment-parent-link:hover {
2389 opacity: 1.0;
2391 a.comment-parent-link::before {
2392 content: "\F062";
2393 font-family: "Font Awesome", "Font Awesome 5 Free";
2394 font-weight: 900;
2395 font-size: 0.75rem;
2396 line-height: 1;
2397 position: absolute;
2398 z-index: 1;
2399 display: block;
2400 padding: 3px 3px 0 3px;
2401 width: 16px;
2402 height: calc(100% + 2px);
2403 top: -1px;
2404 left: -17px;
2406 a.comment-parent-link::after {
2407 content: "";
2408 position: absolute;
2409 z-index: 0;
2410 display: block;
2411 width: calc(100% + 26px);
2412 height: calc(100% + 38px);
2413 top: -29px;
2414 left: -17px;
2415 pointer-events: none;
2416 overflow: hidden;
2417 visibility: hidden;
2419 a.comment-parent-link:hover::after {
2420 visibility: visible;
2423 .comment-child-links {
2424 flex-basis: 100%;
2426 .comment-child-link {
2427 margin: 0 0.25em;
2428 display: inline-block;
2430 .comment-child-link::before {
2431 content: ">";
2432 display: inline-block;
2433 margin: 0 2px 0 0;
2436 .comment-popup {
2437 position: fixed;
2438 top: 10%;
2439 right: 10%;
2440 max-width: 700px;
2441 z-index: 10001;
2442 font-size: 1rem;
2443 white-space: unset;
2444 pointer-events: none;
2446 .comment-popup .comment-parent-link {
2447 display: none;
2449 .comment-popup .comment-body {
2450 font-size: 1.0625rem;
2453 .comment-item.depth-odd {
2454 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2455 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2457 .comment-item.depth-even {
2458 --GW-comment-background-color: var(--GW-comment-background-color-even);
2459 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2462 .comment-item:target {
2463 --GW-comment-background-color: var(--GW-comment-background-color-target);
2465 .comment-item:target > .comment-thread > .comment-item {
2466 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2469 /**********************/
2470 /* COMMENT PERMALINKS */
2471 /**********************/
2472 /********************/
2473 /* COMMENT LW LINKS */
2474 /********************/
2476 .comment-meta .permalink::before,
2477 .comment-meta .lw2-link::before,
2478 .individual-thread-page a.comment-parent-link:empty::before {
2479 content: "";
2480 display: inline-block;
2481 width: 1rem;
2482 height: 1rem;
2483 border-radius: 3px;
2484 box-shadow:
2485 0 0 0 1px #fff,
2486 0 0 0 2px #00e,
2487 0 0 0 3px transparent;
2488 padding: 0 0 0 2px;
2489 background-size: 100%;
2490 position: relative;
2491 top: 2px;
2492 opacity: 0.5;
2494 .comment-meta .permalink::before {
2495 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');
2497 .comment-meta .lw2-link::before {
2498 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==');
2500 .individual-thread-page a.comment-parent-link:empty::before {
2501 left: unset;
2502 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==');
2504 .comment-meta .permalink:hover::before {
2505 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');
2507 .comment-meta .lw2-link:hover::before {
2508 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==');
2510 .individual-thread-page a.comment-parent-link:empty:hover::before {
2511 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=');
2513 .comment-meta .permalink:hover::before,
2514 .comment-meta .lw2-link:hover::before,
2515 .individual-thread-page a.comment-parent-link:empty:hover::before {
2516 box-shadow:
2517 0 0 0 2px #00e,
2518 0 0 0 3px transparent;
2519 opacity: 1.0;
2520 filter: unset;
2522 .comment-meta .permalink:active::before,
2523 .comment-meta .lw2-link:active::before,
2524 .individual-thread-page a.comment-parent-link:empty:active::before {
2525 transform: scale(0.9);
2528 .comment-meta .permalink,
2529 .comment-meta .lw2-link,
2530 .individual-thread-page .comment-parent-link:empty {
2531 position: relative;
2532 opacity: 1.0;
2534 .comment-meta .permalink::after,
2535 .comment-meta .lw2-link::after,
2536 .individual-thread-page .comment-parent-link:empty::after {
2537 content: "";
2538 width: 30px;
2539 height: 30px;
2540 display: block;
2541 position: absolute;
2542 top: -2px;
2543 left: -7px;
2544 box-shadow: none;
2545 pointer-events: auto;
2546 visibility: visible;
2549 /*************************/
2550 /* COMMENTS COMPACT VIEW */
2551 /*************************/
2553 #comments-list-mode-selector,
2554 #content.index-page #comments-list-mode-selector,
2555 #content.user-page #comments-list-mode-selector {
2556 padding-top: 6px;
2557 grid-column: 1;
2558 position: unset;
2559 z-index: 1;
2560 justify-self: start;
2561 align-self: start;
2563 #comments-list-mode-selector button {
2564 color: transparent;
2565 width: 32px;
2566 height: 32px;
2567 padding: 6px;
2568 margin: 1px;
2569 overflow: hidden;
2570 background-repeat: no-repeat;
2571 background-size: 100%;
2572 background-origin: content-box;
2574 #comments-list-mode-selector button:disabled {
2575 cursor: auto;
2577 #comments-list-mode-selector button.expanded {
2578 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2580 #comments-list-mode-selector button.compact {
2581 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2583 @media only screen and (max-resolution: 1dppx) {
2584 #comments-list-mode-selector button.expanded {
2585 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2587 #comments-list-mode-selector button.compact {
2588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2592 #content > ul.comment-thread > li.comment-item,
2593 #content.compact > ul.comment-thread > li.comment-item {
2594 margin: 0;
2597 #content > .comment-thread {
2598 margin: 1em 0;
2600 #content.compact > .comment-thread {
2601 font-size: 0.9375rem;
2602 margin: 0.5em 0;
2604 #content.compact > .comment-thread:hover {
2605 z-index: 1;
2607 #content.compact > .comment-thread .comment-body {
2608 font-size: 1.0625rem;
2610 #content.compact > .comment-thread .comment-item,
2611 #content.index-page .comment-item.ignored,
2612 #content.inbox-user-page .comment-item.ignored {
2613 max-height: 61px;
2614 margin-top: 1em;
2615 overflow: hidden;
2616 position: relative;
2618 #content.compact > .comment-thread .comment-item {
2619 pointer-events: none;
2621 #content.compact > .comment-thread .comment-item::after {
2622 content: "…";
2623 position: absolute;
2624 right: 0;
2625 bottom: 0;
2626 font-size: 2rem;
2627 line-height: 1;
2628 padding: 0 16px 10px 64px;
2629 pointer-events: auto;
2631 @media only screen and (hover: hover) {
2632 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2633 #content.compact > .comment-thread .comment-item.expanded {
2634 overflow: visible;
2635 pointer-events: auto;
2636 z-index: 10;
2639 @media only screen and (hover: none) {
2640 #content.compact > .comment-thread.expanded .comment-item {
2641 overflow: visible;
2642 pointer-events: auto;
2643 z-index: 10;
2646 #content.compact > .comment-thread .comment-item .comment-meta {
2647 white-space: nowrap;
2648 overflow: hidden;
2649 text-overflow: ellipsis;
2650 padding: 2px 10px;
2652 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2653 white-space: unset;
2655 #content.compact > .comment-thread .comment-item .comment-meta a {
2656 pointer-events: auto;
2658 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2659 display: inline;
2661 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2662 margin-left: 0.75em;
2664 @media only screen and (hover: hover) {
2665 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2666 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2667 max-height: unset;
2669 #content.compact > .comment-thread .comment-item:hover .comment,
2670 #content.compact > .comment-thread .comment-item.expanded .comment {
2671 position: relative;
2672 z-index: 1;
2673 margin-bottom: 2em;
2674 bottom: 0;
2676 #content.compact > .comment-thread .comment-item:hover .comment::before,
2677 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2678 content: "";
2679 position: absolute;
2680 display: block;
2681 width: calc(100% + 20px);
2682 height: calc(100% + 20px);
2683 z-index: -1;
2684 top: -10px;
2685 left: -10px;
2687 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2688 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2689 margin: 0;
2692 @media only screen and (hover: none) {
2693 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2694 max-height: unset;
2696 #content.compact > .comment-thread.expanded .comment-item .comment {
2697 position: relative;
2698 z-index: 1;
2699 margin-bottom: 2em;
2700 bottom: 0;
2702 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2703 content: "";
2704 position: absolute;
2705 display: block;
2706 width: calc(100% + 14px);
2707 height: calc(100% + 20px);
2708 z-index: -1;
2709 top: -10px;
2710 left: -10px;
2712 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2713 margin: 0;
2715 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2716 content: "";
2717 display: block;
2718 position: fixed;
2719 top: 0;
2720 left: 0;
2721 width: 100%;
2722 height: 100%;
2723 z-index: -2;
2724 background-color: rgba(0,0,0,0.5);
2728 /*****************************/
2729 /* HIGHLIGHTING NEW COMMENTS */
2730 /*****************************/
2732 .new-comment::before {
2733 content: "";
2734 position: absolute;
2735 width: 100%;
2736 height: 100%;
2737 z-index: 5000;
2738 pointer-events: none;
2741 /***********************************/
2742 /* COMMENT THREAD MINIMIZE BUTTONS */
2743 /***********************************/
2745 .comment-minimize-button {
2746 font-family: "Font Awesome", "Font Awesome 5 Free";
2747 font-weight: 900;
2748 font-size: 1.25rem;
2749 line-height: 1;
2750 position: absolute;
2751 right: 1px;
2752 top: 1px;
2753 width: 18px;
2754 margin: 0;
2755 cursor: pointer;
2757 .comment-minimize-button:active {
2758 transform: scale(0.9);
2760 .comment-minimize-button::after {
2761 content: attr(data-child-count);
2762 font-weight: normal;
2763 font-size: 0.8125rem;
2764 position: absolute;
2765 left: 0;
2766 width: 100%;
2767 text-align: center;
2768 top: 21px;
2770 #content.individual-thread-page .comment-minimize-button {
2771 display: none;
2774 /*****************/
2775 /* IGNORE SYSTEM */
2776 /*****************/
2778 #content.comment-thread-page .comment-item.ignored {
2779 height: 38px;
2780 overflow: hidden;
2782 .comment-item.ignored > .comment > .comment-meta > .author {
2783 text-decoration: line-through;
2786 /***********************************/
2787 /* INDIVIDUAL COMMENT THREAD PAGES */
2788 /***********************************/
2790 .individual-thread-page > h1 {
2791 line-height: 1;
2792 margin: 0.75em 0 3px 0;
2794 .individual-thread-page .comments {
2795 border: none;
2798 /*************/
2799 /* SHORTFORM */
2800 /*************/
2802 .shortform-index-page .comments::before {
2803 border: none;
2804 box-shadow: none;
2807 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2808 margin-top: 0;
2811 /****************/
2812 /* VOTE BUTTONS */
2813 /****************/
2815 .vote {
2816 margin: 0;
2818 .vote {
2819 font-family: "Font Awesome", "Font Awesome 5 Free";
2820 font-weight: 900;
2821 border: none;
2824 .vote:disabled {
2825 visibility: hidden;
2826 cursor: default;
2829 @keyframes waiting {
2830 0% {background-position: 200% 0%}
2831 100% {background-position: 0% 0%}
2834 .voting-controls .karma-value {
2835 opacity: 1;
2836 transition: opacity 0.5s linear;
2839 .voting-controls.waiting .karma-value {
2840 opacity: 0.5;
2841 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2842 background-clip: text;
2843 -webkit-background-clip: text;
2844 color: transparent;
2845 background-position: 200% 0%;
2846 background-size: 200% 100%;
2847 animation: waiting 1s linear infinite;
2850 /* Replicated karma controls at bottom of comments. */
2851 .comment-controls .voting-controls {
2852 float: left;
2853 font-size: 0.9375em;
2856 .comment-controls .voting-controls:first-of-type {
2857 margin-left: -14px;
2860 /*****************************/
2861 /* COMMENTING AND POSTING UI */
2862 /*****************************/
2864 .comment-controls {
2865 text-align: right;
2866 margin: 0 8px 8px 16px;
2867 position: relative;
2868 z-index: 9999;
2870 .comment-thread .comment-controls + .comment-thread > li:first-child {
2871 margin-top: 8px;
2873 .comments > .comment-controls {
2874 margin: 8px 0 0 0;
2876 .comments > .comment-controls:last-child {
2877 margin: 8px 0 16px 0;
2880 .posting-controls input[type='submit'] {
2881 margin: 6px;
2882 padding: 4px 10px;
2883 font-size: 1.125rem;
2886 .comment-controls .cancel-comment-button {
2887 position: absolute;
2888 right: 0;
2889 margin: 0;
2890 height: 27px;
2891 font-size: inherit;
2892 padding: 4px 8px 2px 4px;
2893 z-index: 1;
2895 .comment-controls .cancel-comment-button::before {
2896 font-family: "Font Awesome", "Font Awesome 5 Free";
2897 margin-right: 3px;
2898 content: '\F00D';
2899 font-weight: 900;
2900 font-size: 0.9em;
2901 opacity: 0.7;
2904 .comment + .comment-controls .action-button {
2905 font-weight: normal;
2906 font-size: 1.0625em;
2907 padding: 1px 6px;
2909 .comment-controls .action-button::before {
2910 font-family: "Font Awesome", "Font Awesome 5 Free";
2911 margin-right: 3px;
2913 .new-comment-button {
2914 font-size: 1.5rem;
2915 margin: 0 0.25em;
2917 .comment-controls .reply-button::before {
2918 content: '\F3E5';
2919 font-weight: 900;
2920 font-size: 0.9em;
2921 opacity: 0.6;
2923 .comment-meta .replied::before {
2924 content: '\F3E5';
2925 font-family: "Font Awesome", "Font Awesome 5 Free";
2926 color: #090;
2927 font-weight: 900;
2928 font-size: 0.9em;
2929 opacity: 0.6;
2932 .post-controls {
2933 text-align: right;
2934 margin: 0.75em 0 0 0;
2935 align-self: start;
2936 justify-self: end;
2938 .edit-post-link {
2939 display: inline-block;
2940 margin-bottom: 0.25em;
2941 font-size: 1.125rem;
2943 .edit-post-link::before {
2944 margin-right: 0.3em;
2946 .comment-controls .edit-button::before,
2947 .edit-post-link::before {
2948 content: '\F303';
2949 font-family: "Font Awesome", "Font Awesome 5 Free";
2950 font-weight: 900;
2951 font-size: 0.75em;
2952 position: relative;
2953 top: -1px;
2956 .comment-controls .delete-button {
2957 margin-right: 0.25em;
2959 .comment-controls .edit-button,
2960 .comment-controls .retract-button,
2961 .comment-controls .unretract-button {
2962 margin-right: 1em;
2964 .comment-controls .retract-button::before {
2965 content: '\F4B3';
2966 opacity: 0.6;
2968 .comment-controls .unretract-button::before {
2969 content: '\F075';
2970 opacity: 0.9;
2972 .comment-controls .delete-button::before {
2973 content: '\F05E';
2974 opacity: 0.7;
2976 .comment-controls .retract-button::before,
2977 .comment-controls .unretract-button::before,
2978 .comment-controls .delete-button::before {
2979 font-weight: 900;
2980 font-size: 0.9em;
2983 .comment-controls form {
2984 position: relative;
2986 .textarea-container {
2987 position: relative;
2989 .posting-controls textarea {
2990 display: block;
2991 width: 100%;
2992 height: 15em;
2993 min-height: 15em;
2994 max-height: calc(100vh - 6em);
2995 margin: 2px 0 0 0;
2996 padding: 4px 5px;
2997 font-size: 1.2rem;
2998 border-style: solid;
2999 border-width: 29px 1px 1px 1px;
3000 resize: none;
3003 /* GUIEdit buttons */
3005 .guiedit-buttons-container {
3006 position: absolute;
3007 left: 1px;
3008 top: 1px;
3009 width: calc(100% - 2px);
3010 height: 28px;
3011 text-align: left;
3012 padding: 1px 4px 0 4px;
3013 overflow: hidden;
3015 .comment-thread-page .guiedit-buttons-container {
3016 padding-right: 60px;
3018 .guiedit-buttons-container button {
3019 height: 26px;
3020 padding: 0 7px;
3021 font-weight: 900;
3022 font-size: 0.875rem;
3023 line-height: 1;
3024 position: static;
3026 .guiedit-buttons-container button:active {
3027 transform: none;
3029 .guiedit-buttons-container button:active div {
3030 transform: scale(0.9);
3032 .guiedit-buttons-container button sup {
3033 font-weight: bold;
3035 .guiedit::after {
3036 content: attr(data-tooltip);
3037 position: absolute;
3038 font-weight: normal;
3039 font-size: 1rem;
3040 top: 2px;
3041 left: 464px;
3042 height: 25px;
3043 padding: 4px 0;
3044 white-space: nowrap;
3045 visibility: hidden;
3047 .guiedit:hover::after {
3048 visibility: visible;
3051 /* Markdown hints */
3053 .posting-controls .markdown-reference-link {
3054 float: left;
3055 padding: 1px 0 0 6px;
3057 .posting-controls .markdown-reference-link a {
3058 padding-right: 1.5em;
3059 margin-right: 0.15em;
3060 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');
3061 background-size: 1.25em;
3062 background-repeat: no-repeat;
3063 background-position: right center;
3066 #markdown-hints-checkbox + label {
3067 float: left;
3068 margin: 2px 0 0 1em;
3069 line-height: 1.3;
3070 cursor: pointer;
3072 #edit-post-form #markdown-hints-checkbox + label {
3073 padding: 0;
3075 #markdown-hints-checkbox {
3076 visibility: hidden;
3077 float: left;
3079 #markdown-hints-checkbox + label::after {
3080 content: "(Show Markdown help)";
3082 #markdown-hints-checkbox:checked + label::after {
3083 content: "(Hide Markdown help)";
3085 #markdown-hints-checkbox + label::before {
3086 content: '\F059';
3087 font-family: "Font Awesome", "Font Awesome 5 Free";
3088 font-weight: 900;
3089 margin-right: 3px;
3091 #markdown-hints-checkbox:checked + label::before {
3092 font-weight: normal;
3094 #markdown-hints {
3095 margin: 4px 0 0 4px;
3096 padding: 4px 8px;
3097 position: absolute;
3098 text-align: left;
3099 top: calc(100% - 1em);
3100 z-index: 1;
3101 display: none;
3103 .comment-controls #markdown-hints {
3104 top: calc(100% + 1.75em);
3106 #markdown-hints-checkbox:checked ~ #markdown-hints {
3107 display: table;
3109 .markdown-hints-row {
3110 display: table-row;
3112 #markdown-hints .markdown-hints-row span,
3113 #markdown-hints .markdown-hints-row code {
3114 float: none;
3115 display: table-cell;
3116 border: none;
3117 background-color: inherit;
3118 padding: 0 12px 0 0;
3121 /******************/
3122 /* EDIT POST FORM */
3123 /******************/
3125 #edit-post-form {
3126 padding: 1em 1em 4em 1em;
3128 #edit-post-form .post-meta-fields {
3129 display: grid;
3130 grid-template-columns: 5em auto auto auto 1fr auto;
3131 margin-bottom: 0.625em;
3134 #edit-post-form label[for='title'],
3135 #edit-post-form label[for='url'],
3136 #edit-post-form label[for='section'] {
3137 grid-column: 1;
3139 #edit-post-form input[type='text'] {
3140 padding: 0.25em;
3141 grid-column: 2 / span 4;
3142 margin-bottom: 0.5em;
3145 #edit-post-form .link-post-checkbox,
3146 #edit-post-form .link-post-checkbox + label {
3147 grid-row: 1;
3148 grid-column: 6;
3150 #edit-post-form .question-checkbox,
3151 #edit-post-form .question-checkbox + label {
3152 grid-row: 3;
3153 grid-column: 5;
3154 justify-self: start;
3155 margin-left: 1.5em;
3158 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3159 grid-row: 4;
3160 grid-column: 2 / span 4;
3161 text-align: left;
3162 margin-top: 8px;
3165 #edit-post-form .post-meta-fields input[type='checkbox'] {
3166 height: 0;
3167 opacity: 0;
3168 pointer-events: none;
3170 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3171 white-space: nowrap;
3172 position: relative;
3173 cursor: pointer;
3174 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3175 align-self: start;
3177 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3178 content: "";
3179 font-family: "Font Awesome", "Font Awesome 5 Free";
3180 font-size: 1.375rem;
3181 line-height: 0.7;
3182 text-indent: 1px;
3183 font-weight: 900;
3184 position: absolute;
3185 width: 20px;
3186 height: 20px;
3187 left: 5px;
3189 #edit-post-form label[for='url'],
3190 #edit-post-form input[name='url'] {
3191 display: none;
3193 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3194 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3195 display: initial;
3197 #edit-post-form label {
3198 line-height: normal;
3199 border: 1px solid transparent;
3200 text-align: right;
3201 padding: 0.25em 0.5em;
3202 white-space: nowrap;
3204 #edit-post-form input[type='radio'] {
3205 width: 0;
3206 margin: 0;
3207 opacity: 0;
3208 pointer-events: none;
3210 #edit-post-form input[type='radio'] + label {
3211 padding: 4px 12px;
3212 text-align: center;
3213 border-style: solid;
3214 border-width: 1px 1px 1px 0;
3215 cursor: pointer;
3217 #edit-post-form input[type='radio']:checked + label {
3218 cursor: default;
3221 #edit-post-form label[for='section'] {
3222 grid-row: 3;
3224 #edit-post-form input[type='radio'] + label {
3225 grid-row: 3;
3227 @supports (width: -moz-fit-content) {
3228 #edit-post-form input[type='radio'] + label {
3229 width: -moz-fit-content;
3232 @supports (width: fit-content) {
3233 #edit-post-form input[type='radio'] + label {
3234 width: fit-content;
3238 #edit-post-form textarea {
3239 min-height: 24em;
3242 #edit-post-form input[type='submit'] {
3243 padding: 6px 12px;
3244 float: right;
3246 #edit-post-form #markdown-hints {
3247 top: calc(100% + 2em);
3250 #edit-post-form button.guiedit div {
3251 overflow: visible;
3253 .guiedit-mobile-auxiliary-button {
3254 display: none;
3257 /***********/
3258 /* BUTTONS */
3259 /***********/
3261 button,
3262 input[type='submit'] {
3263 font-family: inherit;
3264 font-size: inherit;
3265 background-color: inherit;
3266 cursor: pointer;
3267 border: none;
3268 border-radius: 0;
3271 /************/
3272 /* HEADINGS */
3273 /************/
3275 .body-text h1,
3276 .body-text h2,
3277 .body-text h3,
3278 .body-text h4,
3279 .body-text h5,
3280 .body-text h6 {
3281 line-height: 1.1;
3282 margin: 1em 0 0.75em 0;
3283 text-align: left;
3286 .post-body h5,
3287 .post-body h6 {
3288 font-size: 1em;
3290 .post-body h4,
3291 .body-text h4 {
3292 font-size: 1.2em;
3294 .post-body h3,
3295 .body-text h3 {
3296 font-size: 1.4em;
3298 .post-body h2,
3299 .body-text h2 {
3300 font-size: 1.75em;
3302 .post-body h1,
3303 .body-text h1 {
3304 font-size: 2.1em;
3307 .comment-body h5,
3308 .comment-body h6 {
3309 font-size: 1em;
3311 .comment-body h4 {
3312 font-size: 1.15em;
3314 .comment-body h3 {
3315 font-size: 1.3em;
3317 .comment-body h2 {
3318 font-size: 1.5em;
3320 .comment-body h1 {
3321 font-size: 1.75em;
3324 /**********/
3325 /* QUOTES */
3326 /**********/
3328 blockquote,
3329 .post-body .comment-box .comment-body {
3330 font-size: 0.9em;
3331 margin: 1em 0;
3332 padding-left: 0.5em;
3333 margin-left: 1px;
3334 padding-bottom: 3px;
3336 blockquote *:first-child {
3337 margin-top: 0;
3339 blockquote *:last-child {
3340 margin-bottom: 0;
3342 blockquote blockquote {
3343 font-size: 0.95em;
3346 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3348 .post-body .comment-box .user-name {
3349 font-style: italic;
3351 .post-body .comment-box .user-name::after {
3352 content: ":";
3354 .post-body .comment-box {
3355 zoom: 1.25;
3358 /**********/
3359 /* IMAGES */
3360 /**********/
3362 #content img, #content figure {
3363 max-width: 100%;
3366 .prediction-poll > svg {
3367 width: 700px;
3368 max-width: 100%;
3371 img.inline-latex {
3372 position: relative;
3373 top: 2.5px;
3374 margin: 0 2px;
3377 #content figure {
3378 text-align: center;
3379 margin: 1.5em auto;
3382 p.imgonly,
3383 div.imgonly,
3384 figure {
3385 text-align: center;
3386 margin: auto;
3387 clear: both;
3390 .imgonly iframe {
3391 display: block;
3392 width: 100%;
3393 height: 250px;
3394 border: 0;
3397 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3399 [style*="--aspect-ratio"] > * {
3400 width: 100%;
3402 [style*="--aspect-ratio"] > img {
3403 height: auto;
3405 @supports (--custom:property) {
3406 [style*="--aspect-ratio"] {
3407 position: relative;
3409 [style*="--aspect-ratio"]::before {
3410 content: "";
3411 display: block;
3412 padding-bottom: calc(100% / (var(--aspect-ratio)));
3414 [style*="--aspect-ratio"] > * {
3415 position: absolute;
3416 top: 0;
3417 left: 0;
3418 height: 100%;
3422 /**********/
3423 /* TABLES */
3424 /**********/
3426 .body-text table {
3427 border-collapse: collapse;
3428 font-size: 0.875em;
3430 .body-text table th,
3431 .body-text table td {
3432 text-align: left;
3433 padding: 4px 6px;
3434 line-height: 1.3;
3436 .body-text table .numeric {
3437 text-align: right;
3438 font-family: Inconsolata, Menlo, monospace;
3440 .body-text table caption {
3441 margin: 0 0 0.25em 0;
3442 font-weight: bold;
3443 font-size: 1.125em;
3446 /********/
3447 /* MISC */
3448 /********/
3450 /*= Superscripts & subscripts =*/
3452 /* Make sure superscripts and subscripts do not affect line spacing. */
3453 sup, sub {
3454 vertical-align: baseline;
3455 position: relative;
3456 top: -0.5em;
3457 left: 0.05em;
3458 font-size: 0.8em;
3460 sub {
3461 top: 0.3em;
3464 /*= Code blocks & other "unstyled" text. =*/
3466 pre,
3467 code {
3468 font-family: Inconsolata, Menlo, monospace;
3470 pre {
3471 white-space: pre-wrap;
3473 .body-text pre {
3474 text-align: left;
3476 code {
3477 font-size: 0.95em;
3478 display: inline-block;
3479 padding: 0 4px 1px 5px;
3481 pre > code {
3482 display: block;
3483 border-radius: 0;
3484 padding: 3px 4px 5px 8px;
3485 tab-size: 4;
3488 /*= Fractions =*/
3490 .frac::after {
3491 content: "\200B";
3494 /*= Removing browser default styling of various elements =*/
3496 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3497 :focus {
3498 outline: none;
3501 /* Remove "embossed" appearance of horizontal rules. */
3502 hr {
3503 border: none;
3506 input,
3507 button,
3508 textarea {
3509 -webkit-appearance: none;
3510 -moz-appearance: none;
3511 appearance: none;
3514 input {
3515 font-family: inherit;
3516 font-size: inherit;
3517 font-weight: inherit;
3520 /*************/
3521 /* FOOTNOTES */
3522 /*************/
3524 ol {
3525 counter-reset: ordered-list;
3527 .footnote-definition {
3528 font-size: 0.9em;
3529 list-style-type: none;
3530 counter-increment: ordered-list;
3531 position: relative;
3533 .footnote-definition p {
3534 font-size: inherit !important;
3536 .footnote-definition::before {
3537 content: counter(ordered-list) ".";
3538 position: absolute;
3539 left: -2.5em;
3540 font-weight: bold;
3541 text-align: right;
3542 width: 2em;
3545 /*= LW Docs footnotes =*/
3547 .footnote-item {
3548 display: flex;
3551 .footnote-item > :not(.nothing) {
3552 margin: 0 0.2em;
3555 .footnote-item > :first-child {
3556 margin-left: -0.2em;
3557 margin-right: 0;
3560 .footnote-back-link a:not(.nothing) {
3561 font-size: 0;
3562 text-decoration: none;
3563 border: none;
3566 .footnote-back-link a:not(.nothing):hover {
3567 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3568 border: none;
3569 text-decoration: none;
3572 .footnote-back-link a::after {
3573 content: '\F106';
3574 font-family: Font Awesome;
3575 font-size: 1rem;
3576 padding: 0.2em;
3577 text-decoration: none;
3578 font-weight: bold;
3581 .footnote-content > :first-child {
3582 margin-top: 0;
3585 /*********/
3586 /* LISTS */
3587 /*********/
3589 li {
3590 margin-bottom: 0.5em;
3593 .body-text ol p,
3594 .body-text ul p {
3595 margin: 0.5em 0;
3598 .body-text ol {
3599 list-style: none;
3600 padding: 0;
3601 counter-reset: ol;
3603 .body-text ol > li {
3604 position: relative;
3605 counter-increment: ol;
3606 padding: 0 0 0 2.5em;
3607 margin: 0.25em 0 0 0;
3609 .body-text ol > li::before {
3610 content: counter(ol) ".";
3611 position: absolute;
3612 width: 2em;
3613 text-align: right;
3614 left: 0;
3616 .body-text ul {
3617 list-style: none;
3618 padding: 0;
3620 .body-text ul:not(.contents-list) > li:empty {
3621 padding-bottom: 1.25em;
3623 .body-text ul:not(.contents-list) > li {
3624 position: relative;
3625 padding: 0 0 0 1.75em;
3626 margin: 0.25em 0 0 0;
3628 .body-text ul:not(.contents-list) > li ul > li {
3629 padding: 0 0 0 2em;
3631 .body-text ul:not(.contents-list) > li::before {
3632 content: "•";
3633 position: absolute;
3634 width: 1.25em;
3635 text-align: right;
3636 left: 0;
3638 .body-text ul:not(.contents-list) > li ul > li::before {
3639 width: 1.5em;
3641 .body-text li > ul:first-child > li {
3642 padding-left: 0;
3644 .body-text li > ul:first-child > li::before {
3645 content: none;
3648 /**************/
3649 /* ERROR PAGE */
3650 /**************/
3652 .error-retry-form {
3653 margin: 0.5em 0;
3656 .error-retry-form input[type="submit"] {
3657 border: 1px solid #aaa;
3658 font-weight: bold;
3659 font-size: 1.125rem;
3660 padding: 0.5em 1.25em;
3663 /**************/
3664 /* ABOUT PAGE */
3665 /**************/
3667 #content.about-page .contents {
3668 margin-top: 0.25em;
3670 #content.about-page .accesskey-table {
3671 border-collapse: collapse;
3672 margin: auto;
3674 #content.about-page .accesskey-table th,
3675 #content.about-page .accesskey-table td {
3676 padding: 2px 6px;
3678 #content.about-page .accesskey-table td:first-child {
3679 padding-right: 1.5em;
3681 #content.about-page .accesskey-table td:last-child {
3682 text-align: center;
3683 font-family: Inconsolata, Menlo, monospace;
3685 #content.about-page h3:nth-of-type(n+2) {
3686 clear: both;
3689 /******************/
3690 /* IMAGES OVERLAY */
3691 /******************/
3693 #images-overlay + #content .post-body img {
3694 visibility: hidden;
3697 #images-overlay div {
3698 position: absolute;
3700 #images-overlay div::after {
3701 content: "Click to enlarge";
3702 display: block;
3703 position: absolute;
3704 margin: auto;
3705 left: 0;
3706 right: 0;
3707 bottom: 10px;
3708 padding: 6px 10px;
3709 font-size: 1.25rem;
3710 background-color: rgba(0,0,0,0.6);
3711 color: #fff;
3712 border-radius: 5px;
3713 opacity: 0.0;
3714 transition: opacity 0.15s ease;
3715 pointer-events: none;
3717 @supports (width: -moz-fit-content) {
3718 #images-overlay div::after {
3719 width: -moz-fit-content;
3722 @supports (width: fit-content) {
3723 #images-overlay div::after {
3724 width: fit-content;
3727 #images-overlay div:hover::after {
3728 opacity: 1.0;
3731 #images-overlay img {
3732 width: 100%;
3735 /***************/
3736 /* IMAGE FOCUS */
3737 /***************/
3739 /*=--------------=*/
3740 /*= Hover styles =*/
3741 /*=--------------=*/
3743 #content img:hover,
3744 #images-overlay img:hover {
3745 filter: drop-shadow(0 0 3px #777);
3746 cursor: zoom-in;
3748 #content img:active,
3749 #images-overlay img:active {
3750 transform: scale(0.975);
3753 /*=---------=*/
3754 /*= Overlay =*/
3755 /*=---------=*/
3757 #image-focus-overlay {
3758 position: fixed;
3759 top: 0;
3760 right: 0;
3761 bottom: 0;
3762 left: 0;
3763 z-index: 2;
3764 display: none;
3765 cursor: zoom-out;
3767 #image-focus-overlay::before {
3768 content: "";
3769 display: block;
3770 position: absolute;
3771 top: 0;
3772 right: 0;
3773 bottom: 0;
3774 left: 0;
3775 background-color: #000;
3776 opacity: 0.5;
3777 z-index: -1;
3779 #image-focus-overlay.engaged {
3780 display: initial;
3783 #image-focus-overlay img {
3784 margin: auto;
3785 position: absolute;
3786 left: 50%;
3787 top: 50%;
3788 transform: translateX(-50%) translateY(-50%);
3791 /*=-------------------=*/
3792 /*= Single-image mode =*/
3793 /*=-------------------=*/
3795 #image-focus-overlay:not(.slideshow) .image-number,
3796 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3797 visibility: hidden;
3800 /*=---------=*/
3801 /*= Caption =*/
3802 /*=---------=*/
3804 #image-focus-overlay .caption {
3805 position: absolute;
3806 bottom: 0.75em;
3807 background-color: rgba(0,0,0,0.7);
3808 left: 9em;
3809 right: 9em;
3810 margin: auto;
3811 max-width: calc(100% - 18em);
3812 text-align: center;
3813 font-size: 1.375em;
3814 border-radius: 8px;
3815 z-index: 1;
3816 transition:
3817 bottom 0.2s ease;
3819 @supports (width: -moz-fit-content) {
3820 #image-focus-overlay .caption {
3821 width: -moz-fit-content;
3824 @supports (width: fit-content) {
3825 #image-focus-overlay .caption {
3826 width: fit-content;
3829 #image-focus-overlay .caption.hidden {
3830 bottom: -5em;
3831 transition:
3832 bottom 0.5s ease;
3835 #image-focus-overlay .caption p {
3836 margin: 1em 1.25em;
3837 color: #fff;
3840 #image-focus-overlay .caption:not(:empty)::before {
3841 content: "";
3842 display: block;
3843 position: absolute;
3844 width: 100vw;
3845 height: calc(100% + 1.5em);
3846 z-index: -1;
3847 top: -0.75em;
3848 left: calc(-50vw + 50%);
3852 /*=--------------=*/
3853 /*= Help overlay =*/
3854 /*=--------------=*/
3856 #image-focus-overlay .help-overlay {
3857 position: absolute;
3858 display: flex;
3859 flex-flow: column;
3860 z-index: 2;
3861 font-size: 1.5rem;
3862 padding: 1em;
3863 border-radius: 10px;
3864 bottom: 1em;
3865 right: 1em;
3866 overflow: hidden;
3867 white-space: nowrap;
3868 color: transparent;
3869 cursor: default;
3870 visibility: hidden;
3871 transition:
3872 visibility 1s ease,
3873 color 1s ease,
3874 background-color 1s ease,
3875 bottom 0.3s ease;
3877 #image-focus-overlay .help-overlay:hover {
3878 max-width: 24em;
3879 max-height: 14em;
3880 background-color: rgba(0,0,0,0.85);
3881 color: #fff;
3882 visibility: visible;
3883 transition:
3884 visibility 0.2s ease 0.3s,
3885 color 0.2s ease 0.3s,
3886 background-color 0.2s ease 0.3s;
3889 #image-focus-overlay .help-overlay::after {
3890 content: "\F128";
3891 font-family: "Font Awesome", "Font Awesome 5 Free";
3892 font-weight: 900;
3893 font-size: 2rem;
3894 position: absolute;
3895 right: 0;
3896 bottom: 0;
3897 padding: 10px;
3898 color: #000;
3899 filter: drop-shadow(0 0 6px #fff);
3900 visibility: visible;
3901 opacity: 0.85;
3902 transition:
3903 visibility 1s ease;
3905 #image-focus-overlay .help-overlay:hover::after {
3906 visibility: hidden;
3907 transition:
3908 visibility 0.2s ease 0.3s;
3911 #image-focus-overlay .help-overlay p {
3912 margin: 0;
3913 text-indent: -2em;
3914 padding-left: 2em;
3915 max-width: 100%;
3916 overflow: hidden;
3918 #image-focus-overlay .help-overlay p + p {
3919 margin: 0.75em 0 0 0;
3921 #image-focus-overlay .help-overlay.hidden {
3922 bottom: -2em;
3925 /*=--------------=*/
3926 /*= Slide number =*/
3927 /*=--------------=*/
3929 #image-focus-overlay .image-number {
3930 position: absolute;
3931 z-index: 2;
3932 font-size: 1.75rem;
3933 left: 1em;
3934 bottom: 1em;
3935 font-weight: 600;
3936 text-shadow:
3937 0 0 3px #fff,
3938 0 0 5px #fff,
3939 0 0 8px #fff,
3940 0 0 13px #fff;
3941 width: 1.5em;
3942 text-align: right;
3943 white-space: nowrap;
3944 transition: bottom 0.3s ease;
3946 #image-focus-overlay .image-number::before {
3947 content: "#";
3948 opacity: 0.3;
3950 #image-focus-overlay .image-number::after {
3951 content: " of " attr(data-number-of-images);
3952 opacity: 0.3;
3954 #image-focus-overlay .image-number:hover::before,
3955 #image-focus-overlay .image-number:hover::after {
3956 opacity: 1.0;
3958 #image-focus-overlay .image-number.hidden {
3959 bottom: -1.25em;
3962 /*=-------------------=*/
3963 /*= Slideshow buttons =*/
3964 /*=-------------------=*/
3966 #image-focus-overlay .slideshow-buttons {
3967 position: absolute;
3968 top: 0;
3969 left: 0;
3970 width: 100%;
3971 height: 100%;
3972 z-index: 1;
3973 display: flex;
3974 justify-content: space-between;
3975 pointer-events: none;
3977 #image-focus-overlay .slideshow-buttons button {
3978 font-family: "Font Awesome", "Font Awesome 5 Free";
3979 font-weight: 900;
3980 font-size: 3rem;
3981 padding: 0.5em;
3982 color: #ddd;
3983 position: relative;
3984 left: 0;
3985 transition:
3986 left 0.3s ease;
3987 pointer-events: auto;
3989 #image-focus-overlay .slideshow-buttons button::selection {
3990 background-color: transparent;
3992 @media only screen and (hover: hover) {
3993 #image-focus-overlay .slideshow-buttons button:hover {
3994 background-color: rgba(0,0,0,0.1);
3995 color: #777;
3998 #image-focus-overlay .slideshow-buttons button:active {
3999 transform: none;
4000 color: #888;
4002 #image-focus-overlay .slideshow-buttons button:disabled {
4003 text-shadow: none;
4004 background-color: transparent;
4005 color: #ddd;
4006 cursor: default;
4007 opacity: 0.4;
4009 #image-focus-overlay .slideshow-button.previous.hidden {
4010 left: -1.75em;
4012 #image-focus-overlay .slideshow-button.next.hidden {
4013 left: 1.75em;
4016 /*=-----------------=*/
4017 /*= Background blur =*/
4018 /*=-----------------=*/
4020 .blurred {
4021 filter: blur(3px);
4024 /**************************/
4025 /* QUALIFIED HYPERLINKING */
4026 /**************************/
4028 #content.no-nav-bars {
4029 margin: 8px auto;
4031 #content.no-nav-bars + #ui-elements-container > * {
4032 padding-top: 8px;
4035 #aux-about-link {
4036 position: fixed;
4037 top: 40px;
4038 left: calc((100% - 900px) / 2 - 69px);
4039 width: 1.5em;
4040 height: 1.5em;
4041 text-align: center;
4042 display: table;
4044 #aux-about-link a {
4045 display: table-cell;
4046 width: 100%;
4047 vertical-align: middle;
4048 font-family: "Font Awesome", "Font Awesome 5 Free";
4049 font-weight: 900;
4050 font-size: 1.25rem;
4051 opacity: 0.4;
4052 z-index: 1;
4055 .qualified-linking {
4056 margin: 0;
4057 position: relative;
4059 .qualified-linking input[type='checkbox'] {
4060 visibility: hidden;
4061 width: 0;
4062 height: 0;
4063 margin: 0;
4065 .qualified-linking label {
4066 font-family: "Font Awesome", "Font Awesome 5 Free";
4067 font-weight: 900;
4068 font-size: 1rem;
4069 padding: 0 0.5em;
4070 display: inline-block;
4071 margin-left: 0.25em;
4073 .qualified-linking label:hover {
4074 cursor: pointer;
4076 .qualified-linking label:active span {
4077 display: inline-block;
4078 transform: scale(0.9);
4080 .qualified-linking label::selection {
4081 background-color: transparent;
4084 .qualified-linking label::after {
4085 content: "";
4086 width: 100vw;
4087 height: 0;
4088 left: 0;
4089 top: 0;
4090 position: fixed;
4091 z-index: 1;
4092 cursor: default;
4094 .qualified-linking input[type='checkbox']:checked + label::after {
4095 height: 100vh;
4098 .qualified-linking-toolbar {
4099 position: absolute;
4100 right: 0.25em;
4101 top: 110%;
4102 z-index: 1;
4104 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4105 display: none;
4107 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4108 display: block;
4110 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4111 top: unset;
4112 bottom: 125%;
4115 .qualified-linking-toolbar a {
4116 display: block;
4117 padding: 0 6px;
4118 margin: 4px;
4120 .qualified-linking-toolbar a::selection {
4121 background-color: transparent;
4124 /*****************/
4125 /* HOVER PREVIEW */
4126 /*****************/
4128 #preview-popup-toggle {
4129 position: absolute;
4130 right: -67px;
4131 bottom: 285px;
4132 cursor: pointer;
4133 color: var(--GW-toggle-widget-color, #888);
4135 #preview-popup-toggle:hover {
4136 color: var(--GW-toggle-widget-hover-color, #444);
4139 #content.preview:not(not) {
4140 padding: 0;
4142 #content.preview > .comment-thread {
4143 margin: 2px;
4145 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4146 border: none;
4148 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4149 padding: 0 8px;
4151 #content.preview.user-page .page-main-heading {
4152 margin-left: 8px;
4154 #content.preview.not(not) .body-text {
4155 margin-left: 8px;
4156 margin-right: 8px;
4158 #content.preview.user-page .user-stats {
4159 margin-right: 32px;
4161 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4162 display: none;
4164 #content.preview button.vote {
4165 display: none;
4167 #content.preview > h1.listing {
4168 max-height: unset;
4170 #content.preview.user-page > .comment-thread {
4171 margin: 0.5em 0;
4173 #content.preview > .post {
4174 margin: 0 18px;
4176 #content.preview .post-title {
4177 margin-top: 0.5em;
4179 #content.preview .post-meta {
4180 line-height: 1.0;
4182 #content.preview .body-text {
4183 font-size: 1em;
4185 #content.preview nav.contents,
4186 #content.preview .lw2-link {
4187 display: none;
4190 .preview-popup {
4191 position: fixed;
4192 transform-origin: top;
4193 top: 10%;
4194 right: 10%;
4195 max-width: 700px;
4196 z-index: 10001;
4197 background-color: #eee;
4198 border: 1px solid #ccc;
4199 box-shadow: 2px 6px 20px -4px #000;
4200 transition: height 0.2s ease, top 0.2s ease;
4202 .popup-hide-button {
4203 position: fixed;
4204 top: 4px;
4205 right: 4px;
4206 color: #000;
4207 background-color: #fff;
4208 width: 28px;
4209 height: 28px;
4210 display: flex;
4211 font-family: "Font Awesome";
4212 font-size: 14px;
4213 line-height: 1;
4214 border: 1px solid #bbb;
4215 border-radius: 28px;
4216 align-items: center;
4217 justify-content: center;
4218 //padding-bottom: 2px;
4219 padding-left: 1.5px;
4220 font-family: "Font Awesome", "Font Awesome 5 Free";
4221 cursor: pointer;
4223 .popup-hide-button:hover::before {
4224 content: "Turn off preview popups";
4225 display: block;
4226 position: absolute;
4227 width: max-content;
4228 right: 32px;
4229 color #000;
4230 background-color: #fff;
4231 border: 1px solid #eee;
4232 border-radius: 2px;
4233 padding: 4px;
4236 /********/
4237 /* MATH */
4238 /********/
4240 .mathjax-block-container {
4241 display: block;
4242 overflow-y: hidden;
4243 border-radius: 6px;
4244 margin: 1em 0 1.5em 0;
4246 .mathjax-inline-container {
4247 max-width: 100%;
4248 overflow-x: auto;
4249 overflow-y: hidden;
4250 position: relative;
4251 padding: 0 1px;
4253 #content .mathjax-inline-container,
4254 #content .mathjax-inline-container .mjpage,
4255 #content .mathjax-inline-container .mjx-chtml,
4256 #content .mathjax-inline-container .mjx-math,
4257 #content .mathjax-inline-container .mjx-mrow {
4258 display: inline;
4259 white-space: normal;
4261 .post .mathjax-inline-container {
4262 line-height: 1;
4264 .comment .mathjax-inline-container {
4265 line-height: 1;
4267 .mathjax-inline-container .mjx-chtml {
4268 padding: 0;
4271 /************/
4272 /* SPOILERS */
4273 /************/
4275 .spoiler {
4276 color: #000;
4277 background-color: currentColor;
4278 transition: none;
4279 text-shadow: none;
4280 margin: 1em 0;
4281 box-shadow: 0 0 0 1px currentColor inset;
4282 overflow: auto;
4284 .spoiler:not(:last-child) {
4285 margin-bottom: 0;
4287 #content .spoiler * {
4288 color: inherit;
4289 border: none;
4291 .spoiler:hover {
4292 color: unset;
4293 background-color: unset;
4294 text-shadow: unset;
4295 transition:
4296 color 0.1s ease-out 0.1s,
4297 background-color 0.1s ease-out 0.1s,
4298 text-shadow 0.1s ease-out 0.1s;
4300 .spoiler::selection,
4301 .spoiler ::selection {
4302 color: #fff;
4303 background-color: #000;
4305 .spoiler:not(:hover)::selection,
4306 .spoiler:not(:hover) ::selection {
4307 background-color: transparent;
4310 /*= Fix for LessWrong being weird =*/
4312 .spoiler > p {
4313 padding: 0 7px;
4315 .spoiler > p:first-child {
4316 margin-top: 0.25em;
4318 .spoiler > p:last-child {
4319 margin-bottom: 0;
4320 padding-bottom: 0.25em;
4322 .spoiler > p:hover ~ p {
4323 background-color: currentColor;
4325 .spoiler > p + p {
4326 margin-top: -1em;
4328 .spoiler > p:not(:first-child) {
4329 padding-top: 0.5em;
4331 .spoiler > p:not(:last-child) {
4332 padding-bottom: 0.5em;
4335 .spoiler:not(:hover) pre,
4336 .spoiler:not(:hover) code {
4337 background-color: inherit;
4338 box-shadow: none;
4340 #content .spoiler pre {
4341 border-color: currentColor;
4342 border-style: solid;
4343 border-width: 0 1px;
4344 border-radius: 0;
4347 /*******************/
4348 /* PAGE LIST INDEX */
4349 /*******************/
4351 .page-list-index {
4352 margin: 1em 30px;
4353 line-height: 1.2;
4356 .page-list-index > p {
4357 font-weight: bold;
4358 font-size: 1.2em;
4361 .page-list-index > ul * {
4362 margin: 0;
4365 .page-list-index ul {
4366 padding-left: 1.5em;
4369 .page-list-index li {
4370 margin-top: 0.67em;
4373 .page-list-index li > a {
4374 display: block;
4375 font-size: 1.1em;
4376 font-weight: bold;
4377 margin: 0.33em 0;
4380 .page-list-index li > a:last-child {
4381 margin-bottom: 1em;
4385 /*****************/
4386 /* USER MENTIONS */
4387 /*****************/
4389 .textarea-container .autocomplete-container {
4390 position: absolute;
4391 overflow-y: auto;
4392 font-size: 1.125rem;
4393 cursor: default;
4394 backdrop-filter: blur(2px);
4395 width: 360px;
4397 .textarea-container .autocomplete-container:empty {
4398 display: none;
4401 @media only screen and (min-width: 521px) {
4402 .textarea-container .autocomplete-container.inside {
4403 max-height: calc(100% - 36px);
4404 top: 32px;
4406 .textarea-container .autocomplete-container.outside {
4407 max-height: calc(100% - 28px);
4408 top: 28px;
4409 z-index: 10001;
4412 .textarea-container .autocomplete-container.inside.right {
4413 right: 18px;
4415 .textarea-container .autocomplete-container.inside.left {
4416 left: 18px;
4418 .textarea-container .autocomplete-container.outside.right {
4419 left: calc(100% + 3px);
4421 .textarea-container .autocomplete-container.outside.left {
4422 right: calc(100% + 3px);
4425 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4426 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4428 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4429 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4431 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4432 max-width: calc((300px + 40px * 2) / 2);
4436 .textarea-container .autocomplete-container div {
4437 padding: 2px 8px 0 8px;
4438 white-space: nowrap;
4439 display: flex;
4440 justify-content: flex-end;
4443 .textarea-container .autocomplete-container div span.name {
4444 flex: 1 1 auto;
4445 width: calc(100% - 9em);
4446 overflow: hidden;
4447 text-overflow: ellipsis;
4449 .textarea-container .autocomplete-container div span.name:hover {
4450 overflow: visible;
4451 z-index: 1;
4453 .textarea-container .autocomplete-container div span.age,
4454 .textarea-container .autocomplete-container div span.karma {
4455 font-size: 0.9em;
4456 text-align: right;
4458 .textarea-container .autocomplete-container div span.age {
4459 flex: 0 0 3em;
4461 .textarea-container .autocomplete-container div span.karma {
4462 flex: 0 0 6em;
4466 /***************/
4467 /* COLLECTIONS */
4468 /***************/
4470 h2.sequence-chapter,
4471 h3.sequence-chapter,
4472 h4.sequence-chapter {
4473 text-align: center;
4475 h2.sequence-chapter::before,
4476 h3.sequence-chapter::before,
4477 h4.sequence-chapter::before {
4478 display: block;
4479 clear: both;
4480 margin: 1.5em 0 0.75em 0;
4481 font-style: normal;
4482 font-weight: normal;
4483 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
4485 h2.sequence-chapter::before {
4486 content: '\25A3';
4488 h3.sequence-chapter::before {
4489 content: '\25AA\2004\25AA';
4491 h4.sequence-chapter::before {
4492 content: '\00B7\2004\00B7\2004\00B7';
4496 /*******************/
4497 /* ALIGNMENT FORUM */
4498 /*******************/
4500 #content.alignment-forum-index-page::after {
4501 content: "Alignment Forum";
4502 font-size: 1.5rem;
4503 margin: 0.375em 0 0 -0.375em;
4504 order: -1;
4507 /**********************/
4508 /* FOR NARROW SCREENS */
4509 /**********************/
4511 @media only screen and (max-width: 1440px) {
4512 #hns-date-picker {
4513 right: -81px;
4514 padding: 8px 10px 10px 10px;
4515 bottom: 62px;
4516 display: none;
4518 #hns-date-picker::before {
4519 content: "";
4520 position: absolute;
4521 display: block;
4522 z-index: -1;
4523 height: calc(100% + 2px);
4524 top: -1px;
4525 left: -1px;
4526 width: 50%;
4529 @media only screen and (max-width: 1160px) {
4530 #new-comment-nav-ui {
4531 bottom: 180px;
4532 right: -68px;
4534 #hns-date-picker {
4535 bottom: 200px;
4536 right: -36px;
4538 #hns-date-picker::before {
4539 width: calc(100% - 35px);
4541 #theme-selector button::before {
4542 right: unset;
4543 left: 100%;
4545 #theme-selector:hover::after {
4546 content: "";
4547 display: block;
4548 position: absolute;
4549 width: calc(6em - 7px);
4550 height: calc(100% + 2px);
4551 top: 0;
4552 left: calc(100% + 1px);
4554 #anti-kibitzer-toggle {
4555 bottom: 330px;
4558 @media only screen and (max-width: 1080px) {
4559 #width-selector {
4560 right: -30px;
4562 #width-selector button {
4563 display: block;
4565 #text-size-adjustment-ui {
4566 top: 90px;
4567 right: -30px;
4569 #text-size-adjustment-ui button {
4570 display: block;
4571 position: relative;
4573 #text-size-adjustment-ui button.increase {
4574 bottom: 48px;
4576 #text-size-adjustment-ui button.decrease {
4577 top: 50px;
4579 #theme-selector {
4580 top: 46px;
4581 left: -44px;
4583 #theme-tweaker-toggle {
4584 left: -44px;
4585 top: 2px;
4587 #theme-tweaker-toggle button {
4588 height: 2em;
4589 width: 2em;
4590 padding: 7px;
4592 #quick-nav-ui {
4593 right: -54px;
4595 #new-comment-nav-ui {
4596 right: -55px;
4598 #hns-date-picker {
4599 right: -23px;
4601 #hns-date-picker::before {
4602 width: calc(100% - 22px);
4604 #anti-kibitzer-toggle {
4605 right: -54px;
4608 @media only screen and (max-width: 1040px) {
4609 #quick-nav-ui {
4610 right: -49px;
4612 #new-comment-nav-ui {
4613 right: -50px;
4615 #hns-date-picker {
4616 right: -18px;
4618 #hns-date-picker::before {
4619 width: calc(100% - 17px);
4621 #anti-kibitzer-toggle {
4622 right: -50px;
4625 @media only screen and (max-width: 1020px) {
4626 #quick-nav-ui {
4627 right: -20px;
4629 #new-comment-nav-ui {
4630 right: -21px;
4632 #new-comment-nav-ui .new-comments-count::before {
4633 content: "";
4634 position: absolute;
4635 width: 100%;
4636 height: calc(100% + 45px);
4637 z-index: -1;
4638 left: 0;
4639 top: -22px;
4641 #hns-date-picker {
4642 right: 19px;
4644 #hns-date-picker::before {
4645 width: 100%;
4647 #anti-kibitzer-toggle {
4648 right: -20px;
4651 @media only screen and (max-width: 1000px) {
4652 #theme-selector {
4653 left: -17px;
4654 top: 120px;
4655 padding: 3px 0;
4656 max-width: 32px;
4658 #theme-selector button {
4659 margin: 1px 4px;
4661 #text-size-adjustment-ui {
4662 top: 100px;
4663 right: -12px;
4665 @media not screen and (hover: none) {
4666 #quick-nav-ui,
4667 #new-comment-nav-ui,
4668 #new-comment-nav-ui + #hns-date-picker,
4669 #anti-kibitzer-toggle {
4670 opacity: 0.4;
4672 #quick-nav-ui:hover,
4673 #new-comment-nav-ui:hover,
4674 #new-comment-nav-ui + #hns-date-picker:hover,
4675 #new-comment-nav-ui + #hns-date-picker:focus-within,
4676 #new-comment-nav-ui:hover + #hns-date-picker,
4677 #anti-kibitzer-toggle:hover {
4678 opacity: 1.0;
4681 #theme-tweaker-toggle {
4682 top: 70px;
4683 left: -21px;
4687 /**************/
4688 /* PRINT VIEW */
4689 /**************/
4691 @media only print {
4692 .nav-bar {
4693 visibility: hidden;
4694 max-height: 0;
4695 overflow: hidden;
4697 #ui-elements-container {
4698 display: none;
4700 #images-overlay {
4701 display: none;
4703 #images-overlay + #content .post-body img {
4704 visibility: visible;
4706 .comment-controls {
4707 display: none;
4709 #comments-sort-mode-selector {
4710 display: none;
4712 .comment-minimize-button {
4713 display: none;
4715 .post-meta .qualified-linking,
4716 .post-meta .lw2-link {
4717 display: none;
4719 .comment-meta .permalink,
4720 .comment-meta .lw2-link,
4721 .comment-meta .comment-parent-link {
4722 display: none;
4724 .new-comment::before {
4725 display: none;
4727 #content::before {
4728 box-shadow: none;
4732 /*****************/
4733 /* MOBILE LAYOUT */
4734 /*****************/
4736 /* Hide the mobile elements on desktop screens: */
4738 @media only screen and (max-width: 1160px) {
4739 #post-nav-ui-toggle,
4740 #appearance-adjust-ui-toggle {
4741 display: none;
4745 @media only screen and (max-width: 1160px) {
4747 /*====================*/
4748 /* MOBILE UI ELEMENTS */
4749 /*====================*/
4751 #ui-elements-container {
4752 height: unset !important;
4753 position: unset;
4755 #ui-elements-container > * {
4756 position: fixed;
4757 visibility: hidden;
4758 opacity: 1.0;
4759 z-index: 10000;
4762 #ui-elements-container > div[id$='-ui-toggle'] {
4763 visibility: visible;
4764 display: inline-block;
4765 border-radius: 50%;
4766 z-index: 10000;
4768 #ui-elements-container > div[id$='-ui-toggle'] button,
4769 #theme-selector .theme-selector-close-button {
4770 font-family: Font Awesome;
4771 font-weight: 900;
4772 font-size: 32px;
4773 padding: 10px;
4774 opacity: 0.8;
4775 -webkit-tap-highlight-color: transparent;
4776 transition: transform 0.2s ease;
4778 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4779 #theme-selector .theme-selector-close-button::selection {
4780 background-color: transparent;
4782 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4783 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4784 border: none;
4786 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4787 transform: rotate(-90deg);
4788 opacity: 1.0;
4791 #appearance-adjust-ui-toggle {
4792 bottom: 10px;
4793 left: 10px;
4796 #post-nav-ui-toggle {
4797 bottom: 10px;
4798 right: 10px;
4801 #theme-selector.engaged,
4802 #quick-nav-ui.engaged,
4803 #new-comment-nav-ui.engaged,
4804 #hns-date-picker.engaged {
4805 visibility: visible;
4808 #image-focus-overlay.engaged {
4809 visibility: visible;
4811 #image-focus-overlay .help-overlay {
4812 display: none;
4815 /*=========*/
4816 /* GENERAL */
4817 /*=========*/
4819 @media only screen and (max-width: 900px) {
4820 #content,
4821 #images-overlay,
4822 #ui-elements-container {
4823 min-width: unset;
4824 width: unset;
4826 #content {
4827 padding: 0 4px;
4831 /*================*/
4832 /* THEME SELECTOR */
4833 /*================*/
4835 #theme-selector {
4836 display: flex;
4837 flex-flow: column;
4838 background-color: #fff;
4839 width: calc(100vw - 20px);
4840 max-width: 360px;
4841 padding: 0 0 3px 0;
4842 overflow: hidden;
4843 max-height: 0;
4844 transition:
4845 top 0.2s ease,
4846 max-height 0.2s ease,
4847 visibility 0.2s ease;
4848 top: calc(100% + 10px);
4849 left: 0;
4850 right: 0;
4851 margin: auto;
4853 #theme-selector.engaged {
4854 max-height: 1000px;
4855 top: 10px;
4856 z-index: 10001;
4858 #theme-selector::before {
4859 content: "Select theme";
4860 white-space: nowrap;
4861 display: block;
4862 font-weight: 600;
4863 font-size: 2rem;
4864 margin: 0.375em 1em 0.5em 1em;
4865 text-align: center;
4867 #theme-selector button {
4868 width: calc(100% - 0.5em);
4869 background-repeat: no-repeat;
4870 padding: 1em 0.875em;
4871 margin: 1px 4px;
4872 line-height: 1;
4873 height: unset;
4874 position: relative;
4876 #theme-selector button::after {
4877 content: attr(data-theme-description);
4878 color: #000;
4879 white-space: nowrap;
4880 position: absolute;
4881 text-align: left;
4882 left: 2.5em;
4883 top: 1em;
4885 @media only screen and (max-height: 675px) {
4886 #theme-selector button {
4887 padding: 0.875em;
4889 #theme-selector button::after {
4890 top: 0.875em;
4893 #theme-selector .theme-selector-close-button {
4894 position: absolute;
4895 width: unset;
4896 background-color: transparent;
4897 top: 0;
4898 right: -3px;
4900 #theme-selector .theme-selector-close-button,
4901 #theme-selector .theme-selector-close-button:focus,
4902 #theme-selector .theme-selector-close-button:active,
4903 #theme-selector .theme-selector-close-button:hover {
4904 box-shadow: none;
4907 /*===============*/
4908 /* THEME TWEAKER */
4909 /*===============*/
4911 #theme-selector {
4912 padding: 0 0 64px 0;
4914 #theme-selector ~ #theme-tweaker-toggle {
4915 top: 100%;
4917 #theme-selector ~ #theme-tweaker-toggle::after {
4918 content: "Open theme tweaker";
4919 position: absolute;
4920 font-size: 0.625em;
4921 white-space: nowrap;
4922 left: -50%;
4923 top: 100%;
4925 #theme-selector.engaged ~ #theme-tweaker-toggle {
4926 visibility: visible;
4927 top: 530px;
4928 left: 0;
4929 right: 0;
4930 margin: auto;
4931 z-index: 11111;
4932 transition:
4933 top 0.2s ease,
4934 visibility 0.2s ease;
4936 @media only screen and (max-height: 675px) {
4937 #theme-selector.engaged ~ #theme-tweaker-toggle {
4938 top: 492px;
4941 @supports (width: -moz-fit-content) {
4942 #theme-selector.engaged ~ #theme-tweaker-toggle {
4943 width: -moz-fit-content;
4946 @supports (width: fit-content) {
4947 #theme-selector.engaged ~ #theme-tweaker-toggle {
4948 width: fit-content;
4951 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4952 opacity: 1.0;
4955 #theme-tweaker-ui {
4956 visibility: visible;
4959 /*======================*/
4960 /* ANTI-KIBITZER TOGGLE */
4961 /*======================*/
4963 #theme-selector ~ #anti-kibitzer-toggle {
4964 top: 100%;
4965 bottom: unset;
4966 left: 0;
4967 right: 0;
4968 margin: auto;
4969 box-shadow: none;
4970 width: calc(100vw - 44px);
4971 max-width: 330px;
4972 text-align: right;
4973 pointer-events: none;
4975 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4976 visibility: visible;
4977 z-index: 11110;
4978 top: 530px;
4979 transition:
4980 top 0.2s ease,
4981 visibility 0.2s ease;
4983 @media only screen and (max-height: 675px) {
4984 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4985 top: 492px;
4988 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4989 pointer-events: auto;
4990 display: inline-block;
4993 /*=================*/
4994 /* QUICKNAV WIDGET */
4995 /*=================*/
4997 #quick-nav-ui {
4998 max-width: 0px;
4999 transition:
5000 max-width 0.2s ease,
5001 visibility 0.2s ease;
5002 display: flex;
5003 right: 72px;
5004 bottom: 14px;
5006 #quick-nav-ui.engaged {
5007 max-width: 1000px;
5009 #quick-nav-ui a {
5010 position: relative;
5011 margin: 2px;
5013 #quick-nav-ui a + a {
5014 margin-left: 5px;
5016 #quick-nav-ui a::after {
5017 position: absolute;
5018 top: calc(100% + 2px);
5019 font-size: 0.375rem;
5020 left: 0;
5021 right: 0;
5022 margin: auto;
5023 line-height: 1;
5024 padding: 2px;
5025 text-transform: uppercase;
5026 z-index: -1;
5028 @supports (width: -moz-fit-content) {
5029 #quick-nav-ui a::after {
5030 width: -moz-fit-content;
5033 @supports (width: fit-content) {
5034 #quick-nav-ui a::after {
5035 width: fit-content;
5038 #quick-nav-ui a[href='#top']::after {
5039 content: "Top";
5040 left: -1px;
5042 #quick-nav-ui a[href='#comments']::after {
5043 content: "Comments";
5045 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
5046 visibility: hidden;
5047 transition: visibility 0.2s ease;
5049 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
5050 visibility: visible;
5052 #quick-nav-ui a[href='#bottom-bar']::after {
5053 content: "Bottom";
5056 /*======================*/
5057 /* NEW COMMENT QUICKNAV */
5058 /*======================*/
5060 #new-comment-nav-ui {
5061 max-width: 0px;
5062 max-height: 0px;
5063 transition:
5064 max-width 0.2s ease,
5065 max-height 0.2s ease,
5066 visibility 0.2s ease;
5067 display: flex;
5068 right: 78px;
5069 bottom: 70px;
5071 #new-comment-nav-ui::before {
5072 content: "New Comments";
5073 position: absolute;
5074 bottom: 100%;
5075 font-size: 0.5625rem;
5076 left: 0;
5077 right: 0;
5078 margin: auto;
5079 padding: 2px 3px;
5080 text-transform: uppercase;
5081 z-index: -1;
5083 @supports (width: -moz-fit-content) {
5084 #new-comment-nav-ui::before {
5085 width: -moz-fit-content;
5088 @supports (width: fit-content) {
5089 #new-comment-nav-ui::before {
5090 width: fit-content;
5093 #new-comment-nav-ui.engaged {
5094 max-width: 1000px;
5095 max-height: 1000px;
5097 #new-comment-nav-ui .new-comment-sequential-nav-button {
5098 top: unset;
5099 bottom: unset;
5100 padding: 2px 7px;
5102 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5103 padding: 2px 7px 3px 7px;
5105 #new-comment-nav-ui .new-comments-count {
5106 padding: 4px 0 5px 0;
5108 #new-comment-nav-ui .new-comments-count::before {
5109 display: none;
5111 #new-comment-nav-ui button::after {
5112 position: absolute;
5113 font-size: 0.375rem;
5114 left: 0;
5115 right: 0;
5116 margin: auto;
5117 line-height: 1;
5118 text-transform: uppercase;
5119 pointer-events: none;
5121 #new-comment-nav-ui button.new-comment-previous::after {
5122 content: "Previous";
5123 bottom: 5px;
5125 #new-comment-nav-ui button.new-comment-next::after {
5126 content: "Next";
5127 top: 7px;
5130 /*=================*/
5131 /* HNS DATE PICKER */
5132 /*=================*/
5134 #hns-date-picker {
5135 max-height: 0px;
5136 bottom: 132px;
5137 right: 62px;
5138 transition:
5139 max-height 0.2s ease,
5140 visibility 0.2s ease;
5142 #hns-date-picker.engaged {
5143 max-height: 1000px;
5145 #hns-date-picker::before {
5146 width: calc(100% + 2px);
5147 border-width: 1px !important;
5150 /*=========*/
5151 /* NAV BAR */
5152 /*=========*/
5154 #bottom-bar {
5155 margin-left: auto;
5156 margin-right: auto;
5157 width: calc(100% - 9rem + 8px);
5158 background: rgba(255,255,255,0.85);
5159 backdrop-filter: blur(1px);
5161 #content.index-page #bottom-bar {
5162 z-index: 10001;
5164 #bottom-bar .nav-item {
5165 box-shadow: none;
5166 position: relative;
5168 #bottom-bar .nav-inner {
5169 font-size: 2rem;
5170 padding: 1rem 0 1.25rem 0;
5171 visibility: hidden;
5172 position: static;
5173 width: 0;
5175 #content #bottom-bar .nav-item .nav-inner::before {
5176 margin: 0;
5177 visibility: visible;
5178 position: absolute;
5179 width: 100%;
5180 height: 100%;
5181 left: 0;
5182 top: 0;
5183 padding: 1rem 0;
5185 #bottom-bar .nav-inner::after {
5186 display: block;
5187 visibility: visible;
5188 text-transform: uppercase;
5189 color: unset;
5190 font-size: 0.75rem;
5191 top: unset;
5192 left: 0;
5193 bottom: 1rem;
5194 width: 100%;
5196 #bottom-bar #nav-item-first .nav-inner::after {
5197 content: "First Page";
5199 #bottom-bar #nav-item-prev .nav-inner::after {
5200 content: "Prev. Page";
5202 #bottom-bar #nav-item-top .nav-inner::after {
5203 content: "Top";
5205 #bottom-bar #nav-item-next .nav-inner::after {
5206 content: "Next Page";
5208 #bottom-bar #nav-item-last .nav-inner::after {
5209 content: "Last Page";
5212 @media only screen and (max-width: 900px) {
5213 .nav-bar-top {
5214 font-size: 0.75rem;
5216 .nav-bar {
5217 width: calc(100% + 8px);
5218 margin: 0 -4px;
5220 .nav-bar .nav-inner::after {
5221 display: none;
5224 #primary-bar .nav-item {
5225 flex: 1 1 100%;
5227 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5228 flex: 1 1 60px;
5230 .nav-bar-top:not(#anything) .nav-inner {
5231 text-transform: uppercase;
5232 padding: 6px;
5234 .nav-bar-top .nav-inner::before {
5235 display: block;
5236 font-family: "Font Awesome";
5237 font-size: 2em;
5238 font-weight: 900;
5241 #nav-item-home .nav-inner::before {
5242 content: "\F015";
5244 #nav-item-featured .nav-inner::before {
5245 content: "\F005";
5247 #nav-item-all .nav-inner::before {
5248 content: "\F069";
5250 #nav-item-meta .nav-inner::before {
5251 content: "\F077";
5253 #nav-item-tags .nav-inner::before {
5254 content: "\F02C";
5256 #nav-item-recent-comments > * > span {
5257 display: none;
5259 #nav-item-recent-comments .nav-inner::before,
5260 #nav-item-alignment-forum-comments .nav-inner::before {
5261 content: "\F036";
5263 #nav-item-alignment-forum .nav-inner::before {
5264 content: "AF";
5265 font-family: Concourse, 'Changa One';
5267 #nav-item-questions .nav-inner::before {
5268 content: "?";
5269 font-family: Concourse, 'Changa One';
5271 #nav-item-events .nav-inner::before {
5272 content: "\F5A0";
5274 #nav-item-shortform .nav-inner::before {
5275 content: "\F2F2";
5277 #nav-item-archive .nav-inner::before {
5278 content: "\F187";
5280 #nav-item-about .nav-inner::before {
5281 content: "\F129";
5283 #nav-item-search {
5284 font-size: 2em;
5285 padding: 10px;
5287 #nav-item-search .nav-inner::before {
5288 content: none;
5290 #nav-item-search .nav-inner {
5291 height: 100%;
5292 display: flex;
5294 #nav-item-search input {
5295 width: 100%;
5296 height: 100%;
5298 #nav-item-search button {
5299 height: 100%;
5300 padding: 5px 5px 5px 10px;
5301 width: 40px;
5302 overflow: visible;
5303 visibility: hidden;
5305 #nav-item-search button::before {
5306 content: "\F002";
5307 font-family: Font Awesome;
5308 font-weight: 900;
5309 visibility: visible;
5311 #nav-item-login {
5312 padding: 0;
5314 #nav-item-login .nav-inner::before {
5315 content: "\F007";
5318 @media only screen and (max-width: 520px) {
5319 .nav-bar-top {
5320 font-size: 0.5rem;
5323 #nav-item-search,
5324 #nav-item-search .nav-inner {
5325 padding: 0;
5327 #nav-item-search button {
5328 width: 31px;
5331 #bottom-bar #nav-item-first .nav-inner::after {
5332 content: "First";
5334 #bottom-bar #nav-item-prev .nav-inner::after {
5335 content: "Prev";
5337 #bottom-bar #nav-item-next .nav-inner::after {
5338 content: "Next";
5340 #bottom-bar #nav-item-last .nav-inner::after {
5341 content: "Last";
5345 /*=================*/
5346 /* INBOX INDICATOR */
5347 /*=================*/
5349 @media only screen and (max-width: 900px) {
5350 #inbox-indicator {
5351 width: 100%;
5352 top: 0;
5353 pointer-events: none;
5355 #inbox-indicator::before {
5356 width: 100%;
5357 font-size: 1rem;
5358 text-align: right;
5359 padding: 1px 6px;
5361 #inbox-indicator.new-messages {
5362 pointer-events: auto;
5364 #inbox-indicator.new-messages::before {
5365 box-shadow: 0 0 8px 1px #f00 inset;
5368 @media only screen and (max-width: 520px) {
5369 #inbox-indicator::before {
5370 font-size: 0.75rem;
5371 padding: 2px 5px;
5374 @media only screen and (max-width: 374px) {
5375 #inbox-indicator::before {
5376 font-size: 0.625rem;
5380 /*===================*/
5381 /* TOP PAGINATION UI */
5382 /*===================*/
5384 #top-nav-bar {
5385 font-size: 1.75rem;
5388 /*==============*/
5389 /* PAGE TOOLBAR */
5390 /*==============*/
5392 @media only screen and (max-width: 900px) {
5393 #content > .page-toolbar {
5394 font-size: 1rem;
5395 margin-right: 0;
5397 #content.user-page > .page-toolbar {
5398 grid-column: 2 / span 2;
5399 margin: 0 0 6px 0;
5402 @media only screen and (max-width: 520px) {
5403 #content:not(.user-page) .page-toolbar {
5404 display: flex;
5405 flex-direction: column-reverse;
5406 text-align: right;
5407 align-self: start;
5408 padding: 4px 0 0 0;
5410 #content.user-page .page-toolbar {
5411 display: flex;
5412 flex-flow: row;
5413 justify-content: flex-end;
5414 padding: 2px 0 0 0;
5416 #content.user-page .page-toolbar > form,
5417 #content.user-page .page-toolbar > .button {
5418 text-align: center;
5419 flex-basis: 25%;
5420 margin-left: 1.5em;
5422 #content.user-page .page-toolbar .button {
5423 text-transform: uppercase;
5424 font-size: 0.625rem;
5426 #content.user-page .page-toolbar .button::before {
5427 font-size: 1.375rem;
5428 display: block;
5429 padding: 0;
5431 #content.user-page .page-toolbar .rss {
5432 white-space: nowrap;
5433 margin: 0 0 0 1.5em;
5435 .page-toolbar > * {
5436 line-height: 1.15;
5437 padding: 6px 0;
5438 margin: 0;
5442 /*==============*/
5443 /* SUBLEVEL NAV */
5444 /*==============*/
5446 @media only screen and (max-width: 900px) {
5447 .sublevel-nav:not(.sort) {
5448 flex-wrap: wrap;
5449 width: calc(100vw - 200px);
5451 .sublevel-nav:not(.sort) .sublevel-item {
5452 margin: 1px;
5453 flex-basis: 7em;
5456 @media only screen and (max-width: 520px) {
5457 .sublevel-nav:not(.sort) .sublevel-item {
5458 font-size: 1rem;
5462 /*=====================*/
5463 /* SORT ORDER SELECTOR */
5464 /*=====================*/
5466 @media only screen and (max-width: 720px) {
5467 #content.index-page > .sublevel-nav.sort {
5468 flex-flow: column;
5469 margin-left: 4px;
5473 /*==========*/
5474 /* ARCHIVES */
5475 /*==========*/
5477 @media only screen and (max-width: 900px) {
5478 div[class^='archive-nav-'] {
5479 flex-wrap: wrap;
5480 justify-content: flex-start;
5482 .archive-nav *[class^='archive-nav-item'],
5483 .archive-nav *[class^='archive-nav-item']:first-child {
5484 padding: 10px;
5485 margin: 2px;
5486 max-width: unset;
5487 flex: 0 1 calc((100% / 8) - 4px);
5489 .archive-nav .archive-nav-item-day,
5490 .archive-nav .archive-nav-item-day:first-child {
5491 flex-basis: calc((100% / 16) - 4px);
5493 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5494 margin-top: 8px;
5495 position: relative;
5497 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5498 content: "";
5499 display: block;
5500 position: absolute;
5501 height: 1px;
5502 width: calc(100% + 8px);
5503 left: -4px;
5504 top: -4px;
5507 @media only screen and (max-width: 720px) {
5508 .archive-nav .archive-nav-item-day,
5509 .archive-nav .archive-nav-item-day:first-child {
5510 flex-basis: calc((100% / 12) - 4px);
5513 @media only screen and (max-width: 520px) {
5514 .archive-nav *[class^='archive-nav-item'],
5515 .archive-nav *[class^='archive-nav-item']:first-child {
5516 flex-basis: calc((100% / 5) - 4px);
5518 .archive-nav .archive-nav-item-day,
5519 .archive-nav .archive-nav-item-day:first-child {
5520 flex-basis: calc((100% / 8) - 4px);
5524 /*==========*/
5525 /* LISTINGS */
5526 /*==========*/
5528 h1.listing {
5529 max-height: unset;
5532 /*============*/
5533 /* USER PAGES */
5534 /*============*/
5536 #content.user-page h1.page-main-heading {
5537 align-self: end;
5539 @media only screen and (max-width: 520px) {
5540 #content.user-page h1.page-main-heading {
5541 overflow: hidden;
5542 text-overflow: ellipsis;
5544 #content.user-page .user-stats .karma-type {
5545 display: block;
5549 /*============*/
5550 /* LOGIN PAGE */
5551 /*============*/
5553 @media only screen and (max-width: 640px) {
5554 .login-container {
5555 flex-flow: column;
5556 margin: 0 auto 3em auto;
5557 max-width: 400px;
5559 .login-container #login-form,
5560 .login-container #signup-form {
5561 padding: 0 1em 1.25em 1em;
5562 grid-row-gap: 0;
5564 .login-container #signup-form {
5565 padding-top: 1em;
5567 .login-container #login-form > *,
5568 .login-container #signup-form > * {
5569 grid-column: 1 / span 2;
5571 .login-container form label {
5572 text-align: left;
5573 padding: 0;
5574 line-height: 1;
5576 .login-container form input {
5577 margin: 0.25em 0 0.75em 0;
5578 padding: 0.5em;
5580 .login-container form h1 {
5581 grid-column: 1 / span 2;
5582 margin: 0 0 0.25em 0;
5584 .login-container form a {
5585 margin: 0.75em 0 0 0;
5587 .login-container .login-tip {
5588 margin: 1.5em 1em 0 1em;
5592 /*==================*/
5593 /* POSTS & COMMENTS */
5594 /*==================*/
5596 @media only screen and (max-width: 720px) {
5597 .body-text ol > li {
5598 padding: 0 0 0 2.25em;
5600 .body-text ol > li::before {
5601 width: 1.75em;
5603 .body-text ul:not(.contents-list) > li,
5604 .body-text ul:not(.contents-list) > li ul > li {
5605 padding: 0 0 0 0.75em;
5607 .body-text ul:not(.contents-list) > li::before,
5608 .body-text ul:not(.contents-list) > li ul > li::before {
5609 width: 0.125em;
5610 margin-left: -0.06em;
5614 /*===========*/
5615 /* POST-META */
5616 /*===========*/
5618 .post-meta {
5619 line-height: 1.9;
5621 @media only screen and (max-width: 720px) {
5622 .post-meta .lw2-link span,
5623 .post-meta .karma-value span,
5624 .post-meta .comment-count span {
5625 display: none;
5627 .post-meta .comment-count::before {
5628 content: "\F086";
5629 font-family: Font Awesome;
5630 font-size: 0.875em;
5631 margin: 0 0.25em 0 0;
5632 font-weight: 400;
5636 /*===================*/
5637 /* POSTS & BODY TEXT */
5638 /*===================*/
5640 @media only screen and (max-width: 900px) {
5641 .post-body,
5642 h1.post-title,
5643 .tag-description,
5644 .sequence-text {
5645 padding: 0 6px;
5648 @media only screen and (max-width: 520px) {
5649 .post-body {
5650 font-size: 1.2rem;
5651 line-height: 1.45;
5653 h1.post-title {
5654 font-size: 2em;
5658 /*==============*/
5659 /* COMMENT-META */
5660 /*==============*/
5662 a.comment-parent-link::after {
5663 display: none;
5665 @media only screen and (max-width: 900px) {
5666 .comment-meta {
5667 padding: 2px 40px 2px 10px;
5670 @media only screen and (max-width: 720px) {
5671 .comment .karma-value span {
5672 display: none;
5674 .comment-meta .comment-parent-link {
5675 opacity: 1.0;
5678 @media only screen and (max-width: 520px) {
5679 .comment-meta {
5680 padding: 2px 24px 2px 10px;
5681 position: relative;
5683 .comment-meta > * {
5684 order: 3;
5686 .comment-meta > :not(.author) {
5687 line-height: 1.8;
5689 .comment-meta .author,
5690 .comment-meta .date {
5691 order: 1;
5693 .comment-meta:before {
5694 content: "";
5695 order: 2;
5696 flex-basis: 100%;
5698 .comment-post-title2 {
5699 display: block;
5700 text-overflow: ellipsis;
5701 overflow: hidden;
5703 .comment-meta .lw2-link {
5704 display: none;
5708 /*=======================*/
5709 /* COMMENTS COMPACT VIEW */
5710 /*=======================*/
5712 /*===========================*/
5713 /* COMMENT THREAD NAVIGATION */
5714 /*===========================*/
5716 @media only screen and (max-width: 900px) {
5717 a.comment-parent-link {
5718 width: 0;
5719 visibility: hidden;
5720 position: relative;
5722 a.comment-parent-link::before {
5723 padding: 0;
5724 font-size: 1em;
5725 left: 0;
5726 top: 0;
5727 line-height: inherit;
5728 visibility: visible;
5729 content: "\F3BF";
5730 transform: scaleX(-1);
5731 width: 2em;
5732 text-align: center;
5735 @media only screen and (max-width: 520px) {
5736 a.comment-parent-link {
5737 position: static;
5739 a.comment-parent-link::before {
5740 padding: 6px;
5741 left: unset;
5742 right: 0;
5743 top: unset;
5744 bottom: 0;
5745 height: 2em;
5749 /*=================================*/
5750 /* COMMENT THREAD MINIMIZE BUTTONS */
5751 /*=================================*/
5753 @media only screen and (max-width: 520px) {
5754 .comment-minimize-button{
5755 right: 2px;
5759 /*===========================*/
5760 /* COMMENTING AND POSTING UI */
5761 /*===========================*/
5763 @media only screen and (max-width: 900px) {
5764 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5765 font-size: 0;
5767 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5768 font-size: 0.9rem;
5770 .comment-controls .cancel-comment-button {
5771 max-width: 1.3em;
5772 overflow: hidden;
5773 margin-right: 0.125em;
5775 .comment-controls .edit-button::before {
5776 font-size: 0.9375rem;
5778 .comments > .comment-controls .cancel-comment-button {
5779 right: 8px;
5781 .comment-controls .cancel-comment-button::before {
5782 font-size: 1.25rem;
5785 @media only screen and (max-width: 520px) {
5786 .comment-controls {
5787 position: static;
5789 .comment-controls:focus-within {
5790 z-index: 10001;
5792 .comment-controls .cancel-comment-button {
5793 right: 10px;
5795 .textarea-container:focus-within textarea {
5796 position: fixed;
5797 top: 0;
5798 left: 2px;
5799 width: calc(100vw - 4px);
5800 height: calc(100% - 100px);
5801 min-height: unset;
5802 max-height: unset;
5803 border-width: 1px;
5804 z-index: 11001;
5806 #content.conversation-page .textarea-container:focus-within textarea {
5807 height: calc(100% - 54px);
5809 #content.conversation-page .textarea-container:focus-within::after {
5810 content: "";
5811 display: block;
5812 width: 100%;
5813 height: 50px;
5814 position: fixed;
5815 left: 0;
5816 bottom: 0;
5817 z-index: 11000;
5819 .textarea-container:focus-within .guiedit-buttons-container {
5820 position: fixed;
5821 z-index: 11002;
5822 left: 0;
5823 width: 100vw;
5824 height: auto;
5825 background-image: none;
5826 padding: 3px 4px 4px 4px;
5827 margin: 0;
5828 text-align: center;
5829 top: auto;
5830 bottom: 0;
5832 .textarea-container:focus-within button.guiedit {
5833 font-size: 0.9375rem;
5834 line-height: 1.5;
5835 height: auto;
5836 width: calc((100% / 10) - 2px);
5837 padding: 10px 1px 8px 0;
5838 position: relative;
5839 margin: 1px;
5841 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5842 z-index: 11011;
5843 position: fixed;
5844 bottom: 7px;
5845 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5846 font-size: 1.25rem;
5847 padding: 5px 5px 6px 5px;
5848 display: block;
5850 .textarea-container:focus-within button.guiedit sup {
5851 position: absolute;
5852 left: calc(50% + 0.65em);
5853 top: calc(50% - 1.3em);
5855 .textarea-container:focus-within .guiedit-mobile-help-button {
5856 left: 8px;
5858 .textarea-container:focus-within .guiedit-mobile-exit-button {
5859 right: 8px;
5861 .guiedit::after {
5862 display: none;
5865 #markdown-hints,
5866 #edit-post-form #markdown-hints {
5867 z-index: 11111;
5868 position: fixed;
5869 top: 40px;
5870 left: 0;
5871 right: 0;
5872 margin: auto;
5873 padding: 4px 0 4px 8px;
5874 width: 310px;
5875 border-width: 3px;
5876 border-style: double;
5877 pointer-events: none;
5879 #markdown-hints::after {
5880 content: "(Type to hide this help box.)";
5881 color: #090;
5882 display: block;
5883 margin: 12px 18px 13px 10px;
5884 padding: 5px;
5885 font-size: 0.9em;
5886 text-align: center;
5890 /*================*/
5891 /* EDIT POST FORM */
5892 /*================*/
5894 @media only screen and (max-width: 520px) {
5895 #edit-post-form {
5896 padding-bottom: 0;
5898 #edit-post-form .post-meta-fields {
5899 grid-template-columns: 4.5em auto auto auto 1fr auto;
5901 #edit-post-form label[for='url'],
5902 #edit-post-form label[for='section'],
5903 #edit-post-form label[for='title'] {
5904 padding-left: 0;
5906 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5907 white-space: normal;
5908 line-height: 0.9;
5909 top: -1px;
5910 font-family: Font Awesome;
5911 font-weight: 900;
5912 justify-self: start;
5914 #edit-post-form .post-meta-fields .question-checkbox,
5915 #edit-post-form .post-meta-fields .question-checkbox + label {
5916 grid-column: 6;
5917 margin-left: unset;
5919 #edit-post-form .post-meta-fields input[type='radio'] + label {
5920 align-self: start;
5922 #edit-post-form .textarea-container:focus-within textarea {
5923 height: calc(100% - 101px);
5924 min-height: unset;
5927 #markdown-hints-checkbox,
5928 #markdown-hints-checkbox + label {
5929 display: none;
5932 #edit-post-form div:last-child {
5933 clear: both;
5934 overflow: auto;
5936 #edit-post-form input[type='submit'] {
5937 float: none;
5938 display: block;
5939 font-size: 1.5rem;
5940 margin: 1rem auto 1.5rem auto;
5941 padding: 6px 12px 8px 12px;
5944 #edit-post-form .textarea-container .autocomplete-container,
5945 .comment-controls .textarea-container .autocomplete-container {
5946 max-height: calc(50vh - 101px);
5947 position: fixed;
5948 top: 50vh;
5949 left: 4px;
5950 right: 4px;
5951 width: unset;
5952 z-index: 11002;
5956 /*===================*/
5957 /* TABLE OF CONTENTS */
5958 /*===================*/
5960 @media only screen and (max-width: 900px) {
5961 .contents {
5962 float: none;
5963 display: table;
5964 max-width: none;
5965 margin-left: auto;
5966 margin-right: auto;
5968 .contents.collapsed {
5969 overflow: hidden;
5970 display: block;
5973 @media only screen and (max-width: 520px) {
5974 .contents {
5975 max-width: 100%;
5976 margin: 1em auto 0 auto;
5977 display: table;
5979 .contents.collapsed {
5980 margin-bottom: 0;
5981 display: block;
5983 .contents-head {
5984 font-size: 1.2em;
5986 div.post-body .contents ul {
5987 font-size: unset;
5991 /*========================*/
5992 /* QUALIFIED HYPERLINKING */
5993 /*========================*/
5995 @media only screen and (max-width: 520px) {
5996 .qualified-linking-toolbar {
5997 right: -5em;
6001 } /* END MOBILE LAYOUT */
6004 /*****************/
6005 /* CLASSIC THEME */
6006 /*****************/
6008 /*===========*/
6009 /* VARIABLES */
6010 /*===========*/
6012 /* Color scheme.
6014 :root {
6015 --GW-comment-background-color-odd: #f7f7f8;
6016 --GW-comment-background-color-even: #fff;
6017 --GW-comment-background-color-target: #ffd;
6020 /*======*/
6021 /* BASE */
6022 /*======*/
6024 body {
6025 color: #000;
6026 background-color: #d8d8d8;
6027 font-family: 'Arial', 'GW-Symbols', sans-serif;
6029 #content {
6030 line-height: 1.5;
6032 #content::before {
6033 background-color: #fff;
6034 box-shadow: 0px 0px 10px #555;
6037 /*=========*/
6038 /* NAV BAR */
6039 /*=========*/
6041 .nav-inner {
6042 font-size: 1.125em;
6043 font-weight: bold;
6045 .nav-inner,
6046 #primary-bar.inactive-bar .nav-inner {
6047 padding: 13px 30px 11px 30px;
6049 .nav-bar-top:not(#primary-bar) .nav-inner {
6050 font-size: 0.875em;
6052 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
6053 padding: 6px 0 4px 0;
6055 @media only screen and (min-width: 901px) {
6056 #secondary-bar #nav-item-sequences .nav-inner {
6057 line-height: 1.1;
6061 #bottom-bar.decorative {
6062 background-color: #fff;
6064 #bottom-bar.decorative::before,
6065 #bottom-bar.decorative::after {
6066 content: "GW";
6067 font-weight: 200;
6068 display: block;
6069 text-align: center;
6070 padding: 0.5em 0 0.75em 0;
6072 #bottom-bar.decorative::before {
6073 width: 100%;
6074 color: transparent;
6075 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
6076 background-repeat: repeat-x;
6077 background-position: center 44%;
6078 margin: 0 30px;
6079 filter: opacity(0.7);
6081 #bottom-bar.decorative::after {
6082 color: #eee;
6083 position: absolute;
6084 left: 0;
6085 right: 0;
6086 margin: auto;
6087 background-color: #fff;
6088 padding-right: 4px;
6089 padding-left: 4px;
6091 @supports (width: -moz-fit-content) {
6092 #bottom-bar.decorative::after {
6093 width: -moz-fit-content;
6096 @supports (width: fit-content) {
6097 #bottom-bar.decorative::after {
6098 width: fit-content;
6102 /* Accesskey hints */
6104 .nav-inner::after {
6105 display: block;
6106 position: absolute;
6107 left: 5px;
6108 top: 0;
6109 font-weight: normal;
6110 font-size: 0.7em;
6111 color: #ddd;
6113 .nav-inner:hover::after {
6114 color: #bbb;
6117 /* This makes the navbar items look like tabs: */
6119 .nav-bar + .nav-bar {
6120 position: relative;
6122 .nav-bar {
6123 background-color: #f5f5f5;
6125 .nav-bar {
6126 border-bottom: 1px solid #d6d5d6;
6128 .nav-bar .nav-inner {
6129 color: #999;
6131 .nav-bar .nav-inner:hover {
6132 color: #777;
6133 text-decoration: none;
6135 .nav-bar .nav-current {
6136 color: #666;
6138 .nav-item:nth-of-type(n+2) {
6139 box-shadow: -9px 0 0 -8px #d6d5d6;
6142 /* Search tab */
6144 #nav-item-search form::before {
6145 position: relative;
6146 top: 2px;
6147 opacity: 0.3;
6149 #nav-item-search button {
6150 border: none;
6151 font-weight: inherit;
6153 #nav-item-search input::placeholder {
6154 color: #d00;
6155 font-weight: normal;
6158 /*= User/login tab =*/
6160 #inbox-indicator::before {
6161 top: 1px;
6162 color: #ccc;
6165 /*= Pagination UI =*/
6167 #bottom-bar #nav-item-next a::before {
6168 margin-left: -2.2em;
6169 left: 4.0em;
6171 #bottom-bar #nav-item-last a::before {
6172 margin-left: -2.3em;
6173 left: 3.9em;
6176 /*= Top pagination UI hover tooltips =*/
6178 #top-nav-bar a::after,
6179 #bottom-bar a::after {
6180 color: #000;
6183 /*==============*/
6184 /* PAGE TOOLBAR */
6185 /*==============*/
6187 .new-post,
6188 .new-post:visited,
6189 .new-private-message,
6190 .new-private-message:visited {
6191 color: #090;
6193 .logout-button {
6194 color: #d33;
6197 /*==============*/
6198 /* SUBLEVEL NAV */
6199 /*==============*/
6201 .sublevel-nav .sublevel-item {
6202 color: #777;
6203 background-color: #fff;
6205 .sublevel-nav .sublevel-item:not(.selected):hover {
6206 background-color: #ddd;
6207 color: #000;
6208 text-decoration: none;
6209 text-shadow: none;
6211 .sublevel-nav .sublevel-item:not(.selected):active,
6212 .sublevel-nav .sublevel-item.selected {
6213 background-color: #ddd;
6214 color: #000;
6215 text-shadow:
6216 0 -1px 0 #fff,
6217 0 0.5px 0.5px #000;
6220 .sublevel-nav:not(.sort) .sublevel-item {
6221 border-style: solid;
6222 border-color: #ddd;
6223 border-width: 1px 0 1px 1px;
6225 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6226 border-radius: 8px 0 0 8px;
6228 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6229 border-width: 1px;
6230 border-radius: 0 8px 8px 0;
6233 /*=====================*/
6234 /* SORT ORDER SELECTOR */
6235 /*=====================*/
6237 .sublevel-nav.sort .sublevel-item {
6238 letter-spacing: 0.5px;
6239 padding: 7px 7px 6px 8px;
6240 text-transform: uppercase;
6241 pointer-events: auto;
6242 box-shadow: 1px 1px 0 0 #aaa inset;
6244 .sublevel-nav.sort {
6245 border: 2px solid transparent;
6246 padding: 18px 0 0 0;
6247 border-radius: 8px;
6248 pointer-events: none;
6249 background-color: #bbb;
6251 .sublevel-nav.sort::before {
6252 text-transform: uppercase;
6253 font-weight: 600;
6254 color: #444;
6255 text-shadow: 0.5px 0.5px 0 #fff;
6256 z-index: 1;
6258 .sublevel-nav.sort::after {
6259 content: "";
6260 position: absolute;
6261 display: block;
6262 top: 0;
6263 left: 0;
6264 width: 100%;
6265 height: 100%;
6266 border-radius: 6px;
6267 box-shadow:
6268 0 18px 0 0 #bbb inset,
6269 0 0 0 1px #aaa inset,
6270 0 18px 0 1px #aaa inset,
6271 0 0 0 2px #bbb;
6274 /*================*/
6275 /* WIDTH SELECTOR */
6276 /*================*/
6277 /* THEME SELECTOR */
6278 /*================*/
6280 #width-selector button,
6281 #theme-selector button {
6282 box-shadow:
6283 0 0 0 4px #d8d8d8 inset,
6284 0 0 0 5px #bbb inset;
6286 #width-selector button:hover,
6287 #width-selector button.selected,
6288 #theme-selector button:hover,
6289 #theme-selector button.selected {
6290 box-shadow:
6291 0 0 0 5px #bbb inset;
6294 #theme-selector button::before {
6295 font-size: 0.9375em;
6296 padding: 5px 6px 7px 6px;
6297 color: #999;
6298 background-color: #d8d8d8;
6300 #theme-selector button:hover::before,
6301 #theme-selector button.selected::before {
6302 color: #222;
6304 #width-selector button::after {
6305 color: #999;
6306 font-size: 0.9em;
6309 /*======================*/
6310 /* THEME TWEAKER TOGGLE */
6311 /*======================*/
6313 #theme-tweaker-toggle button {
6314 color: #777;
6317 /*=================*/
6318 /* QUICKNAV WIDGET */
6319 /*=================*/
6321 #quick-nav-ui a {
6322 color: #999;
6323 background-color: #e4e4e4;
6324 border-radius: 4px;
6326 #quick-nav-ui a[href='#bottom-bar'] {
6327 line-height: 1.8;
6329 #quick-nav-ui a:active {
6330 transform: scale(0.9);
6332 #quick-nav-ui a[href='#comments'].no-comments {
6333 opacity: 0.4;
6334 color: #bbb;
6336 @media only screen and (hover: hover) {
6337 #quick-nav-ui a:hover {
6338 color: #000;
6339 background-color: #eee;
6341 #quick-nav-ui a:focus:not(:hover) {
6342 transform: none;
6343 text-shadow: none;
6347 /*======================*/
6348 /* NEW COMMENT QUICKNAV */
6349 /*======================*/
6351 #new-comment-nav-ui .new-comments-count {
6352 font-weight: 600;
6353 color: #666;
6354 text-shadow: 0.5px 0.5px 0 #fff;
6356 #new-comment-nav-ui .new-comments-count::after {
6357 font-weight: 600;
6358 color: #777;
6360 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6361 color: #bbb;
6362 text-shadow: none;
6364 @media only screen and (hover: hover) {
6365 #new-comment-nav-ui .new-comments-count:hover {
6366 text-shadow:
6367 0 0 1px #fff,
6368 0 0 3px #fff,
6369 0 0 5px #fff,
6370 0 0 8px #fff,
6371 0.5px 0.5px 0 #fff;
6373 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6374 color: #d00;
6378 /*=================*/
6379 /* HNS DATE PICKER */
6380 /*=================*/
6382 #hns-date-picker span {
6383 color: #777;
6384 text-shadow: 0.5px 0.5px 0 #fff;
6385 font-weight: 600;
6387 #hns-date-picker input {
6388 border: 1px solid #777;
6389 background-color: transparent;
6390 color: #666;
6392 #hns-date-picker input:focus {
6393 color: #000;
6396 /*======================*/
6397 /* ANTI-KIBITZER TOGGLE */
6398 /*======================*/
6400 #anti-kibitzer-toggle button::before,
6401 #anti-kibitzer-toggle button::after {
6402 background-color: #888;
6403 -webkit-background-clip: text;
6404 color: transparent;
6405 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
6407 #anti-kibitzer-toggle button:hover::before,
6408 #anti-kibitzer-toggle button:hover::after {
6409 background-color: #444;
6412 /*======================*/
6413 /* TEXT SIZE ADJUSTMENT */
6414 /*======================*/
6416 #text-size-adjustment-ui button {
6417 color: #777;
6419 #text-size-adjustment-ui button:hover {
6420 color: #222;
6422 #text-size-adjustment-ui button.default {
6423 font-weight: 600;
6425 #text-size-adjustment-ui button:disabled:hover {
6426 text-shadow: none;
6428 #text-size-adjustment-ui::after {
6429 color: #999;
6432 /*=============================*/
6433 /* COMMENTS VIEW MODE SELECTOR */
6434 /*=============================*/
6436 #comments-view-mode-selector a {
6437 color: #777;
6440 /*===============*/
6441 /* KEYBOARD HELP */
6442 /*===============*/
6444 #keyboard-help-overlay .keyboard-help-container .keys {
6445 margin: 0;
6448 /*==========*/
6449 /* ARCHIVES */
6450 /*==========*/
6452 .archive-nav {
6453 border: 1px solid #aaa;
6455 .archive-nav *[class^='archive-nav-item'] {
6456 border-style: solid;
6457 border-color: #ddd;
6458 border-width: 1px 0 1px 1px;
6459 background-color: #eee;
6461 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6462 border-top-width: 0;
6463 border-bottom-width: 0;
6465 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6466 border-bottom-width: 1px;
6468 .archive-nav *[class^='archive-nav-item']:last-child {
6469 border-right-width: 1px;
6471 .archive-nav span[class^='archive-nav-item'] {
6472 font-weight: bold;
6473 background-color: #ddd;
6476 .archive-nav a:link,
6477 .archive-nav a:visited {
6478 color: rgba(0, 0, 238, 0.7);
6480 .archive-nav a:hover {
6481 text-decoration: none;
6482 color: #c00;
6483 background-color: #e0e0e0;
6485 .archive-nav a:active {
6486 transform: scale(0.9);
6488 .archive-nav a:focus:not(:hover) {
6489 transform: none;
6491 .archive-nav a.archive-nav-item-day:hover {
6492 background-color: #ddd;
6495 /*==========*/
6496 /* LISTINGS */
6497 /*==========*/
6499 h1.listing {
6500 margin: 1.125em 20px 0.25em 20px;
6501 max-width: calc(100% - 40px);
6502 font-family: 'Arial', 'GW-Symbols', sans-serif, 'Font Awesome';
6503 font-size: 1.125rem;
6504 padding-left: 30px;
6505 max-height: unset;
6508 h1.listing .post-title-link {
6509 color: #538d4d;
6510 white-space: unset;
6511 display: inline;
6513 h1.listing .post-title:visited {
6514 color: #5a5a5b;
6516 h1.listing .link-post-link {
6517 top: 2px;
6520 @media only screen and (hover: hover) {
6521 h1.listing a:hover,
6522 h1.listing a:focus {
6523 color: #3d3d3e;
6524 text-decoration: none;
6526 h1.listing a:focus {
6527 border-bottom: 1px dotted #999;
6529 h1.listing:focus-within::before {
6530 display: none;
6532 h1.listing:focus-within + .post-meta .karma-value {
6533 box-shadow:
6534 0 0 0 3px #fff,
6535 0 0 0 6px #3d3d3e;
6537 h1.listing .link-post-link:hover,
6538 h1.listing .link-post-link:focus {
6539 color: #4879ec;
6540 text-shadow:
6541 0.5px 0.5px 0 #fff,
6542 -0.5px -0.5px 0 #fff,
6543 0 0 2px #fff,
6544 0 0 3px #00c;
6545 border: none;
6549 h1.listing .edit-post-link {
6550 padding: 5px 3px 12px 0.5em;
6551 top: 0;
6552 right: 0;
6554 h1.listing .edit-post-link:hover {
6555 text-decoration: none;
6557 #content.user-page h1.listing .edit-post-link {
6558 background-color: #f7f7f8;
6561 /*======*/
6562 /* SPAM */
6563 /*======*/
6565 h1.listing.spam {
6566 opacity: 0.15;
6568 h1.listing.spam + .post-meta {
6569 opacity: 0.2;
6571 h1.listing.spam:hover,
6572 h1.listing.spam + .post-meta:hover,
6573 h1.listing.spam:hover + .post-meta {
6574 opacity: 1.0;
6577 /*===================*/
6578 /* LISTING POST-META */
6579 /*===================*/
6581 h1.listing + .post-meta {
6582 font-size: 0.8125rem;
6583 padding-left: 30px;
6584 display: flex;
6585 justify-content: flex-end;
6588 h1.listing + .post-meta .author {
6589 font-weight: bold;
6590 color: #6a8a6b;
6591 text-decoration: none;
6592 margin: 0 0 0 1.5em;
6593 order: 0;
6595 h1.listing + .post-meta .author:hover {
6596 color: #3d3d3e;
6598 h1.listing + .post-meta .date,
6599 h1.listing + .post-meta .read-time {
6600 color: #999;
6601 font-style: italic;
6603 h1.listing + .post-meta a {
6604 color: #8a8a8b;
6605 text-decoration: underline;
6607 h1.listing + .post-meta a:hover {
6608 color: #3d3d3e;
6611 h1.listing + .post-meta .karma-value {
6612 background-color: #538d4d;
6613 color: #fff;
6614 font-weight: bold;
6615 font-size: 0.8125rem;
6616 border-radius: 1.0625em;
6617 padding: 2px 6px 1px 6px;
6618 text-align: center;
6619 display: block;
6620 min-width: 2.125em;
6621 position: absolute;
6622 right: calc(100% - 1.75em);
6623 top: -2.1em;
6625 h1.listing + .post-meta .karma-value span,
6626 h1.listing + .post-meta .lw2-link span,
6627 h1.listing + .post-meta .comment-count span {
6628 display: none;
6631 h1.listing + .post-meta > * {
6632 text-align: right;
6633 margin: 0 0 0 0.5em;
6635 h1.listing + .post-meta .read-time {
6636 width: 6.5em;
6637 order: 2;
6639 h1.listing + .post-meta .comment-count {
6640 order: -1;
6642 h1.listing + .post-meta .comment-count::before {
6643 content: "Comments ("
6645 h1.listing + .post-meta .comment-count::after {
6646 content: ")"
6648 h1.listing + .post-meta .date {
6649 width: 11em;
6650 order: 1;
6652 h1.listing + .post-meta .lw2-link {
6653 margin: 0 0 0 1em;
6654 order: 3;
6656 h1.listing + .post-meta .post-section {
6657 margin: 0;
6658 text-decoration: none;
6660 h1.listing + .post-meta .post-section::before {
6661 left: unset;
6662 right: calc(100% + 1.15em);
6663 top: -1.95em;
6665 h1.listing + .post-meta .link-post-domain {
6666 order: -2;
6667 margin: 0 1em 0 0;
6670 /*============*/
6671 /* USER PAGES */
6672 /*============*/
6674 #content.user-page h1.page-main-heading {
6675 border-bottom: 1px solid #ccc;
6678 #content.user-page h1.listing,
6679 #content.user-page h1.listing + .post-meta {
6680 background-color: #f7f7f8;
6681 border-style: solid;
6682 border-color: #bbbcbf;
6685 #content.user-page h1.listing {
6686 padding: 0.5em 6px 0 48px;
6687 border-width: 1px 1px 0 1px;
6688 margin: 1rem 0 0 0;
6689 max-width: 100%;
6691 #content.own-user-page h1.listing,
6692 h1.listing.own-post-listing {
6693 padding-right: 36px;
6695 #content.user-page h1.listing a:hover {
6696 background-color: #f7f7f8;
6699 #content.user-page h1.listing + .post-meta {
6700 padding: 0.25em 10px 0.5em 32px;
6701 border-width: 0 1px 1px 1px;
6702 margin: 0 0 1rem 0;
6704 #content.user-page h1.listing + .post-meta .karma-value {
6705 right: calc(100% - 3.25em);
6706 top: -1.8em;
6708 #content.user-page h1.listing + .post-meta .post-section::before {
6709 right: calc(100% - 5.1em);
6710 top: 4px;
6713 #content.conversations-user-page h1.listing {
6714 padding: 8px 6px 8px 10px;
6715 font-size: 1.25rem;
6717 #content.conversations-user-page h1.listing + .post-meta {
6718 padding: 0 10px 6px 4px;
6719 margin: 0;
6722 .user-stats .karma-total {
6723 font-weight: bold;
6726 /*================*/
6727 /* SEARCH RESULTS */
6728 /*================*/
6730 #content.search-results-page h1.listing {
6731 font-size: 1.125rem;
6734 /*===============*/
6735 /* CONVERSATIONS */
6736 /*===============*/
6738 #content.conversation-page h1.page-main-heading {
6739 font-size: 1.375em;
6740 text-align: left;
6743 /*============*/
6744 /* LOGIN PAGE */
6745 /*============*/
6747 .login-container form input[type='submit'] {
6748 font-weight: bold;
6749 background-color: #eee;
6750 border: 1px solid #ccc;
6752 .login-container form input[type='submit']:hover,
6753 .login-container form input[type='submit']:focus {
6754 background-color: #ddd;
6755 border: 1px solid #aaa;
6758 /* “Create account” form */
6760 #signup-form {
6761 background-color: #f3f3f3;
6762 border: 1px solid #ddd;
6764 #signup-form input[type='submit'] {
6765 background-color: #e4e4e4;
6766 border: 1px solid #ccc;
6768 #signup-form input[type='submit']:hover {
6769 background-color: #d8d8d8;
6770 border: 1px solid #aaa;
6773 /* Log in tip */
6775 .login-container .login-tip {
6776 border: 1px solid #eee;
6779 /* Message box */
6781 .error-box {
6782 border: 1px solid red;
6783 background-color: #faa;
6785 .success-box {
6786 border: 1px solid green;
6787 background-color: #afa;
6790 /*=====================*/
6791 /* PASSWORD RESET PAGE */
6792 /*=====================*/
6794 .reset-password-container input[type='submit'] {
6795 background-color: #e4e4e4;
6796 border: 1px solid #ccc;
6797 font-weight: bold;
6800 /*===================*/
6801 /* TABLE OF CONTENTS */
6802 /*===================*/
6804 .contents {
6805 font-family: 'Arial', 'GW-Symbols', sans-serif;
6806 border: 1px solid #ddd;
6807 background-color: #eee;
6808 padding: 0.75em 0.5em 0.5em 0.5em;
6810 .contents-head {
6811 font-weight: bold;
6812 font-size: 1.25em;
6814 .body-text .contents ul {
6815 font-size: 1em;
6817 .body-text .contents li::before {
6818 color: #999;
6819 font-feature-settings: "tnum";
6822 .contents .toc-collapse-toggle-button {
6823 font-size: 1.25em;
6824 color: #ccc;
6826 .contents .toc-collapse-toggle-button:hover {
6827 color: #aaa;
6830 /*==================*/
6831 /* POSTS & COMMENTS */
6832 /*==================*/
6834 .body-text {
6835 font-family: 'Arial', sans-serif;
6836 font-size: 1rem;
6838 .body-text a {
6839 text-decoration: underline;
6841 .post-meta > *,
6842 .comment-meta > * {
6843 white-space: unset;
6846 /*=================*/
6847 /* POST NAVIGATION */
6848 /*=================*/
6850 .post-nav-item {
6851 font-size: 0.875em;
6852 font-weight: bold;
6853 background-color: #f5f5f5;
6855 .post-nav-label {
6856 opacity: 0.75;
6859 .post-nav.next,
6860 .sequence-title {
6861 box-shadow: -9px 0 0 -8px #d6d5d6;
6864 @media only screen and (max-width: 900px) {
6865 .post-nav.prev {
6866 padding: 0.5em 0.75em 0.5em 0.5em;
6868 .sequence-title {
6869 box-shadow: 0 -9px 0 -8px #d6d5d6;
6871 .post-nav.next {
6872 padding: 0.5em 0.5em 0.5em 0.75em;
6876 .crosspost, .crosspost:visited {
6877 color: #6a8a6b;
6878 background-color: #f8f8f8;
6879 border: 1px solid #ccc;
6882 /*===========*/
6883 /* POST-META */
6884 /*===========*/
6886 .post-meta {
6887 line-height: 1.9;
6889 .post-meta .post-section::before,
6890 .comment-meta .alignment-forum {
6891 color: #fff;
6892 text-shadow:
6893 1px 1px 0 #090,
6894 0 1px 0 #090,
6895 0 0 5px #090;
6897 a.post-section:hover::before {
6898 color: #97ff7c;
6900 .post-meta .post-section.alignment-forum::before {
6901 text-shadow:
6902 1px 1px 0 #626dd7,
6903 0 1px 0 #626dd7,
6904 0 0 5px #626dd7;
6906 a.post-section.alignment-forum:hover::before {
6907 color: #e6e5ff;
6910 .bottom-post-meta {
6911 border-color: #ddd;
6914 .post .post-meta {
6915 position: relative;
6916 font-size: 0.875rem;
6917 justify-content: flex-start;
6918 padding-left: 30px;
6920 .post .post-meta .author {
6921 font-weight: bold;
6922 color: #6a8a6b;
6923 text-decoration: none;
6925 .post .post-meta .author:hover {
6926 color: #3d3d3e;
6928 .post .post-meta .date{
6929 color: #999;
6930 font-style: italic;
6932 .post .post-meta a {
6933 color: #8a8a8b;
6934 text-decoration: underline;
6936 .post .post-meta a:hover {
6937 color: #3d3d3e;
6940 .post .post-meta .voting-controls {
6941 order: -1;
6943 .post .post-meta .karma-value {
6944 background-color: #538d4d;
6945 color: #fff;
6946 font-weight: bold;
6947 font-size: 0.8125rem;
6948 border-radius: 1.125em;
6949 padding: 2px 6px 1px 6px;
6950 text-align: center;
6951 min-width: 2.125em;
6952 display: block;
6953 float: left;
6954 margin: 0 0.5em 0 0;
6956 .post .post-meta .karma-value span,
6957 .post .post-meta .lw2-link span,
6958 .post .post-meta .comment-count span {
6959 display: none;
6962 .post .post-meta .comment-count::before {
6963 content: "Comments ("
6965 .post .post-meta .comment-count::after {
6966 content: ")"
6969 .post .post-meta .post-section::before {
6970 position: absolute;
6971 top: 1px;
6972 left: 0;
6974 .post .bottom-post-meta .post-section::before {
6975 top: 21px;
6978 /*============*/
6979 /* LINK POSTS */
6980 /*============*/
6982 .post.link-post > .post-body > p:first-child {
6983 margin: 0;
6985 .post.link-post a.link-post-link {
6986 text-decoration: none;
6987 font-family: 'Arial', 'GW-Symbols', sans-serif;
6988 font-weight: 600;
6990 .post.link-post a.link-post-link:hover {
6991 color: #c00;
6993 .post.link-post a.link-post-link:hover::before {
6994 color: #4879ec;
6995 text-shadow:
6996 0.5px 0.5px 0 #fff,
6997 -0.5px -0.5px 0 #fff,
6998 0 0 2px #fff,
6999 0 0 3px #00c;
7001 .post.link-post a.link-post-link:focus {
7002 color: #aaa;
7003 border-bottom: 2px dotted #aaa;
7006 /*=======*/
7007 /* POSTS */
7008 /*=======*/
7010 h1.post-title {
7011 font-size: 1.375rem;
7012 text-align: left;
7013 margin: 2em 0 0.5em 0;
7014 line-height: 1.2;
7017 /*==========*/
7018 /* COMMENTS */
7019 /*==========*/
7021 #comments::before {
7022 border-top: 1px solid #000;
7023 box-shadow: 0 3px 4px -4px #000 inset;
7025 @-moz-document url-prefix() {
7026 #comments::before {
7027 box-shadow: 0 3px 3px -4px #000 inset;
7030 #content > .comment-thread .comment-meta a.date:focus,
7031 #content > .comment-thread .comment-meta a.permalink:focus {
7032 color: #444;
7033 outline: 2px dotted #444;
7034 position: relative;
7035 background-color: #fff;
7036 padding: 0 5px;
7037 left: -5px;
7039 #content > .comment-thread .comment-meta a.date:focus + *,
7040 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
7041 margin-left: -10px;
7043 .comment-item {
7044 border: 1px solid #bbbcbf;
7045 background-color: var(--GW-comment-background-color);
7047 .comment-item .comment-item {
7048 margin: 1em -1px 8px 16px;
7050 .comment-item .comment-item + .comment-item {
7051 margin: 2em -1px 8px 16px;
7053 .comment-parent-link::after {
7054 box-shadow:
7055 0 28px 16px -16px var(--GW-comment-parent-background-color) inset,
7056 4px 16px 0 12px var(--GW-comment-background-color-target) inset,
7057 4px 4px 0 12px var(--GW-comment-background-color-target) inset;
7060 /*================================*/
7061 /* DEEP COMMENT THREAD COLLAPSING */
7062 /*================================*/
7064 .comment-item input[id^="expand"] + label::after {
7065 color: #6a8a6b;
7066 font-weight: 600;
7068 .comment-item input[id^="expand"] + label:hover::after {
7069 color: #c00;
7071 .comment-item input[id^="expand"] + label:active::after,
7072 .comment-item input[id^="expand"] + label:focus::after{
7073 color: #c00;
7075 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
7076 border-width: 1px 0 0 0;
7079 /*==============*/
7080 /* COMMENT-META */
7081 /*==============*/
7083 .comment-meta > * {
7084 font-size: 0.9375rem;
7085 padding-top: 2px;
7087 .comment-meta .author {
7088 font-weight: bold;
7089 color: #538d4d;
7091 .comment-meta .date {
7092 color: #999;
7093 font-style: italic;
7095 .comment-meta .date:hover {
7096 color: #777;
7098 .comment-meta .karma-value,
7099 .comment-controls .voting-controls .karma-value {
7100 color: #666;
7101 float: left;
7102 margin-right: 0.5em;
7104 .comment-meta .karma-value:only-child {
7105 float: none;
7107 .comment-item .author:not(.redacted).original-poster::after {
7108 opacity: 0.8;
7111 .comment-item .voting-controls.active-controls::after,
7112 .comment-item .voting-controls .karma-value::after,
7113 .post .voting-controls.active-controls::after,
7114 .post .voting-controls .karma-value::after,
7115 .author::before {
7116 background-color: #fff;
7117 color: #888;
7118 box-shadow: 0 0 0 1px #ccc inset;
7119 border-radius: 4px;
7121 .comment-item .voting-controls.active-controls::after,
7122 .post .voting-controls.active-controls::after {
7123 padding: 6px;
7124 max-width: unset;
7125 bottom: -46px;
7126 width: 110px;
7128 .comment-item .voting-controls .karma-value::after,
7129 .post .voting-controls .karma-value::after {
7130 padding: 2px 8px;
7131 top: -36px;
7132 min-width: 64px;
7133 font-weight: normal;
7136 /*====================*/
7137 /* COMMENT PERMALINKS */
7138 /*====================*/
7140 .comment-meta .permalink,
7141 .comment-meta .lw2-link,
7142 .individual-thread-page .comment-parent-link:empty {
7143 top: 1px;
7144 filter: grayscale(50%);
7146 .comment-meta .permalink,
7147 .comment-meta .lw2-link,
7148 .individual-thread-page .comment-parent-link:empty {
7149 filter: unset;
7152 /*====================*/
7153 /* ANTI-KIBITZER MODE */
7154 /*====================*/
7156 .author.redacted,
7157 .inline-author.redacted {
7158 opacity: 0.8;
7159 font-weight: 400;
7162 .karma-value.redacted {
7163 opacity: 0.5;
7166 .link-post-domain.redacted {
7167 opacity: 0.5;
7170 /*===========================*/
7171 /* COMMENT THREAD NAVIGATION */
7172 /*===========================*/
7174 div.comment-parent-link {
7175 font-weight: bold;
7177 a.comment-parent-link {
7178 font-weight: normal;
7180 a.comment-parent-link::before {
7181 color: #bbb;
7183 a.comment-parent-link:hover::before {
7184 background-color: #ffd;
7185 color: #999;
7188 div.comment-child-links {
7189 font-weight: bold;
7191 div.comment-child-links a {
7192 font-weight: normal;
7194 .comment-child-link::before {
7195 color: #bbb;
7198 .comment-item-highlight {
7199 box-shadow:
7200 0 0 2px #e7b200,
7201 0 0 3px #e7b200,
7202 0 0 5px #e7b200,
7203 0 0 7px #e7b200,
7204 0 0 10px #e7b200;
7205 border: 1px solid #e7b200;
7207 .comment-item-highlight-faint {
7208 box-shadow:
7209 0 0 2px #f8e7b5,
7210 0 0 3px #f8e7b5,
7211 0 0 5px #f8e7b5,
7212 0 0 7px #f8e7b5,
7213 0 0 10px #f8e7b5;
7214 border: 1px solid #f8e7b5;
7217 .comment-popup {
7218 background-color: #fff;
7221 /*=======================*/
7222 /* COMMENTS COMPACT VIEW */
7223 /*=======================*/
7225 #comments-list-mode-selector button {
7226 box-shadow:
7227 0 0 0 4px #fff inset,
7228 0 0 0 5px #bbb inset;
7230 #comments-list-mode-selector button:hover,
7231 #comments-list-mode-selector button.selected {
7232 box-shadow:
7233 0 0 0 5px #bbb inset;
7235 #content.compact > .comment-thread .comment-item {
7236 max-height: 57px;
7238 #content.compact > .comment-thread .comment-item::after {
7239 color: #6a8a6b;
7240 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
7243 @media only screen and (hover: hover) {
7244 #content.compact > .comment-thread .comment-item:hover .comment,
7245 #content.compact > .comment-thread .comment-item.expanded .comment {
7246 background-color: #fff;
7247 outline: 3px solid #6a8a6b;
7249 #content.compact > .comment-thread .comment-item:hover .comment::before,
7250 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7251 background-color: #fff;
7252 box-shadow:
7253 0 0 3px #fff,
7254 0 0 5px #fff,
7255 0 0 7px #fff,
7256 0 0 10px #fff,
7257 0 0 20px #fff,
7258 0 0 30px #fff,
7259 0 0 40px #fff;
7262 @media only screen and (hover: none) {
7263 #content.compact > .comment-thread.expanded .comment-item .comment {
7264 background-color: #fff;
7265 outline: 3px solid #6a8a6b;
7267 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7268 background-color: #fff;
7269 box-shadow:
7270 0 0 3px #fff,
7271 0 0 5px #fff,
7272 0 0 7px #fff,
7273 0 0 10px #fff,
7274 0 0 20px #fff,
7275 0 0 30px #fff,
7276 0 0 40px #fff;
7280 #content.user-page.compact > h1.listing {
7281 margin-top: 0.5rem;
7283 #content.user-page.compact > h1.listing + .post-meta {
7284 margin-bottom: 0.5rem;
7287 /*===========================*/
7288 /* HIGHLIGHTING NEW COMMENTS */
7289 /*===========================*/
7291 .new-comment::before {
7292 outline: 2px solid #5a5;
7293 box-shadow:
7294 0 0 6px -2px #5a5 inset,
7295 0 0 4px #5a5,
7296 0 0 6px #5a5;
7299 /*=================================*/
7300 /* COMMENT THREAD MINIMIZE BUTTONS */
7301 /*=================================*/
7303 .comment-meta .comment-minimize-button {
7304 font-size: 1.25rem;
7305 top: -1px;
7307 .comment-meta .comment-minimize-button::after {
7308 top: 23px;
7310 .comment-minimize-button {
7311 color: #ccc;
7313 .comment-minimize-button:hover {
7314 color: #aaa;
7316 .comment-minimize-button::after {
7317 font-family: 'Arial', 'GW-Symbols', sans-serif;
7318 color: #777;
7320 .comment-minimize-button.maximized::after {
7321 color: #ccc;
7324 /*==============*/
7325 /* VOTE BUTTONS */
7326 /*==============*/
7328 .vote {
7329 padding: 0 5px;
7330 position: relative;
7332 .vote::before {
7333 position: relative;
7334 z-index: 1;
7336 .vote::after {
7337 position: absolute;
7340 .karma .upvote::before {
7341 content: '\F164';
7343 .karma .downvote::before {
7344 content: '\F165';
7345 top: 2px;
7347 .karma .upvote::after {
7348 content: "\F164";
7349 left: -1px;
7350 top: -3px;
7352 .karma .downvote::after {
7353 content: "\F165";
7354 left: -1px;
7355 top: 5px;
7358 .agreement .upvote::before {
7359 content: '\F0A6';
7361 .agreement .downvote::before {
7362 content: '\F0A7';
7363 top: 2px;
7365 .agreement .upvote::after {
7366 content: "\F0A6";
7367 left: -1px;
7368 top: -3px;
7370 .agreement .downvote::after {
7371 content: "\F0A7";
7372 left: -1px;
7373 top: 5px;
7376 /**********/
7377 /* States.
7380 /* _ 1
7382 .vote {
7383 color: #c8c8c8;
7384 text-shadow:
7385 1px 1px 0 #aaa,
7386 -1px 1px 0 #aaa,
7387 1px -1px 0 #aaa,
7388 -1px -1px 0 #aaa;
7390 @media only screen and (min-resolution: 192dpi) {
7391 .vote {
7392 text-shadow:
7393 0.5px 0.5px 0 #aaa,
7394 -0.5px 0.5px 0 #aaa,
7395 0.5px -0.5px 0 #aaa,
7396 -0.5px -0.5px 0 #aaa;
7400 /* _ 2
7402 .upvote:hover,
7403 .upvote:not(.none) {
7404 color: var(--GW-upvote-button-color);
7405 text-shadow:
7406 1px 1px 0 #080,
7407 -1px 1px 0 #080,
7408 1px -1px 0 #080,
7409 -1px -1px 0 #080;
7411 .downvote:hover,
7412 .downvote:not(.none) {
7413 color: var(--GW-downvote-button-color);
7414 text-shadow:
7415 1px 1px 0 #b00,
7416 -1px 1px 0 #a00,
7417 1px -1px 0 #b00,
7418 -1px -1px 0 #b00;
7420 @media only screen and (min-resolution: 192dpi) {
7421 .upvote:hover,
7422 .upvote:not(.none) {
7423 text-shadow:
7424 0.5px 0.5px 0 #060,
7425 -0.5px 0.5px 0 #060,
7426 0.5px -0.5px 0 #060,
7427 -0.5px -0.5px 0 #060;
7429 .downvote:hover,
7430 .downvote:not(.none) {
7431 text-shadow:
7432 0.5px 0.5px 0 #900,
7433 -0.5px 0.5px 0 #900,
7434 0.5px -0.5px 0 #900,
7435 -0.5px -0.5px 0 #900;
7439 /* 0 _
7441 .vote::after {
7442 visibility: hidden;
7445 /* 1,2 _
7447 .vote.two-temp::after,
7448 .vote.two::after {
7449 visibility: visible;
7452 /* 1 _
7454 .vote.two-temp::after {
7455 color: #c8c8c8;
7458 /* 2 _
7460 .vote.two::after {
7461 color: inherit;
7464 /* Disabled.
7466 .vote:disabled,
7467 .vote:disabled:hover {
7468 visibility: unset;
7469 color: #eee;
7470 text-shadow:
7471 1px 1px 0 #d8d8d8,
7472 -1px 1px 0 #d8d8d8,
7473 1px -1px 0 #d8d8d8,
7474 -1px -1px 0 #d8d8d8;
7476 @media only screen and (min-resolution: 192dpi) {
7477 .vote:disabled,
7478 .vote:disabled:hover {
7479 text-shadow:
7480 0.5px 0.5px 0 #d8d8d8,
7481 -0.5px 0.5px 0 #d8d8d8,
7482 0.5px -0.5px 0 #d8d8d8,
7483 -0.5px -0.5px 0 #d8d8d8;
7487 .comment-controls .voting-controls:first-of-type {
7488 margin-left: -6px;
7490 .comment-controls .voting-controls {
7491 margin-right: 1em;
7494 /*===========================*/
7495 /* COMMENTING AND POSTING UI */
7496 /*===========================*/
7498 .posting-controls input[type='submit'] {
7499 background-color: #fff;
7500 border: 1px solid #aaa;
7501 font-weight: bold;
7503 .posting-controls input[type='submit']:hover,
7504 .posting-controls input[type='submit']:focus {
7505 background-color: #ddd;
7506 border: 1px solid #999;
7509 .comment-controls .cancel-comment-button {
7510 font-weight: 600;
7511 color: #c00;
7512 text-shadow:
7513 0 0 1px #fff,
7514 0 0 2px #fff;
7515 max-width: 1.2em;
7516 overflow: hidden;
7517 margin-right: 0.375em;
7519 .comment-controls .cancel-comment-button::before {
7520 font-size: 1.25em;
7522 .comment-controls .cancel-comment-button:hover {
7523 color: #f00;
7526 .new-comment-button {
7527 font-weight: 600;
7530 .comment-controls .action-button::before {
7531 font-size: 1em;
7533 .comment-controls .action-button::after {
7534 content: attr(data-label);
7535 display: block;
7536 position: absolute;
7537 font-size: 0.5em;
7538 text-transform: uppercase;
7539 visibility: hidden;
7540 text-shadow: none;
7542 .comment-controls .action-button:hover::after {
7543 visibility: visible;
7545 .comment-controls .delete-button::before,
7546 .comment-controls .retract-button::before {
7547 color: #ca3232;
7549 .comment-controls .delete-button::after {
7550 transform: translateX(-8px);
7552 .comment-controls .retract-button::after {
7553 transform: translateX(-8px);
7555 .comment-controls .unretract-button::after {
7556 transform: translateX(-18px);
7558 .comment-controls .reply-button::before {
7559 content: "\F086";
7560 font-weight: 400;
7561 font-size: 1.125rem;
7562 color: #6a8a6b;
7564 .comment-controls .reply-button::after {
7565 transform: translateX(-4px);
7567 .comment-controls .edit-button::before {
7568 font-size: 0.9375em;
7569 color: #0b0;
7571 .comment-controls .unretract-button::before {
7572 font-size: 1.125rem;
7573 color: #0b0;
7575 .comment-controls .edit-button::after {
7576 transform: translateX(-1px);
7578 .comment-item .comment-controls .action-button:hover::before {
7579 color: #f00;
7580 text-shadow:
7581 0.5px 0.5px 0.5px #f77;
7584 h1.listing .edit-post-link,
7585 h1.listing .edit-post-link:visited,
7586 .post-controls .edit-post-link,
7587 .post-controls .edit-post-link:visited {
7588 color: #090;
7590 h1.listing .edit-post-link:hover,
7591 .post-controls .edit-post-link:hover {
7592 color: #d00;
7595 .posting-controls textarea {
7596 font-family: 'Arial', sans-serif;
7597 font-size: 1rem;
7598 color: #000;
7599 background-color: #fff;
7600 border-color: #aaa;
7601 box-shadow:
7602 0 0 0 1px #eee inset;
7604 .posting-controls textarea:focus {
7605 background-color: #ffd;
7606 border-color: #6a8a6b;
7607 box-shadow:
7608 0 0 0 1px #ddf inset,
7609 0 0 0 1px #fff,
7610 0 0 0 2px #6a8a6b;
7612 .posting-controls.edit-existing-post textarea:focus,
7613 .posting-controls form.edit-existing-comment textarea:focus {
7614 border-color: #090;
7615 box-shadow:
7616 0 0 0 1px #81ff7f inset,
7617 0 0 0 1px #fff,
7618 0 0 0 2px #090;
7621 /* GUIEdit buttons */
7623 .guiedit-buttons-container {
7624 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
7627 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7628 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7629 color: #050;
7631 .guiedit-buttons-container button {
7632 font-family: Font Awesome, 'Arial', sans-serif;
7635 .guiedit::after {
7636 font-family: 'Arial', 'GW-Symbols', sans-serif;
7637 color: #777;
7638 text-shadow: none;
7639 top: 4px;
7642 /* Markdown hints */
7644 #markdown-hints-checkbox + label {
7645 color: #6a8a6b;
7647 #markdown-hints-checkbox + label:hover {
7648 color: #e00;
7650 #markdown-hints {
7651 border: 1px solid #c00;
7652 background-color: #ffa;
7655 /*================*/
7656 /* EDIT POST FORM */
7657 /*================*/
7659 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7660 border-radius: 3px;
7661 border: 1px solid #ddd;
7662 color: #777;
7663 top: 2px;
7665 @media only screen and (hover:hover) {
7666 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7667 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7668 text-shadow:
7669 0 0 1px #fff,
7670 0 0 2px #fff,
7671 0 0 2.5px #aaa;
7673 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7674 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7675 border-color: #aaa;
7678 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7679 content: "\F00C";
7681 #edit-post-form input[type='radio'] + label {
7682 color: #777;
7683 border-color: #ddd;
7685 #edit-post-form input[type='radio'][value='all'] + label {
7686 border-radius: 8px 0 0 8px;
7687 border-width: 1px;
7689 #edit-post-form input[type='radio'][value='drafts'] + label {
7690 border-radius: 0 8px 8px 0;
7692 #edit-post-form input[type='radio'] + label:hover,
7693 #edit-post-form input[type='radio']:focus + label {
7694 background-color: #ddd;
7695 color: #000;
7697 #edit-post-form input[type='radio']:focus + label {
7698 color: #000;
7699 box-shadow:
7700 0 0 0 1px #aaa;
7702 #edit-post-form input[type='radio']:checked + label {
7703 background-color: #ddd;
7704 border-color: #ddd;
7705 color: #000;
7706 text-shadow:
7707 0 -1px 0 #fff,
7708 0 0.5px 0.5px #000;
7710 #edit-post-form #markdown-hints-checkbox + label {
7711 padding: 3px 0 0 14px;
7714 /*=======*/
7715 /* LINKS */
7716 /*=======*/
7719 text-decoration: none;
7720 color: #6a8a6b;
7722 a:visited {
7723 color: #8a8a8b;
7725 a:hover {
7726 color: #3d3d3e;
7729 /*=========*/
7730 /* BUTTONS */
7731 /*=========*/
7733 button,
7734 input[type='submit'] {
7735 color: #6a8a6b;
7738 button:hover,
7739 input[type='submit']:hover,
7740 button:focus,
7741 input[type='submit']:focus {
7742 color: #d00;
7744 button:active,
7745 input[type='submit']:active {
7746 color: #f00;
7747 transform: scale(0.9);
7749 .button:visited {
7750 color: #6a8a6b;
7752 .button:hover {
7753 color: #f00;
7754 text-decoration: none;
7756 .button:active {
7757 transform: scale(0.9);
7759 .button:focus:not(:hover) {
7760 transform: none;
7762 @-moz-document url-prefix() {
7763 .button:active {
7764 transform: none;
7768 /*==========*/
7769 /* HEADINGS */
7770 /*==========*/
7772 .body-text h1,
7773 .body-text h2,
7774 .body-text h4 {
7775 font-family: 'Arial', 'GW-Symbols', sans-serif;
7777 .body-text h3,
7778 .body-text h5,
7779 .body-text h6 {
7780 font-weight: 600;
7782 .body-text h6 {
7783 color: #555;
7785 .body-text h1 {
7786 border-bottom: 1px solid #aaa;
7789 /*========*/
7790 /* QUOTES */
7791 /*========*/
7793 blockquote {
7794 border-left: 5px solid #ccc;
7797 /*========*/
7798 /* IMAGES */
7799 /*========*/
7801 #content img,
7802 #content figure.image img {
7803 border: 1px solid #ccc;
7805 #content figure img {
7806 border: 1px solid #000;
7808 #content img[src$='.svg'],
7809 #content figure img[src$='.svg'] {
7810 border: none;
7812 #content img[style^='float'] {
7813 border: 1px solid transparent;
7816 /*========*/
7817 /* TABLES */
7818 /*========*/
7820 #content:not(.tag-index-page) .body-text table,
7821 #content:not(.tag-index-page) .body-text table th,
7822 #content:not(.tag-index-page) .body-text table td {
7823 border: 1px solid #bbb;
7826 /*======*/
7827 /* MISC */
7828 /*======*/
7830 hr {
7831 border-bottom: 1px solid #999;
7834 code {
7835 background-color: #f6f6ff;
7836 border: 1px solid #ddf;
7837 border-radius: 4px;
7840 input[type='text'],
7841 input[type='search'],
7842 input[type='password'] {
7843 background-color: #fff;
7844 border: 1px solid #ddd;
7845 color: #000;
7847 input[type='text']:focus,
7848 input[type='search']:focus,
7849 input[type='password']:focus {
7850 background-color: #ffd;
7851 border: 1px solid #bbb;
7852 box-shadow: 0 0 1px #bbb;
7855 select {
7856 color: #000;
7859 /*============*/
7860 /* ABOUT PAGE */
7861 /*============*/
7863 .about-page mark {
7864 background-color: #e6e6e6;
7865 text-decoration: none;
7866 box-shadow:
7867 0 -1px 0 0 #000 inset,
7868 0 -3px 1px -2px #000 inset;
7869 padding: 0 1px;
7872 #content.about-page .accesskey-table {
7873 font-family: 'Arial', 'GW-Symbols', sans-serif;
7874 border-color: #ddd;
7877 #content.about-page img {
7878 border: 1px solid #000;
7881 /*========================*/
7882 /* QUALIFIED HYPERLINKING */
7883 /*========================*/
7885 #aux-about-link a {
7886 color: #777;
7888 #aux-about-link a:hover {
7889 opacity: 1.0;
7892 .qualified-linking label {
7893 color: #6a8a6b;
7895 .qualified-linking label:hover {
7896 text-shadow:
7897 0 0 1px #fff,
7898 0 0 3px #fff,
7899 0 0 5px #00e;
7902 .qualified-linking-toolbar {
7903 border: 1px solid #000;
7904 background-color: #fff;
7906 .qualified-linking-toolbar a {
7907 background-color: #eee;
7908 border: 1px solid #ccc;
7909 border-radius: 4px;
7910 padding: 2px 12px;
7911 white-space: nowrap;
7913 .qualified-linking-toolbar a:visited {
7914 color: #6a8a6b;
7916 .qualified-linking-toolbar a:hover {
7917 text-decoration: none;
7918 background-color: #ddd;
7920 .qualified-linking label::after {
7921 background-color: #d8d8d8;
7922 opacity: 0.8;
7925 /*======*/
7926 /* MATH */
7927 /*======*/
7929 .mathjax-block-container::-webkit-scrollbar {
7930 height: 12px;
7931 background-color: #f6f6ff;
7932 border-radius: 6px;
7933 border: 1px solid #ddf;
7935 .mathjax-block-container::-webkit-scrollbar-thumb {
7936 background-color: #dde;
7937 border-radius: 6px;
7938 border: 1px solid #cce;
7940 .mathjax-inline-container::-webkit-scrollbar {
7941 height: 8px;
7942 background-color: #f6f6ff;
7943 border-radius: 4px;
7944 border: 1px solid #ddf;
7946 .mathjax-inline-container::-webkit-scrollbar-thumb {
7947 background-color: #dde;
7948 border-radius: 4px;
7949 border: 1px solid #cce;
7953 /*===============*/
7954 /* USER MENTIONS */
7955 /*===============*/
7957 .textarea-container .autocomplete-container {
7958 background-color: rgba(255, 255, 170, 0.75);
7959 border: 1px solid rgba(170, 170, 170, 0.75);
7962 .textarea-container .autocomplete-container div.highlighted {
7963 background-color: rgba(170, 170, 170, 0.75);
7964 color: #fff;
7967 .textarea-container .autocomplete-container div:not(.highlighted):hover {
7968 background-color: rgba(136, 136, 136, 0.25);
7971 .textarea-container .autocomplete-container div span.age,
7972 .textarea-container .autocomplete-container div span.karma {
7973 color: #888;
7976 .textarea-container .autocomplete-container div span.karma {
7977 width: 6.75em;
7981 /*=================*/
7982 /* ALIGNMENT FORUM */
7983 /*=================*/
7985 #content.alignment-forum-index-page::before {
7986 background-color: #f4f5ff;
7988 #content.alignment-forum-index-page::after {
7989 font-family: "Concourse SmallCaps";
7990 font-weight: 600;
7991 background-color: #7f85b2;
7992 color: transparent;
7993 -webkit-background-clip: text;
7994 text-shadow:
7995 rgba(255,255,255,0.5) 0px 3px 3px;
7997 @media only screen and (hover: hover) {
7998 #content.alignment-forum-index-page h1.listing a:hover,
7999 #content.alignment-forum-index-page h1.listing a:focus {
8000 background-color: rgba(244,245,255,0.85);
8004 /*====================*/
8005 /* FOR NARROW SCREENS */
8006 /*====================*/
8008 @media only screen and (max-width: 1440px) {
8009 #hns-date-picker {
8010 background-color: #d8d8d8;
8011 opacity: 1.0;
8013 #hns-date-picker::before {
8014 border: 1px solid #999;
8015 border-width: 1px 0 1px 1px;
8018 @media only screen and (max-width: 1160px) {
8019 #theme-selector {
8020 background-color: #d8d8d8;
8021 box-shadow:
8022 0 0 0 1px #999,
8023 0 0 0 2px transparent;
8025 #theme-selector:hover::after {
8026 width: calc(6em - 9px);
8027 height: calc(100% - 5px);
8028 top: 3px;
8029 left: 100%;
8031 #text-size-adjustment-ui button {
8032 background-color: #ddd;
8034 #text-size-adjustment-ui button:hover {
8035 background-color: #eee;
8037 #theme-tweaker-toggle button {
8038 background-color: #ddd;
8041 @media only screen and (max-width: 1080px) {
8042 #text-size-adjustment-ui button {
8043 border: 1px solid #999;
8044 padding: 0 0 0 1px;
8045 border-radius: 50%;
8046 box-shadow:
8047 0 0 6px #999 inset,
8048 0 0 0 1px transparent;
8050 #theme-tweaker-toggle button {
8051 border: 1px solid #999;
8052 box-shadow:
8053 0 0 10px #999 inset,
8054 0 0 0 1px transparent;
8055 border-radius: 50%;
8056 transform: scale(0.8);
8059 @media only screen and (max-width: 1020px) {
8060 #quick-nav-ui a {
8061 box-shadow:
8062 0 0 0 1px #999,
8063 0 0 0 2px transparent;
8065 #new-comment-nav-ui .new-comments-count::before {
8066 background-color: #d8d8d8;
8067 box-shadow:
8068 0 0 0 1px #999,
8069 0 0 0 2px transparent;
8070 border-radius: 8px;
8072 #anti-kibitzer-toggle {
8073 background-color: #d8d8d8;
8074 box-shadow:
8075 0 0 0 1px #999,
8076 0 0 0 2px transparent;
8077 border-radius: 6px;
8078 overflow: hidden;
8082 /*========*/
8083 /* MOBILE */
8084 /*========*/
8086 /*******************************************************/
8087 @media not screen and (hover:hover) and (pointer:fine) {
8088 /*******************************************************/
8089 #ui-elements-container > div[id$='-ui-toggle'] button {
8090 color: #aaa;
8091 text-shadow:
8092 0 0 1px #fff,
8093 0 0 3px #fff,
8094 0 0 5px #fff,
8095 0 0 10px #fff,
8096 0 0 20px #fff,
8097 0 0 30px #fff;
8100 #theme-selector {
8101 background-color: #d8d8d8;
8102 box-shadow:
8103 0 0 0 1px #999,
8104 0 0 1px 3px #fff,
8105 0 0 3px 3px #fff,
8106 0 0 5px 3px #fff,
8107 0 0 10px 3px #fff,
8108 0 0 20px 3px #fff;
8109 border-radius: 12px;
8111 #theme-selector::before,
8112 #theme-selector .theme-selector-close-button {
8113 color: #000;
8114 font-weight: normal;
8116 #theme-selector button {
8117 background-color: #e6e6e6;
8118 border-radius: 10px;
8120 #theme-selector button::after {
8121 color: #444;
8122 max-width: calc(100% - 3.5em);
8123 overflow: hidden;
8124 text-overflow: ellipsis;
8125 padding-bottom: 1px;
8127 #theme-selector button.selected::after {
8128 color: #000;
8129 text-shadow:
8130 0 -1px 0 #fff,
8131 0 0.5px 0.5px #000;
8134 #quick-nav-ui {
8135 background-color: #fff;
8137 #quick-nav-ui,
8138 #new-comment-nav-ui,
8139 #hns-date-picker {
8140 box-shadow:
8141 0 0 1px 3px #fff,
8142 0 0 3px 3px #fff,
8143 0 0 5px 3px #fff,
8144 0 0 10px 3px #fff,
8145 0 0 20px 3px #fff;
8147 #quick-nav-ui a::after,
8148 #new-comment-nav-ui::before {
8149 font-family: 'Arial', 'GW-Symbols', sans-serif;
8150 font-weight: bold;
8151 box-shadow:
8152 0 0 1px 0 #fff,
8153 0 0 3px 0 #fff,
8154 0 0 5px 0 #fff;
8155 background-color: #fff;
8156 border-radius: 4px;
8158 #quick-nav-ui,
8159 #new-comment-nav-ui {
8160 border-radius: 8px;
8162 #new-comment-nav-ui {
8163 background-color: #e4e4e4;
8164 border: 1px solid #999;
8166 #new-comment-nav-ui::before {
8167 color: #777;
8168 font-weight: bold;
8170 #new-comment-nav-ui .new-comment-sequential-nav-button {
8171 box-shadow: 0 0 0 1px #999;
8172 color: #538d4d;
8174 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
8175 color: #bbb;
8177 #new-comment-nav-ui .new-comments-count {
8178 background-color: inherit;
8179 box-shadow: 0 -1px 0 0 #999;
8181 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
8182 border-radius: 7px 0 0 7px;
8184 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
8185 border-radius: 0 7px 7px 0;
8187 #new-comment-nav-ui button::after {
8188 font-family: 'Arial', 'GW-Symbols', sans-serif;
8190 #hns-date-picker {
8191 background-color: #e4e4e4;
8192 border: 1px solid #999;
8195 /*****************************************/
8196 @media only screen and (max-width: 900px) {
8197 /*****************************************/
8198 h1.listing + .post-meta .post-section {
8199 overflow: visible;
8200 order: -2;
8201 width: unset;
8203 h1.listing + .post-meta .post-section::before {
8204 position: unset;
8207 #primary-bar .nav-inner {
8208 font-size: 1.25em;
8210 .nav-bar-top:not(#primary-bar) .nav-inner {
8211 font-size: 1.125em;
8213 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
8214 padding: 6px 10px;
8217 .archive-nav *[class^='archive-nav-item-'] {
8218 border-width: 1px !important;
8220 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8221 background-color: #aaa;
8224 .comment-item .comment-item {
8225 margin: 0.75em 0 3px 6px;
8227 .comment-item .comment-item + .comment-item {
8228 margin: 1.5em 0 3px 6px;
8231 .sublevel-nav:not(.sort) .sublevel-item,
8232 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8233 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8234 border-radius: 8px;
8235 border-width: 1px;
8236 margin: 2px;
8238 /*******************************************/
8239 } @media only screen and (max-width: 720px) {
8240 /*******************************************/
8241 .post-meta .comment-count::before {
8242 font-family: inherit;
8243 font-size: inherit;
8244 margin: 0;
8246 /*******************************************/
8247 } @media only screen and (max-width: 520px) {
8248 /*******************************************/
8249 #primary-bar.inactive-bar .nav-inner {
8250 padding: 6px 10px;
8251 font-size: 1.375em;
8254 h1.listing {
8255 margin: 18px 6px 4px 6px;
8256 max-width: calc(100% - 12px);
8257 padding: 0;
8259 h1.listing .link-post-link {
8260 top: 2px;
8262 h1.listing + .post-meta {
8263 margin: 4px 6px;
8265 h1.listing + .post-meta > *:not(.karma) {
8266 line-height: 1.5;
8267 width: unset;
8269 h1.listing + .post-meta .karma-value {
8270 top: 0;
8271 right: calc(100% - 2.25em);
8274 #content.compact > .comment-thread .comment-item {
8275 max-height: 104px;
8278 .textarea-container:focus-within textarea {
8279 background-color: #fff;
8281 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8282 padding: 6px;
8283 font-weight: bold;
8285 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8286 box-shadow:
8287 0 0 0 2px #c00;
8288 color: #c00;
8290 .textarea-container:focus-within .guiedit-buttons-container {
8291 background-color: #fff;
8292 border-top: 1px solid #ddf;
8294 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
8295 box-shadow: none;
8297 #content.conversation-page .textarea-container:focus-within::after {
8298 background-color: #fff;
8300 .textarea-container:focus-within button.guiedit {
8301 border: 1px solid #6a8a6b;
8302 border-radius: 6px;
8305 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8306 top: 1px;
8308 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8309 top: 1px;
8312 #edit-post-form textarea {
8313 min-height: calc(100vh - 345px);
8318 /*************/
8319 /* ACCORDIUS */
8320 /*************/
8322 /*======*/
8323 /* TAGS */
8324 /*======*/
8326 #tags {
8327 order: 12;
8328 display: flex;
8329 flex-basis: 100%;
8330 justify-content: center;
8331 margin: 0;
8332 flex-flow: row wrap;
8333 align-items: flex-start;
8336 /*===============*/
8337 /* CLASSIC THEME */
8338 /*===============*/
8340 /*++++++*/
8341 /* TAGS */
8342 /*++++++*/
8344 #tags {
8345 padding: 0.25em 0.5em;
8346 line-height: 1;
8347 justify-content: flex-start;
8348 margin: 0.5em 0 0 0;
8350 #tags::before {
8351 content: "Tags:";
8352 margin: 0 0.25em 0 0;
8353 padding: 3px 0;
8354 color: #999;
8356 #tags a {
8357 border-radius: 6px;
8358 background-color: #fffec2;
8359 border: 1px solid #d9b600;
8360 padding: 3px 6px;
8361 line-height: 1;
8362 margin: 0.25em;
8363 font-size: 0.9375em;
8364 text-decoration: none;
8365 color: #537254;
8367 #tags a:hover {
8368 text-decoration: none;
8369 background-color: #ecc700;
8370 color: #000;
8372 #tags a:active {
8373 color: #d00;