Fix layout bug introduced in 6780e8b3.
[lw2-viewer.git] / www / css / style-ultramodern.mac.css
blobb817d30d08b422565f1f87f384243e7519bc64ea
2 /*************/
3 /* VARIABLES */
4 /*************/
6 :root {
7 --GW-comment-background-color-odd: transparent;
8 --GW-comment-background-color-even: transparent;
9 --GW-comment-background-color-target: transparent;
11 --inverted-display: none;
14 /***************/
15 /* BASE LAYOUT */
16 /***************/
18 html {
19 box-sizing: border-box;
20 font-size: 16px;
22 *, *::before, *::after {
23 box-sizing: inherit;
25 script {
26 display: none !important;
29 /*=------=*/
30 /*= Body =*/
31 /*=------=*/
33 body {
34 padding: 0;
35 margin: 0;
37 body::before {
38 background-color: inherit;
39 position: fixed;
40 width: 100%;
41 height: 100%;
44 body.no-scroll {
45 overflow-y: scroll;
46 position: fixed;
47 width: 100%;
50 /*=----------------------------=*/
51 /*= Immediate children of body =*/
52 /*=----------------------------=*/
54 body > * {
55 max-width: 900px;
58 /* Special styles for special browsers.
59 (This one is a fix for Firefox’s built-in screenshot feature.)
61 body > iframe[id^='firefox-screenshots'] {
62 max-width: unset;
65 #content {
66 margin: 0 auto;
67 padding: 0 30px;
68 position: relative;
69 overflow: visible;
70 display: grid;
71 grid-template-columns: 2fr 1fr 2fr;
73 #content::before {
74 content: "";
75 display: block;
76 position: absolute;
77 top: 0;
78 left: 0;
79 width: 100%;
80 height: 100%;
81 z-index: -1;
82 pointer-events: none;
85 /*=---------=*/
86 /*= Content =*/
87 /*=---------=*/
89 #content > * {
90 grid-column: 1 / span 3;
93 /*=----------------------=*/
94 /*= Floating UI elements =*/
95 /*=----------------------=*/
97 #ui-elements-container {
98 position: fixed;
99 height: 100vh;
100 top: 0;
101 left: 0;
102 right: 0;
103 margin: auto;
104 z-index: 10000;
105 pointer-events: none;
107 #ui-elements-container > * {
108 pointer-events: auto;
111 /*=----------------=*/
112 /*= Images overlay =*/
113 /*=----------------=*/
114 /* (To exclude images in posts from theme tweaks) */
116 #images-overlay {
117 position: absolute;
118 z-index: 1;
119 left: 0;
120 right: 0;
121 margin: auto;
124 /***********/
125 /* NAV BAR */
126 /***********/
128 .nav-bar {
129 margin: 0 -30px;
130 display: flex;
131 order: -11;
132 z-index: 1;
135 /*=---------------=*/
136 /*= Nav bar items =*/
137 /*=---------------=*/
139 .nav-item {
140 flex: 1 1 auto;
142 .nav-item * {
143 text-overflow: ellipsis;
144 white-space: nowrap;
145 overflow: hidden;
147 .nav-inner {
148 padding: 12px 30px;
149 text-align: center;
150 display: block;
151 position: relative;
152 line-height: inherit;
153 width: 100%;
154 background: unset;
156 .nav-bar-top:not(#primary-bar) .nav-inner {
157 padding: 4px 0;
160 #nav-item-sequences .nav-inner::before {
161 font-family: "Font Awesome", "Font Awesome 5 Free";
162 content: "\F5DB";
164 @media only screen and (min-width: 901px) {
165 #nav-item-about .nav-inner {
166 margin-right: 0.5em;
168 #nav-item-sequences .nav-inner::before {
169 font-size: 1rem;
170 display: block;
172 #secondary-bar #nav-item-sequences .nav-inner {
173 font-size: 0;
174 line-height: 1.4;
178 /*=------------=*/
179 /*= Bottom bar =*/
180 /*=------------=*/
182 #bottom-bar {
183 order: 11;
185 h1.listing ~ #bottom-bar {
186 margin-top: 1.25em;
188 #bottom-bar .nav-item {
189 flex: 1 1 0;
192 /*=-----------------=*/
193 /*= Accesskey hints =*/
194 /*=-----------------=*/
196 .nav-inner::after {
197 content: attr(accesskey);
198 display: none;
201 /*=---------------=*/
202 /*= Pagination UI =*/
203 /*=---------------=*/
205 #bottom-bar .nav-item a::before,
206 #top-nav-bar a::before {
207 font-family: "Font Awesome", "Font Awesome 5 Free";
208 font-weight: 900;
209 font-size: 0.8em;
210 position: relative;
211 bottom: 1px;
212 margin-right: 0.5em;
214 #bottom-bar #nav-item-first a::before,
215 #top-nav-bar a.nav-item-first::before {
216 content: "\F33e";
218 #bottom-bar #nav-item-top a::before {
219 content: "\F062";
221 #bottom-bar #nav-item-prev a::before,
222 #top-nav-bar a.nav-item-prev::before {
223 content: "\F060";
225 #bottom-bar #nav-item-next a::before,
226 #top-nav-bar a.nav-item-next::before {
227 content: "\F061";
229 #bottom-bar #nav-item-last a::before,
230 #top-nav-bar a.nav-item-last::before {
231 content: "\F340";
233 #bottom-bar #nav-item-next a::before {
234 margin-left: -2em;
235 margin-right: 0;
236 left: 3.8em;
238 #bottom-bar #nav-item-last a::before {
239 margin-left: -1.8em;
240 margin-right: 0;
241 left: 3.4em;
244 /*= Hover tooltips =*/
246 #top-nav-bar a {
247 position: relative;
249 #top-nav-bar a::after {
250 bottom: calc(100% - 3px);
251 content: attr(data-target-page);
253 #top-nav-bar a::after {
254 display: block;
255 position: absolute;
256 font-size: 0.75rem;
257 width: 100%;
258 line-height: 1;
259 visibility: hidden;
261 #top-nav-bar a:hover::after,
262 #bottom-bar a:hover::after {
263 visibility: visible;
266 /*=-----------------------=*/
267 /*= Decorative bottom bar =*/
268 /*=-----------------------=*/
269 /* (On short pages with no pagination) */
271 #bottom-bar.decorative {
272 position: relative;
274 #bottom-bar.decorative .nav-item {
275 display: none;
278 /*=------------=*/
279 /*= Search tab =*/
280 /*=------------=*/
282 #nav-item-search {
283 flex: 4 1 auto;
285 #nav-item-search form::before {
286 content: "\F002";
287 font-family: "Font Awesome", "Font Awesome 5 Free";
288 font-weight: 900;
289 display: inline-block;
290 vertical-align: top;
291 height: 23px;
292 width: 23px;
294 #nav-item-search input {
295 height: 23px;
296 width: calc(95% - 80px);
297 padding: 1px 4px;
299 #nav-item-search button {
300 height: 21px;
303 /*=-----------=*/
304 /*= Login tab =*/
305 /*=-----------=*/
307 #nav-item-login {
308 position: relative;
309 padding-right: 0.5em;
312 /*******************/
313 /* INBOX INDICATOR */
314 /*******************/
316 #inbox-indicator {
317 position: absolute;
318 top: 1px;
319 right: 0;
320 height: 100%;
321 visibility: hidden;
323 #inbox-indicator::before {
324 content: "\F0E0";
325 font-family: "Font Awesome", "Font Awesome 5 Free";
326 color: #bbb;
327 font-size: 1.1875rem;
328 position: absolute;
329 height: 100%;
330 right: 0;
331 top: 0;
332 padding: 0 0.45em;
333 visibility: visible;
334 font-weight: 900;
336 #inbox-indicator.new-messages::before {
337 color: #f00;
338 text-shadow:
339 0 0 1px #777,
340 0.5px 0.5px 1px #777;
342 a#inbox-indicator:hover::before {
343 color: #fff;
344 text-shadow:
345 0 0 1px #000,
346 0 0 2px #000,
347 0 0 4px #000,
348 0 0 1px #777,
349 0.5px 0.5px 1px #777;
351 a#inbox-indicator.new-messages:hover::before {
352 text-shadow:
353 0 0 1px #f00,
354 0 0 2px #f00,
355 0 0 4px #f00,
356 0 0 1px #777,
357 0.5px 0.5px 1px #777;
360 /****************/
361 /* PAGE TOOLBAR */
362 /****************/
364 .page-toolbar {
365 font-size: 0.9em;
366 line-height: 1.8;
367 text-align: right;
368 margin-right: -20px;
370 #content > .page-toolbar {
371 grid-column: 3;
372 grid-row: span 3;
374 #content.user-page > .page-toolbar {
375 grid-column: 2 / span 2;
376 order: -4;
379 /*=--------------------------=*/
380 /*= Page toolbar items (all) =*/
381 /*=--------------------------=*/
383 .page-toolbar > * {
384 display: inline-block;
385 margin-left: 1.5em;
387 .page-toolbar > form button {
388 padding: 0;
389 text-align: right;
390 white-space: unset;
392 .page-toolbar > form button::before {
393 text-align: center;
395 .page-toolbar .button::before {
396 font-family: "Font Awesome", "Font Awesome 5 Free";
397 font-size: 0.9em;
398 padding-right: 0.3em;
401 /*=-------------------------------=*/
402 /*= Page toolbar items (specific) =*/
403 /*=-------------------------------=*/
405 .new-post::before {
406 content: '\F067';
407 font-weight: 900;
409 .new-private-message::before {
410 content: '\F075';
411 font-weight: 400;
413 .logout-button::before {
414 content: '\F2F5';
415 font-weight: 900;
417 #enable-push-notifications::before {
418 content: '\F0F3';
419 font-weight: 400;
421 .ignore-button::before {
422 content: "\F070";
423 font-weight: 400;
425 .unignore-button::before {
426 content: "\F06E";
427 font-weight: 400;
429 .rss::before {
430 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
431 display: inline-block;
432 width: 1em;
433 padding-right: 0.2em;
434 position: relative;
435 top: 1px;
438 /*********************/
439 /* TOP PAGINATION UI */
440 /*********************/
442 #top-nav-bar {
443 grid-column: 2;
444 margin: 0.25em 0 0 0;
445 padding: 0.75em 0 0 0;
446 text-align: center;
447 font-size: 1.25em;
448 display: flex;
449 justify-content: center;
451 #top-nav-bar a {
452 line-height: 1;
454 #top-nav-bar a.disabled {
455 pointer-events: none;
456 visibility: hidden;
458 #top-nav-bar .page-number {
459 position: relative;
460 display: inline-block;
461 width: 1.5em;
463 #top-nav-bar .page-number-label {
464 position: absolute;
465 font-size: 0.5em;
466 text-transform: uppercase;
467 width: 100%;
468 bottom: 90%;
469 left: 0;
471 #top-nav-bar a::before {
472 margin: 0.5em;
473 display: inline-block;
476 /****************/
477 /* SUBLEVEL NAV */
478 /****************/
480 .sublevel-nav {
481 text-align: center;
482 display: flex;
483 justify-content: center;
484 margin: 1em 0 0 0;
486 #content > .sublevel-nav:not(.sort) {
487 grid-column: 2;
488 align-self: start;
490 .sublevel-nav .sublevel-item {
491 flex: 0 0 6em;
492 padding: 0.125em 0.5em;
493 font-size: 1.125rem;
495 .sublevel-nav .sublevel-item:active {
496 transform: none;
498 .sublevel-nav .sublevel-item.selected {
499 cursor: default;
502 /***********************/
503 /* SORT ORDER SELECTOR */
504 /***********************/
506 .sublevel-nav.sort {
507 position: relative;
508 margin-top: 8px;
509 font-size: 0.75em;
511 #content > .sublevel-nav.sort {
512 grid-column: 3;
513 grid-row: span 2;
514 justify-self: end;
515 align-self: start;
516 flex-flow: column;
518 #content.index-page > .sublevel-nav.sort {
519 grid-column: 1;
520 justify-self: start;
521 flex-flow: row;
524 .sublevel-nav.sort::before {
525 content: "Sort";
526 font-size: 0.75rem;
527 position: absolute;
528 top: 0;
529 left: 0;
530 width: 100%;
532 .sublevel-nav.sort .sublevel-item {
533 line-height: 1;
534 font-size: 0.875rem;
535 flex-basis: unset;
538 /*******************************/
539 /* COMMENTS SORT MODE SELECTOR */
540 /*******************************/
542 .comments > .sublevel-nav.sort {
543 margin: 1em auto 0 auto;
545 @supports (width: -moz-fit-content) {
546 .comments > .sublevel-nav.sort {
547 width: -moz-fit-content;
550 @supports (width: fit-content) {
551 .comments > .sublevel-nav.sort {
552 width: fit-content;
556 /******************/
557 /* WIDTH SELECTOR */
558 /******************/
560 #width-selector {
561 position: absolute;
562 top: 4px;
563 right: -78px;
565 #width-selector button {
566 width: 22px;
567 height: 22px;
568 padding: 6px;
569 margin: 1px;
570 overflow: hidden;
571 background-repeat: no-repeat;
572 background-size: 100%;
573 background-origin: content-box;
575 #width-selector button,
576 #width-selector button:active,
577 #width-selector button:focus {
578 text-shadow: none;
579 color: transparent;
581 #width-selector button:disabled {
582 cursor: auto;
584 #width-selector button.select-width-normal {
585 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
587 #width-selector button.select-width-wide {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
590 #width-selector button.select-width-fluid {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
594 /*=----------------=*/
595 /*= Hover tooltips =*/
596 /*=----------------=*/
598 #width-selector button::after {
599 content: attr(data-name);
600 position: absolute;
601 display: block;
602 left: 0;
603 width: 100%;
604 text-align: center;
605 top: 56px;
606 visibility: hidden;
608 #width-selector button.selected::after {
609 content: attr(data-name) " (selected)";
611 #width-selector button:hover:not(:active)::after {
612 visibility: visible;
615 head.content-width-normal + body > * {
616 max-width: 900px;
618 head.content-width-wide + body > * {
619 max-width: 1150px;
621 head.content-width-fluid + body > * {
622 max-width: calc(100% - 300px);
625 /******************/
626 /* THEME SELECTOR */
627 /******************/
629 #theme-selector {
630 position: absolute;
631 top: 3px;
632 left: -41px;
633 opacity: 0.4;
634 display: table;
635 max-width: 40px;
637 #theme-selector:hover {
638 opacity: 1.0;
641 /*=----------------------=*/
642 /*= Theme select buttons =*/
643 /*=----------------------=*/
645 .theme-selector button {
646 display: table-cell;
647 width: 26px;
648 height: 26px;
649 padding: 5px;
650 margin: 1px 7px 0 7px;
651 color: transparent;
652 background-size: 16px 16px;
653 background-origin: content-box;
655 .theme-selector button,
656 .theme-selector button:hover,
657 .theme-selector button:active,
658 .theme-selector button:focus {
659 text-shadow: none;
660 color: transparent;
662 .theme-selector button:disabled {
663 cursor: auto;
666 /*=----------------------------=*/
667 /*= Pre-rendered button images =*/
668 /*=----------------------------=*/
669 /* (Each is just a capital letter A through whatever) */
671 .theme-selector button:nth-of-type(1) {
672 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
674 .theme-selector button:nth-of-type(2) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
677 .theme-selector button:nth-of-type(3) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
680 .theme-selector button:nth-of-type(4) {
681 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
683 .theme-selector button:nth-of-type(5) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
686 .theme-selector button:nth-of-type(6) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
689 .theme-selector button:nth-of-type(7) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
692 .theme-selector button:nth-of-type(8) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
695 .theme-selector button:nth-of-type(9) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
699 /*=------------------------------=*/
700 /*= Theme select button tooltips =*/
701 /*=------------------------------=*/
702 /* (with the name & description of the theme that each button selects) */
704 #theme-selector button {
705 position: relative;
706 z-index: 1;
708 #theme-selector button::before {
709 content: attr(data-theme-name);
710 position: absolute;
711 top: 0;
712 right: 100%;
713 padding: 5px 6px 6px 6px;
714 line-height: 1;
715 width: 6em;
716 text-align: right;
717 z-index: 1;
718 visibility: hidden;
720 #theme-selector:hover button::before {
721 visibility: visible;
723 #theme-selector:hover ~ #theme-tweaker-toggle,
724 #theme-selector:active ~ #theme-tweaker-toggle {
725 z-index: -1;
728 /************************/
729 /* THEME TWEAKER TOGGLE */
730 /************************/
732 #theme-tweaker-toggle {
733 position: absolute;
734 top: 7px;
735 left: -75px;
737 #theme-tweaker-toggle button {
738 font-family: "Font Awesome", "Font Awesome 5 Free";
739 font-weight: 900;
740 font-size: 1.25rem;
741 opacity: 0.4;
742 z-index: 1;
744 #theme-tweaker-toggle button:hover {
745 opacity: 1.0;
748 /*******************/
749 /* QUICKNAV WIDGET */
750 /*******************/
752 #quick-nav-ui {
753 position: absolute;
754 right: -67px;
755 bottom: 20px;
757 #quick-nav-ui a {
758 font-family: "Font Awesome", "Font Awesome 5 Free";
759 font-weight: 900;
760 font-size: 1.5rem;
761 line-height: 1.7;
762 text-align: center;
763 display: block;
764 width: 40px;
765 height: 40px;
766 margin: 10px 0 0 0;
768 #quick-nav-ui a[href='#comments'].no-comments {
769 pointer-events: none;
771 #quick-nav-ui a {
772 visibility: hidden;
774 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
775 visibility: visible;
778 /************************/
779 /* NEW COMMENT QUICKNAV */
780 /************************/
782 #new-comment-nav-ui {
783 position: absolute;
784 right: -112px;
785 bottom: 42px;
787 #new-comment-nav-ui > * {
788 display: block;
789 position: relative;
791 #new-comment-nav-ui.no-comments {
792 display: none;
795 /*=--------------------=*/
796 /*= New comments count =*/
797 /*=--------------------=*/
799 #new-comment-nav-ui .new-comments-count {
800 width: 2em;
801 font-size: 1.25rem;
802 line-height: 1.1;
803 text-align: center;
804 left: 1px;
805 cursor: pointer;
807 #new-comment-nav-ui .new-comments-count::selection {
808 background-color: transparent;
810 #new-comment-nav-ui .new-comments-count::after {
811 content: "NEW";
812 display: block;
813 font-size: 0.625rem;
816 /*=-----------------------------------=*/
817 /*= Next/previous new comment buttons =*/
818 /*=-----------------------------------=*/
820 #new-comment-nav-ui .new-comment-sequential-nav-button {
821 font-size: 1.75rem;
822 font-family: "Font Awesome", "Font Awesome 5 Free";
823 font-weight: 900;
824 width: 1.5em;
825 z-index: 5001;
827 #new-comment-nav-ui .new-comment-previous {
828 top: 8px;
830 #new-comment-nav-ui .new-comment-next {
831 bottom: 6px;
833 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
834 cursor: auto;
835 pointer-events: none;
838 /*******************/
839 /* HNS DATE PICKER */
840 /*******************/
842 #hns-date-picker {
843 position: absolute;
844 bottom: 72px;
845 right: -253px;
846 opacity: 0.6;
848 #hns-date-picker:hover,
849 #hns-date-picker:focus-within {
850 opacity: 1.0;
852 #hns-date-picker.no-comments {
853 display: none;
856 /*=---------------=*/
857 /*= "Since" label =*/
858 /*=---------------=*/
860 #hns-date-picker span {
861 display: block;
862 font-size: 0.75rem;
863 text-transform: uppercase;
866 /*=--------------------=*/
867 /*= "Since" text field =*/
868 /*=--------------------=*/
870 #hns-date-picker input {
871 margin-top: 1px;
872 padding: 1px 3px;
873 width: 140px;
874 text-align: center;
875 box-shadow: 0 0 0 1px transparent;
878 /************************/
879 /* ANTI-KIBITZER TOGGLE */
880 /************************/
882 #anti-kibitzer-toggle {
883 position: absolute;
884 right: -67px;
885 bottom: 225px;
887 #anti-kibitzer-toggle button {
888 display: block;
889 width: 40px;
890 height: 54px;
891 padding: 0;
893 #anti-kibitzer-toggle button::before,
894 #anti-kibitzer-toggle button::after {
895 font-family: "Font Awesome", "Font Awesome 5 Free";
897 #anti-kibitzer-toggle button::before {
898 content: "\F06E";
899 display: block;
900 font-size: 1.75em;
901 font-weight: 400;
903 #anti-kibitzer-toggle button::after {
904 content: "\F007\2004\F164";
905 font-size: 0.875em;
906 font-weight: 900;
908 #anti-kibitzer-toggle.engaged button::before {
909 content: "\F070";
912 /************************/
913 /* TEXT SIZE ADJUSTMENT */
914 /************************/
916 #text-size-adjustment-ui {
917 position: absolute;
918 top: 30px;
919 right: -78px;
920 opacity: 0.4;
922 #text-size-adjustment-ui:hover {
923 opacity: 1.0;
926 /* This doesn't work in Mozilla browsers, so hide it */
927 @-moz-document url-prefix() {
928 #text-size-adjustment-ui {
929 display: none;
933 /*=---------=*/
934 /*= Buttons =*/
935 /*=---------=*/
937 #text-size-adjustment-ui button {
938 font-weight: 900;
939 font-family: "Font Awesome", "Font Awesome 5 Free";
940 font-size: 0.75rem;
941 width: 24px;
942 height: 24px;
943 padding: 0;
945 #text-size-adjustment-ui button.default {
946 font-family: inherit;
947 font-size: 1.125rem;
948 position: relative;
949 top: 1px;
951 #text-size-adjustment-ui button:disabled {
952 opacity: 0.5;
954 #text-size-adjustment-ui button:disabled:hover {
955 cursor: default;
958 /*=----------------=*/
959 /*= Hover tooltips =*/
960 /*=----------------=*/
962 #text-size-adjustment-ui::after {
963 content: "Adjust text size";
964 position: absolute;
965 display: block;
966 left: 0;
967 width: 100%;
968 text-align: center;
969 top: 32px;
970 visibility: hidden;
971 font-size: 0.9em;
973 #text-size-adjustment-ui:hover::after {
974 visibility: visible;
977 /*******************************/
978 /* COMMENTS VIEW MODE SELECTOR */
979 /*******************************/
981 #comments-view-mode-selector {
982 position: absolute;
983 bottom: 30px;
984 left: -40px;
985 opacity: 0.6;
987 #comments-view-mode-selector:hover {
988 opacity: 1.0;
991 /*=---------=*/
992 /*= Buttons =*/
993 /*=---------=*/
995 #comments-view-mode-selector a {
996 display: block;
997 font-family: "Font Awesome", "Font Awesome 5 Free";
998 font-size: 1.25rem;
999 text-align: center;
1000 opacity: 0.4;
1001 padding: 0.25em;
1002 z-index: 1;
1004 #comments-view-mode-selector a.threaded {
1005 transform: scaleY(-1);
1006 font-weight: 900;
1008 #comments-view-mode-selector a.chrono {
1009 font-weight: normal;
1011 #comments-view-mode-selector a.selected,
1012 #comments-view-mode-selector a:hover {
1013 opacity: 1.0;
1014 text-decoration: none;
1016 #comments-view-mode-selector a.selected {
1017 cursor: default;
1020 /*****************/
1021 /* KEYBOARD HELP */
1022 /*****************/
1024 #keyboard-help-overlay {
1025 width: 100vw;
1026 height: 100vh;
1027 background-color: rgba(0,0,0,0.7);
1028 position: fixed;
1029 left: 0;
1030 top: 0;
1031 z-index: 5001;
1033 display: flex;
1034 justify-content: center;
1035 align-items: center;
1036 padding: 20px 30px 30px 20px;
1038 visibility: hidden;
1041 #keyboard-help-overlay .keyboard-help-container {
1042 background-color: #fff;
1043 filter: drop-shadow(4px 4px 2px #000);
1044 flex: 1 1 auto;
1045 max-width: 1500px;
1046 max-height: 100%;
1047 overflow-y: auto;
1048 position: relative;
1050 #keyboard-help-overlay .keyboard-help-container h1 {
1051 text-align: center;
1052 border-bottom: 1px solid #ddd;
1053 margin: 0;
1054 padding: 10px 20px;
1056 #keyboard-help-overlay .keyboard-help-container .note {
1057 margin: 0.5em auto;
1058 padding: 0 1em;
1059 width: fit-content;
1061 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1062 column-width: 21em;
1063 column-count: auto;
1064 column-gap: 1.5em;
1065 border-top: 1px solid #ddd;
1066 padding: 15px 20px;
1068 #keyboard-help-overlay .keyboard-help-container ul {
1069 list-style-type: none;
1070 margin: 0;
1071 padding: 0;
1072 break-inside: avoid;
1073 white-space: nowrap;
1075 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1076 margin: 20px 0 0 0;
1078 #keyboard-help-overlay .keyboard-help-container ul li.section {
1079 font-weight: bold;
1080 font-size: 1.125rem;
1081 break-after: avoid;
1083 #keyboard-help-overlay .keyboard-help-container .keys {
1084 margin: 0 0.5em 0 0;
1085 min-width: 4.5em;
1086 display: inline-block;
1088 #keyboard-help-overlay .keyboard-help-container .keys code {
1089 margin: 0 6px 0 0;
1091 #keyboard-help-overlay .keyboard-help-container code {
1092 display: inline-block;
1093 background-color: #eee;
1094 border: 1px solid #ccc;
1095 padding: 3px 8px 4px 8px;
1096 margin: 0 1px;
1098 #keyboard-help-overlay .keyboard-help-container code.ak {
1099 background-color: #ffeb83;
1100 border-color: #d4a500;
1102 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1103 content: "ak+";
1104 opacity: 0.3;
1107 #nav-item-about button.open-keyboard-help {
1108 display: none;
1110 @media only screen and (hover:hover) and (pointer:fine) {
1111 #nav-item-about {
1112 position: relative;
1113 padding-right: 0.25em;
1115 #nav-item-about button.open-keyboard-help {
1116 font-family: "Font Awesome", "Font Awesome 5 Free";
1117 font-weight: 900;
1118 position: absolute;
1119 top: 0;
1120 right: 0;
1121 height: 100%;
1122 padding: 8px;
1123 display: initial;
1124 line-height: 1;
1125 background-color: transparent;
1129 #keyboard-help-overlay button.close-keyboard-help {
1130 position: absolute;
1131 right: 0;
1132 top: 0;
1133 font-family: "Font Awesome", "Font Awesome 5 Free";
1134 font-size: 1.5rem;
1135 padding: 10px 12px;
1138 /************/
1139 /* ARCHIVES */
1140 /************/
1142 .archive-nav {
1143 margin: 1.25em 0.5em 0 0.5em;
1144 padding: 0.25em;
1146 .archive-nav > * {
1147 display: flex;
1149 .archive-nav *[class^='archive-nav-item'] {
1150 line-height: 1;
1151 flex: 1 1 5%;
1152 text-align: center;
1153 padding: 6px 4px 4px 4px;
1154 max-width: 8%;
1156 @-moz-document url-prefix() {
1157 .archive-nav *[class^='archive-nav-item'] {
1158 padding: 5px 4px;
1161 .archive-nav-days .archive-nav-item-day {
1162 font-size: 0.8em;
1163 padding: 7px 0 5px 0;
1164 max-width: 4%;
1166 .archive-nav-days .archive-nav-item-day:first-child {
1167 flex-basis: 10%;
1170 /************/
1171 /* ARCHIVES */
1172 /************/
1174 .archive-nav {
1175 margin: 1.25em 0.5em 0 0.5em;
1176 padding: 0.25em;
1178 .archive-nav > * {
1179 display: flex;
1181 .archive-nav *[class^='archive-nav-item'] {
1182 line-height: 1;
1183 flex: 1 1 5%;
1184 text-align: center;
1185 padding: 6px 4px 4px 4px;
1186 max-width: 8%;
1188 @-moz-document url-prefix() {
1189 .archive-nav *[class^='archive-nav-item'] {
1190 padding: 5px 4px;
1193 .archive-nav-days .archive-nav-item-day {
1194 font-size: 0.8em;
1195 padding: 7px 0 5px 0;
1196 max-width: 4%;
1198 .archive-nav-days .archive-nav-item-day:first-child {
1199 flex-basis: 10%;
1202 /************/
1203 /* LISTINGS */
1204 /************/
1206 h1.listing {
1207 font-size: 1.875rem;
1208 line-height: 1.15;
1209 max-height: 1.15em;
1210 position: relative;
1213 h1.listing a {
1214 position: relative;
1217 /* Links to link-posts (not the link-post links themselves; that's below) */
1218 h1.listing .link-post-link + a {
1219 margin-left: 0.25em;
1222 h1.listing .link-post-link {
1223 font-size: 0.8em;
1224 display: inline;
1225 vertical-align: top;
1226 position: relative;
1227 top: 4px;
1230 /*=----------------------=*/
1231 /*= Listing hover reveal =*/
1232 /*=----------------------=*/
1233 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1235 @media only screen and (min-width: 1160px) {
1236 h1.listing a {
1237 max-width: 100%;
1238 display: inline-block;
1239 white-space: nowrap;
1240 text-overflow: ellipsis;
1241 overflow: hidden;
1242 border-bottom: 1px solid transparent;
1243 -webkit-hyphens: auto;
1244 -moz-hyphens: auto;
1245 -ms-hyphens: auto;
1246 hyphens: auto;
1247 z-index: 1;
1248 padding: 0 0 1px 1px;
1250 h1.listing .link-post-link + a {
1251 max-width: calc(100% - 40px);
1253 h1.listing a:hover,
1254 h1.listing a:focus {
1255 text-decoration: dotted underline;
1256 white-space: initial;
1257 overflow: visible;
1258 z-index: 2;
1260 h1.listing:focus-within::before {
1261 content: "\F105";
1262 font-family: "Font Awesome", "Font Awesome 5 Free";
1263 display: block;
1264 position: absolute;
1265 left: -0.75em;
1268 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1269 mouse movements) */
1271 h1.listing a:not(.edit-post-link):hover::before {
1272 content: "";
1273 position: absolute;
1274 top: -10px;
1275 right: -10px;
1276 bottom: -10px;
1277 left: -10px;
1278 z-index: -1;
1280 h1.listing .link-post-link:hover {
1281 text-decoration: none;
1285 /*=-----------------------=*/
1286 /*= In-listing edit links =*/
1287 /*=-----------------------=*/
1289 h1.listing .edit-post-link {
1290 position: absolute;
1291 margin: 0;
1294 /*=---------------------------------=*/
1295 /*= Error messages on listing pages =*/
1296 /*=---------------------------------=*/
1298 .listing-message {
1299 width: 100%;
1300 text-align: center;
1301 padding: 1.25em 0 1.25em 0;
1302 font-size: 1.375em;
1305 /*********************/
1306 /* LISTING POST-META */
1307 /*********************/
1309 h1.listing + .post-meta {
1310 position: relative;
1311 justify-content: flex-start;
1312 margin: 0 20px 0 21px;
1315 h1.listing + .post-meta > * {
1316 margin: 0 1em 0 0;
1319 h1.listing + .post-meta .post-section {
1320 width: 0;
1321 margin: 0;
1322 overflow: hidden;
1324 h1.listing + .post-meta .post-section::before {
1325 position: absolute;
1326 left: -36px;
1329 h1.listing + .post-meta .read-time {
1330 cursor: default;
1333 /********************/
1334 /* SEQUENCES & TAGS */
1335 /********************/
1337 .sequence-text, .tag-description {
1338 font-size: 1.2rem;
1339 padding: 0 22px;
1342 #content.tag-index-page .tag-description {
1343 margin: 1em 0 0;
1346 section {
1347 margin-top: 2em;
1348 margin-bottom: 4em;
1351 h1.sequence-chapter {
1352 font-size: 2.3rem;
1355 article {
1356 max-width: 100%;
1359 .post-meta + .comments {
1360 margin-top: 3em;
1363 .tag-list {
1364 column-count: auto;
1365 column-width: 15em;
1366 margin-top: 0;
1367 border-bottom: 1px solid #999;
1368 padding-bottom: 1em;
1369 margin-bottom: 0;
1372 /**************/
1373 /* USER PAGES */
1374 /**************/
1376 /*=---------------------=*/
1377 /*= User's display name =*/
1378 /*=---------------------=*/
1380 #content.user-page h1.page-main-heading {
1381 margin: 0.25em 0 0 0;
1382 line-height: 1.1;
1383 grid-column: 1 / span 2;
1384 order: -2;
1387 #content.user-page h1.page-main-heading .user-full-name {
1388 font-size: 1rem;
1389 font-weight: normal;
1390 padding-left: 0.5em;
1393 /*=--------------------=*/
1394 /*= User's karma total =*/
1395 /*=--------------------=*/
1397 #content.user-page .user-stats {
1398 grid-column: 3;
1399 order: -2;
1400 text-align: right;
1401 align-self: end;
1404 #content.user-page .user-stats .karma-type {
1405 white-space: nowrap;
1408 /*=----------------------=*/
1409 /*= Expanded vs. compact =*/
1410 /*=----------------------=*/
1412 #content.user-page #comments-list-mode-selector {
1413 grid-row: span 2;
1415 #content.user-page #comments-list-mode-selector button {
1416 display: block;
1419 /*=----------------------------------------------------=*/
1420 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1421 /*=----------------------------------------------------=*/
1423 #content.user-page .sublevel-nav {
1424 margin-bottom: 0.5em;
1427 /*=--------------=*/
1428 /*= User's posts =*/
1429 /*=--------------=*/
1431 #content.user-page h1.listing {
1432 margin: 0.5em 0 0 0;
1435 #content.user-page .user-bio :first-child {
1436 margin-top: 0.5em;
1439 /*****************/
1440 /* CONVERSATIONS */
1441 /*****************/
1443 /*=----------------------=*/
1444 /*= List of participants =*/
1445 /*=----------------------=*/
1447 #content.conversation-page .conversation-participants {
1448 grid-column: 2 / span 2;
1449 text-align: right;
1450 margin: 0.5em 0 0 0;
1452 .post-meta > .conversation-participants {
1453 white-space: normal;
1455 .conversation-participants ul,
1456 .conversation-participants li {
1457 list-style-type: none;
1458 display: inline-block;
1459 margin: 0;
1460 padding: 0;
1462 .conversation-participants li {
1463 margin-left: 0.375em;
1465 .conversation-participants li:not(:last-of-type)::after {
1466 content: ",";
1469 /*=-------------------------=*/
1470 /*= Posting controls (form) =*/
1471 /*=-------------------------=*/
1473 #content.conversation-page .posting-controls {
1474 padding: 0 0 1em 0;
1476 #content.conversation-page .post-meta-fields {
1477 overflow: auto;
1478 display: flex;
1479 flex-flow: row wrap;
1481 .posting-controls.standalone textarea {
1482 margin-top: 0.375em;
1484 .posting-controls.standalone form {
1485 padding: 0 1em;
1487 #content.conversation-page .posting-controls.standalone form {
1488 padding: 0 1em 3em 1em;
1490 .posting-controls.standalone input[type='text'],
1491 .posting-controls.standalone label {
1492 margin: 0.25em 0;
1494 .posting-controls.standalone label {
1495 width: 4em;
1496 text-align: right;
1497 padding: 2px 6px;
1498 border: 1px solid transparent;
1500 .posting-controls.standalone input[type='text'] {
1501 width: calc(100% - 4em);
1502 padding: 0.25em;
1504 .posting-controls.standalone input[type='submit'] {
1505 float: right;
1507 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1508 white-space: nowrap;
1510 .posting-controls.standalone #markdown-hints {
1511 top: calc(100% + 2em);
1514 /*=--------------------=*/
1515 /*= Conversation title =*/
1516 /*=--------------------=*/
1518 #content.conversation-page h1.page-main-heading {
1519 text-align: center;
1520 margin: 0.5em 0;
1521 line-height: 1.15;
1524 /*=----------=*/
1525 /*= Messages =*/
1526 /*=----------=*/
1528 #content.conversation-page > ul.comment-thread:last-of-type {
1529 margin-bottom: 2em;
1532 /******************/
1533 /* SEARCH RESULTS */
1534 /******************/
1536 #content.search-results-page h1.listing,
1537 #content.sequence-page h1.listing,
1538 #content.post-page h1.listing {
1539 font-size: 1.625em;
1542 /**************/
1543 /* LOGIN PAGE */
1544 /**************/
1546 .login-container {
1547 margin: 2em 0;
1548 padding: 1em;
1549 display: flex;
1550 flex-flow: row wrap;
1553 .login-container form {
1554 flex-basis: 50%;
1555 display: grid;
1556 grid-row-gap: 0.5em;
1557 align-content: start;
1559 .login-container form label {
1560 text-align: right;
1561 padding: 0.25em 0.5em;
1562 white-space: nowrap;
1563 grid-column: 1;
1565 .login-container form input {
1566 grid-column: 2;
1567 padding: 0.25em;
1569 .login-container form input[type='submit'],
1570 .login-container form a {
1571 grid-column: 2;
1572 justify-self: center;
1574 .login-container form input[type='submit'] {
1575 width: 10em;
1576 padding: 0.35em;
1577 line-height: 1;
1578 margin: 0.5em 0 0 0;
1580 .login-container form h1 {
1581 text-align: center;
1582 margin: 0;
1583 grid-column: 2;
1586 /* “Log in” form */
1588 #login-form {
1589 grid-template-columns: 5.5em 1fr;
1590 padding: 0.5em 2em 0.5em 0;
1593 /* “Create account” form */
1595 #signup-form {
1596 font-size: 0.9em;
1597 grid-template-columns: 8.5em 1fr;
1598 padding: 0.5em 1em 1em 1em;
1600 #signup-form h1 {
1601 font-size: 1.7em;
1603 #signup-form input[type='submit'] {
1604 padding: 0.4em 0.5em 0.5em 0.5em;
1607 /* Log in tip */
1609 .login-container .login-tip {
1610 padding: 0.5em 0.5em 0.5em 3em;
1611 margin: 2em 4em 0 4em;
1612 text-indent: -2em;
1613 line-height: 1.4;
1615 .login-container .login-tip span {
1616 font-weight: bold;
1619 /* Message box */
1621 #content.login-page .error-box {
1622 margin: 1.5em 0.875em -1.5em 0.875em;
1624 .error-box, .success-box {
1625 padding: 0.25em;
1626 text-align: center;
1629 /***********************/
1630 /* PASSWORD RESET PAGE */
1631 /***********************/
1633 .reset-password-container {
1634 margin-bottom: 2em;
1636 .reset-password-container input[type='submit'] {
1637 padding: 0.2em 0.5em;
1638 width: unset;
1640 .reset-password-container input {
1641 margin-left: 0.5em;
1642 width: 12em;
1644 .reset-password-container label {
1645 display: inline-block;
1646 width: 9em;
1648 .reset-password-container form > div {
1649 margin: 0.2em;
1651 .reset-password-container .action-container {
1652 padding-left: 11em;
1653 padding-top: 0.2em;
1655 .reset-password-container .error-box {
1656 margin: unset;
1659 /*********************/
1660 /* TABLE OF CONTENTS */
1661 /*********************/
1663 .contents {
1664 float: right;
1665 min-width: 6em;
1666 max-width: 40%;
1667 margin: 1.25em 0 0.75em 1.25em;
1668 padding: 7px 14px 10px 10px;
1669 position: relative;
1670 z-index: 1;
1673 .contents-head {
1674 text-align: center;
1675 margin-bottom: 0.25em;
1678 .post-body .contents ul {
1679 list-style-type: none;
1680 margin: 0 0 0 0.5em;
1681 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1682 padding-left: 1em;
1683 font-size: 0.75em;
1685 .post-body .contents li {
1686 margin: 0.15em 0 0.3em 1em;
1687 text-align: left;
1688 text-indent: -1em;
1689 line-height: 1.2;
1690 position: relative;
1692 .post-body .contents li::before {
1693 position: absolute;
1694 width: 3em;
1695 display: block;
1696 text-align: right;
1697 left: -4.5em;
1699 .contents .toc-item-1 {
1700 counter-increment: toc-item-1;
1701 counter-reset: toc-item-2 toc-item-3;
1703 .contents .toc-item-1::before {
1704 content: counter(toc-item-1);
1706 .contents .toc-item-1 ~ .toc-item-2 {
1707 margin-left: 2.9em;
1708 font-size: 0.95em;
1710 .contents .toc-item-2 {
1711 counter-increment: toc-item-2;
1712 counter-reset: toc-item-3;
1714 .contents .toc-item-1 ~ .toc-item-2::before {
1715 content: counter(toc-item-1) "." counter(toc-item-2);
1717 .contents .toc-item-2::before {
1718 content: counter(toc-item-2);
1720 .contents .toc-item-1 + .toc-item-3 {
1721 counter-increment: toc-item-2 toc-item-3;
1723 .contents .toc-item-2 ~ .toc-item-3,
1724 .contents .toc-item-1 ~ .toc-item-3 {
1725 margin-left: 2.9em;
1726 font-size: 0.95em;
1728 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1729 margin-left: 5.7em;
1730 font-size: 0.9em;
1732 .contents .toc-item-3 {
1733 counter-increment: toc-item-3;
1735 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1736 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1738 .contents .toc-item-1 ~ .toc-item-3::before {
1739 content: counter(toc-item-1) "." counter(toc-item-3);
1741 .contents .toc-item-2 ~ .toc-item-3::before {
1742 content: counter(toc-item-2) "." counter(toc-item-3);
1744 .contents .toc-item-3::before {
1745 content: counter(toc-item-3);
1747 .contents .toc-item-4,
1748 .contents .toc-item-5,
1749 .contents .toc-item-6 {
1750 display: none;
1753 /********************/
1754 /* POSTS & COMMENTS */
1755 /********************/
1757 .post-meta > *,
1758 .comment-meta > * {
1759 display: inline-block;
1760 margin-right: 1em;
1761 font-size: 1.0625em;
1763 .body-text {
1764 overflow-wrap: break-word;
1765 text-align: justify;
1767 .body-text p {
1768 margin: 1em 0;
1770 .retracted .body-text {
1771 text-decoration: line-through;
1774 .bare-url {
1775 word-break: break-all;
1776 hyphens: auto;
1778 .body-text a:not([href]),
1779 .body-text a:not([href]):hover,
1780 .body-text a:not([href])::before,
1781 .body-text a:not([href])::after {
1782 text-decoration: none;
1783 text-shadow: unset;
1784 border: unset;
1785 color: unset;
1786 content: unset;
1788 /*************/
1789 /* POST-META */
1790 /*************/
1792 .post-meta {
1793 display: flex;
1794 flex-flow: row wrap;
1795 justify-content: center;
1797 .post-meta .lw2-link {
1798 opacity: 0.5;
1799 order: 1;
1801 .post-meta > *,
1802 .post-meta .post-section::before {
1803 margin: 0 0.5em;
1805 .post-meta .post-section {
1806 order: -1;
1807 margin: 0;
1808 visibility: hidden;
1810 .post-meta .post-section::before,
1811 .comment-meta .alignment-forum {
1812 visibility: visible;
1813 font-family: "Font Awesome", "Font Awesome 5 Free";
1814 font-weight: 900;
1816 .post-section.frontpage::before {
1817 content: "\F015";
1819 .post-section.featured::before {
1820 content: "\F005";
1822 .post-section.meta::before {
1823 content: "\F077";
1825 .post-section.events::before {
1826 content: "\F5A0";
1828 .post-section.personal::before {
1829 content: "\F007";
1831 .post-section.draft::before {
1832 content: "\F15B";
1834 .post-section.alignment-forum::before,
1835 .comment-meta .alignment-forum {
1836 content: "AF";
1837 font-family: Concourse, 'Changa One';
1840 /*= Karma controls hover tooltips =*/
1842 @media only screen and (pointer: fine) {
1843 .post .voting-controls,
1844 .comment-item .voting-controls {
1845 position: relative;
1847 .post .karma.active-controls::after,
1848 .comment-item .karma.active-controls::after {
1849 content: "Double-click for strong vote";
1850 position: absolute;
1851 pointer-events: none;
1852 display: block;
1853 left: 6px;
1854 width: 100%;
1855 line-height: 1.15;
1856 white-space: normal;
1857 text-align: center;
1858 font-size: 0.875rem;
1859 opacity: 0;
1860 transition: opacity 0.2s ease;
1862 .post .voting-controls.active-controls:hover::after,
1863 .comment-item .voting-controls.active-controls:hover::after {
1864 opacity: 1.0;
1867 .post .voting-controls .karma-value::after,
1868 .comment-item .voting-controls .karma-value::after {
1869 content: attr(title);
1870 position: absolute;
1871 pointer-events: none;
1872 display: block;
1873 left: 50%;
1874 transform: translateX(-50%);
1875 white-space: pre-wrap;
1876 width: max-content;
1877 text-align: center;
1878 font-size: 0.875rem;
1879 color: #bbb;
1880 opacity: 0;
1881 transition: opacity 0.2s ease;
1883 .post .voting-controls.agreement .karma-value:hover::after,
1884 .comment-item .voting-controls.agreement .karma-value:hover::after {
1885 top: unset;
1886 bottom: 100%;
1888 .post .voting-controls .karma-value:hover::after,
1889 .comment-item .voting-controls .karma-value:hover::after {
1890 opacity: 1.0;
1892 .post .voting-controls.waiting .karma-value:hover::after,
1893 .comment-item .voting-controls.waiting .karma-value:hover::after {
1894 display: none;
1896 .comment-item .voting-controls .karma-value:hover::after {
1897 z-index: 5001;
1900 .author {
1901 position: relative;
1903 .author:not(.redacted)::before {
1904 content: attr(data-full-name);
1905 position: absolute;
1906 pointer-events: none;
1907 display: block;
1908 padding: 0 1em;
1909 left: 50%;
1910 bottom: 2em;
1911 transform: translateX(-50%);
1912 white-space: nowrap;
1913 text-align: center;
1914 font-size: 0.875rem;
1915 font-weight: normal;
1916 opacity: 0;
1917 transition: opacity 0.2s ease;
1918 z-index: 5001;
1920 .author:hover::before {
1921 opacity: 1.0;
1925 /*********/
1926 /* POSTS */
1927 /*********/
1929 .post {
1930 max-width: 100%;
1933 .post-body {
1934 min-height: 8em;
1935 padding: 0 30px;
1936 line-height: 1.5;
1937 font-size: 1.3rem;
1938 overflow: auto;
1939 margin: 0.5em 0 0 0;
1941 h1.post-title {
1942 margin: 1.1em 0 0.35em 0;
1943 padding: 0 30px;
1944 text-align: center;
1945 font-size: 2.5em;
1946 line-height: 1;
1948 .post .post-meta {
1949 text-align: center;
1950 position: relative;
1951 z-index: 2;
1953 .post .top-post-meta:last-child {
1954 margin-bottom: 40px;
1956 .post .bottom-post-meta {
1957 margin: 0;
1958 padding: 20px 0;
1960 .bottom-post-meta {
1961 border-style: solid;
1962 border-width: 1px 0;
1965 /**********/
1966 /* EVENTS */
1967 /**********/
1969 .event-info .map {
1970 position: relative;
1971 width: 100%;
1972 margin: 2em 0 1em;
1975 .event-info .map::before {
1976 content: "";
1977 display: block;
1978 padding-bottom: 50%;
1981 .event-info .map iframe {
1982 width: 100%;
1983 height: 100%;
1984 border: 1px solid #000;
1985 position: absolute;
1986 top: 0;
1987 left: 0;
1990 .event-info ul {
1991 list-style: none;
1992 padding: 0;
1993 text-align: center;
1996 /*******************/
1997 /* POST NAVIGATION */
1998 /*******************/
2000 .post-nav-item {
2001 display: grid;
2002 grid-template: 100% / 32% 36% 32%;
2003 grid-template-areas:
2004 "prev seq next";
2006 .post-nav {
2007 display: flex;
2008 flex-flow: column;
2009 justify-content: flex-end;
2010 padding: 0.5em;
2013 .post-nav-title {
2014 font-size: 1.125em;
2015 line-height: 1.15;
2016 display: inline;
2017 border-top: 1px solid transparent;
2019 .post-nav.prev .post-nav-title,
2020 .post-nav.next .post-nav-title {
2021 border-bottom: 1px solid transparent;
2024 .sequence-title {
2025 align-items: center;
2026 text-align: center;
2027 grid-area: seq;
2029 .sequence-title .post-nav-title {
2030 font-size: 1.5em;
2033 .post-nav.prev {
2034 grid-area: prev;
2035 align-items: flex-start;
2037 .post-nav.prev .post-nav-title::before {
2038 content: "\F0D9\2005";
2040 .post-nav.next {
2041 grid-area: next;
2042 text-align: right;
2043 align-items: flex-end;
2045 .post-nav.prev .post-nav-label,
2046 .post-nav.next .post-nav-label {
2047 display: none;
2049 .post-nav.next .post-nav-title::after {
2050 content: "\2004\F0DA";
2052 .post-nav.prev .post-nav-title::before,
2053 .post-nav.next .post-nav-title::after {
2054 font-family: Font Awesome;
2055 font-weight: 900;
2056 vertical-align: text-bottom;
2057 opacity: 0.75;
2059 .post-nav-links {
2060 max-width: 100%;
2063 @media only screen and (max-width: 900px) {
2064 .post-nav-item {
2065 font-size: 0.875em;
2066 grid-template: auto auto / 50% 50%;
2067 grid-template-areas:
2068 "prev next"
2069 "seq seq";
2071 .post-nav.prev .post-nav-title,
2072 .post-nav.next .post-nav-title {
2073 border-bottom: none;
2075 .post-nav.prev {
2076 margin: 0 0 0 -1px;
2077 position: relative;
2078 left: 1px;
2080 .sequence-title {
2081 padding: 0.75em 0;
2084 @media only screen and (max-width: 520px) {
2085 .post-nav-links + .comments {
2086 padding: 1em 0 0 0;
2090 .related-posts, .related-post-group {
2091 padding-bottom: 1em;
2093 .related-post-type {
2094 font-size: 1.2em;
2095 font-weight: 600;
2096 margin-top: 0.5em;
2097 margin-bottom: -0.5em;
2098 list-style-type: disc;
2099 margin-left: -0.5em;
2100 opacity: 0.7;
2102 .related-post-type::before {
2103 content: "\269c";
2104 font-size: 1.375em;
2105 font-weight: normal;
2106 margin-right: 0.15em;
2107 position: relative;
2108 vertical-align: baseline;
2109 top: 0.05em;
2111 .related-posts .post-type-prefix {
2112 display: none;
2115 /**************/
2116 /* LINK POSTS */
2117 /**************/
2119 .post.link-post > .post-body > p:first-child {
2120 text-align: center;
2121 font-size: 1.125em;
2122 margin: 0.5em 0 0 0;
2124 .post.link-post > .post-body > p:only-child {
2125 font-size: 1.5em;
2126 margin: 1em 0;
2128 .post.link-post a.link-post-link::before {
2129 content: "\F0C1";
2130 font-family: "Font Awesome", "Font Awesome 5 Free";
2131 font-weight: 900;
2132 font-size: 0.75em;
2133 position: relative;
2134 top: -2px;
2135 margin-right: 0.25em;
2138 /************/
2139 /* COMMENTS */
2140 /************/
2142 .comments {
2143 max-width: 100%;
2144 padding: 0 0 1px 0;
2145 position: relative;
2147 .comments::before {
2148 content: "";
2149 position: absolute;
2150 display: block;
2151 top: 0;
2152 left: 0;
2153 width: 100%;
2154 height: 100%;
2155 pointer-events: none;
2157 ul.comment-thread {
2158 list-style-type: none;
2159 padding: 0;
2160 max-width: 100%;
2162 .comments .comment-thread > li {
2163 position: relative;
2165 #content > #top-nav-bar + .comment-thread .comment-item {
2166 margin-top: 0;
2169 .comment-item {
2170 margin: 2em 0 0 0;
2172 .comment-item .comment-item {
2173 margin: 1em 8px 8px 16px;
2175 .comment-item .comment-item + .comment-item {
2176 margin: 2em 8px 8px 16px;
2179 .comment-body {
2180 line-height: 1.45;
2181 font-size: 1.2rem;
2182 padding: 10px;
2184 .comment-body ul {
2185 list-style-type: circle;
2187 .comment-body > *:first-child {
2188 margin-top: 0;
2190 .comment-body > *:last-child {
2191 margin-bottom: 0;
2194 .comments-empty-message {
2195 width: 100%;
2196 text-align: center;
2197 padding: 0.75em 0 0.9em 0;
2198 font-size: 1.375em;
2201 /**********************************/
2202 /* DEEP COMMENT THREAD COLLAPSING */
2203 /**********************************/
2205 .comment-item > input[id^="expand"] {
2206 display: none;
2208 .comment-item > input[id^="expand"] + label {
2209 display: block;
2210 visibility: hidden;
2211 position: relative;
2212 margin: 8px 9px;
2214 .comment-item > input[id^="expand"] + label::after {
2215 content: "(Expand " attr(data-child-count) " below)";
2216 visibility: visible;
2217 position: absolute;
2218 left: 0;
2219 white-space: nowrap;
2220 cursor: pointer;
2222 .comment-item > input[id^="expand"]:checked + label::after {
2223 content: "(Collapse " attr(data-child-count) " below)";
2225 .comment-item > input[id^="expand"] ~ .comment-thread {
2226 max-height: 34px;
2227 overflow: hidden;
2229 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2230 margin-top: 0;
2232 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2233 max-height: 1000000px;
2236 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2237 margin: 0;
2239 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2240 display: none;
2243 /*************/
2244 /* BACKLINKS */
2245 /*************/
2247 .backlinks > input {
2248 display: none;
2251 .backlinks > label {
2252 margin-left: 10px;
2253 display: block;
2254 color: #00f;
2255 cursor: pointer;
2258 .backlinks > label::before {
2259 content: " ";
2260 border-left: 5px solid currentColor;
2261 border-top: 5px solid transparent;
2262 border-bottom: 5px solid transparent;
2263 transition: transform 0.25s ease-out;
2264 transform-origin: 29% 55%;
2265 display: inline-block;
2266 padding-right: 0.5em;
2269 .backlinks > input:checked + label::before {
2270 transform: rotate(90deg);
2273 .backlinks li {
2274 margin-top: 0;
2277 .backlinks > ul {
2278 height: 0;
2279 perspective-origin: top;
2280 transform: perspective(100em) rotateX(-90deg);
2281 transform-origin: center top;
2282 opacity: 0;
2283 margin-top: 0.5em;
2284 margin-bottom: 0.5em;
2287 .backlinks > input:checked ~ ul {
2288 height: auto;
2289 transform: perspective(100em) rotateX(0deg);
2290 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2291 opacity: 1;
2294 /****************/
2295 /* COMMENT-META */
2296 /****************/
2298 .comment-meta {
2299 padding: 2px 24px 2px 10px;
2300 margin: 0 -1px;
2301 border: none;
2302 display: flex;
2303 flex-flow: row wrap;
2304 align-items: baseline;
2306 .user-page .comment-meta,
2307 .conversation-page .comment-meta {
2308 padding-right: 10px;
2310 .comment-meta .comment-post-title {
2311 flex-basis: 100%;
2312 overflow: hidden;
2313 text-overflow: ellipsis;
2314 white-space: nowrap;
2315 line-height: 1.3;
2317 .conversation-page .comment-meta .comment-post-title {
2318 margin: 0;
2319 flex-basis: unset;
2320 flex: 1 0 auto;
2321 text-align: right;
2322 display: none; /* Not sure if we need to display this... */
2324 .comment-item .author:not(.redacted).original-poster::after {
2325 content: "\2004(OP)";
2326 font-size: 0.75em;
2329 /*****************************/
2330 /* COMMENT THREAD NAVIGATION */
2331 /*****************************/
2333 a.comment-parent-link:not(.inline-author),
2334 a.comment-parent-link.inline-author::before {
2335 opacity: 0.5;
2337 a.comment-parent-link:hover {
2338 opacity: 1.0;
2340 a.comment-parent-link::before {
2341 content: "\F062";
2342 font-family: "Font Awesome", "Font Awesome 5 Free";
2343 font-weight: 900;
2344 font-size: 0.75rem;
2345 line-height: 1;
2346 position: absolute;
2347 z-index: 1;
2348 display: block;
2349 padding: 3px 3px 0 3px;
2350 width: 16px;
2351 height: calc(100% + 2px);
2352 top: -1px;
2353 left: -17px;
2355 a.comment-parent-link::after {
2356 content: "";
2357 position: absolute;
2358 z-index: 0;
2359 display: block;
2360 width: calc(100% + 26px);
2361 height: calc(100% + 38px);
2362 top: -29px;
2363 left: -17px;
2364 pointer-events: none;
2365 overflow: hidden;
2366 visibility: hidden;
2368 a.comment-parent-link:hover::after {
2369 visibility: visible;
2372 .comment-child-links {
2373 flex-basis: 100%;
2375 .comment-child-link {
2376 margin: 0 0.25em;
2377 display: inline-block;
2379 .comment-child-link::before {
2380 content: ">";
2381 display: inline-block;
2382 margin: 0 2px 0 0;
2385 .comment-popup {
2386 position: fixed;
2387 top: 10%;
2388 right: 10%;
2389 max-width: 700px;
2390 z-index: 10001;
2391 font-size: 1rem;
2392 white-space: unset;
2393 pointer-events: none;
2395 .comment-popup .comment-parent-link {
2396 display: none;
2398 .comment-popup .comment-body {
2399 font-size: 1.0625rem;
2402 .comment-item.depth-odd {
2403 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2404 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2406 .comment-item.depth-even {
2407 --GW-comment-background-color: var(--GW-comment-background-color-even);
2408 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2411 .comment-item:target {
2412 --GW-comment-background-color: var(--GW-comment-background-color-target);
2414 .comment-item:target > .comment-thread > .comment-item {
2415 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2418 /**********************/
2419 /* COMMENT PERMALINKS */
2420 /**********************/
2421 /********************/
2422 /* COMMENT LW LINKS */
2423 /********************/
2425 .comment-meta .permalink::before,
2426 .comment-meta .lw2-link::before,
2427 .individual-thread-page a.comment-parent-link:empty::before {
2428 content: "";
2429 display: inline-block;
2430 width: 1rem;
2431 height: 1rem;
2432 border-radius: 3px;
2433 box-shadow:
2434 0 0 0 1px #fff,
2435 0 0 0 2px #00e,
2436 0 0 0 3px transparent;
2437 padding: 0 0 0 2px;
2438 background-size: 100%;
2439 position: relative;
2440 top: 2px;
2441 opacity: 0.5;
2443 .comment-meta .permalink::before {
2444 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BxG6SZO6ipS6zJY6zhd7Dtf7Elr7k1u7lZ171178GJ/8GOA8GWC8GmF8WyH8XON8nWP8naP8oOa84Wc84ac9Ied9Iyh9I6j9JCl9ZGl9ZSo9ZWp9Zms9Zut9qKz9qi4962897G/+LPB+LTC+LjF+L3J+cLN+cTP+sXQ+srU+svU+s7X+9DZ+9HZ+9La+9Xd+9bd+9ng/Nrh/Nvh/Obq/ent/e7x/vHz/vL0/vP1/vT2/vj5//n6//r7//v7//z8//39//7+/////wAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAMDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84AAgoOEhYaHiImKi4yNjo+QhgEODQGRiiVDRERDIpeHJ5uiRCWfhAdAo5tCCaaCFZtDHyCxEK4AsERCCxG1twhBqrqttzPCNLeCDTqjOQzJGMKctq4e0kMPkQUbgxSaqtiCAR0DiwbMMoMEACybyJYAATREOQWJBjui6YMr7oPyouodEsBsFAx+/gTFUCWwkIJgo3iUA9CPCLJ4OMBlOyThWwtCFS8KchErgqIAN0SFQGhxkAhRNhhFE3XjAgAVm14AyJBSlIVGJlT5GNVDVSlHHCBKEyVEg7YUP5b2QDHx04QRL2rUaEHCZLKvYMOKHXspEAA7');
2446 .comment-meta .lw2-link::before {
2447 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5w066BZB6RxG6SJL6iZO6ipS6zJY6zhd7D1h7EBk7UJl7Ulr7kts7lFx7mB+8GJ/8GmF8WyH8XON8naP8niR8n+X84GY84+k9JOn9ZSo9ZWp9Zut9qS196W296e396q6962896+++LTC+LzI+b3J+cDM+cXQ+sjS+srU+s7X+9La+9bd+9jf/Nng/Nvh/Nzi/N7k/OXq/efr/ent/eru/e3w/vDz/vHz/vL0/vT2/vb3//f4//r7//z8//39//7+/////wAAt4pHif9/AAAAAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAPAAAAAAAAAOC8CVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAADYvAlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//7C8CVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH5YAAgoOEhYaHiImKi4yNjo+QkZKTlJWWl5EHBwoBgwuaB56hgpqciAE3QUE6BQAIPao9BgAmqiAADT6qNac2qjuzAC2qQBQBNaovABqqQSi9v60AHM0iCbpBsifEFtBBO9IM2CwYzUAVNL/BhgG+39IAMqo4w80qPKorie3RgyHNAANu2OcO3CAIPwIG/IGAoCodAwbxawZjBsAYiiYC8dDhQwYAJQB6IAGwQ0Z3AIFEmACE2IMLzX44OKkQiAQBOVTdGEAAVhAanRwGVAkghaoUglyoGoGpqdOnUKNKnUq1qlVEgQAAOw==');
2449 .individual-thread-page a.comment-parent-link:empty::before {
2450 left: unset;
2451 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wAw9QAw9gBj9gB39gB99i8w5y+R9y+R+T8w51eq+V8w51+R9Jeq85eq9ZfY/s/E89fL+dfl/N/E8N/L9N/L9d/4/+fL9OfY9+f4/u/R9e/4/u////fY9ffe9ffe9vfr+/f//////P////9/AAABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAABAuwlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGi0CAcEgsGo/IpHLJbDqf0Kh0Ci1IIFRkgTMaXbLFbbf7BQPEYzIYnVZP2W13lRtvl53wSKgLsqTvSwR0XRMCeyMeAYNeTQ9pFAAEhx+RgyILTAhjGkIDk0IFn00KGxVDnl2UQgcZGAZUqCOqZp2itACxs7S5t7Wpvbi2u4cdwAAMDg0JxszNzs/QZkEAOw==');
2453 .comment-meta .permalink:hover::before {
2454 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6QBW5wBd6wBq6gBq6y8w5y+E7UdW508w509D50996k+k718w51+q71+x71+x8F+38G8w549W55dW55d355ed6pfL9Z++75/L86dd56eq6qex66fR86fY9a9q57+R57/L77/e9b/r+seR58fl+c+d58+k58+36s/L7c/y/8/4/9eq59fl9tf4/9+x59/E6t/e8+e36Oe+6ufL6ufe8Ofy9uf4+ef//+/R6u/e7u////fY6vfe7ffr8ffy9vf////e6//l6//l7P/r7f/y8P/47//48P//8P//8v//8///9f//9v//+f//+v///1X/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAKDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH84BQgoOEhYaHiImKi4yNjo+Qhk5AQJGLMQcAmh6WhzOaoAAYnYRJE6GaATmkgkSgIzqgLKxQQ6kvRbK0SA6oAAKrrE8lvg20gkYVoQU4x0K+mrOsPdAAL5FMMoNEmb7XUE42QYtKyg+DT1AtmsaDTiEABTyJShSg54PrAO3g8Jryh5YoCwUhHztBT06gMjCv0BEFqAiMU3cQSpMN3hAV6SaBkD5+UFCAWqHICQhQHwzuG1QDFAJGz0AxcAEFhqYIUHZYCEWiEQ1UA0IlQKXhkQ+I1UAFMBGpSYoF1QZkmGjpyQ8VHC5c6CDixrGvYMOKHdspEAA7');
2456 .comment-meta .lw2-link:hover::before {
2457 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPYAMQAw5wAw6AAw6gBD6gBW6gBd6wBq6gBq6wB97S8w5y997Ucw50ed70ek708w50+k7U+q8F8w51+x8G+38Xcw53dD53e38Ye37JdW55fL9ZfR9p/Y9p/e9qdW56dd56dq56d356fe9rdq57ed57fl+b9357/Y8L/y/8eR58+R58/R78/y9s/y/8/4/9eq59fR79fe9df4/9+x59///+e36O/L6u////fY6vfe6vfe6/f////l7P/r7f/y7v/47//48P/4+f/4+v//7///8f//9f//9v//+v///wAAAAAAAAAAwMyACwEAAAAPAAAAAAAAALDBCVX/fwAAZYtHif9/AAAAPywAAGAAAHA/LAAAYAAAIJ8FAABgAAAg8A0AgGEAAJDwDQCAYQAAEOQJAABhAACowQlV/38AAJDtsXL/fwAAkO2xcv9/AABvHvb//57//4DBCVX/fwAAG2Zyjf9/AACQ8A0AAGEAAJDkC7PFfwAAkAAAAAAAAACA7bFy/38AACwAAAAAIAAgAAAH2YBHgoOEhYaHiImKi4yNjo+QkZKTlJWWl5FGRkGDRkCaRoOfnZuJRR0AAAU6R0MUqQOsNKkbRz4RqQiIRR6pBKxHKakALEUfqQ1HOcMWu70Av4I3wxpCDrA6MsMnzr7AP7gAEDjDACsi3t3QwEYlqQYj5RcVqRKmz9GCNeX8wyT36QT1WNCvnAAbAFUR4lXuAYhyDBQxTGXihQoYR2YN46AxVQiJz/jF4JFgWIwdwwLMAFmwBREMqQ60egVAwaKJIo+4SDXhiBEUqTJgGkq0qNGjSJMqXcoUUSAAOw==');
2459 .individual-thread-page a.comment-parent-link:empty:hover::before {
2460 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAw5wBD5wBD6i8w50cw50+E6k+k70+q8F8w51+x8G8w529d53cw53e38Idq54ex7oe+8Y9d54/E8Ze+8JfL9aeR6qe+7K/L8t+359/e8N/e8vfe7ffr8ff////r7f/r7v/y7//y8P/47///8P///wABAAAAAAAAAAAAAAAAAAAAwMyACwEAAAAwaAUAAGEAABUAAAAAAAAAMGgFAABhAAAQwAlV/38AAA8AAAAAAAAAwMyACwEAAAAAAAAAAAAAACwAAAAAIAAgAAAGjECScEgsGo/IpHLJbDqf0Kh0Cg1VLlQkSAEAQLLFbbf7BZPEYzIYnVZP2ePAuAyFt+d17tiC6BYiaXRLInpdFCN9AAcjDIFNGGkSJCKJBpOFAh1MHgNdDUKUXZZnlU4bCxNDoQCjJB8OD1mrrWaTpbWgt7izuLmivba/vSIEXQnAJBwZGsjNzs/Q0bVBADs=');
2462 .comment-meta .permalink:hover::before,
2463 .comment-meta .lw2-link:hover::before,
2464 .individual-thread-page a.comment-parent-link:empty:hover::before {
2465 box-shadow:
2466 0 0 0 2px #00e,
2467 0 0 0 3px transparent;
2468 opacity: 1.0;
2469 filter: unset;
2471 .comment-meta .permalink:active::before,
2472 .comment-meta .lw2-link:active::before,
2473 .individual-thread-page a.comment-parent-link:empty:active::before {
2474 transform: scale(0.9);
2477 .comment-meta .permalink,
2478 .comment-meta .lw2-link,
2479 .individual-thread-page .comment-parent-link:empty {
2480 position: relative;
2481 opacity: 1.0;
2483 .comment-meta .permalink::after,
2484 .comment-meta .lw2-link::after,
2485 .individual-thread-page .comment-parent-link:empty::after {
2486 content: "";
2487 width: 30px;
2488 height: 30px;
2489 display: block;
2490 position: absolute;
2491 top: -2px;
2492 left: -7px;
2493 box-shadow: none;
2494 pointer-events: auto;
2495 visibility: visible;
2498 /*************************/
2499 /* COMMENTS COMPACT VIEW */
2500 /*************************/
2502 #comments-list-mode-selector,
2503 #content.index-page #comments-list-mode-selector,
2504 #content.user-page #comments-list-mode-selector {
2505 padding-top: 6px;
2506 grid-column: 1;
2507 position: unset;
2508 z-index: 1;
2509 justify-self: start;
2510 align-self: start;
2512 #comments-list-mode-selector button {
2513 color: transparent;
2514 width: 32px;
2515 height: 32px;
2516 padding: 6px;
2517 margin: 1px;
2518 overflow: hidden;
2519 background-repeat: no-repeat;
2520 background-size: 100%;
2521 background-origin: content-box;
2523 #comments-list-mode-selector button:disabled {
2524 cursor: auto;
2526 #comments-list-mode-selector button.expanded {
2527 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2529 #comments-list-mode-selector button.compact {
2530 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2532 @media only screen and (max-resolution: 1dppx) {
2533 #comments-list-mode-selector button.expanded {
2534 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2536 #comments-list-mode-selector button.compact {
2537 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2541 #content > ul.comment-thread > li.comment-item,
2542 #content.compact > ul.comment-thread > li.comment-item {
2543 margin: 0;
2546 #content > .comment-thread {
2547 margin: 1em 0;
2549 #content.compact > .comment-thread {
2550 font-size: 0.9375rem;
2551 margin: 0.5em 0;
2553 #content.compact > .comment-thread:hover {
2554 z-index: 1;
2556 #content.compact > .comment-thread .comment-body {
2557 font-size: 1.0625rem;
2559 #content.compact > .comment-thread .comment-item,
2560 #content.index-page .comment-item.ignored,
2561 #content.inbox-user-page .comment-item.ignored {
2562 max-height: 61px;
2563 margin-top: 1em;
2564 overflow: hidden;
2565 position: relative;
2567 #content.compact > .comment-thread .comment-item {
2568 pointer-events: none;
2570 #content.compact > .comment-thread .comment-item::after {
2571 content: "…";
2572 position: absolute;
2573 right: 0;
2574 bottom: 0;
2575 font-size: 2rem;
2576 line-height: 1;
2577 padding: 0 16px 10px 64px;
2578 pointer-events: auto;
2580 @media only screen and (hover: hover) {
2581 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2582 #content.compact > .comment-thread .comment-item.expanded {
2583 overflow: visible;
2584 pointer-events: auto;
2585 z-index: 10;
2588 @media only screen and (hover: none) {
2589 #content.compact > .comment-thread.expanded .comment-item {
2590 overflow: visible;
2591 pointer-events: auto;
2592 z-index: 10;
2595 #content.compact > .comment-thread .comment-item .comment-meta {
2596 white-space: nowrap;
2597 overflow: hidden;
2598 text-overflow: ellipsis;
2599 padding: 2px 10px;
2601 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2602 white-space: unset;
2604 #content.compact > .comment-thread .comment-item .comment-meta a {
2605 pointer-events: auto;
2607 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2608 display: inline;
2610 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2611 margin-left: 0.75em;
2613 @media only screen and (hover: hover) {
2614 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2615 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2616 max-height: unset;
2618 #content.compact > .comment-thread .comment-item:hover .comment,
2619 #content.compact > .comment-thread .comment-item.expanded .comment {
2620 position: relative;
2621 z-index: 1;
2622 margin-bottom: 2em;
2623 bottom: 0;
2625 #content.compact > .comment-thread .comment-item:hover .comment::before,
2626 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2627 content: "";
2628 position: absolute;
2629 display: block;
2630 width: calc(100% + 20px);
2631 height: calc(100% + 20px);
2632 z-index: -1;
2633 top: -10px;
2634 left: -10px;
2636 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2637 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2638 margin: 0;
2641 @media only screen and (hover: none) {
2642 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2643 max-height: unset;
2645 #content.compact > .comment-thread.expanded .comment-item .comment {
2646 position: relative;
2647 z-index: 1;
2648 margin-bottom: 2em;
2649 bottom: 0;
2651 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2652 content: "";
2653 position: absolute;
2654 display: block;
2655 width: calc(100% + 14px);
2656 height: calc(100% + 20px);
2657 z-index: -1;
2658 top: -10px;
2659 left: -10px;
2661 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2662 margin: 0;
2664 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2665 content: "";
2666 display: block;
2667 position: fixed;
2668 top: 0;
2669 left: 0;
2670 width: 100%;
2671 height: 100%;
2672 z-index: -2;
2673 background-color: rgba(0,0,0,0.5);
2677 /*****************************/
2678 /* HIGHLIGHTING NEW COMMENTS */
2679 /*****************************/
2681 .new-comment::before {
2682 content: "";
2683 position: absolute;
2684 width: 100%;
2685 height: 100%;
2686 z-index: 5000;
2687 pointer-events: none;
2690 /***********************************/
2691 /* COMMENT THREAD MINIMIZE BUTTONS */
2692 /***********************************/
2694 .comment-minimize-button {
2695 font-family: "Font Awesome", "Font Awesome 5 Free";
2696 font-weight: 900;
2697 font-size: 1.25rem;
2698 line-height: 1;
2699 position: absolute;
2700 right: 1px;
2701 top: 1px;
2702 width: 18px;
2703 margin: 0;
2704 cursor: pointer;
2706 .comment-minimize-button:active {
2707 transform: scale(0.9);
2709 .comment-minimize-button::after {
2710 content: attr(data-child-count);
2711 font-weight: normal;
2712 font-size: 0.8125rem;
2713 position: absolute;
2714 left: 0;
2715 width: 100%;
2716 text-align: center;
2717 top: 21px;
2719 #content.individual-thread-page .comment-minimize-button {
2720 display: none;
2723 /*****************/
2724 /* IGNORE SYSTEM */
2725 /*****************/
2727 #content.comment-thread-page .comment-item.ignored {
2728 height: 38px;
2729 overflow: hidden;
2731 .comment-item.ignored > .comment > .comment-meta > .author {
2732 text-decoration: line-through;
2735 /***********************************/
2736 /* INDIVIDUAL COMMENT THREAD PAGES */
2737 /***********************************/
2739 .individual-thread-page > h1 {
2740 line-height: 1;
2741 margin: 0.75em 0 3px 0;
2743 .individual-thread-page .comments {
2744 border: none;
2747 /*************/
2748 /* SHORTFORM */
2749 /*************/
2751 .shortform-index-page .comments::before {
2752 border: none;
2753 box-shadow: none;
2756 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2757 margin-top: 0;
2760 /****************/
2761 /* VOTE BUTTONS */
2762 /****************/
2764 .vote {
2765 margin: 0;
2767 .vote {
2768 font-family: "Font Awesome", "Font Awesome 5 Free";
2769 font-weight: 900;
2770 border: none;
2773 .vote:disabled {
2774 visibility: hidden;
2775 cursor: default;
2778 @keyframes waiting {
2779 0% {background-position: 200% 0%}
2780 100% {background-position: 0% 0%}
2783 .voting-controls .karma-value {
2784 opacity: 1;
2785 transition: opacity 0.5s linear;
2788 .voting-controls.waiting .karma-value {
2789 opacity: 0.5;
2790 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2791 background-clip: text;
2792 -webkit-background-clip: text;
2793 color: transparent;
2794 background-position: 200% 0%;
2795 background-size: 200% 100%;
2796 animation: waiting 1s linear infinite;
2799 /* Replicated karma controls at bottom of comments. */
2800 .comment-controls .voting-controls {
2801 float: left;
2802 font-size: 0.9375em;
2805 .comment-controls .voting-controls:first-of-type {
2806 margin-left: -14px;
2809 /*****************************/
2810 /* COMMENTING AND POSTING UI */
2811 /*****************************/
2813 .comment-controls {
2814 text-align: right;
2815 margin: 0 8px 8px 16px;
2816 position: relative;
2817 z-index: 9999;
2819 .comment-thread .comment-controls + .comment-thread > li:first-child {
2820 margin-top: 8px;
2822 .comments > .comment-controls {
2823 margin: 8px 0 0 0;
2825 .comments > .comment-controls:last-child {
2826 margin: 8px 0 16px 0;
2829 .posting-controls input[type='submit'] {
2830 margin: 6px;
2831 padding: 4px 10px;
2832 font-size: 1.125rem;
2835 .comment-controls .cancel-comment-button {
2836 position: absolute;
2837 right: 0;
2838 margin: 0;
2839 height: 27px;
2840 font-size: inherit;
2841 padding: 4px 8px 2px 4px;
2842 z-index: 1;
2844 .comment-controls .cancel-comment-button::before {
2845 font-family: "Font Awesome", "Font Awesome 5 Free";
2846 margin-right: 3px;
2847 content: '\F00D';
2848 font-weight: 900;
2849 font-size: 0.9em;
2850 opacity: 0.7;
2853 .comment + .comment-controls .action-button {
2854 font-weight: normal;
2855 font-size: 1.0625em;
2856 padding: 1px 6px;
2858 .comment-controls .action-button::before {
2859 font-family: "Font Awesome", "Font Awesome 5 Free";
2860 margin-right: 3px;
2862 .new-comment-button {
2863 font-size: 1.5rem;
2864 margin: 0 0.25em;
2866 .comment-controls .reply-button::before {
2867 content: '\F3E5';
2868 font-weight: 900;
2869 font-size: 0.9em;
2870 opacity: 0.6;
2872 .comment-meta .replied::before {
2873 content: '\F3E5';
2874 font-family: "Font Awesome", "Font Awesome 5 Free";
2875 color: #090;
2876 font-weight: 900;
2877 font-size: 0.9em;
2878 opacity: 0.6;
2881 .post-controls {
2882 text-align: right;
2883 margin: 0.75em 0 0 0;
2884 align-self: start;
2885 justify-self: end;
2887 .edit-post-link {
2888 display: inline-block;
2889 margin-bottom: 0.25em;
2890 font-size: 1.125rem;
2892 .edit-post-link::before {
2893 margin-right: 0.3em;
2895 .comment-controls .edit-button::before,
2896 .edit-post-link::before {
2897 content: '\F303';
2898 font-family: "Font Awesome", "Font Awesome 5 Free";
2899 font-weight: 900;
2900 font-size: 0.75em;
2901 position: relative;
2902 top: -1px;
2905 .comment-controls .delete-button {
2906 margin-right: 0.25em;
2908 .comment-controls .edit-button,
2909 .comment-controls .retract-button,
2910 .comment-controls .unretract-button {
2911 margin-right: 1em;
2913 .comment-controls .retract-button::before {
2914 content: '\F4B3';
2915 opacity: 0.6;
2917 .comment-controls .unretract-button::before {
2918 content: '\F075';
2919 opacity: 0.9;
2921 .comment-controls .delete-button::before {
2922 content: '\F05E';
2923 opacity: 0.7;
2925 .comment-controls .retract-button::before,
2926 .comment-controls .unretract-button::before,
2927 .comment-controls .delete-button::before {
2928 font-weight: 900;
2929 font-size: 0.9em;
2932 .comment-controls form {
2933 position: relative;
2935 .textarea-container {
2936 position: relative;
2938 .posting-controls textarea {
2939 display: block;
2940 width: 100%;
2941 height: 15em;
2942 min-height: 15em;
2943 max-height: calc(100vh - 6em);
2944 margin: 2px 0 0 0;
2945 padding: 4px 5px;
2946 font-size: 1.2rem;
2947 border-style: solid;
2948 border-width: 29px 1px 1px 1px;
2949 resize: none;
2952 /* GUIEdit buttons */
2954 .guiedit-buttons-container {
2955 position: absolute;
2956 left: 1px;
2957 top: 1px;
2958 width: calc(100% - 2px);
2959 height: 28px;
2960 text-align: left;
2961 padding: 1px 4px 0 4px;
2962 overflow: hidden;
2964 .comment-thread-page .guiedit-buttons-container {
2965 padding-right: 60px;
2967 .guiedit-buttons-container button {
2968 height: 26px;
2969 padding: 0 7px;
2970 font-weight: 900;
2971 font-size: 0.875rem;
2972 line-height: 1;
2973 position: static;
2975 .guiedit-buttons-container button:active {
2976 transform: none;
2978 .guiedit-buttons-container button:active div {
2979 transform: scale(0.9);
2981 .guiedit-buttons-container button sup {
2982 font-weight: bold;
2984 .guiedit::after {
2985 content: attr(data-tooltip);
2986 position: absolute;
2987 font-weight: normal;
2988 font-size: 1rem;
2989 top: 2px;
2990 left: 464px;
2991 height: 25px;
2992 padding: 4px 0;
2993 white-space: nowrap;
2994 visibility: hidden;
2996 .guiedit:hover::after {
2997 visibility: visible;
3000 /* Markdown hints */
3002 .posting-controls .markdown-reference-link {
3003 float: left;
3004 padding: 1px 0 0 6px;
3006 .posting-controls .markdown-reference-link a {
3007 padding-right: 1.5em;
3008 margin-right: 0.15em;
3009 background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAQAAABNTyozAAAEDklEQVR4Ae3cY3QDjRaG0V1e27Zt27Zt27Ztf7Zt27Zt10jOdZtZzbSN2q41533+tsFO4zRi0TKRJVACJdDiJVACJVACJVACZQmUQAmUQAmUQAmUQFkCJVACJVACJVACJVDWuD7P8icnGRcVbdyJ/uRZ+jTZYxwq/lN2qMcozvtMibmySe/TsPeqi0JZ3XsAHm1SZAua9CjgoMQo6UB4uiim5gbXV7Ab1EQxT+P3RRw/dHtV3e39UL3g8XuOEw39QNX3g4LHcYwU/n5uo+q7beGKNqLwJ3U1cteKuepEQ1cid03BJIESKIESKIESKIESaIkl0I3dv7Q7a293c//ShrWym7l/abdbGaCnidJGPFzre6opUdqDtLJXitJ+svpA4Uy30dru6hJRHaCws37L37CDRbWAwvctf38S1QOqe43l7f2iikDheg+x9J5ksqpA4TS3svju5CJRXaCwvX7lG3KAqDZQ+Jby/U4kUM0rNN+7hAQSrvNAC/c4Ewn0/052C8Xd0fkigebbRp/5DdpHJFCxr5nfr4QEUqzmJYC3iQRq1jXuj8cYT6CyTnAv54oEKm9EJFBnJVAC7eoS0XJn2r8qQP/wNFOipUY8wvbVAeIjooXq3ki1gPhHC0A/oWWgQZ/37ZI2FaUdVPpb33LHlQS6scPFstrDQBtAvEpNdLEfsZJA3N3lYsnOcTvaAuKzomttqW+lgXimabFoYx5N20D8SXSlw9yElQfiE0J5dW+lI6BBu4uOO8+dWB0g1hel/YIOgbiVE0VHXefhrB7QTRwtmra3gS4AcW+Xibab8SJWE4h7uaLpn/Ud6AoQTzIu2uzDrDYQzzUjCo17HF0D4g3qoo1+yWoCld8hv5OuAvFl0XLb6V8rQGws5votXQfqs45oqaPdjLUDdNO5f7Xa32APgBhu6b2SC92VtQTEfVwlXOhO9ASI2zhNLKsRj2atAfFCo55Iz4C4nyvFks16OWsRiPvQUyCeblIs0adYq0B6DsTb1EV5fk+1gfiWKG0XAwnUZyPRtOPdggTiRg4UC7rEPUkg4PbOFIXGPIEEmt+DCmeu5rUkUHHPaXj76Qsk0MK9R/ynv5FAzfdDYS9Da+n/xe6ovd2lS/8vVlyfH7o1vQLKJVACJVACJVACJVACIYGW/A6z/A6zG8RcNbdT9d1eTcx1A8eKhn6s6vtxweNYfisaqvupu+jXV8H63cXP1Asev+Wpopi6aVMVbFpdFPMUlP6jdrY/8AgTYkHZhEcAvFNdFMpq3qFh78y/okIT3qk4j8zborn290hN91S/c6zrzapVsFnXO9bvPFXjYtEykSVQAnVUAiVQAiVQAiVQAiVQlkAJlEAJlEAJlEAJlCVQAiVQAiVQAiVQAmX/BMHb3CdNrgcrAAAAAElFTkSuQmCC');
3010 background-size: 1.25em;
3011 background-repeat: no-repeat;
3012 background-position: right center;
3015 #markdown-hints-checkbox + label {
3016 float: left;
3017 margin: 2px 0 0 1em;
3018 line-height: 1.3;
3019 cursor: pointer;
3021 #edit-post-form #markdown-hints-checkbox + label {
3022 padding: 0;
3024 #markdown-hints-checkbox {
3025 visibility: hidden;
3026 float: left;
3028 #markdown-hints-checkbox + label::after {
3029 content: "(Show Markdown help)";
3031 #markdown-hints-checkbox:checked + label::after {
3032 content: "(Hide Markdown help)";
3034 #markdown-hints-checkbox + label::before {
3035 content: '\F059';
3036 font-family: "Font Awesome", "Font Awesome 5 Free";
3037 font-weight: 900;
3038 margin-right: 3px;
3040 #markdown-hints-checkbox:checked + label::before {
3041 font-weight: normal;
3043 #markdown-hints {
3044 margin: 4px 0 0 4px;
3045 padding: 4px 8px;
3046 position: absolute;
3047 text-align: left;
3048 top: calc(100% - 1em);
3049 z-index: 1;
3050 display: none;
3052 .comment-controls #markdown-hints {
3053 top: calc(100% + 1.75em);
3055 #markdown-hints-checkbox:checked ~ #markdown-hints {
3056 display: table;
3058 .markdown-hints-row {
3059 display: table-row;
3061 #markdown-hints .markdown-hints-row span,
3062 #markdown-hints .markdown-hints-row code {
3063 float: none;
3064 display: table-cell;
3065 border: none;
3066 background-color: inherit;
3067 padding: 0 12px 0 0;
3070 /******************/
3071 /* EDIT POST FORM */
3072 /******************/
3074 #edit-post-form {
3075 padding: 1em 1em 4em 1em;
3077 #edit-post-form .post-meta-fields {
3078 display: grid;
3079 grid-template-columns: 5em auto auto auto 1fr auto;
3080 margin-bottom: 0.625em;
3083 #edit-post-form label[for='title'],
3084 #edit-post-form label[for='url'],
3085 #edit-post-form label[for='section'] {
3086 grid-column: 1;
3088 #edit-post-form input[type='text'] {
3089 padding: 0.25em;
3090 grid-column: 2 / span 4;
3091 margin-bottom: 0.5em;
3094 #edit-post-form .link-post-checkbox,
3095 #edit-post-form .link-post-checkbox + label {
3096 grid-row: 1;
3097 grid-column: 6;
3099 #edit-post-form .question-checkbox,
3100 #edit-post-form .question-checkbox + label {
3101 grid-row: 3;
3102 grid-column: 5;
3103 justify-self: start;
3104 margin-left: 1.5em;
3107 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3108 grid-row: 4;
3109 grid-column: 2 / span 4;
3110 text-align: left;
3111 margin-top: 8px;
3114 #edit-post-form .post-meta-fields input[type='checkbox'] {
3115 height: 0;
3116 opacity: 0;
3117 pointer-events: none;
3119 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3120 white-space: nowrap;
3121 position: relative;
3122 cursor: pointer;
3123 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3124 align-self: start;
3126 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3127 content: "";
3128 font-family: "Font Awesome", "Font Awesome 5 Free";
3129 font-size: 1.375rem;
3130 line-height: 0.7;
3131 text-indent: 1px;
3132 font-weight: 900;
3133 position: absolute;
3134 width: 20px;
3135 height: 20px;
3136 left: 5px;
3138 #edit-post-form label[for='url'],
3139 #edit-post-form input[name='url'] {
3140 display: none;
3142 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3143 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3144 display: initial;
3146 #edit-post-form label {
3147 line-height: normal;
3148 border: 1px solid transparent;
3149 text-align: right;
3150 padding: 0.25em 0.5em;
3151 white-space: nowrap;
3153 #edit-post-form input[type='radio'] {
3154 width: 0;
3155 margin: 0;
3156 opacity: 0;
3157 pointer-events: none;
3159 #edit-post-form input[type='radio'] + label {
3160 padding: 4px 12px;
3161 text-align: center;
3162 border-style: solid;
3163 border-width: 1px 1px 1px 0;
3164 cursor: pointer;
3166 #edit-post-form input[type='radio']:checked + label {
3167 cursor: default;
3170 #edit-post-form label[for='section'] {
3171 grid-row: 3;
3173 #edit-post-form input[type='radio'] + label {
3174 grid-row: 3;
3176 @supports (width: -moz-fit-content) {
3177 #edit-post-form input[type='radio'] + label {
3178 width: -moz-fit-content;
3181 @supports (width: fit-content) {
3182 #edit-post-form input[type='radio'] + label {
3183 width: fit-content;
3187 #edit-post-form textarea {
3188 min-height: 24em;
3191 #edit-post-form input[type='submit'] {
3192 padding: 6px 12px;
3193 float: right;
3195 #edit-post-form #markdown-hints {
3196 top: calc(100% + 2em);
3199 #edit-post-form button.guiedit div {
3200 overflow: visible;
3202 .guiedit-mobile-auxiliary-button {
3203 display: none;
3206 /***********/
3207 /* BUTTONS */
3208 /***********/
3210 button,
3211 input[type='submit'] {
3212 font-family: inherit;
3213 font-size: inherit;
3214 background-color: inherit;
3215 cursor: pointer;
3216 border: none;
3217 border-radius: 0;
3220 /************/
3221 /* HEADINGS */
3222 /************/
3224 .body-text h1,
3225 .body-text h2,
3226 .body-text h3,
3227 .body-text h4,
3228 .body-text h5,
3229 .body-text h6 {
3230 line-height: 1.1;
3231 margin: 1em 0 0.75em 0;
3232 text-align: left;
3235 .post-body h5,
3236 .post-body h6 {
3237 font-size: 1em;
3239 .post-body h4 {
3240 font-size: 1.2em;
3242 .post-body h3 {
3243 font-size: 1.4em;
3245 .post-body h2 {
3246 font-size: 1.75em;
3248 .post-body h1 {
3249 font-size: 2.1em;
3252 .comment-body h5,
3253 .comment-body h6 {
3254 font-size: 1em;
3256 .comment-body h4 {
3257 font-size: 1.15em;
3259 .comment-body h3 {
3260 font-size: 1.3em;
3262 .comment-body h2 {
3263 font-size: 1.5em;
3265 .comment-body h1 {
3266 font-size: 1.75em;
3269 /**********/
3270 /* QUOTES */
3271 /**********/
3273 blockquote,
3274 .post-body .comment-box .comment-body {
3275 font-size: 0.9em;
3276 margin: 1em 0;
3277 padding-left: 0.5em;
3278 margin-left: 1px;
3279 padding-bottom: 3px;
3281 blockquote *:first-child {
3282 margin-top: 0;
3284 blockquote *:last-child {
3285 margin-bottom: 0;
3287 blockquote blockquote {
3288 font-size: 0.95em;
3291 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3293 .post-body .comment-box .user-name {
3294 font-style: italic;
3296 .post-body .comment-box .user-name::after {
3297 content: ":";
3299 .post-body .comment-box {
3300 zoom: 1.25;
3303 /**********/
3304 /* IMAGES */
3305 /**********/
3307 #content img, #content figure {
3308 max-width: 100%;
3311 .prediction-poll > svg {
3312 width: 700px;
3313 max-width: 100%;
3316 img.inline-latex {
3317 position: relative;
3318 top: 2.5px;
3319 margin: 0 2px;
3322 #content figure {
3323 text-align: center;
3324 margin: 1.5em auto;
3327 p.imgonly,
3328 div.imgonly,
3329 figure {
3330 text-align: center;
3331 margin: auto;
3332 clear: both;
3335 .imgonly iframe {
3336 display: block;
3337 width: 100%;
3338 height: 250px;
3339 border: 0;
3342 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3344 [style*="--aspect-ratio"] > * {
3345 width: 100%;
3347 [style*="--aspect-ratio"] > img {
3348 height: auto;
3350 @supports (--custom:property) {
3351 [style*="--aspect-ratio"] {
3352 position: relative;
3354 [style*="--aspect-ratio"]::before {
3355 content: "";
3356 display: block;
3357 padding-bottom: calc(100% / (var(--aspect-ratio)));
3359 [style*="--aspect-ratio"] > * {
3360 position: absolute;
3361 top: 0;
3362 left: 0;
3363 height: 100%;
3367 /**********/
3368 /* TABLES */
3369 /**********/
3371 .body-text table {
3372 border-collapse: collapse;
3373 font-size: 0.875em;
3375 .body-text table th,
3376 .body-text table td {
3377 text-align: left;
3378 padding: 4px 6px;
3379 line-height: 1.3;
3381 .body-text table .numeric {
3382 text-align: right;
3383 font-family: Inconsolata, Menlo, monospace;
3385 .body-text table caption {
3386 margin: 0 0 0.25em 0;
3387 font-weight: bold;
3388 font-size: 1.125em;
3391 /********/
3392 /* MISC */
3393 /********/
3395 /*= Superscripts & subscripts =*/
3397 /* Make sure superscripts and subscripts do not affect line spacing. */
3398 sup, sub {
3399 vertical-align: baseline;
3400 position: relative;
3401 top: -0.5em;
3402 left: 0.05em;
3403 font-size: 0.8em;
3405 sub {
3406 top: 0.3em;
3409 /*= Code blocks & other "unstyled" text. =*/
3411 pre,
3412 code {
3413 font-family: Inconsolata, Menlo, monospace;
3415 pre {
3416 white-space: pre-wrap;
3418 .body-text pre {
3419 text-align: left;
3421 code {
3422 font-size: 0.95em;
3423 display: inline-block;
3424 padding: 0 4px 1px 5px;
3426 pre > code {
3427 display: block;
3428 border-radius: 0;
3429 padding: 3px 4px 5px 8px;
3430 tab-size: 4;
3433 /*= Fractions =*/
3435 .frac::after {
3436 content: "\200B";
3439 /*= Removing browser default styling of various elements =*/
3441 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3442 :focus {
3443 outline: none;
3446 /* Remove "embossed" appearance of horizontal rules. */
3447 hr {
3448 border: none;
3451 input,
3452 button,
3453 textarea {
3454 -webkit-appearance: none;
3455 -moz-appearance: none;
3456 appearance: none;
3459 input {
3460 font-family: inherit;
3461 font-size: inherit;
3462 font-weight: inherit;
3465 /*************/
3466 /* FOOTNOTES */
3467 /*************/
3469 ol {
3470 counter-reset: ordered-list;
3472 .footnote-definition {
3473 font-size: 0.9em;
3474 list-style-type: none;
3475 counter-increment: ordered-list;
3476 position: relative;
3478 .footnote-definition p {
3479 font-size: inherit !important;
3481 .footnote-definition::before {
3482 content: counter(ordered-list) ".";
3483 position: absolute;
3484 left: -2.5em;
3485 font-weight: bold;
3486 text-align: right;
3487 width: 2em;
3490 /*= LW Docs footnotes =*/
3492 .footnote-item {
3493 display: flex;
3496 .footnote-item > :not(.nothing) {
3497 margin: 0 0.2em;
3500 .footnote-item > :first-child {
3501 margin-left: -0.2em;
3502 margin-right: 0;
3505 .footnote-back-link a:not(.nothing) {
3506 font-size: 0;
3507 text-decoration: none;
3508 border: none;
3511 .footnote-back-link a:not(.nothing):hover {
3512 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3513 border: none;
3514 text-decoration: none;
3517 .footnote-back-link a::after {
3518 content: '\F106';
3519 font-family: Font Awesome;
3520 font-size: 1rem;
3521 padding: 0.2em;
3522 text-decoration: none;
3523 font-weight: bold;
3526 .footnote-content > :first-child {
3527 margin-top: 0;
3530 /*********/
3531 /* LISTS */
3532 /*********/
3534 li {
3535 margin-bottom: 0.5em;
3538 .body-text ol p,
3539 .body-text ul p {
3540 margin: 0.5em 0;
3543 .body-text ol {
3544 list-style: none;
3545 padding: 0;
3546 counter-reset: ol;
3548 .body-text ol > li {
3549 position: relative;
3550 counter-increment: ol;
3551 padding: 0 0 0 2.5em;
3552 margin: 0.25em 0 0 0;
3554 .body-text ol > li::before {
3555 content: counter(ol) ".";
3556 position: absolute;
3557 width: 2em;
3558 text-align: right;
3559 left: 0;
3561 .body-text ul {
3562 list-style: none;
3563 padding: 0;
3565 .body-text ul:not(.contents-list) > li:empty {
3566 padding-bottom: 1.25em;
3568 .body-text ul:not(.contents-list) > li {
3569 position: relative;
3570 padding: 0 0 0 1.75em;
3571 margin: 0.25em 0 0 0;
3573 .body-text ul:not(.contents-list) > li ul > li {
3574 padding: 0 0 0 2em;
3576 .body-text ul:not(.contents-list) > li::before {
3577 content: "•";
3578 position: absolute;
3579 width: 1.25em;
3580 text-align: right;
3581 left: 0;
3583 .body-text ul:not(.contents-list) > li ul > li::before {
3584 width: 1.5em;
3586 .body-text li > ul:first-child > li {
3587 padding-left: 0;
3589 .body-text li > ul:first-child > li::before {
3590 content: none;
3593 /**************/
3594 /* ERROR PAGE */
3595 /**************/
3597 .error-retry-form {
3598 margin: 0.5em 0;
3601 .error-retry-form input[type="submit"] {
3602 border: 1px solid #aaa;
3603 font-weight: bold;
3604 font-size: 1.125rem;
3605 padding: 0.5em 1.25em;
3608 /**************/
3609 /* ABOUT PAGE */
3610 /**************/
3612 #content.about-page .contents {
3613 margin-top: 0.25em;
3615 #content.about-page .accesskey-table {
3616 border-collapse: collapse;
3617 margin: auto;
3619 #content.about-page .accesskey-table th,
3620 #content.about-page .accesskey-table td {
3621 padding: 2px 6px;
3623 #content.about-page .accesskey-table td:first-child {
3624 padding-right: 1.5em;
3626 #content.about-page .accesskey-table td:last-child {
3627 text-align: center;
3628 font-family: Inconsolata, Menlo, monospace;
3630 #content.about-page h3:nth-of-type(n+2) {
3631 clear: both;
3634 /******************/
3635 /* IMAGES OVERLAY */
3636 /******************/
3638 #images-overlay + #content .post-body img {
3639 visibility: hidden;
3642 #images-overlay div {
3643 position: absolute;
3645 #images-overlay div::after {
3646 content: "Click to enlarge";
3647 display: block;
3648 position: absolute;
3649 margin: auto;
3650 left: 0;
3651 right: 0;
3652 bottom: 10px;
3653 padding: 6px 10px;
3654 font-size: 1.25rem;
3655 background-color: rgba(0,0,0,0.6);
3656 color: #fff;
3657 border-radius: 5px;
3658 opacity: 0.0;
3659 transition: opacity 0.15s ease;
3660 pointer-events: none;
3662 @supports (width: -moz-fit-content) {
3663 #images-overlay div::after {
3664 width: -moz-fit-content;
3667 @supports (width: fit-content) {
3668 #images-overlay div::after {
3669 width: fit-content;
3672 #images-overlay div:hover::after {
3673 opacity: 1.0;
3676 #images-overlay img {
3677 width: 100%;
3680 /***************/
3681 /* IMAGE FOCUS */
3682 /***************/
3684 /*=--------------=*/
3685 /*= Hover styles =*/
3686 /*=--------------=*/
3688 #content img:hover,
3689 #images-overlay img:hover {
3690 filter: drop-shadow(0 0 3px #777);
3691 cursor: zoom-in;
3693 #content img:active,
3694 #images-overlay img:active {
3695 transform: scale(0.975);
3698 /*=---------=*/
3699 /*= Overlay =*/
3700 /*=---------=*/
3702 #image-focus-overlay {
3703 position: fixed;
3704 top: 0;
3705 right: 0;
3706 bottom: 0;
3707 left: 0;
3708 z-index: 2;
3709 display: none;
3710 cursor: zoom-out;
3712 #image-focus-overlay::before {
3713 content: "";
3714 display: block;
3715 position: absolute;
3716 top: 0;
3717 right: 0;
3718 bottom: 0;
3719 left: 0;
3720 background-color: #000;
3721 opacity: 0.5;
3722 z-index: -1;
3724 #image-focus-overlay.engaged {
3725 display: initial;
3728 #image-focus-overlay img {
3729 margin: auto;
3730 position: absolute;
3731 left: 50%;
3732 top: 50%;
3733 transform: translateX(-50%) translateY(-50%);
3736 /*=-------------------=*/
3737 /*= Single-image mode =*/
3738 /*=-------------------=*/
3740 #image-focus-overlay:not(.slideshow) .image-number,
3741 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3742 visibility: hidden;
3745 /*=---------=*/
3746 /*= Caption =*/
3747 /*=---------=*/
3749 #image-focus-overlay .caption {
3750 position: absolute;
3751 bottom: 0.75em;
3752 background-color: rgba(0,0,0,0.7);
3753 left: 9em;
3754 right: 9em;
3755 margin: auto;
3756 max-width: calc(100% - 18em);
3757 text-align: center;
3758 font-size: 1.375em;
3759 border-radius: 8px;
3760 z-index: 1;
3761 transition:
3762 bottom 0.2s ease;
3764 @supports (width: -moz-fit-content) {
3765 #image-focus-overlay .caption {
3766 width: -moz-fit-content;
3769 @supports (width: fit-content) {
3770 #image-focus-overlay .caption {
3771 width: fit-content;
3774 #image-focus-overlay .caption.hidden {
3775 bottom: -5em;
3776 transition:
3777 bottom 0.5s ease;
3780 #image-focus-overlay .caption p {
3781 margin: 1em 1.25em;
3782 color: #fff;
3785 #image-focus-overlay .caption:not(:empty)::before {
3786 content: "";
3787 display: block;
3788 position: absolute;
3789 width: 100vw;
3790 height: calc(100% + 1.5em);
3791 z-index: -1;
3792 top: -0.75em;
3793 left: calc(-50vw + 50%);
3797 /*=--------------=*/
3798 /*= Help overlay =*/
3799 /*=--------------=*/
3801 #image-focus-overlay .help-overlay {
3802 position: absolute;
3803 display: flex;
3804 flex-flow: column;
3805 z-index: 2;
3806 font-size: 1.5rem;
3807 padding: 1em;
3808 border-radius: 10px;
3809 bottom: 1em;
3810 right: 1em;
3811 overflow: hidden;
3812 white-space: nowrap;
3813 color: transparent;
3814 cursor: default;
3815 visibility: hidden;
3816 transition:
3817 visibility 1s ease,
3818 color 1s ease,
3819 background-color 1s ease,
3820 bottom 0.3s ease;
3822 #image-focus-overlay .help-overlay:hover {
3823 max-width: 24em;
3824 max-height: 14em;
3825 background-color: rgba(0,0,0,0.85);
3826 color: #fff;
3827 visibility: visible;
3828 transition:
3829 visibility 0.2s ease 0.3s,
3830 color 0.2s ease 0.3s,
3831 background-color 0.2s ease 0.3s;
3834 #image-focus-overlay .help-overlay::after {
3835 content: "\F128";
3836 font-family: "Font Awesome", "Font Awesome 5 Free";
3837 font-weight: 900;
3838 font-size: 2rem;
3839 position: absolute;
3840 right: 0;
3841 bottom: 0;
3842 padding: 10px;
3843 color: #000;
3844 filter: drop-shadow(0 0 6px #fff);
3845 visibility: visible;
3846 opacity: 0.85;
3847 transition:
3848 visibility 1s ease;
3850 #image-focus-overlay .help-overlay:hover::after {
3851 visibility: hidden;
3852 transition:
3853 visibility 0.2s ease 0.3s;
3856 #image-focus-overlay .help-overlay p {
3857 margin: 0;
3858 text-indent: -2em;
3859 padding-left: 2em;
3860 max-width: 100%;
3861 overflow: hidden;
3863 #image-focus-overlay .help-overlay p + p {
3864 margin: 0.75em 0 0 0;
3866 #image-focus-overlay .help-overlay.hidden {
3867 bottom: -2em;
3870 /*=--------------=*/
3871 /*= Slide number =*/
3872 /*=--------------=*/
3874 #image-focus-overlay .image-number {
3875 position: absolute;
3876 z-index: 2;
3877 font-size: 1.75rem;
3878 left: 1em;
3879 bottom: 1em;
3880 font-weight: 600;
3881 text-shadow:
3882 0 0 3px #fff,
3883 0 0 5px #fff,
3884 0 0 8px #fff,
3885 0 0 13px #fff;
3886 width: 1.5em;
3887 text-align: right;
3888 white-space: nowrap;
3889 transition: bottom 0.3s ease;
3891 #image-focus-overlay .image-number::before {
3892 content: "#";
3893 opacity: 0.3;
3895 #image-focus-overlay .image-number::after {
3896 content: " of " attr(data-number-of-images);
3897 opacity: 0.3;
3899 #image-focus-overlay .image-number:hover::before,
3900 #image-focus-overlay .image-number:hover::after {
3901 opacity: 1.0;
3903 #image-focus-overlay .image-number.hidden {
3904 bottom: -1.25em;
3907 /*=-------------------=*/
3908 /*= Slideshow buttons =*/
3909 /*=-------------------=*/
3911 #image-focus-overlay .slideshow-buttons {
3912 position: absolute;
3913 top: 0;
3914 left: 0;
3915 width: 100%;
3916 height: 100%;
3917 z-index: 1;
3918 display: flex;
3919 justify-content: space-between;
3920 pointer-events: none;
3922 #image-focus-overlay .slideshow-buttons button {
3923 font-family: "Font Awesome", "Font Awesome 5 Free";
3924 font-weight: 900;
3925 font-size: 3rem;
3926 padding: 0.5em;
3927 color: #ddd;
3928 position: relative;
3929 left: 0;
3930 transition:
3931 left 0.3s ease;
3932 pointer-events: auto;
3934 #image-focus-overlay .slideshow-buttons button::selection {
3935 background-color: transparent;
3937 @media only screen and (hover: hover) {
3938 #image-focus-overlay .slideshow-buttons button:hover {
3939 background-color: rgba(0,0,0,0.1);
3940 color: #777;
3943 #image-focus-overlay .slideshow-buttons button:active {
3944 transform: none;
3945 color: #888;
3947 #image-focus-overlay .slideshow-buttons button:disabled {
3948 text-shadow: none;
3949 background-color: transparent;
3950 color: #ddd;
3951 cursor: default;
3952 opacity: 0.4;
3954 #image-focus-overlay .slideshow-button.previous.hidden {
3955 left: -1.75em;
3957 #image-focus-overlay .slideshow-button.next.hidden {
3958 left: 1.75em;
3961 /*=-----------------=*/
3962 /*= Background blur =*/
3963 /*=-----------------=*/
3965 .blurred {
3966 filter: blur(3px);
3969 /**************************/
3970 /* QUALIFIED HYPERLINKING */
3971 /**************************/
3973 #content.no-nav-bars {
3974 margin: 8px auto;
3976 #content.no-nav-bars + #ui-elements-container > * {
3977 padding-top: 8px;
3980 #aux-about-link {
3981 position: fixed;
3982 top: 40px;
3983 left: calc((100% - 900px) / 2 - 69px);
3984 width: 1.5em;
3985 height: 1.5em;
3986 text-align: center;
3987 display: table;
3989 #aux-about-link a {
3990 display: table-cell;
3991 width: 100%;
3992 vertical-align: middle;
3993 font-family: "Font Awesome", "Font Awesome 5 Free";
3994 font-weight: 900;
3995 font-size: 1.25rem;
3996 opacity: 0.4;
3997 z-index: 1;
4000 .qualified-linking {
4001 margin: 0;
4002 position: relative;
4004 .qualified-linking input[type='checkbox'] {
4005 visibility: hidden;
4006 width: 0;
4007 height: 0;
4008 margin: 0;
4010 .qualified-linking label {
4011 font-family: "Font Awesome", "Font Awesome 5 Free";
4012 font-weight: 900;
4013 font-size: 1rem;
4014 padding: 0 0.5em;
4015 display: inline-block;
4016 margin-left: 0.25em;
4018 .qualified-linking label:hover {
4019 cursor: pointer;
4021 .qualified-linking label:active span {
4022 display: inline-block;
4023 transform: scale(0.9);
4025 .qualified-linking label::selection {
4026 background-color: transparent;
4029 .qualified-linking label::after {
4030 content: "";
4031 width: 100vw;
4032 height: 0;
4033 left: 0;
4034 top: 0;
4035 position: fixed;
4036 z-index: 1;
4037 cursor: default;
4039 .qualified-linking input[type='checkbox']:checked + label::after {
4040 height: 100vh;
4043 .qualified-linking-toolbar {
4044 position: absolute;
4045 right: 0.25em;
4046 top: 110%;
4047 z-index: 1;
4049 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4050 display: none;
4052 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4053 display: block;
4055 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4056 top: unset;
4057 bottom: 125%;
4060 .qualified-linking-toolbar a {
4061 display: block;
4062 padding: 0 6px;
4063 margin: 4px;
4065 .qualified-linking-toolbar a::selection {
4066 background-color: transparent;
4069 /*****************/
4070 /* HOVER PREVIEW */
4071 /*****************/
4073 #preview-popup-toggle {
4074 position: absolute;
4075 right: -67px;
4076 bottom: 285px;
4077 cursor: pointer;
4078 color: var(--GW-toggle-widget-color, #888);
4080 #preview-popup-toggle:hover {
4081 color: var(--GW-toggle-widget-hover-color, #444);
4084 #content.preview:not(not) {
4085 padding: 0;
4087 #content.preview > .comment-thread {
4088 margin: 2px;
4090 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4091 border: none;
4093 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4094 padding: 0 8px;
4096 #content.preview.user-page .page-main-heading {
4097 margin-left: 8px;
4099 #content.preview.not(not) .body-text {
4100 margin-left: 8px;
4101 margin-right: 8px;
4103 #content.preview.user-page .user-stats {
4104 margin-right: 32px;
4106 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4107 display: none;
4109 #content.preview button.vote {
4110 display: none;
4112 #content.preview > h1.listing {
4113 max-height: unset;
4115 #content.preview.user-page > .comment-thread {
4116 margin: 0.5em 0;
4118 #content.preview > .post {
4119 margin: 0 18px;
4121 #content.preview .post-title {
4122 margin-top: 0.5em;
4124 #content.preview .post-meta {
4125 line-height: 1.0;
4127 #content.preview .body-text {
4128 font-size: 1em;
4130 #content.preview nav.contents,
4131 #content.preview .lw2-link {
4132 display: none;
4135 .preview-popup {
4136 position: fixed;
4137 transform-origin: top;
4138 top: 10%;
4139 right: 10%;
4140 max-width: 700px;
4141 z-index: 10001;
4142 background-color: #eee;
4143 border: 1px solid #ccc;
4144 box-shadow: 2px 6px 20px -4px #000;
4145 transition: height 0.2s ease, top 0.2s ease;
4147 .popup-hide-button {
4148 position: fixed;
4149 top: 4px;
4150 right: 4px;
4151 color: #000;
4152 background-color: #fff;
4153 width: 28px;
4154 height: 28px;
4155 display: flex;
4156 font-family: "Font Awesome";
4157 font-size: 14px;
4158 line-height: 1;
4159 border: 1px solid #bbb;
4160 border-radius: 28px;
4161 align-items: center;
4162 justify-content: center;
4163 //padding-bottom: 2px;
4164 padding-left: 1.5px;
4165 font-family: "Font Awesome", "Font Awesome 5 Free";
4166 cursor: pointer;
4168 .popup-hide-button:hover::before {
4169 content: "Turn off preview popups";
4170 display: block;
4171 position: absolute;
4172 width: max-content;
4173 right: 32px;
4174 color #000;
4175 background-color: #fff;
4176 border: 1px solid #eee;
4177 border-radius: 2px;
4178 padding: 4px;
4181 /********/
4182 /* MATH */
4183 /********/
4185 .mathjax-block-container {
4186 display: block;
4187 overflow-y: hidden;
4188 border-radius: 6px;
4189 margin: 1em 0 1.5em 0;
4191 .mathjax-inline-container {
4192 max-width: 100%;
4193 overflow-x: auto;
4194 overflow-y: hidden;
4195 position: relative;
4196 padding: 0 1px;
4198 #content .mathjax-inline-container,
4199 #content .mathjax-inline-container .mjpage,
4200 #content .mathjax-inline-container .mjx-chtml,
4201 #content .mathjax-inline-container .mjx-math,
4202 #content .mathjax-inline-container .mjx-mrow {
4203 display: inline;
4204 white-space: normal;
4206 .post .mathjax-inline-container {
4207 line-height: 1;
4209 .comment .mathjax-inline-container {
4210 line-height: 1;
4212 .mathjax-inline-container .mjx-chtml {
4213 padding: 0;
4216 /************/
4217 /* SPOILERS */
4218 /************/
4220 .spoiler {
4221 color: #000;
4222 background-color: currentColor;
4223 transition: none;
4224 text-shadow: none;
4225 margin: 1em 0;
4226 box-shadow: 0 0 0 1px currentColor inset;
4227 overflow: auto;
4229 .spoiler:not(:last-child) {
4230 margin-bottom: 0;
4232 #content .spoiler * {
4233 color: inherit;
4234 border: none;
4236 .spoiler:hover {
4237 color: unset;
4238 background-color: unset;
4239 text-shadow: unset;
4240 transition:
4241 color 0.1s ease-out 0.1s,
4242 background-color 0.1s ease-out 0.1s,
4243 text-shadow 0.1s ease-out 0.1s;
4245 .spoiler::selection,
4246 .spoiler ::selection {
4247 color: #fff;
4248 background-color: #000;
4250 .spoiler:not(:hover)::selection,
4251 .spoiler:not(:hover) ::selection {
4252 background-color: transparent;
4255 /*= Fix for LessWrong being weird =*/
4257 .spoiler > p {
4258 padding: 0 7px;
4260 .spoiler > p:first-child {
4261 margin-top: 0.25em;
4263 .spoiler > p:last-child {
4264 margin-bottom: 0;
4265 padding-bottom: 0.25em;
4267 .spoiler > p:hover ~ p {
4268 background-color: currentColor;
4270 .spoiler > p + p {
4271 margin-top: -1em;
4273 .spoiler > p:not(:first-child) {
4274 padding-top: 0.5em;
4276 .spoiler > p:not(:last-child) {
4277 padding-bottom: 0.5em;
4280 .spoiler:not(:hover) pre,
4281 .spoiler:not(:hover) code {
4282 background-color: inherit;
4283 box-shadow: none;
4285 #content .spoiler pre {
4286 border-color: currentColor;
4287 border-style: solid;
4288 border-width: 0 1px;
4289 border-radius: 0;
4292 /*******************/
4293 /* PAGE LIST INDEX */
4294 /*******************/
4296 .page-list-index {
4297 margin: 1em 30px;
4298 line-height: 1.2;
4301 .page-list-index > p {
4302 font-weight: bold;
4303 font-size: 1.2em;
4306 .page-list-index > ul * {
4307 margin: 0;
4310 .page-list-index ul {
4311 padding-left: 1.5em;
4314 .page-list-index li {
4315 margin-top: 0.67em;
4318 .page-list-index li > a {
4319 display: block;
4320 font-size: 1.1em;
4321 font-weight: bold;
4322 margin: 0.33em 0;
4325 .page-list-index li > a:last-child {
4326 margin-bottom: 1em;
4329 /*******************/
4330 /* ALIGNMENT FORUM */
4331 /*******************/
4333 #content.alignment-forum-index-page::after {
4334 content: "Alignment Forum";
4335 font-size: 1.5rem;
4336 margin: 0.375em 0 0 -0.375em;
4337 order: -1;
4340 /**********************/
4341 /* FOR NARROW SCREENS */
4342 /**********************/
4344 @media only screen and (max-width: 1440px) {
4345 #hns-date-picker {
4346 right: -81px;
4347 padding: 8px 10px 10px 10px;
4348 bottom: 62px;
4349 display: none;
4351 #hns-date-picker::before {
4352 content: "";
4353 position: absolute;
4354 display: block;
4355 z-index: -1;
4356 height: calc(100% + 2px);
4357 top: -1px;
4358 left: -1px;
4359 width: 50%;
4362 @media only screen and (max-width: 1160px) {
4363 #new-comment-nav-ui {
4364 bottom: 180px;
4365 right: -68px;
4367 #hns-date-picker {
4368 bottom: 200px;
4369 right: -36px;
4371 #hns-date-picker::before {
4372 width: calc(100% - 35px);
4374 #theme-selector button::before {
4375 right: unset;
4376 left: 100%;
4378 #theme-selector:hover::after {
4379 content: "";
4380 display: block;
4381 position: absolute;
4382 width: calc(6em - 7px);
4383 height: calc(100% + 2px);
4384 top: 0;
4385 left: calc(100% + 1px);
4387 #anti-kibitzer-toggle {
4388 bottom: 330px;
4391 @media only screen and (max-width: 1080px) {
4392 #width-selector {
4393 right: -30px;
4395 #width-selector button {
4396 display: block;
4398 #text-size-adjustment-ui {
4399 top: 90px;
4400 right: -30px;
4402 #text-size-adjustment-ui button {
4403 display: block;
4404 position: relative;
4406 #text-size-adjustment-ui button.increase {
4407 bottom: 48px;
4409 #text-size-adjustment-ui button.decrease {
4410 top: 50px;
4412 #theme-selector {
4413 top: 46px;
4414 left: -44px;
4416 #theme-tweaker-toggle {
4417 left: -44px;
4418 top: 2px;
4420 #theme-tweaker-toggle button {
4421 height: 2em;
4422 width: 2em;
4423 padding: 7px;
4425 #quick-nav-ui {
4426 right: -54px;
4428 #new-comment-nav-ui {
4429 right: -55px;
4431 #hns-date-picker {
4432 right: -23px;
4434 #hns-date-picker::before {
4435 width: calc(100% - 22px);
4437 #anti-kibitzer-toggle {
4438 right: -54px;
4441 @media only screen and (max-width: 1040px) {
4442 #quick-nav-ui {
4443 right: -49px;
4445 #new-comment-nav-ui {
4446 right: -50px;
4448 #hns-date-picker {
4449 right: -18px;
4451 #hns-date-picker::before {
4452 width: calc(100% - 17px);
4454 #anti-kibitzer-toggle {
4455 right: -50px;
4458 @media only screen and (max-width: 1020px) {
4459 #quick-nav-ui {
4460 right: -20px;
4462 #new-comment-nav-ui {
4463 right: -21px;
4465 #new-comment-nav-ui .new-comments-count::before {
4466 content: "";
4467 position: absolute;
4468 width: 100%;
4469 height: calc(100% + 45px);
4470 z-index: -1;
4471 left: 0;
4472 top: -22px;
4474 #hns-date-picker {
4475 right: 19px;
4477 #hns-date-picker::before {
4478 width: 100%;
4480 #anti-kibitzer-toggle {
4481 right: -20px;
4484 @media only screen and (max-width: 1000px) {
4485 #theme-selector {
4486 left: -17px;
4487 top: 120px;
4488 padding: 3px 0;
4489 max-width: 32px;
4491 #theme-selector button {
4492 margin: 1px 4px;
4494 #text-size-adjustment-ui {
4495 top: 100px;
4496 right: -12px;
4498 @media not screen and (hover: none) {
4499 #quick-nav-ui,
4500 #new-comment-nav-ui,
4501 #new-comment-nav-ui + #hns-date-picker,
4502 #anti-kibitzer-toggle {
4503 opacity: 0.4;
4505 #quick-nav-ui:hover,
4506 #new-comment-nav-ui:hover,
4507 #new-comment-nav-ui + #hns-date-picker:hover,
4508 #new-comment-nav-ui + #hns-date-picker:focus-within,
4509 #new-comment-nav-ui:hover + #hns-date-picker,
4510 #anti-kibitzer-toggle:hover {
4511 opacity: 1.0;
4514 #theme-tweaker-toggle {
4515 top: 70px;
4516 left: -21px;
4520 /**************/
4521 /* PRINT VIEW */
4522 /**************/
4524 @media only print {
4525 .nav-bar {
4526 visibility: hidden;
4527 max-height: 0;
4528 overflow: hidden;
4530 #ui-elements-container {
4531 display: none;
4533 #images-overlay {
4534 display: none;
4536 #images-overlay + #content .post-body img {
4537 visibility: visible;
4539 .comment-controls {
4540 display: none;
4542 #comments-sort-mode-selector {
4543 display: none;
4545 .comment-minimize-button {
4546 display: none;
4548 .post-meta .qualified-linking,
4549 .post-meta .lw2-link {
4550 display: none;
4552 .comment-meta .permalink,
4553 .comment-meta .lw2-link,
4554 .comment-meta .comment-parent-link {
4555 display: none;
4557 .new-comment::before {
4558 display: none;
4560 #content::before {
4561 box-shadow: none;
4565 /*****************/
4566 /* MOBILE LAYOUT */
4567 /*****************/
4569 /* Hide the mobile elements on desktop screens: */
4571 @media only screen and (max-width: 1160px) {
4572 #post-nav-ui-toggle,
4573 #appearance-adjust-ui-toggle {
4574 display: none;
4578 @media only screen and (max-width: 1160px) {
4580 /*====================*/
4581 /* MOBILE UI ELEMENTS */
4582 /*====================*/
4584 #ui-elements-container {
4585 height: unset !important;
4586 position: unset;
4588 #ui-elements-container > * {
4589 position: fixed;
4590 visibility: hidden;
4591 opacity: 1.0;
4592 z-index: 10000;
4595 #ui-elements-container > div[id$='-ui-toggle'] {
4596 visibility: visible;
4597 display: inline-block;
4598 border-radius: 50%;
4599 z-index: 10000;
4601 #ui-elements-container > div[id$='-ui-toggle'] button,
4602 #theme-selector .theme-selector-close-button {
4603 font-family: Font Awesome;
4604 font-weight: 900;
4605 font-size: 32px;
4606 padding: 10px;
4607 opacity: 0.8;
4608 -webkit-tap-highlight-color: transparent;
4609 transition: transform 0.2s ease;
4611 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4612 #theme-selector .theme-selector-close-button::selection {
4613 background-color: transparent;
4615 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4616 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4617 border: none;
4619 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4620 transform: rotate(-90deg);
4621 opacity: 1.0;
4624 #appearance-adjust-ui-toggle {
4625 bottom: 10px;
4626 left: 10px;
4629 #post-nav-ui-toggle {
4630 bottom: 10px;
4631 right: 10px;
4634 #theme-selector.engaged,
4635 #quick-nav-ui.engaged,
4636 #new-comment-nav-ui.engaged,
4637 #hns-date-picker.engaged {
4638 visibility: visible;
4641 #image-focus-overlay.engaged {
4642 visibility: visible;
4644 #image-focus-overlay .help-overlay {
4645 display: none;
4648 /*=========*/
4649 /* GENERAL */
4650 /*=========*/
4652 @media only screen and (max-width: 900px) {
4653 #content,
4654 #images-overlay,
4655 #ui-elements-container {
4656 min-width: unset;
4657 width: unset;
4659 #content {
4660 padding: 0 4px;
4664 /*================*/
4665 /* THEME SELECTOR */
4666 /*================*/
4668 #theme-selector {
4669 display: flex;
4670 flex-flow: column;
4671 background-color: #fff;
4672 width: calc(100vw - 20px);
4673 max-width: 360px;
4674 padding: 0 0 3px 0;
4675 overflow: hidden;
4676 max-height: 0;
4677 transition:
4678 top 0.2s ease,
4679 max-height 0.2s ease,
4680 visibility 0.2s ease;
4681 top: calc(100% + 10px);
4682 left: 0;
4683 right: 0;
4684 margin: auto;
4686 #theme-selector.engaged {
4687 max-height: 1000px;
4688 top: 10px;
4689 z-index: 10001;
4691 #theme-selector::before {
4692 content: "Select theme";
4693 white-space: nowrap;
4694 display: block;
4695 font-weight: 600;
4696 font-size: 2rem;
4697 margin: 0.375em 1em 0.5em 1em;
4698 text-align: center;
4700 #theme-selector button {
4701 width: calc(100% - 0.5em);
4702 background-repeat: no-repeat;
4703 padding: 1em 0.875em;
4704 margin: 1px 4px;
4705 line-height: 1;
4706 height: unset;
4707 position: relative;
4709 #theme-selector button::after {
4710 content: attr(data-theme-description);
4711 color: #000;
4712 white-space: nowrap;
4713 position: absolute;
4714 text-align: left;
4715 left: 2.5em;
4716 top: 1em;
4718 @media only screen and (max-height: 675px) {
4719 #theme-selector button {
4720 padding: 0.875em;
4722 #theme-selector button::after {
4723 top: 0.875em;
4726 #theme-selector .theme-selector-close-button {
4727 position: absolute;
4728 width: unset;
4729 background-color: transparent;
4730 top: 0;
4731 right: -3px;
4733 #theme-selector .theme-selector-close-button,
4734 #theme-selector .theme-selector-close-button:focus,
4735 #theme-selector .theme-selector-close-button:active,
4736 #theme-selector .theme-selector-close-button:hover {
4737 box-shadow: none;
4740 /*===============*/
4741 /* THEME TWEAKER */
4742 /*===============*/
4744 #theme-selector {
4745 padding: 0 0 64px 0;
4747 #theme-selector ~ #theme-tweaker-toggle {
4748 top: 100%;
4750 #theme-selector ~ #theme-tweaker-toggle::after {
4751 content: "Open theme tweaker";
4752 position: absolute;
4753 font-size: 0.625em;
4754 white-space: nowrap;
4755 left: -50%;
4756 top: 100%;
4758 #theme-selector.engaged ~ #theme-tweaker-toggle {
4759 visibility: visible;
4760 top: 530px;
4761 left: 0;
4762 right: 0;
4763 margin: auto;
4764 z-index: 11111;
4765 transition:
4766 top 0.2s ease,
4767 visibility 0.2s ease;
4769 @media only screen and (max-height: 675px) {
4770 #theme-selector.engaged ~ #theme-tweaker-toggle {
4771 top: 492px;
4774 @supports (width: -moz-fit-content) {
4775 #theme-selector.engaged ~ #theme-tweaker-toggle {
4776 width: -moz-fit-content;
4779 @supports (width: fit-content) {
4780 #theme-selector.engaged ~ #theme-tweaker-toggle {
4781 width: fit-content;
4784 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4785 opacity: 1.0;
4788 #theme-tweaker-ui {
4789 visibility: visible;
4792 /*======================*/
4793 /* ANTI-KIBITZER TOGGLE */
4794 /*======================*/
4796 #theme-selector ~ #anti-kibitzer-toggle {
4797 top: 100%;
4798 bottom: unset;
4799 left: 0;
4800 right: 0;
4801 margin: auto;
4802 box-shadow: none;
4803 width: calc(100vw - 44px);
4804 max-width: 330px;
4805 text-align: right;
4806 pointer-events: none;
4808 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4809 visibility: visible;
4810 z-index: 11110;
4811 top: 530px;
4812 transition:
4813 top 0.2s ease,
4814 visibility 0.2s ease;
4816 @media only screen and (max-height: 675px) {
4817 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4818 top: 492px;
4821 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4822 pointer-events: auto;
4823 display: inline-block;
4826 /*=================*/
4827 /* QUICKNAV WIDGET */
4828 /*=================*/
4830 #quick-nav-ui {
4831 max-width: 0px;
4832 transition:
4833 max-width 0.2s ease,
4834 visibility 0.2s ease;
4835 display: flex;
4836 right: 72px;
4837 bottom: 14px;
4839 #quick-nav-ui.engaged {
4840 max-width: 1000px;
4842 #quick-nav-ui a {
4843 position: relative;
4844 margin: 2px;
4846 #quick-nav-ui a + a {
4847 margin-left: 5px;
4849 #quick-nav-ui a::after {
4850 position: absolute;
4851 top: calc(100% + 2px);
4852 font-size: 0.375rem;
4853 left: 0;
4854 right: 0;
4855 margin: auto;
4856 line-height: 1;
4857 padding: 2px;
4858 text-transform: uppercase;
4859 z-index: -1;
4861 @supports (width: -moz-fit-content) {
4862 #quick-nav-ui a::after {
4863 width: -moz-fit-content;
4866 @supports (width: fit-content) {
4867 #quick-nav-ui a::after {
4868 width: fit-content;
4871 #quick-nav-ui a[href='#top']::after {
4872 content: "Top";
4873 left: -1px;
4875 #quick-nav-ui a[href='#comments']::after {
4876 content: "Comments";
4878 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4879 visibility: hidden;
4880 transition: visibility 0.2s ease;
4882 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4883 visibility: visible;
4885 #quick-nav-ui a[href='#bottom-bar']::after {
4886 content: "Bottom";
4889 /*======================*/
4890 /* NEW COMMENT QUICKNAV */
4891 /*======================*/
4893 #new-comment-nav-ui {
4894 max-width: 0px;
4895 max-height: 0px;
4896 transition:
4897 max-width 0.2s ease,
4898 max-height 0.2s ease,
4899 visibility 0.2s ease;
4900 display: flex;
4901 right: 78px;
4902 bottom: 70px;
4904 #new-comment-nav-ui::before {
4905 content: "New Comments";
4906 position: absolute;
4907 bottom: 100%;
4908 font-size: 0.5625rem;
4909 left: 0;
4910 right: 0;
4911 margin: auto;
4912 padding: 2px 3px;
4913 text-transform: uppercase;
4914 z-index: -1;
4916 @supports (width: -moz-fit-content) {
4917 #new-comment-nav-ui::before {
4918 width: -moz-fit-content;
4921 @supports (width: fit-content) {
4922 #new-comment-nav-ui::before {
4923 width: fit-content;
4926 #new-comment-nav-ui.engaged {
4927 max-width: 1000px;
4928 max-height: 1000px;
4930 #new-comment-nav-ui .new-comment-sequential-nav-button {
4931 top: unset;
4932 bottom: unset;
4933 padding: 2px 7px;
4935 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4936 padding: 2px 7px 3px 7px;
4938 #new-comment-nav-ui .new-comments-count {
4939 padding: 4px 0 5px 0;
4941 #new-comment-nav-ui .new-comments-count::before {
4942 display: none;
4944 #new-comment-nav-ui button::after {
4945 position: absolute;
4946 font-size: 0.375rem;
4947 left: 0;
4948 right: 0;
4949 margin: auto;
4950 line-height: 1;
4951 text-transform: uppercase;
4952 pointer-events: none;
4954 #new-comment-nav-ui button.new-comment-previous::after {
4955 content: "Previous";
4956 bottom: 5px;
4958 #new-comment-nav-ui button.new-comment-next::after {
4959 content: "Next";
4960 top: 7px;
4963 /*=================*/
4964 /* HNS DATE PICKER */
4965 /*=================*/
4967 #hns-date-picker {
4968 max-height: 0px;
4969 bottom: 132px;
4970 right: 62px;
4971 transition:
4972 max-height 0.2s ease,
4973 visibility 0.2s ease;
4975 #hns-date-picker.engaged {
4976 max-height: 1000px;
4978 #hns-date-picker::before {
4979 width: calc(100% + 2px);
4980 border-width: 1px !important;
4983 /*=========*/
4984 /* NAV BAR */
4985 /*=========*/
4987 #bottom-bar {
4988 margin-left: auto;
4989 margin-right: auto;
4990 width: calc(100% - 9rem + 8px);
4991 background: rgba(255,255,255,0.85);
4992 backdrop-filter: blur(1px);
4994 #content.index-page #bottom-bar {
4995 z-index: 10001;
4997 #bottom-bar .nav-item {
4998 box-shadow: none;
4999 position: relative;
5001 #bottom-bar .nav-inner {
5002 font-size: 2rem;
5003 padding: 1rem 0 1.25rem 0;
5004 visibility: hidden;
5005 position: static;
5006 width: 0;
5008 #content #bottom-bar .nav-item .nav-inner::before {
5009 margin: 0;
5010 visibility: visible;
5011 position: absolute;
5012 width: 100%;
5013 height: 100%;
5014 left: 0;
5015 top: 0;
5016 padding: 1rem 0;
5018 #bottom-bar .nav-inner::after {
5019 display: block;
5020 visibility: visible;
5021 text-transform: uppercase;
5022 color: unset;
5023 font-size: 0.75rem;
5024 top: unset;
5025 left: 0;
5026 bottom: 1rem;
5027 width: 100%;
5029 #bottom-bar #nav-item-first .nav-inner::after {
5030 content: "First Page";
5032 #bottom-bar #nav-item-prev .nav-inner::after {
5033 content: "Prev. Page";
5035 #bottom-bar #nav-item-top .nav-inner::after {
5036 content: "Top";
5038 #bottom-bar #nav-item-next .nav-inner::after {
5039 content: "Next Page";
5041 #bottom-bar #nav-item-last .nav-inner::after {
5042 content: "Last Page";
5045 @media only screen and (max-width: 900px) {
5046 .nav-bar-top {
5047 font-size: 0.75rem;
5049 .nav-bar {
5050 width: calc(100% + 8px);
5051 margin: 0 -4px;
5053 .nav-bar .nav-inner::after {
5054 display: none;
5057 #primary-bar .nav-item {
5058 flex: 1 1 100%;
5060 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5061 flex: 1 1 60px;
5063 .nav-bar-top:not(#anything) .nav-inner {
5064 text-transform: uppercase;
5065 padding: 6px;
5067 .nav-bar-top .nav-inner::before {
5068 display: block;
5069 font-family: "Font Awesome";
5070 font-size: 2em;
5071 font-weight: 900;
5074 #nav-item-home .nav-inner::before {
5075 content: "\F015";
5077 #nav-item-featured .nav-inner::before {
5078 content: "\F005";
5080 #nav-item-all .nav-inner::before {
5081 content: "\F069";
5083 #nav-item-meta .nav-inner::before {
5084 content: "\F077";
5086 #nav-item-tags .nav-inner::before {
5087 content: "\F02C";
5089 #nav-item-recent-comments > * > span {
5090 display: none;
5092 #nav-item-recent-comments .nav-inner::before,
5093 #nav-item-alignment-forum-comments .nav-inner::before {
5094 content: "\F036";
5096 #nav-item-alignment-forum .nav-inner::before {
5097 content: "AF";
5098 font-family: Concourse, 'Changa One';
5100 #nav-item-questions .nav-inner::before {
5101 content: "?";
5102 font-family: Concourse, 'Changa One';
5104 #nav-item-events .nav-inner::before {
5105 content: "\F5A0";
5107 #nav-item-shortform .nav-inner::before {
5108 content: "\F2F2";
5110 #nav-item-archive .nav-inner::before {
5111 content: "\F187";
5113 #nav-item-about .nav-inner::before {
5114 content: "\F129";
5116 #nav-item-search {
5117 font-size: 2em;
5118 padding: 10px;
5120 #nav-item-search .nav-inner::before {
5121 content: none;
5123 #nav-item-search .nav-inner {
5124 height: 100%;
5125 display: flex;
5127 #nav-item-search input {
5128 width: 100%;
5129 height: 100%;
5131 #nav-item-search button {
5132 height: 100%;
5133 padding: 5px 5px 5px 10px;
5134 width: 40px;
5135 overflow: visible;
5136 visibility: hidden;
5138 #nav-item-search button::before {
5139 content: "\F002";
5140 font-family: Font Awesome;
5141 font-weight: 900;
5142 visibility: visible;
5144 #nav-item-login {
5145 padding: 0;
5147 #nav-item-login .nav-inner::before {
5148 content: "\F007";
5151 @media only screen and (max-width: 520px) {
5152 .nav-bar-top {
5153 font-size: 0.5rem;
5156 #nav-item-search,
5157 #nav-item-search .nav-inner {
5158 padding: 0;
5160 #nav-item-search button {
5161 width: 31px;
5164 #bottom-bar #nav-item-first .nav-inner::after {
5165 content: "First";
5167 #bottom-bar #nav-item-prev .nav-inner::after {
5168 content: "Prev";
5170 #bottom-bar #nav-item-next .nav-inner::after {
5171 content: "Next";
5173 #bottom-bar #nav-item-last .nav-inner::after {
5174 content: "Last";
5178 /*=================*/
5179 /* INBOX INDICATOR */
5180 /*=================*/
5182 @media only screen and (max-width: 900px) {
5183 #inbox-indicator {
5184 width: 100%;
5185 top: 0;
5186 pointer-events: none;
5188 #inbox-indicator::before {
5189 width: 100%;
5190 font-size: 1rem;
5191 text-align: right;
5192 padding: 1px 6px;
5194 #inbox-indicator.new-messages {
5195 pointer-events: auto;
5197 #inbox-indicator.new-messages::before {
5198 box-shadow: 0 0 8px 1px #f00 inset;
5201 @media only screen and (max-width: 520px) {
5202 #inbox-indicator::before {
5203 font-size: 0.75rem;
5204 padding: 2px 5px;
5207 @media only screen and (max-width: 374px) {
5208 #inbox-indicator::before {
5209 font-size: 0.625rem;
5213 /*===================*/
5214 /* TOP PAGINATION UI */
5215 /*===================*/
5217 #top-nav-bar {
5218 font-size: 1.75rem;
5221 /*==============*/
5222 /* PAGE TOOLBAR */
5223 /*==============*/
5225 @media only screen and (max-width: 900px) {
5226 #content > .page-toolbar {
5227 font-size: 1rem;
5228 margin-right: 0;
5230 #content.user-page > .page-toolbar {
5231 grid-column: 2 / span 2;
5232 margin: 0 0 6px 0;
5235 @media only screen and (max-width: 520px) {
5236 #content:not(.user-page) .page-toolbar {
5237 display: flex;
5238 flex-direction: column-reverse;
5239 text-align: right;
5240 align-self: start;
5241 padding: 4px 0 0 0;
5243 #content.user-page .page-toolbar {
5244 display: flex;
5245 flex-flow: row;
5246 justify-content: flex-end;
5247 padding: 2px 0 0 0;
5249 #content.user-page .page-toolbar > form,
5250 #content.user-page .page-toolbar > .button {
5251 text-align: center;
5252 flex-basis: 25%;
5253 margin-left: 1.5em;
5255 #content.user-page .page-toolbar .button {
5256 text-transform: uppercase;
5257 font-size: 0.625rem;
5259 #content.user-page .page-toolbar .button::before {
5260 font-size: 1.375rem;
5261 display: block;
5262 padding: 0;
5264 #content.user-page .page-toolbar .rss {
5265 white-space: nowrap;
5266 margin: 0 0 0 1.5em;
5268 .page-toolbar > * {
5269 line-height: 1.15;
5270 padding: 6px 0;
5271 margin: 0;
5275 /*==============*/
5276 /* SUBLEVEL NAV */
5277 /*==============*/
5279 @media only screen and (max-width: 900px) {
5280 .sublevel-nav:not(.sort) {
5281 flex-wrap: wrap;
5282 width: calc(100vw - 200px);
5284 .sublevel-nav:not(.sort) .sublevel-item {
5285 margin: 1px;
5286 flex-basis: 7em;
5289 @media only screen and (max-width: 520px) {
5290 .sublevel-nav:not(.sort) .sublevel-item {
5291 font-size: 1rem;
5295 /*=====================*/
5296 /* SORT ORDER SELECTOR */
5297 /*=====================*/
5299 @media only screen and (max-width: 720px) {
5300 #content.index-page > .sublevel-nav.sort {
5301 flex-flow: column;
5302 margin-left: 4px;
5306 /*==========*/
5307 /* ARCHIVES */
5308 /*==========*/
5310 @media only screen and (max-width: 900px) {
5311 div[class^='archive-nav-'] {
5312 flex-wrap: wrap;
5313 justify-content: flex-start;
5315 .archive-nav *[class^='archive-nav-item'],
5316 .archive-nav *[class^='archive-nav-item']:first-child {
5317 padding: 10px;
5318 margin: 2px;
5319 max-width: unset;
5320 flex: 0 1 calc((100% / 8) - 4px);
5322 .archive-nav .archive-nav-item-day,
5323 .archive-nav .archive-nav-item-day:first-child {
5324 flex-basis: calc((100% / 16) - 4px);
5326 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5327 margin-top: 8px;
5328 position: relative;
5330 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5331 content: "";
5332 display: block;
5333 position: absolute;
5334 height: 1px;
5335 width: calc(100% + 8px);
5336 left: -4px;
5337 top: -4px;
5340 @media only screen and (max-width: 720px) {
5341 .archive-nav .archive-nav-item-day,
5342 .archive-nav .archive-nav-item-day:first-child {
5343 flex-basis: calc((100% / 12) - 4px);
5346 @media only screen and (max-width: 520px) {
5347 .archive-nav *[class^='archive-nav-item'],
5348 .archive-nav *[class^='archive-nav-item']:first-child {
5349 flex-basis: calc((100% / 5) - 4px);
5351 .archive-nav .archive-nav-item-day,
5352 .archive-nav .archive-nav-item-day:first-child {
5353 flex-basis: calc((100% / 8) - 4px);
5357 /*==========*/
5358 /* LISTINGS */
5359 /*==========*/
5361 h1.listing {
5362 max-height: unset;
5365 /*============*/
5366 /* USER PAGES */
5367 /*============*/
5369 #content.user-page h1.page-main-heading {
5370 align-self: end;
5372 @media only screen and (max-width: 520px) {
5373 #content.user-page h1.page-main-heading {
5374 overflow: hidden;
5375 text-overflow: ellipsis;
5377 #content.user-page .user-stats .karma-type {
5378 display: block;
5382 /*============*/
5383 /* LOGIN PAGE */
5384 /*============*/
5386 @media only screen and (max-width: 640px) {
5387 .login-container {
5388 flex-flow: column;
5389 margin: 0 auto 3em auto;
5390 max-width: 400px;
5392 .login-container #login-form,
5393 .login-container #signup-form {
5394 padding: 0 1em 1.25em 1em;
5395 grid-row-gap: 0;
5397 .login-container #signup-form {
5398 padding-top: 1em;
5400 .login-container #login-form > *,
5401 .login-container #signup-form > * {
5402 grid-column: 1 / span 2;
5404 .login-container form label {
5405 text-align: left;
5406 padding: 0;
5407 line-height: 1;
5409 .login-container form input {
5410 margin: 0.25em 0 0.75em 0;
5411 padding: 0.5em;
5413 .login-container form h1 {
5414 grid-column: 1 / span 2;
5415 margin: 0 0 0.25em 0;
5417 .login-container form a {
5418 margin: 0.75em 0 0 0;
5420 .login-container .login-tip {
5421 margin: 1.5em 1em 0 1em;
5425 /*==================*/
5426 /* POSTS & COMMENTS */
5427 /*==================*/
5429 @media only screen and (max-width: 720px) {
5430 .body-text ol > li {
5431 padding: 0 0 0 2.25em;
5433 .body-text ol > li::before {
5434 width: 1.75em;
5436 .body-text ul:not(.contents-list) > li,
5437 .body-text ul:not(.contents-list) > li ul > li {
5438 padding: 0 0 0 0.75em;
5440 .body-text ul:not(.contents-list) > li::before,
5441 .body-text ul:not(.contents-list) > li ul > li::before {
5442 width: 0.125em;
5443 margin-left: -0.06em;
5447 /*===========*/
5448 /* POST-META */
5449 /*===========*/
5451 .post-meta {
5452 line-height: 1.9;
5454 @media only screen and (max-width: 720px) {
5455 .post-meta .lw2-link span,
5456 .post-meta .karma-value span,
5457 .post-meta .comment-count span {
5458 display: none;
5460 .post-meta .comment-count::before {
5461 content: "\F086";
5462 font-family: Font Awesome;
5463 font-size: 0.875em;
5464 margin: 0 0.25em 0 0;
5465 font-weight: 400;
5469 /*===================*/
5470 /* POSTS & BODY TEXT */
5471 /*===================*/
5473 @media only screen and (max-width: 900px) {
5474 .post-body,
5475 h1.post-title,
5476 .tag-description,
5477 .sequence-text {
5478 padding: 0 6px;
5481 @media only screen and (max-width: 520px) {
5482 .post-body {
5483 font-size: 1.2rem;
5484 line-height: 1.45;
5486 h1.post-title {
5487 font-size: 2em;
5491 /*==============*/
5492 /* COMMENT-META */
5493 /*==============*/
5495 a.comment-parent-link::after {
5496 display: none;
5498 @media only screen and (max-width: 900px) {
5499 .comment-meta {
5500 padding: 2px 40px 2px 10px;
5503 @media only screen and (max-width: 720px) {
5504 .comment .karma-value span {
5505 display: none;
5507 .comment-meta .comment-parent-link {
5508 opacity: 1.0;
5511 @media only screen and (max-width: 520px) {
5512 .comment-meta {
5513 padding: 2px 24px 2px 10px;
5514 position: relative;
5516 .comment-meta > * {
5517 order: 3;
5519 .comment-meta > :not(.author) {
5520 line-height: 1.8;
5522 .comment-meta .author,
5523 .comment-meta .date {
5524 order: 1;
5526 .comment-meta:before {
5527 content: "";
5528 order: 2;
5529 flex-basis: 100%;
5531 .comment-post-title2 {
5532 display: block;
5533 text-overflow: ellipsis;
5534 overflow: hidden;
5536 .comment-meta .lw2-link {
5537 display: none;
5541 /*=======================*/
5542 /* COMMENTS COMPACT VIEW */
5543 /*=======================*/
5545 /*===========================*/
5546 /* COMMENT THREAD NAVIGATION */
5547 /*===========================*/
5549 @media only screen and (max-width: 900px) {
5550 a.comment-parent-link {
5551 width: 0;
5552 visibility: hidden;
5553 position: relative;
5555 a.comment-parent-link::before {
5556 padding: 0;
5557 font-size: 1em;
5558 left: 0;
5559 top: 0;
5560 line-height: inherit;
5561 visibility: visible;
5562 content: "\F3BF";
5563 transform: scaleX(-1);
5564 width: 2em;
5565 text-align: center;
5568 @media only screen and (max-width: 520px) {
5569 a.comment-parent-link {
5570 position: static;
5572 a.comment-parent-link::before {
5573 padding: 6px;
5574 left: unset;
5575 right: 0;
5576 top: unset;
5577 bottom: 0;
5578 height: 2em;
5582 /*=================================*/
5583 /* COMMENT THREAD MINIMIZE BUTTONS */
5584 /*=================================*/
5586 @media only screen and (max-width: 520px) {
5587 .comment-minimize-button{
5588 right: 2px;
5592 /*===========================*/
5593 /* COMMENTING AND POSTING UI */
5594 /*===========================*/
5596 @media only screen and (max-width: 900px) {
5597 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5598 font-size: 0;
5600 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5601 font-size: 0.9rem;
5603 .comment-controls .cancel-comment-button {
5604 max-width: 1.3em;
5605 overflow: hidden;
5606 margin-right: 0.125em;
5608 .comment-controls .edit-button::before {
5609 font-size: 0.9375rem;
5611 .comments > .comment-controls .cancel-comment-button {
5612 right: 8px;
5614 .comment-controls .cancel-comment-button::before {
5615 font-size: 1.25rem;
5618 @media only screen and (max-width: 520px) {
5619 .comment-controls {
5620 position: static;
5622 .comment-controls:focus-within {
5623 z-index: 10001;
5625 .comment-controls .cancel-comment-button {
5626 right: 10px;
5628 .textarea-container:focus-within textarea {
5629 position: fixed;
5630 top: 0;
5631 left: 2px;
5632 width: calc(100vw - 4px);
5633 height: calc(100% - 100px);
5634 min-height: unset;
5635 max-height: unset;
5636 border-width: 1px;
5637 z-index: 11001;
5639 #content.conversation-page .textarea-container:focus-within textarea {
5640 height: calc(100% - 54px);
5642 #content.conversation-page .textarea-container:focus-within::after {
5643 content: "";
5644 display: block;
5645 width: 100%;
5646 height: 50px;
5647 position: fixed;
5648 left: 0;
5649 bottom: 0;
5650 z-index: 11000;
5652 .textarea-container:focus-within .guiedit-buttons-container {
5653 position: fixed;
5654 z-index: 11002;
5655 left: 0;
5656 width: 100vw;
5657 height: auto;
5658 background-image: none;
5659 padding: 3px 4px 4px 4px;
5660 margin: 0;
5661 text-align: center;
5662 top: auto;
5663 bottom: 0;
5665 .textarea-container:focus-within button.guiedit {
5666 font-size: 0.9375rem;
5667 line-height: 1.5;
5668 height: auto;
5669 width: calc((100% / 10) - 2px);
5670 padding: 10px 1px 8px 0;
5671 position: relative;
5672 margin: 1px;
5674 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5675 z-index: 11011;
5676 position: fixed;
5677 bottom: 7px;
5678 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5679 font-size: 1.25rem;
5680 padding: 5px 5px 6px 5px;
5681 display: block;
5683 .textarea-container:focus-within button.guiedit sup {
5684 position: absolute;
5685 left: calc(50% + 0.65em);
5686 top: calc(50% - 1.3em);
5688 .textarea-container:focus-within .guiedit-mobile-help-button {
5689 left: 8px;
5691 .textarea-container:focus-within .guiedit-mobile-exit-button {
5692 right: 8px;
5694 .guiedit::after {
5695 display: none;
5698 #markdown-hints,
5699 #edit-post-form #markdown-hints {
5700 z-index: 11111;
5701 position: fixed;
5702 top: 40px;
5703 left: 0;
5704 right: 0;
5705 margin: auto;
5706 padding: 4px 0 4px 8px;
5707 width: 310px;
5708 border-width: 3px;
5709 border-style: double;
5710 pointer-events: none;
5712 #markdown-hints::after {
5713 content: "(Type to hide this help box.)";
5714 color: #090;
5715 display: block;
5716 margin: 12px 18px 13px 10px;
5717 padding: 5px;
5718 font-size: 0.9em;
5719 text-align: center;
5723 /*================*/
5724 /* EDIT POST FORM */
5725 /*================*/
5727 @media only screen and (max-width: 520px) {
5728 #edit-post-form {
5729 padding-bottom: 0;
5731 #edit-post-form .post-meta-fields {
5732 grid-template-columns: 4.5em auto auto auto 1fr auto;
5734 #edit-post-form label[for='url'],
5735 #edit-post-form label[for='section'],
5736 #edit-post-form label[for='title'] {
5737 padding-left: 0;
5739 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5740 white-space: normal;
5741 line-height: 0.9;
5742 top: -1px;
5743 font-family: Font Awesome;
5744 font-weight: 900;
5745 justify-self: start;
5747 #edit-post-form .post-meta-fields .question-checkbox,
5748 #edit-post-form .post-meta-fields .question-checkbox + label {
5749 grid-column: 6;
5750 margin-left: unset;
5752 #edit-post-form .post-meta-fields input[type='radio'] + label {
5753 align-self: start;
5755 #edit-post-form .textarea-container:focus-within textarea {
5756 height: calc(100% - 101px);
5757 min-height: unset;
5760 #markdown-hints-checkbox,
5761 #markdown-hints-checkbox + label {
5762 display: none;
5765 #edit-post-form div:last-child {
5766 clear: both;
5767 overflow: auto;
5769 #edit-post-form input[type='submit'] {
5770 float: none;
5771 display: block;
5772 font-size: 1.5rem;
5773 margin: 1rem auto 1.5rem auto;
5774 padding: 6px 12px 8px 12px;
5778 /*===================*/
5779 /* TABLE OF CONTENTS */
5780 /*===================*/
5782 @media only screen and (max-width: 900px) {
5783 .contents {
5784 float: none;
5785 display: table;
5786 max-width: none;
5787 margin-left: auto;
5788 margin-right: auto;
5791 @media only screen and (max-width: 520px) {
5792 .contents {
5793 max-width: 100%;
5794 margin: 1em auto 0 auto;
5795 display: table;
5797 .contents-head {
5798 font-size: 1.2em;
5800 div.post-body .contents ul {
5801 font-size: unset;
5805 /*========================*/
5806 /* QUALIFIED HYPERLINKING */
5807 /*========================*/
5809 @media only screen and (max-width: 520px) {
5810 .qualified-linking-toolbar {
5811 right: -5em;
5815 } /* END MOBILE LAYOUT */
5818 /*********************/
5819 /* ULTRAMODERN THEME */
5820 /*********************/
5822 /*===========*/
5823 /* VARIABLES */
5824 /*===========*/
5826 /* Color scheme.
5828 :root {
5831 /*======*/
5832 /* BASE */
5833 /*======*/
5835 body {
5836 color: #444;
5837 background-color: #888;
5838 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
5839 font-weight: 300;
5841 #content {
5842 line-height: 1.55;
5845 /*=========*/
5846 /* NAV BAR */
5847 /*=========*/
5849 .active-bar {
5850 border: 1px solid transparent;
5851 border-bottom-color: #666;
5852 box-shadow:
5853 0 1.5px 1.5px -1.5px #bbb,
5854 0 1px 1px -1px #777;
5855 margin: 0 -30px 0 -2px;
5858 .nav-inner {
5859 font-weight: normal;
5860 font-size: 1.1875em;
5861 padding: 11px 30px 13px 30px;
5863 .nav-current .nav-inner {
5864 font-weight: 300;
5865 color: #ccc;
5867 .nav-bar-top:not(#primary-bar) .nav-inner {
5868 font-size: 1em;
5870 .nav-bar-top:not(.nav-bar-top:not(#primary-bar)) .nav-item:not(#nav-item-search) .nav-inner {
5871 padding: 5px 0 3px 0;
5873 @media only screen and (min-width: 901px) {
5874 .nav-bar-top:not(#primary-bar) #nav-item-sequences .nav-inner {
5875 line-height: 1.1;
5879 #bottom-bar.decorative::before,
5880 #bottom-bar.decorative::after {
5881 content: "GW";
5882 display: block;
5883 text-align: center;
5884 padding: 0.25em 0 1em 0;
5886 #bottom-bar.decorative::before {
5887 width: 100%;
5888 color: transparent;
5889 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5890 background-repeat: repeat-x;
5891 background-position: center 35%;
5892 margin: 0 30px;
5893 filter: brightness(50%) opacity(0.6);
5895 #bottom-bar.decorative::after {
5896 color: #777;
5897 position: absolute;
5898 left: 0;
5899 right: 0;
5900 margin: auto;
5901 background-color: #888;
5902 padding-right: 4px;
5903 padding-left: 4px;
5905 @supports (width: -moz-fit-content) {
5906 #bottom-bar.decorative::after {
5907 width: -moz-fit-content;
5910 @supports (width: fit-content) {
5911 #bottom-bar.decorative::after {
5912 width: fit-content;
5916 .nav-bar .nav-inner {
5917 color: #444;
5918 font-weight: 300;
5920 .nav-bar .nav-inner:hover,
5921 .nav-bar .nav-inner:focus {
5922 text-decoration: underline;
5925 /* Accesskey hints */
5927 .nav-inner::after {
5928 display: block;
5929 position: absolute;
5930 left: 5px;
5931 top: -2px;
5932 font-weight: 400;
5933 font-size: 0.7em;
5934 color: #7c7c7c;
5936 .inactive-bar .nav-inner::after {
5937 color: #777;
5938 top: 0;
5940 .nav-inner:hover::after {
5941 color: #666;
5944 /* Search tab */
5946 #nav-item-search form::before {
5947 opacity: 0.4;
5948 font-size: 0.9375rem;
5950 #nav-item-search button {
5951 border: none;
5952 font-weight: 300;
5954 #nav-item-search input::placeholder {
5955 color: #f00;
5956 font-weight: normal;
5959 /* Inbox indicator */
5961 #inbox-indicator {
5962 top: 0;
5965 /*= Top pagination UI =*/
5967 #top-nav-bar a::before {
5968 font-weight: 300;
5971 /*= Bottom pagination UI =*/
5973 #bottom-bar .nav-item a::before {
5974 font-weight: 400;
5977 /*= Pagination UI hover tooltips =*/
5979 #top-nav-bar a::after,
5980 #bottom-bar a::after {
5981 color: #222;
5984 /*==============*/
5985 /* PAGE TOOLBAR */
5986 /*==============*/
5988 .page-toolbar > * {
5989 color: #444;
5990 font-weight: 300;
5992 .new-post::before,
5993 .logout-button::before {
5994 opacity: 0.8;
5996 .page-toolbar .button:hover {
5997 text-decoration: none;
6000 /*==============*/
6001 /* SUBLEVEL NAV */
6002 /*==============*/
6004 .sublevel-nav .sublevel-item {
6005 color: #444;
6006 background-color: #888;
6008 .sublevel-nav .sublevel-item:not(.selected):hover {
6009 color: #000;
6010 text-decoration: none;
6012 .sublevel-nav .sublevel-item:hover,
6013 .sublevel-nav .sublevel-item.selected {
6014 background-color: #999;
6016 .sublevel-nav .sublevel-item:not(.selected):active,
6017 .sublevel-nav .sublevel-item.selected {
6018 color: #fff;
6021 .sublevel-nav:not(.sort) .sublevel-item {
6022 border-style: solid;
6023 border-color: #999;
6024 border-width: 1px 0 1px 1px;
6026 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6027 border-radius: 8px 0 0 8px;
6029 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6030 border-width: 1px;
6031 border-radius: 0 8px 8px 0;
6034 /*=====================*/
6035 /* SORT ORDER SELECTOR */
6036 /*=====================*/
6038 .sublevel-nav.sort .sublevel-item {
6039 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6040 padding: 8px 8px 6px 8px;
6041 text-transform: uppercase;
6042 pointer-events: auto;
6043 box-shadow: 1px 1px 0 0 #777 inset;
6045 .sublevel-nav.sort {
6046 border: 2px solid transparent;
6047 padding: 18px 0 0 0;
6048 border-radius: 8px;
6049 pointer-events: none;
6050 background-color: #999;
6052 .sublevel-nav.sort::before {
6053 text-transform: uppercase;
6054 font-weight: 600;
6055 color: #444;
6056 z-index: 1;
6058 .sublevel-nav.sort::after {
6059 content: "";
6060 position: absolute;
6061 display: block;
6062 top: 0;
6063 left: 0;
6064 width: 100%;
6065 height: 100%;
6066 border-radius: 6px;
6067 box-shadow:
6068 0 18px 0 0 #888 inset,
6069 0 0 0 1px #777 inset,
6070 0 18px 0 1px #777 inset,
6071 0 0 0 2px #888;
6074 /*================*/
6075 /* WIDTH SELECTOR */
6076 /*================*/
6078 #width-selector button {
6079 box-shadow:
6080 0 0 0 4px #888 inset,
6081 0 0 0 5px #ccc inset;
6083 #width-selector button:hover,
6084 #width-selector button.selected {
6085 box-shadow:
6086 0 0 0 1px #888 inset,
6087 0 0 0 2px #ccc inset,
6088 0 0 0 4px #888 inset,
6089 0 0 0 5px #ccc inset;
6091 #width-selector button::after {
6092 color: #ccc;
6093 font-weight: 300;
6096 /*================*/
6097 /* THEME SELECTOR */
6098 /*================*/
6100 #theme-selector button {
6101 box-shadow:
6102 0 0 0 5px #888 inset;
6104 #theme-selector button:hover,
6105 #theme-selector button.selected {
6106 box-shadow:
6107 0 0 0 2px #888 inset,
6108 0 0 0 3px #ccc inset,
6109 0 0 0 5px #888 inset;
6112 #theme-selector button::before {
6113 color: #aaa;
6114 background-color: #888;
6116 #theme-selector button:hover::before,
6117 #theme-selector button.selected::before {
6118 color: #ccc;
6121 /*======================*/
6122 /* THEME TWEAKER TOGGLE */
6123 /*======================*/
6125 #theme-tweaker-toggle button:hover {
6126 text-decoration: none;
6129 /*=================*/
6130 /* QUICKNAV WIDGET */
6131 /*=================*/
6133 #quick-nav-ui a {
6134 color: #666;
6135 border-radius: 4px;
6136 box-shadow: 0 0 0 1px #999;
6137 text-decoration: none;
6139 #quick-nav-ui a[href='#bottom-bar'] {
6140 line-height: 1.8;
6142 #quick-nav-ui a:active {
6143 transform: scale(0.9);
6145 #quick-nav-ui a[href='#comments'].no-comments {
6146 opacity: 0.4;
6147 color: #777;
6149 @media only screen and (hover: hover) {
6150 #quick-nav-ui a:hover {
6151 color: #444;
6152 box-shadow: 0 0 0 1px #ccc;
6154 #quick-nav-ui a:focus:not(:hover) {
6155 transform: none;
6156 text-shadow: none;
6160 /*======================*/
6161 /* NEW COMMENT QUICKNAV */
6162 /*======================*/
6164 #new-comment-nav-ui .new-comments-count {
6165 font-weight: 600;
6166 color: #666;
6168 #new-comment-nav-ui .new-comments-count::after {
6169 font-weight: 600;
6170 color: #666;
6172 #new-comment-nav-ui .new-comment-sequential-nav-button {
6173 color: #bbb;
6175 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6176 color: #929292;
6178 @media only screen and (hover: hover) {
6179 #new-comment-nav-ui .new-comments-count:hover {
6180 text-shadow:
6181 0 0 1px #fff,
6182 0 0 3px #fff,
6183 0 0 5px #fff,
6184 0 0 8px #fff,
6185 0.5px 0.5px 0 #fff;
6187 #new-comment-nav-ui .new-comment-sequential-nav-button:hover {
6188 color: #444;
6189 text-decoration: none;
6191 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6192 color: #d00;
6193 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6197 /*=================*/
6198 /* HNS DATE PICKER */
6199 /*=================*/
6201 #hns-date-picker span {
6202 color: #666;
6203 font-weight: 600;
6205 #hns-date-picker input {
6206 border: 1px solid #999;
6207 background-color: transparent;
6208 color: #666;
6210 #hns-date-picker input:focus {
6211 color: #000;
6212 border: 1px solid #ccc;
6215 /*======================*/
6216 /* ANTI-KIBITZER TOGGLE */
6217 /*======================*/
6219 #anti-kibitzer-toggle button::before,
6220 #anti-kibitzer-toggle button::after {
6221 background-color: #222;
6222 -webkit-background-clip: text;
6223 color: transparent;
6224 text-shadow: rgba(255,255,255,0.4) 0px 1px 1px;
6226 #anti-kibitzer-toggle button:hover::before,
6227 #anti-kibitzer-toggle button:hover::after {
6228 background-color: #000;
6231 /*======================*/
6232 /* TEXT SIZE ADJUSTMENT */
6233 /*======================*/
6235 #text-size-adjustment-ui button {
6236 color: #444;
6238 #text-size-adjustment-ui button.default {
6239 font-weight: 600;
6241 #text-size-adjustment-ui button:hover {
6242 text-decoration: none;
6243 color: #aaa;
6245 #text-size-adjustment-ui::after {
6246 color: #ccc;
6247 font-weight: 300;
6250 /*=============================*/
6251 /* COMMENTS VIEW MODE SELECTOR */
6252 /*=============================*/
6254 #comments-view-mode-selector a {
6255 color: #ccc;
6258 /*==========*/
6259 /* ARCHIVES */
6260 /*==========*/
6262 .archive-nav {
6263 border: 1px solid #ccc;
6265 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6266 border-top-width: 0;
6267 border-bottom-width: 0;
6269 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6270 border-bottom-width: 1px;
6272 .archive-nav *[class^='archive-nav-item']:last-child {
6273 border-right-width: 1px;
6275 .archive-nav span[class^='archive-nav-item'] {
6276 font-weight: bold;
6279 .archive-nav span[class^="archive-nav-item"],
6280 .archive-nav a:hover {
6281 color: #ffb359;
6282 box-shadow:
6283 0 0 0 3px #888 inset,
6284 0 0 0 4px #ccc inset,
6285 0 0 0 5px #888 inset;
6286 text-decoration: none;
6288 .archive-nav span[class^="archive-nav-item"] {
6289 font-weight: normal;
6290 box-shadow:
6291 0 0 0 1px #ccc inset,
6292 0 0 0 3px #888 inset,
6293 0 0 0 4px #ccc inset,
6294 0 0 0 5px #888 inset;
6296 .archive-nav a:active {
6297 transform: scale(0.9);
6299 .archive-nav a:focus:not(:hover) {
6300 transform: none;
6303 /*==========*/
6304 /* LISTINGS */
6305 /*==========*/
6307 h1.listing {
6308 margin: 0.7em 20px 0.1em 20px;
6309 max-width: calc(100% - 40px);
6310 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif, 'Font Awesome';
6311 font-size: 1.5rem;
6313 h1.listing .post-title-link {
6314 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6315 font-weight: 100;
6316 text-shadow:
6317 0px 0px 1px #777,
6318 0.5px 0.5px 1px #aaa,
6319 0.5px 0.5px 1px #bbb;
6321 h1.listing .link-post-link {
6322 color: #aaa;
6325 @media only screen and (hover: hover) {
6326 h1.listing a:hover,
6327 h1.listing a:focus {
6328 background-color: rgba(136,136,136,0.85);
6329 color: #f60;
6330 text-shadow:
6331 0px 0px 1px #777,
6332 0.5px 0.5px 1px #aaa,
6333 0.5px 0.5px 1px #bbb,
6334 0 0 1px #f60,
6335 0 0 2px #f60,
6336 0 0 3px #f60;
6338 h1.listing:focus-within::before {
6339 color: #f60;
6340 left: -0.625em;
6341 top: 1px;
6343 h1.listing .link-post-link:hover {
6344 color: #4879ec;
6345 text-shadow:
6346 0.5px 0.5px 0 #fff,
6347 -0.5px -0.5px 0 #fff,
6348 0 0 2px #fff,
6349 0 0 3px #00c;
6353 h1.listing .edit-post-link {
6354 padding: 10px 3px 30px 0.5em;
6355 top: 0;
6356 right: -1.5em;
6358 h1.listing .edit-post-link:hover {
6359 text-decoration: none;
6361 #content.user-page h1.listing .edit-post-link {
6362 background-color: #888;
6365 /*======*/
6366 /* SPAM */
6367 /*======*/
6369 h1.listing.spam {
6370 opacity: 0.35;
6372 h1.listing.spam + .post-meta {
6373 opacity: 0.3;
6375 h1.listing.spam:hover,
6376 h1.listing.spam + .post-meta:hover,
6377 h1.listing.spam:hover + .post-meta {
6378 opacity: 1.0;
6381 /*===================*/
6382 /* LISTING POST-META */
6383 /*===================*/
6385 h1.listing + .post-meta > * {
6386 color: #222;
6387 font-size: 1em;
6389 h1.listing + .post-meta .karma::after {
6390 content: " by";
6392 h1.listing + .post-meta .date::before {
6393 content: "on ";
6395 h1.listing + .post-meta .date::after {
6396 content: " — ";
6397 opacity: 0.5;
6398 margin: 0 0.5em 0 0.125em;
6400 h1.listing + .post-meta .comment-count.new-comments::before {
6401 color: #0f0;
6403 h1.listing:last-of-type + .post-meta {
6404 margin-bottom: 0;
6406 h1.listing + .post-meta .karma {
6407 order: -1;
6408 margin-right: 0.25em;
6410 h1.listing + .post-meta .author {
6411 margin-right: 0.25em;
6413 h1.listing + .post-meta .date {
6414 margin: 0;
6416 h1.listing + .post-meta .post-section {
6417 overflow: visible;
6418 order: 2;
6420 h1.listing + .post-meta .post-section::before {
6421 font-size: 0.9375em;
6422 left: -32px;
6424 h1.listing + .post-meta .link-post-domain {
6425 order: 1;
6428 /*============*/
6429 /* USER PAGES */
6430 /*============*/
6432 #content.user-page h1.page-main-heading {
6433 border-bottom: 1px solid #777;
6436 #content.user-page h1.listing,
6437 #content.user-page h1.listing + .post-meta {
6438 border-style: solid;
6439 border-color: #666;
6440 border-width: 0 0 0 1px;
6441 box-shadow:
6442 1.5px 0 1.5px -1.5px #bbb inset,
6443 1px 0 1px -1px #777 inset;
6445 #content.user-page h1.listing {
6446 max-width: 100%;
6447 margin: 1rem 0 0 0;
6448 padding: 6px;
6450 @media only screen and (hover: hover) {
6451 #content.user-page h1.listing:focus-within::before {
6452 left: -0.625em;
6453 top: 8px;
6456 #content.user-page h1.listing + .post-meta {
6457 margin: 0 0 1rem 0;
6458 padding: 0.5em 6px 6px 34px;
6460 #content.user-page h1.listing + .post-meta .post-section::before {
6461 left: 1px;
6464 #content.conversations-user-page h1.listing {
6465 padding: 6px 6px 4px 8px;
6466 font-size: 1.5rem;
6468 #content.conversations-user-page h1.listing + .post-meta {
6469 padding: 6px 4px;
6470 margin: 0 0 0.25rem 0;
6472 #content.conversations-user-page h1.listing + .post-meta .date::after {
6473 display: none;
6476 .user-stats .karma-total {
6477 font-weight: bold;
6480 /*===============*/
6481 /* CONVERSATIONS */
6482 /*===============*/
6484 #content.conversation-page h1.page-main-heading {
6485 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6486 font-weight: 100;
6487 color: #000;
6488 text-shadow:
6489 0px 0px 1px #777,
6490 0.5px 0.5px 1px #aaa,
6491 0.5px 0.5px 1px #bbb;
6494 /*============*/
6495 /* LOGIN PAGE */
6496 /*============*/
6498 .login-container h1 {
6499 font-weight: 300;
6502 /* “Create account” form */
6504 #signup-form {
6505 border: 1px solid #aaa;
6508 /* Log in tip */
6510 .login-container .login-tip {
6511 border: 1px solid transparent;
6514 /* Message box */
6516 .error-box {
6517 border: 1px solid red;
6518 background-color: #faa;
6520 .success-box {
6521 border: 1px solid green;
6522 background-color: #afa;
6525 /*=====================*/
6526 /* PASSWORD RESET PAGE */
6527 /*=====================*/
6529 .reset-password-container input[type='submit'] {
6530 background-color: #e4e4e4;
6531 border: 1px solid #ccc;
6532 font-weight: 600;
6535 /*===================*/
6536 /* TABLE OF CONTENTS */
6537 /*===================*/
6539 .contents {
6540 background-color: #888;
6542 .contents-head {
6543 font-weight: 300;
6545 .post-body .contents ul {
6546 font-size: 0.85em;
6548 .post-body .contents li::before {
6549 color: #999;
6550 font-feature-settings: "tnum";
6553 /*=================*/
6554 /* POST NAVIGATION */
6555 /*=================*/
6557 .post-nav-links a,
6558 .post-nav-links a:visited {
6559 color: #444;
6560 font-weight: 300;
6562 .post-nav-links a:hover {
6563 text-decoration: none;
6564 color: #ccc;
6567 .post-nav-label {
6568 opacity: 0.75;
6571 @media only screen and (max-width: 900px) {
6572 .sequence-title {
6573 border-top: 1px solid #777;
6575 .post-nav.prev {
6576 border-right: 1px solid #777;
6578 .post-nav.next {
6579 border-left: 1px solid #777;
6583 /*==================*/
6584 /* POSTS & COMMENTS */
6585 /*==================*/
6587 .body-text {
6588 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6589 font-weight: 300;
6590 color: #000;
6591 text-shadow:
6592 0px 0px 1px #777,
6593 0.5px 0.5px 1px #aaa,
6594 0.5px 0.5px 1px #bbb;
6596 .body-text strong {
6597 font-weight: 500;
6600 .body-text a:link {
6601 color: inherit;
6602 text-shadow:
6603 0px 0px 1px #bd5984,
6604 0.5px 0.5px 1px #f68a84,
6605 0.5px 0.5px 1px #ff9b8c;
6607 .body-text a:visited {
6608 color: inherit;
6609 text-shadow:
6610 0px 0px 1px #a766dd,
6611 0.5px 0.5px 1px #d9f,
6612 0.5px 0.5px 1px #efa9ff;
6614 .body-text a:hover {
6615 color: #f60;
6616 text-shadow:
6617 0px 0px 1px #bd5984,
6618 0.5px 0.5px 1px #f68a84,
6619 0.5px 0.5px 1px #ff9b8c,
6620 0px 0px 5px #f60;
6623 h1.post-title {
6624 margin: 1.1em 0 0.25em 0;
6625 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6626 font-weight: 100;
6627 color: #000;
6628 font-size: 3em;
6629 text-shadow:
6630 0px 0px 1px #777,
6631 0.5px 0.5px 1px #aaa,
6632 0.5px 0.5px 1px #bbb;
6635 .post-body {
6636 font-size: 1.1875rem;
6637 line-height: 1.6;
6639 @media (-webkit-max-device-pixel-ratio: 1), (max-resolution: 191dpi) {
6640 .post-body {
6641 font-size: 1.125rem;
6644 .comment-body {
6645 font-size: 1.125rem;
6648 /*=======*/
6649 /* POSTS */
6650 /*=======*/
6652 .bottom-post-meta {
6653 border-color: #777;
6656 /*===========*/
6657 /* POST-META */
6658 /*===========*/
6660 .post-meta a,
6661 .post-meta .date {
6662 color: #444;
6665 .post-meta > * {
6666 margin: 0;
6667 text-shadow:
6668 0px 0px 1px #777,
6669 0.5px 0.5px 1px #aaa,
6670 0.5px 0.5px 1px #bbb;
6672 .post-meta .comment-count span,
6673 .post-meta .read-time span,
6674 .post-meta .word-count span,
6675 .post-meta .lw2-link span {
6676 display: none;
6678 .post-meta .comment-count::before,
6679 .post-meta .read-time::before,
6680 .post-meta .word-count::before,
6681 .post-meta .lw2-link::before {
6682 font-family: Font Awesome;
6683 margin: 0 0.25em 0 0;
6684 font-size: 0.875em;
6685 color: #666;
6687 .post-meta .comment-count {
6688 margin: 0 0.25em 0 0;
6690 .post-meta .read-time,
6691 .post-meta .word-count,
6692 .post-meta .lw2-link {
6693 margin: 0 0.25em 0 0.5em;
6695 .post-meta .comment-count:hover,
6696 .post-meta .lw2-link:hover {
6697 text-decoration: none;
6698 text-shadow:
6699 0 0 0.5px #000,
6700 0 0 1px #fff,
6701 0 0 8px #000;
6703 .post-meta .comment-count:hover::before,
6704 .post-meta .lw2-link:hover::before,
6705 .post-meta .read-time:hover::before {
6706 color: #ccc;
6708 .post-meta .read-time:hover::before {
6709 cursor: pointer;
6711 .post-meta .comment-count::before {
6712 content: "\F086";
6714 .post-meta .read-time::before {
6715 content: "\F017";
6717 .post-meta .read-time::after {
6718 content: " min";
6720 .post-meta .word-count::before {
6721 content: "\F15C";
6723 .post-meta .word-count::after {
6724 content: "";
6726 .post-meta .lw2-link::before {
6727 content: "\F0C1";
6728 font-weight: 900;
6729 font-size: 0.75em;
6730 position: relative;
6731 bottom: 1px;
6734 .post .post-meta .author {
6735 margin: 0 0.75em 0 0;
6737 .post-meta .author:hover,
6738 .comment-meta .author:hover {
6739 text-decoration: none;
6740 color: #090;
6742 .post .post-meta .comment-count {
6743 margin: 0 0.5em;
6745 .post .post-meta .lw2-link {
6746 margin: 0 1em 0 0.5em;
6748 .post .post-meta .voting-controls {
6749 margin: 0 0.5em 0 1em;
6752 .post-meta .post-section::before,
6753 .comment-meta .alignment-forum {
6754 color: #888;
6755 text-shadow:
6756 1px 1px 0 #ccc,
6757 0 1px 0 #ccc,
6758 0 0 5px #ccc;
6760 a.post-section:hover {
6761 text-decoration: none;
6763 a.post-section:hover::before {
6764 color: #999;
6766 .post-meta .post-section.alignment-forum::before {
6767 text-shadow:
6768 1px 1px 0 #b9bbff,
6769 0 1px 0 #b9bbff,
6770 0 0 5px #b9bbff;
6772 a.post-section.alignment-forum:hover::before {
6773 color: #9093d4;
6776 /*============*/
6777 /* LINK POSTS */
6778 /*============*/
6780 .post.link-post a.link-post-link {
6781 text-decoration: none;
6782 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6783 font-weight: 600;
6785 .post.link-post a.link-post-link:hover {
6786 color: #f60;
6788 .post.link-post a.link-post-link:hover::before {
6789 color: #4879ec;
6790 text-shadow:
6791 0.5px 0.5px 0 #fff,
6792 -0.5px -0.5px 0 #fff,
6793 0 0 2px #fff,
6794 0 0 3px #00c;
6796 .post.link-post a.link-post-link:focus {
6797 color: #f60;
6798 border-bottom: 2px dotted #f60;
6799 text-shadow:
6800 0px 0px 1px #777,
6801 0.5px 0.5px 1px #aaa,
6802 0.5px 0.5px 1px #bbb,
6803 0 0 1px #f60,
6804 0 0 2px #f60,
6805 0 0 3px #f60;
6808 /*==========*/
6809 /* COMMENTS */
6810 /*==========*/
6812 .comments::before {
6813 border-top: 1px solid #666;
6814 box-shadow:
6815 0 1.5px 1.5px -1.5px #bbb inset,
6816 0 1px 1px -1px #777 inset;
6819 #content > .comment-thread .comment-meta a.date:focus,
6820 #content > .comment-thread .comment-meta a.permalink:focus {
6821 color: #ccc;
6822 outline: 2px dotted #ccc;
6823 position: relative;
6824 background-color: #444;
6826 #content > .comment-thread .comment-meta a.date:focus {
6827 padding: 0 6px;
6828 left: -6px;
6830 #content > .comment-thread .comment-meta a.date:focus + * {
6831 margin-left: -12px;
6833 #content > .comment-thread .comment-meta a.permalink:focus {
6834 padding: 0 5px;
6835 left: -5px;
6837 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6838 margin-left: -10px;
6840 .comment-item {
6841 border: 1px solid transparent;
6842 border-left-color: #666;
6843 box-shadow:
6844 1.5px 0 1.5px -1.5px #bbb inset,
6845 1px 0 1px -1px #777 inset;
6847 @-moz-document url-prefix() {
6848 .comment-item {
6849 box-shadow:
6850 1.5px 0 1.5px -1px #bbb inset,
6851 1px 0 1px -1px #777 inset;
6855 a.comment-parent-link::after {
6856 display: none;
6858 a.comment-parent-link::before {
6859 padding: 2px 3px 0 4px;
6862 /*================================*/
6863 /* DEEP COMMENT THREAD COLLAPSING */
6864 /*================================*/
6866 .comment-item input[id^="expand"] + label::after {
6867 color: #f60;
6868 font-weight: 600;
6870 .comment-item input[id^="expand"] + label:hover::after {
6871 color: #c00;
6873 .comment-item input[id^="expand"] + label:active::after,
6874 .comment-item input[id^="expand"] + label:focus::after{
6875 color: #c00;
6877 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6878 border-width: 1px 0 0 0;
6881 /*==============*/
6882 /* COMMENT-META */
6883 /*==============*/
6885 .comment-meta a {
6886 color: #222;
6888 .comment-meta .author {
6889 font-weight: 300;
6890 font-size: 1.125em;
6891 color: #444;
6892 font-weight: normal;
6894 .comment-item .author:not(.redacted).original-poster::after {
6895 opacity: 0.8;
6898 .comment-item .voting-controls.active-controls::after,
6899 .comment-item .voting-controls .karma-value::after,
6900 .post .voting-controls.active-controls::after,
6901 .post .voting-controls .karma-value::after,
6902 .author::before {
6903 background-color: #888;
6904 color: #ccc;
6905 border-radius: 4px;
6906 box-shadow: 0 0 0 1px #bbb inset;
6908 .comment-item .voting-controls.active-controls::after,
6909 .post .voting-controls.active-controls::after {
6910 padding: 6px;
6911 bottom: -46px;
6913 .comment-item .voting-controls .karma-value::after,
6914 .post .voting-controls .karma-value::after {
6915 padding: 2px 8px;
6916 top: -28px;
6917 min-width: 64px;
6920 /*====================*/
6921 /* ANTI-KIBITZER MODE */
6922 /*====================*/
6924 .author.redacted,
6925 .inline-author.redacted {
6926 opacity: 0.8;
6927 font-weight: 300;
6930 .karma-value.redacted {
6931 opacity: 0.6;
6934 .link-post-domain.redacted {
6935 opacity: 0.6;
6938 /*===========================*/
6939 /* COMMENT THREAD NAVIGATION */
6940 /*===========================*/
6942 div.comment-parent-link {
6943 font-weight: 400;
6945 a.comment-parent-link {
6946 font-weight: 300;
6948 a.comment-parent-link::before {
6949 color: #666;
6951 a.comment-parent-link:hover::before {
6952 color: #aaa;
6955 div.comment-child-links {
6956 font-weight: 400;
6958 div.comment-child-links a {
6959 font-weight: 300;
6961 .comment-child-link::before {
6962 color: #666;
6965 .comment-item-highlight {
6966 box-shadow:
6967 0 0 2px #e7b200,
6968 0 0 3px #e7b200,
6969 0 0 5px #e7b200,
6970 0 0 7px #e7b200,
6971 0 0 10px #e7b200;
6972 border: 1px solid #e7b200;
6974 .comment-item-highlight-faint {
6975 box-shadow:
6976 0 0 2px #f8e7b5,
6977 0 0 3px #f8e7b5,
6978 0 0 5px #f8e7b5,
6979 0 0 7px #f8e7b5,
6980 0 0 10px #f8e7b5;
6981 border: 1px solid #f8e7b5;
6984 .comment-popup {
6985 background-color: #949494;
6988 /*=======================*/
6989 /* COMMENTS COMPACT VIEW */
6990 /*=======================*/
6992 #comments-list-mode-selector button {
6993 box-shadow:
6994 0 0 0 4px #888 inset,
6995 0 0 0 5px #ccc inset;
6997 #comments-list-mode-selector button:hover,
6998 #comments-list-mode-selector button.selected {
6999 box-shadow:
7000 0 0 0 1px #888 inset,
7001 0 0 0 2px #ccc inset,
7002 0 0 0 4px #888 inset,
7003 0 0 0 5px #ccc inset;
7005 #content.compact > .comment-thread .comment-item::after {
7006 color: #ccc;
7007 background: linear-gradient(to right, transparent 0%, #888 50%, #888 100%);
7010 @media only screen and (hover: hover) {
7011 #content.compact > .comment-thread .comment-item:hover .comment,
7012 #content.compact > .comment-thread .comment-item.expanded .comment {
7013 background-color: #999;
7014 outline: 3px solid #ccc;
7016 #content.compact > .comment-thread .comment-item:hover .comment::before,
7017 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7018 background-color: #999;
7019 box-shadow:
7020 0 0 3px #999,
7021 0 0 5px #999,
7022 0 0 7px #999,
7023 0 0 10px #999,
7024 0 0 20px #999,
7025 0 0 30px #999,
7026 0 0 40px #999;
7029 @media only screen and (hover: none) {
7030 #content.compact > .comment-thread.expanded .comment-item .comment {
7031 background-color: #999;
7032 outline: 3px solid #ccc;
7034 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7035 background-color: #999;
7036 box-shadow:
7037 0 0 3px #999,
7038 0 0 5px #999,
7039 0 0 7px #999,
7040 0 0 10px #999,
7041 0 0 20px #999,
7042 0 0 30px #999,
7043 0 0 40px #999;
7047 #content.user-page.compact > h1.listing {
7048 margin-top: 0.5rem;
7050 #content.user-page.compact > h1.listing + .post-meta {
7051 margin-bottom: 0.5rem;
7054 /*===========================*/
7055 /* HIGHLIGHTING NEW COMMENTS */
7056 /*===========================*/
7058 .new-comment::before {
7059 display: none;
7061 .new-comment {
7062 border: 1px solid #e00;
7063 box-shadow:
7064 0 0 1px #f00,
7065 0 0 1px #f00 inset;
7068 /*=================================*/
7069 /* COMMENT THREAD MINIMIZE BUTTONS */
7070 /*=================================*/
7072 .comment-minimize-button {
7073 color: #777;
7075 .comment-minimize-button:hover {
7076 color: #aaa;
7077 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7079 .comment-minimize-button::after {
7080 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7081 color: #777;
7083 .comment-minimize-button.maximized::after {
7084 color: #ccc;
7087 /*====================*/
7088 /* COMMENT PERMALINKS */
7089 /*====================*/
7090 /*==================*/
7091 /* COMMENT LW LINKS */
7092 /*==================*/
7094 .comment-meta .permalink::before,
7095 .comment-meta .lw2-link::before,
7096 .individual-thread-page a.comment-parent-link:empty::before {
7097 opacity: 1.0;
7098 filter: saturate(10%) contrast(20%);
7101 /*=================================*/
7102 /* INDIVIDUAL COMMENT THREAD PAGES */
7103 /*=================================*/
7105 .individual-thread-page > h1 {
7106 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
7107 font-weight: 200;
7110 /*==============*/
7111 /* VOTE BUTTONS */
7112 /*==============*/
7114 .vote {
7115 position: relative;
7117 .vote::before {
7118 position: relative;
7119 z-index: 1;
7121 .vote::after {
7122 position: absolute;
7125 .karma .upvote::before {
7126 content: "\F077";
7127 top: 1px;
7129 .karma .downvote::before {
7130 content: "\F078";
7131 left: -2px;
7133 .karma .upvote::after {
7134 content: "\F325";
7135 left: 6px;
7136 bottom: 4px;
7138 .karma .downvote::after {
7139 content: "\F322";
7140 left: 4px;
7141 top: 4px;
7143 @-moz-document url-prefix() {
7144 .karma .upvote::after {
7145 left: 4px;
7146 bottom: 4px;
7148 .karma .downvote::after {
7149 left: 2px;
7150 top: 5px;
7154 .agreement .upvote::before {
7155 content: "\F00C";
7156 top: 1px;
7158 .agreement .downvote::before {
7159 content: "\F00D";
7160 left: -2px;
7162 .agreement .upvote::after {
7163 content: "\F560";
7164 left: 6px;
7165 bottom: 2px;
7167 .agreement .downvote::after {
7168 content: "\E59B";
7169 left: 2px;
7170 top: 1px;
7172 @-moz-document url-prefix() {
7173 .agreement .upvote::after {
7174 left: 4px;
7175 bottom: 2px;
7177 .agreement .downvote::after {
7178 left: 0;
7179 top: 1px;
7183 /**********/
7184 /* States.
7187 /* _ 1
7189 .vote {
7190 color: #666;
7193 /* _ 2
7195 .upvote:hover,
7196 .upvote:not(.none) {
7197 color: var(--GW-upvote-button-color);
7198 text-shadow:
7199 0 0 0.5px #fff,
7200 0 0 8px #0f0;
7202 .downvote:hover,
7203 .downvote:not(.none) {
7204 color: var(--GW-downvote-button-color);
7205 text-shadow:
7206 0 0 0.5px #fff,
7207 0 0 8px #f00;
7210 /* 0 _
7212 .vote::after {
7213 visibility: hidden;
7216 /* 1,2 _
7218 .vote.two-temp::after,
7219 .vote.two::after {
7220 visibility: visible;
7223 /* 1 _
7225 .vote.two-temp::after {
7226 color: #666;
7227 text-shadow: none;
7230 /* Disabled.
7232 .vote:disabled {
7233 visibility: unset;
7234 color: #808080;
7236 .vote:disabled:hover {
7237 text-shadow: none;
7240 /*===========================*/
7241 /* COMMENTING AND POSTING UI */
7242 /*===========================*/
7244 .comment-controls .cancel-comment-button {
7245 font-weight: normal;
7246 color: #f00;
7248 .comment-controls .cancel-comment-button:hover {
7249 color: #f00;
7250 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7253 .posting-controls .action-button,
7254 .posting-controls input[type='submit'] {
7255 font-weight: normal;
7257 .posting-controls .action-button:hover,
7258 .posting-controls input[type='submit']:hover {
7259 text-decoration: underline;
7260 color: #444;
7263 .comment-controls .delete-button,
7264 .comment-controls .retract-button {
7265 color: #900;
7267 .comment-controls .edit-button,
7268 .comment-controls .unretract-button {
7269 color: #070;
7271 .comment-controls .action-button:hover {
7272 color: #bbb;
7273 text-decoration: none;
7276 .edit-post-link,
7277 .edit-post-link:visited {
7278 color: #090;
7281 .posting-controls textarea {
7282 font-weight: 300;
7283 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
7284 color: #000;
7285 background-color: transparent;
7286 border-color: #999;
7287 text-shadow:
7288 0px 0px 1px #777,
7289 0.5px 0.5px 1px #aaa,
7290 0.5px 0.5px 1px #bbb;
7292 @-moz-document url-prefix() {
7293 .posting-controls textarea {
7294 font-weight: 400;
7297 .posting-controls textarea:focus {
7298 border-color: #ccc;
7301 /*= Scroll bars =*/
7303 .posting-controls textarea::-webkit-scrollbar {
7304 width: 16px;
7305 background-color: transparent;
7307 .posting-controls textarea::-webkit-scrollbar-track {
7308 border-left: 1px solid #999;
7310 .posting-controls textarea:focus::-webkit-scrollbar-track {
7311 border-left: 1px solid #999;
7313 .posting-controls textarea::-webkit-scrollbar-thumb {
7314 background-color: #999;
7315 box-shadow: 0 0 0 1px #888 inset;
7316 border-left: 1px solid #999;
7318 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7319 border-left: 1px solid #999;
7320 background-color: #ccc;
7321 box-shadow: 0 0 0 1px #888 inset;
7324 /* GUIEdit buttons */
7326 .guiedit-buttons-container {
7327 background-color: #888;
7328 box-shadow: 0 -1px 0 0 #999 inset;
7330 .textarea-container:focus-within .guiedit-buttons-container {
7331 box-shadow: 0 -1px 0 0 #ccc inset;
7334 button.guiedit {
7335 color: #444;
7336 background-color: transparent;
7337 font-family: Font Awesome, Source Sans Pro, Trebuchet MS, Helvetica, Arial, Verdana, sans-serif;
7339 button.guiedit::after {
7340 font-family: Proxima Nova;
7341 font-weight: 300;
7342 color: #444;
7343 top: 2px;
7344 height: 25px;
7346 button.guiedit:hover {
7347 color: #ccc;
7350 /* Markdown hints */
7352 #markdown-hints-checkbox + label {
7353 color: #444;
7355 #markdown-hints-checkbox + label:hover {
7356 text-decoration: underline;
7358 #markdown-hints {
7359 background-color: #888;
7360 border: 1px solid #ccc;
7363 /*================*/
7364 /* EDIT POST FORM */
7365 /*================*/
7367 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7368 border-radius: 3px;
7369 border: 1px solid #999;
7370 color: #aaa;
7372 @media only screen and (hover:hover) {
7373 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7374 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7375 text-decoration: underline;
7377 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7378 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7379 border-color: #ccc;
7382 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7383 content: "\F00C";
7385 #edit-post-form input[type='radio'] + label {
7386 color: #444;
7387 border-color: #999;
7389 #edit-post-form input[type='radio'][value='all'] + label {
7390 border-radius: 8px 0 0 8px;
7391 border-width: 1px;
7393 #edit-post-form input[type='radio'][value='drafts'] + label {
7394 border-radius: 0 8px 8px 0;
7396 #edit-post-form input[type='radio'] + label:hover,
7397 #edit-post-form input[type='radio']:focus + label,
7398 #edit-post-form input[type='radio']:checked + label {
7399 background-color: #999;
7401 #edit-post-form input[type='radio'] + label:hover,
7402 #edit-post-form input[type='radio']:focus + label {
7403 color: #000;
7405 #edit-post-form input[type='radio']:active + label,
7406 #edit-post-form input[type='radio']:checked + label {
7407 color: #fff;
7410 /*=======*/
7411 /* LINKS */
7412 /*=======*/
7415 text-decoration: none;
7416 color: #f60;
7418 a:hover {
7419 text-decoration: underline;
7422 /*=========*/
7423 /* BUTTONS */
7424 /*=========*/
7426 button,
7427 input[type='submit'] {
7428 color: #444;
7429 font-weight: normal;
7432 .button,
7433 .button:visited {
7434 color: #444;
7437 button:hover,
7438 input[type='submit']:hover,
7439 button:focus,
7440 input[type='submit']:focus {
7441 color: #aaa;
7443 input[type='submit']:hover,
7444 input[type='submit']:focus {
7445 text-decoration: underline;
7447 button:active,
7448 input[type='submit']:active {
7449 color: #ccc;
7450 transform: scale(0.9);
7452 .button:hover {
7453 color: #aaa;
7455 .button:active {
7456 transform: scale(0.9);
7458 .button:focus:not(:hover) {
7459 transform: none;
7461 @-moz-document url-prefix() {
7462 .button:active {
7463 transform: none;
7467 /*==========*/
7468 /* HEADINGS */
7469 /*==========*/
7471 .body-text h1,
7472 .body-text h2,
7473 .body-text h3,
7474 .body-text h4,
7475 .body-text h5,
7476 .body-text h6 {
7477 font-weight: 100;
7478 text-shadow:
7479 0px 0px 1px #777,
7480 0.5px 0.5px 1px #aaa,
7481 0.5px 0.5px 1px #bbb;
7483 .post-body h1 strong,
7484 .post-body h2 strong,
7485 .post-body h3 strong,
7486 .post-body h4 strong,
7487 .post-body h5 strong,
7488 .post-body h6 strong {
7489 font-weight: normal;
7491 .body-text h6 {
7492 color: #555;
7494 .body-text h1 {
7495 padding-bottom: 2px;
7496 border-bottom-color: #777;
7498 .post-body h2 {
7499 border-bottom: 1px dotted #ccc;
7502 /*========*/
7503 /* QUOTES */
7504 /*========*/
7506 blockquote {
7507 border-left: 5px solid #777;
7510 /*========*/
7511 /* IMAGES */
7512 /*========*/
7514 #content img,
7515 #content figure.image img {
7516 border: 1px solid #666;
7518 #content figure img {
7519 border: 1px solid #000;
7521 #content img[src$='.svg'],
7522 #content figure img[src$='.svg'] {
7523 border: none;
7525 #content img[style^='float'] {
7526 border: 1px solid transparent;
7529 /*========*/
7530 /* TABLES */
7531 /*========*/
7533 #content:not(.tag-index-page) .body-text table,
7534 #content:not(.tag-index-page) .body-text table th,
7535 #content:not(.tag-index-page) .body-text table td {
7536 border: 1px solid #ccc;
7539 /*======*/
7540 /* MISC */
7541 /*======*/
7543 hr {
7544 border-bottom: 1px solid #999;
7547 code,
7548 pre {
7549 font-family: 'Tired of Courier', Courier, Courier New, monospace;
7550 font-size: 0.9375em;
7553 pre {
7554 border: 1px solid #444;
7555 box-shadow:
7556 0px 0px 1px #777,
7557 1px 1px 1px #aaa inset,
7558 1px 1px 1px #bbb;
7561 input[type='text'],
7562 input[type='search'],
7563 input[type='password'] {
7564 border: 1px solid #999;
7565 color: #000;
7566 background-color: transparent;
7568 input[type='text']:focus,
7569 input[type='search']:focus,
7570 input[type='password']:focus {
7571 border: 1px solid #ccc;
7574 select {
7575 color: #000;
7578 .frac {
7579 padding-left: 2px;
7580 font-feature-settings: 'lnum';
7581 font-size: 0.95em;
7583 .frac sup {
7584 position: relative;
7585 left: -1px;
7587 .frac sub {
7588 position: relative;
7589 left: -0.5px;
7592 .body-text *::selection,
7593 textarea::selection,
7594 input::selection {
7595 background-color: #d8d8d8;
7598 /*============*/
7599 /* ABOUT PAGE */
7600 /*============*/
7602 .about-page mark {
7603 background-color: #e6e6e6;
7604 text-decoration: none;
7605 box-shadow:
7606 0 -1px 0 0 #000 inset,
7607 0 -3px 1px -2px #000 inset;
7608 padding: 0 1px;
7611 #content.about-page .accesskey-table {
7612 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7613 border-color: #ddd;
7616 #content.about-page img {
7617 border: 1px solid #000;
7620 /*========================*/
7621 /* QUALIFIED HYPERLINKING */
7622 /*========================*/
7624 #aux-about-link a {
7625 color: #444;
7627 #aux-about-link a:hover {
7628 opacity: 1.0;
7629 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7632 .qualified-linking label:hover {
7633 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7636 .qualified-linking-toolbar {
7637 border: 1px solid #000;
7638 background-color: #777;
7640 .qualified-linking-toolbar a {
7641 border: 1px solid #888;
7642 border-radius: 4px;
7643 color: #444;
7645 .qualified-linking-toolbar a:hover {
7646 border: 1px solid #999;
7647 text-decoration: none;
7648 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7650 .qualified-linking label::after {
7651 background-color: #888;
7652 opacity: 0.8;
7655 /*======*/
7656 /* MATH */
7657 /*======*/
7659 .mathjax-block-container::-webkit-scrollbar {
7660 height: 12px;
7661 background-color: #f6f6ff;
7662 border-radius: 6px;
7663 border: 1px solid #ddf;
7665 .mathjax-block-container::-webkit-scrollbar-thumb {
7666 background-color: #dde;
7667 border-radius: 6px;
7668 border: 1px solid #cce;
7670 .mathjax-inline-container::-webkit-scrollbar {
7671 height: 8px;
7672 background-color: #f6f6ff;
7673 border-radius: 4px;
7674 border: 1px solid #ddf;
7676 .mathjax-inline-container::-webkit-scrollbar-thumb {
7677 background-color: #dde;
7678 border-radius: 4px;
7679 border: 1px solid #cce;
7682 /*=================*/
7683 /* ALIGNMENT FORUM */
7684 /*=================*/
7686 #content.alignment-forum-index-page::before {
7687 background-color: #878a9f;
7689 #content.alignment-forum-index-page::after {
7690 font-family: "Concourse SmallCaps";
7691 font-weight: 600;
7692 background-color: #222d4b;
7693 color: transparent;
7694 -webkit-background-clip: text;
7695 text-shadow:
7696 rgba(136,136,136,0.5) 0px 3px 3px;
7698 @media only screen and (hover: hover) {
7699 #content.alignment-forum-index-page h1.listing a:hover,
7700 #content.alignment-forum-index-page h1.listing a:focus {
7701 background-color: rgba(135,138,159,0.85);
7705 /*====================*/
7706 /* FOR NARROW SCREENS */
7707 /*====================*/
7709 @media only screen and (max-width: 1440px) {
7710 #hns-date-picker {
7711 background-color: #888;
7712 bottom: 61px;
7713 opacity: 1.0;
7714 right: -77px;
7716 #hns-date-picker::before {
7717 display: none;
7720 @media only screen and (max-width: 1160px) {
7721 #hns-date-picker {
7722 bottom: 204px;
7723 right: -30px;
7725 #theme-tweaker-toggle {
7726 left: -19px;
7728 #quick-nav-ui,
7729 #new-comment-nav-ui,
7730 #new-comment-nav-ui + #hns-date-picker {
7731 opacity: 1.0;
7734 @media only screen and (max-width: 1080px) {
7735 #text-size-adjustment-ui button {
7736 border: 1px solid #999;
7737 padding: 0 0 0 1px;
7738 border-radius: 50%;
7739 box-shadow:
7740 0 0 6px #999 inset,
7741 0 0 0 1px transparent;
7743 #hns-date-picker {
7744 right: -18px;
7747 @media only screen and (max-width: 1040px) {
7748 #hns-date-picker {
7749 right: -13px;
7752 @media only screen and (max-width: 1020px) {
7753 #hns-date-picker {
7754 right: 15px;
7758 /*========*/
7759 /* MOBILE */
7760 /*========*/
7762 /*******************************************************/
7763 @media not screen and (hover:hover) and (pointer:fine) {
7764 /*******************************************************/
7765 #ui-elements-container > div[id$='-ui-toggle'] button,
7766 #theme-selector .theme-selector-close-button {
7767 color: #444;
7768 text-shadow:
7769 0 0 1px #999,
7770 0 0 3px #999,
7771 0 0 5px #999,
7772 0 0 10px #999,
7773 0 0 20px #999,
7774 0 0 30px #999;
7777 #theme-selector {
7778 background-color: #888;
7779 box-shadow:
7780 0 0 0 1px #444,
7781 0 0 1px 3px #999,
7782 0 0 3px 3px #999,
7783 0 0 5px 3px #999,
7784 0 0 10px 3px #999,
7785 0 0 20px 3px #999;
7786 border-radius: 12px;
7788 #theme-selector::before {
7789 color: #222;
7790 font-weight: 300;
7791 text-shadow:
7792 0px 0px 1px #777,
7793 0.5px 0.5px 1px #aaa,
7794 0.5px 0.5px 1px #bbb;
7796 #theme-selector button {
7797 border-radius: 10px;
7799 #theme-selector button::after {
7800 color: #444;
7801 max-width: calc(100% - 3.5em);
7802 overflow: hidden;
7803 text-overflow: ellipsis;
7805 #theme-selector button.selected::after {
7806 color: #000;
7807 text-shadow:
7808 0 -1px 0 #fff,
7809 0 0.5px 0.5px #000;
7812 #quick-nav-ui {
7813 background-color: #999;
7815 #quick-nav-ui a {
7816 background-color: #888;
7817 box-shadow: 0 0 0 1px #444;
7818 color: #444;
7820 #quick-nav-ui,
7821 #new-comment-nav-ui,
7822 #hns-date-picker {
7823 box-shadow:
7824 0 0 1px 3px #999,
7825 0 0 3px 3px #999,
7826 0 0 5px 3px #999,
7827 0 0 10px 3px #999,
7828 0 0 20px 3px #999;
7830 #quick-nav-ui a::after,
7831 #new-comment-nav-ui::before {
7832 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7833 font-weight: bold;
7834 box-shadow:
7835 0 0 1px 0 #999,
7836 0 0 3px 0 #999,
7837 0 0 5px 0 #999;
7838 background-color: #999;
7839 border-radius: 4px;
7841 #quick-nav-ui,
7842 #new-comment-nav-ui {
7843 border-radius: 8px;
7845 #new-comment-nav-ui {
7846 background-color: #888;
7847 border: 1px solid #444;
7849 #new-comment-nav-ui::before {
7850 color: #444;
7851 font-weight: bold;
7853 #new-comment-nav-ui .new-comments-count,
7854 #new-comment-nav-ui .new-comments-count::after {
7855 color: #444;
7857 #new-comment-nav-ui .new-comment-sequential-nav-button {
7858 box-shadow: 0 0 0 1px #444;
7859 color: #444;
7861 #new-comment-nav-ui .new-comments-count {
7862 background-color: inherit;
7863 box-shadow: 0 -1px 0 0 #444;
7865 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7866 color: #999;
7868 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7869 border-radius: 7px 0 0 7px;
7871 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7872 border-radius: 0 7px 7px 0;
7874 #new-comment-nav-ui button::after {
7875 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7878 #hns-date-picker.engaged {
7879 bottom: 124px;
7880 right: 61px;
7881 border: 1px solid #444;
7883 #hns-date-picker span,
7884 #hns-date-picker input {
7885 color: #444;
7888 /*****************************************/
7889 @media only screen and (max-width: 900px) {
7890 /*****************************************/
7891 h1.listing + .post-meta .post-section::before {
7892 position: unset;
7895 .nav-bar-top:not(#primary-bar) .nav-inner {
7896 font-size: 1em;
7898 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
7899 padding: 6px 10px;
7902 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7903 background-color: #ccc;
7906 .comment-item .comment-item {
7907 margin: 0.75em 0 4px 6px;
7909 .comment-item .comment-item + .comment-item {
7910 margin: 1.5em 0 4px 6px;
7913 .comment-controls .cancel-comment-button::before {
7914 text-shadow:
7915 0 0 1px #fff,
7916 0 0 3px #fff;
7919 .sublevel-nav:not(.sort) .sublevel-item,
7920 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7921 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7922 border-radius: 8px;
7923 border-width: 1px;
7924 margin: 2px;
7926 /*****************************************/
7927 } @media only screen and (max-width: 720px) {
7928 /*****************************************/
7929 /*******************************************/
7930 } @media only screen and (max-width: 520px) {
7931 /*******************************************/
7932 h1.listing {
7933 font-size: 1.25rem;
7934 margin: 18px 6px 4px 6px;
7935 max-width: calc(100% - 12px);
7937 h1.listing + .post-meta {
7938 margin: 4px 6px;
7940 h1.listing + .post-meta > * {
7941 line-height: 1.5;
7943 h1.listing .link-post-link {
7944 top: 3px;
7947 #content.compact > .comment-thread .comment-item {
7948 max-height: 105px;
7951 .textarea-container:focus-within textarea {
7952 background-color: #888;
7954 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7955 border: 1px solid transparent;
7956 padding: 6px;
7958 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7959 box-shadow:
7960 0 0 0 1px #ccc,
7961 0 0 0 2px #888,
7962 0 0 0 3px #ccc;
7963 color: #ccc;
7964 font-weight: 600;
7966 .textarea-container:focus-within .guiedit-buttons-container {
7967 background-color: #888;
7968 border-top: 1px solid #ddf;
7970 #content.conversation-page .textarea-container:focus-within::after {
7971 background-color: #888;
7973 .textarea-container:focus-within button.guiedit {
7974 border: 1px solid transparent;
7976 #markdown-hints::after {
7977 color: #0f0;
7980 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7981 top: 2px;
7983 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7984 top: 1px;
7989 /*************/
7990 /* ACCORDIUS */
7991 /*************/
7993 /*======*/
7994 /* TAGS */
7995 /*======*/
7997 #tags {
7998 order: 12;
7999 display: flex;
8000 flex-basis: 100%;
8001 justify-content: center;
8002 margin: 0;
8003 flex-flow: row wrap;
8004 align-items: flex-start;
8007 /*===================*/
8008 /* ULTRAMODERN THEME */
8009 /*===================*/
8011 /*++++++*/
8012 /* TAGS */
8013 /*++++++*/
8015 #tags {
8016 padding: 0.5em;
8017 align-items: center;
8019 #tags::before {
8020 content: "\F02C";
8021 font-family: Font Awesome;
8022 font-weight: 400;
8023 font-size: 0.875em;
8024 margin: 0 0.5em 0 0;
8025 opacity: 0.6;
8027 #tags a {
8028 margin: 0 0.375em 0 0;
8030 #tags a:not(:last-of-type)::after {
8031 content: ","