Fix top margin of main heading on collection pages.
[lw2-viewer.git] / www / css / style-rts.windows.css
blobc4cd2ace5e103f45bdbe6165c8e17f0d51ffd547
2 /*************/
3 /* VARIABLES */
4 /*************/
6 :root {
7 --GW-comment-background-color-odd: transparent;
8 --GW-comment-background-color-even: transparent;
9 --GW-comment-background-color-target: transparent;
11 --inverted-display: none;
14 /***************/
15 /* BASE LAYOUT */
16 /***************/
18 html {
19 box-sizing: border-box;
20 font-size: 16px;
22 *, *::before, *::after {
23 box-sizing: inherit;
25 script {
26 display: none !important;
29 /*=------=*/
30 /*= Body =*/
31 /*=------=*/
33 body {
34 padding: 0;
35 margin: 0;
37 body::before {
38 background-color: inherit;
39 position: fixed;
40 width: 100%;
41 height: 100%;
44 body.no-scroll {
45 overflow-y: scroll;
46 position: fixed;
47 width: 100%;
50 /*=----------------------------=*/
51 /*= Immediate children of body =*/
52 /*=----------------------------=*/
54 body > * {
55 max-width: 900px;
58 /* Special styles for special browsers.
59 (This one is a fix for Firefox’s built-in screenshot feature.)
61 body > iframe[id^='firefox-screenshots'] {
62 max-width: unset;
65 #content {
66 margin: 0 auto;
67 padding: 0 30px;
68 position: relative;
69 overflow: visible;
70 display: grid;
71 grid-template-columns: 2fr 1fr 2fr;
73 #content::before {
74 content: "";
75 display: block;
76 position: absolute;
77 top: 0;
78 left: 0;
79 width: 100%;
80 height: 100%;
81 z-index: -1;
82 pointer-events: none;
85 /*=---------=*/
86 /*= Content =*/
87 /*=---------=*/
89 #content > * {
90 grid-column: 1 / span 3;
93 /*=----------------------=*/
94 /*= Floating UI elements =*/
95 /*=----------------------=*/
97 #ui-elements-container {
98 position: fixed;
99 height: 100vh;
100 top: 0;
101 left: 0;
102 right: 0;
103 margin: auto;
104 z-index: 10000;
105 pointer-events: none;
107 #ui-elements-container > * {
108 pointer-events: auto;
111 /*=----------------=*/
112 /*= Images overlay =*/
113 /*=----------------=*/
114 /* (To exclude images in posts from theme tweaks) */
116 #images-overlay {
117 position: absolute;
118 z-index: 1;
119 left: 0;
120 right: 0;
121 margin: auto;
124 /***********/
125 /* NAV BAR */
126 /***********/
128 .nav-bar {
129 margin: 0 -30px;
130 display: flex;
131 order: -11;
132 z-index: 1;
135 /*=---------------=*/
136 /*= Nav bar items =*/
137 /*=---------------=*/
139 .nav-item {
140 flex: 1 1 auto;
142 .nav-item * {
143 text-overflow: ellipsis;
144 white-space: nowrap;
145 overflow: hidden;
147 .nav-inner {
148 padding: 12px 30px;
149 text-align: center;
150 display: block;
151 position: relative;
152 line-height: inherit;
153 width: 100%;
154 background: unset;
156 .nav-bar-top:not(#primary-bar) .nav-inner {
157 padding: 4px 0;
160 #nav-item-sequences .nav-inner::before {
161 font-family: "Font Awesome", "Font Awesome 5 Free";
162 content: "\F5DB";
164 @media only screen and (min-width: 901px) {
165 #nav-item-about .nav-inner {
166 margin-right: 0.5em;
168 #nav-item-sequences .nav-inner::before {
169 font-size: 1rem;
170 display: block;
172 #secondary-bar #nav-item-sequences .nav-inner {
173 font-size: 0;
174 line-height: 1.4;
178 /*=------------=*/
179 /*= Bottom bar =*/
180 /*=------------=*/
182 #bottom-bar {
183 order: 11;
185 h1.listing ~ #bottom-bar {
186 margin-top: 1.25em;
188 #bottom-bar .nav-item {
189 flex: 1 1 0;
192 /*=-----------------=*/
193 /*= Accesskey hints =*/
194 /*=-----------------=*/
196 .nav-inner::after {
197 content: attr(accesskey);
198 display: none;
201 /*=---------------=*/
202 /*= Pagination UI =*/
203 /*=---------------=*/
205 #bottom-bar .nav-item a::before,
206 #top-nav-bar a::before {
207 font-family: "Font Awesome", "Font Awesome 5 Free";
208 font-weight: 900;
209 font-size: 0.8em;
210 position: relative;
211 bottom: 1px;
212 margin-right: 0.5em;
214 #bottom-bar #nav-item-first a::before,
215 #top-nav-bar a.nav-item-first::before {
216 content: "\F33e";
218 #bottom-bar #nav-item-top a::before {
219 content: "\F062";
221 #bottom-bar #nav-item-prev a::before,
222 #top-nav-bar a.nav-item-prev::before {
223 content: "\F060";
225 #bottom-bar #nav-item-next a::before,
226 #top-nav-bar a.nav-item-next::before {
227 content: "\F061";
229 #bottom-bar #nav-item-last a::before,
230 #top-nav-bar a.nav-item-last::before {
231 content: "\F340";
233 #bottom-bar #nav-item-next a::before {
234 margin-left: -2em;
235 margin-right: 0;
236 left: 3.8em;
238 #bottom-bar #nav-item-last a::before {
239 margin-left: -1.8em;
240 margin-right: 0;
241 left: 3.4em;
244 /*= Hover tooltips =*/
246 #top-nav-bar a {
247 position: relative;
249 #top-nav-bar a::after {
250 bottom: calc(100% - 3px);
251 content: attr(data-target-page);
253 #top-nav-bar a::after {
254 display: block;
255 position: absolute;
256 font-size: 0.75rem;
257 width: 100%;
258 line-height: 1;
259 visibility: hidden;
261 #top-nav-bar a:hover::after,
262 #bottom-bar a:hover::after {
263 visibility: visible;
266 /*=-----------------------=*/
267 /*= Decorative bottom bar =*/
268 /*=-----------------------=*/
269 /* (On short pages with no pagination) */
271 #bottom-bar.decorative {
272 position: relative;
274 #bottom-bar.decorative .nav-item {
275 display: none;
278 /*=------------=*/
279 /*= Search tab =*/
280 /*=------------=*/
282 #nav-item-search {
283 flex: 4 1 auto;
285 #nav-item-search form::before {
286 content: "\F002";
287 font-family: "Font Awesome", "Font Awesome 5 Free";
288 font-weight: 900;
289 display: inline-block;
290 vertical-align: top;
291 height: 23px;
292 width: 23px;
294 #nav-item-search input {
295 height: 23px;
296 width: calc(95% - 80px);
297 padding: 1px 4px;
299 #nav-item-search button {
300 height: 21px;
303 /*=-----------=*/
304 /*= Login tab =*/
305 /*=-----------=*/
307 #nav-item-login {
308 position: relative;
309 padding-right: 0.5em;
312 /*******************/
313 /* INBOX INDICATOR */
314 /*******************/
316 #inbox-indicator {
317 position: absolute;
318 top: 1px;
319 right: 0;
320 height: 100%;
321 visibility: hidden;
323 #inbox-indicator::before {
324 content: "\F0E0";
325 font-family: "Font Awesome", "Font Awesome 5 Free";
326 color: #bbb;
327 font-size: 1.1875rem;
328 position: absolute;
329 height: 100%;
330 right: 0;
331 top: 0;
332 padding: 0 0.45em;
333 visibility: visible;
334 font-weight: 900;
336 #inbox-indicator.new-messages::before {
337 color: #f00;
338 text-shadow:
339 0 0 1px #777,
340 0.5px 0.5px 1px #777;
342 a#inbox-indicator:hover::before {
343 color: #fff;
344 text-shadow:
345 0 0 1px #000,
346 0 0 2px #000,
347 0 0 4px #000,
348 0 0 1px #777,
349 0.5px 0.5px 1px #777;
351 a#inbox-indicator.new-messages:hover::before {
352 text-shadow:
353 0 0 1px #f00,
354 0 0 2px #f00,
355 0 0 4px #f00,
356 0 0 1px #777,
357 0.5px 0.5px 1px #777;
360 /****************/
361 /* PAGE TOOLBAR */
362 /****************/
364 .page-toolbar {
365 font-size: 0.9em;
366 line-height: 1.8;
367 text-align: right;
368 margin-right: -20px;
370 #content > .page-toolbar {
371 grid-column: 3;
372 grid-row: span 3;
374 #content.user-page > .page-toolbar {
375 grid-column: 2 / span 2;
376 order: -4;
379 /*=--------------------------=*/
380 /*= Page toolbar items (all) =*/
381 /*=--------------------------=*/
383 .page-toolbar > * {
384 display: inline-block;
385 margin-left: 1.5em;
387 .page-toolbar > form button {
388 padding: 0;
389 text-align: right;
390 white-space: unset;
392 .page-toolbar > form button::before {
393 text-align: center;
395 .page-toolbar .button::before {
396 font-family: "Font Awesome", "Font Awesome 5 Free";
397 font-size: 0.9em;
398 padding-right: 0.3em;
401 /*=-------------------------------=*/
402 /*= Page toolbar items (specific) =*/
403 /*=-------------------------------=*/
405 .new-post::before {
406 content: '\F067';
407 font-weight: 900;
409 .new-private-message::before {
410 content: '\F075';
411 font-weight: 400;
413 .logout-button::before {
414 content: '\F2F5';
415 font-weight: 900;
417 #enable-push-notifications::before {
418 content: '\F0F3';
419 font-weight: 400;
421 .ignore-button::before {
422 content: "\F070";
423 font-weight: 400;
425 .unignore-button::before {
426 content: "\F06E";
427 font-weight: 400;
429 .rss::before {
430 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
431 display: inline-block;
432 width: 1em;
433 padding-right: 0.2em;
434 position: relative;
435 top: 1px;
438 /*********************/
439 /* TOP PAGINATION UI */
440 /*********************/
442 #top-nav-bar {
443 grid-column: 2;
444 margin: 0.25em 0 0 0;
445 padding: 0.75em 0 0 0;
446 text-align: center;
447 font-size: 1.25em;
448 display: flex;
449 justify-content: center;
451 #top-nav-bar a {
452 line-height: 1;
454 #top-nav-bar a.disabled {
455 pointer-events: none;
456 visibility: hidden;
458 #top-nav-bar .page-number {
459 position: relative;
460 display: inline-block;
461 width: 1.5em;
463 #top-nav-bar .page-number-label {
464 position: absolute;
465 font-size: 0.5em;
466 text-transform: uppercase;
467 width: 100%;
468 bottom: 90%;
469 left: 0;
471 #top-nav-bar a::before {
472 margin: 0.5em;
473 display: inline-block;
476 /****************/
477 /* SUBLEVEL NAV */
478 /****************/
480 .sublevel-nav {
481 text-align: center;
482 display: flex;
483 justify-content: center;
484 margin: 1em 0 0 0;
486 #content > .sublevel-nav:not(.sort) {
487 grid-column: 2;
488 align-self: start;
490 .sublevel-nav .sublevel-item {
491 flex: 0 0 6em;
492 padding: 0.125em 0.5em;
493 font-size: 1.125rem;
495 .sublevel-nav .sublevel-item:active {
496 transform: none;
498 .sublevel-nav .sublevel-item.selected {
499 cursor: default;
502 /***********************/
503 /* SORT ORDER SELECTOR */
504 /***********************/
506 .sublevel-nav.sort {
507 position: relative;
508 margin-top: 8px;
509 font-size: 0.75em;
511 #content > .sublevel-nav.sort {
512 grid-column: 3;
513 grid-row: span 2;
514 justify-self: end;
515 align-self: start;
516 flex-flow: column;
518 #content.index-page > .sublevel-nav.sort {
519 grid-column: 1;
520 justify-self: start;
521 flex-flow: row;
524 .sublevel-nav.sort::before {
525 content: "Sort";
526 font-size: 0.75rem;
527 position: absolute;
528 top: 0;
529 left: 0;
530 width: 100%;
532 .sublevel-nav.sort .sublevel-item {
533 line-height: 1;
534 font-size: 0.875rem;
535 flex-basis: unset;
538 /*******************************/
539 /* COMMENTS SORT MODE SELECTOR */
540 /*******************************/
542 .comments > .sublevel-nav.sort {
543 margin: 1em auto 0 auto;
545 @supports (width: -moz-fit-content) {
546 .comments > .sublevel-nav.sort {
547 width: -moz-fit-content;
550 @supports (width: fit-content) {
551 .comments > .sublevel-nav.sort {
552 width: fit-content;
556 /******************/
557 /* WIDTH SELECTOR */
558 /******************/
560 #width-selector {
561 position: absolute;
562 top: 4px;
563 right: -78px;
565 #width-selector button {
566 width: 22px;
567 height: 22px;
568 padding: 6px;
569 margin: 1px;
570 overflow: hidden;
571 background-repeat: no-repeat;
572 background-size: 100%;
573 background-origin: content-box;
575 #width-selector button,
576 #width-selector button:active,
577 #width-selector button:focus {
578 text-shadow: none;
579 color: transparent;
581 #width-selector button:disabled {
582 cursor: auto;
584 #width-selector button.select-width-normal {
585 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
587 #width-selector button.select-width-wide {
588 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
590 #width-selector button.select-width-fluid {
591 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
594 /*=----------------=*/
595 /*= Hover tooltips =*/
596 /*=----------------=*/
598 #width-selector button::after {
599 content: attr(data-name);
600 position: absolute;
601 display: block;
602 left: 0;
603 width: 100%;
604 text-align: center;
605 top: 56px;
606 visibility: hidden;
608 #width-selector button.selected::after {
609 content: attr(data-name) " (selected)";
611 #width-selector button:hover:not(:active)::after {
612 visibility: visible;
615 head.content-width-normal + body > * {
616 max-width: 900px;
618 head.content-width-wide + body > * {
619 max-width: 1150px;
621 head.content-width-fluid + body > * {
622 max-width: calc(100% - 300px);
625 /******************/
626 /* THEME SELECTOR */
627 /******************/
629 #theme-selector {
630 position: absolute;
631 top: 3px;
632 left: -41px;
633 opacity: 0.4;
634 display: table;
635 max-width: 40px;
637 #theme-selector:hover {
638 opacity: 1.0;
641 /*=----------------------=*/
642 /*= Theme select buttons =*/
643 /*=----------------------=*/
645 .theme-selector button {
646 display: table-cell;
647 width: 26px;
648 height: 26px;
649 padding: 5px;
650 margin: 1px 7px 0 7px;
651 color: transparent;
652 background-size: 16px 16px;
653 background-origin: content-box;
655 .theme-selector button,
656 .theme-selector button:hover,
657 .theme-selector button:active,
658 .theme-selector button:focus {
659 text-shadow: none;
660 color: transparent;
662 .theme-selector button:disabled {
663 cursor: auto;
666 /*=----------------------------=*/
667 /*= Pre-rendered button images =*/
668 /*=----------------------------=*/
669 /* (Each is just a capital letter A through whatever) */
671 .theme-selector button:nth-of-type(1) {
672 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
674 .theme-selector button:nth-of-type(2) {
675 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
677 .theme-selector button:nth-of-type(3) {
678 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMe7m4+7n5O7o5e7q6e7t7e7u7u/f2O/f2e/g2u/i3PDa0fDb0/Dc1PDd1fDd1vLAq/LKufLKuvLMvfLQwvO4oPO6o/O7pPO8pfO9pvPAq/PBrfPFsvSylvS4n/Wqi/Wxlfakg/aoiPaqi/eadPeeefiMYPiRZ/iTafiTaviUa/iWbfiXb/iYcfqBUPqCUft0Pft3Qft7RvxvNvxxOPx0PPx1Pf1mKP1nKf1nKv1pLP1pLf1qLv1rL/1sMP1tMgAAACwAAAAAIAAgAAAGnsCCcEgsGo/IpHLJbDqf0Kh0Cl1AIBEHtciR2b5f3wpBNbzA6C+OIVXo0mlcI0qAoWmhi8f1jRGiHWgkRQctInQ1YCZbRQlvNnKMRI5fMwOSQxlgJZhDG2B+nQUJOV88AaIAO2AsogUnaCBFBCojUpRgNR8QGiulPQJSgXBpFVMPpcQ2Nw9UAik3aTcoZIwEEhQWGBN/rt7f4OHi451BADs=');
680 .theme-selector button:nth-of-type(4) {
681 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
683 .theme-selector button:nth-of-type(5) {
684 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
686 .theme-selector button:nth-of-type(6) {
687 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
689 .theme-selector button:nth-of-type(7) {
690 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
692 .theme-selector button:nth-of-type(8) {
693 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
695 .theme-selector button:nth-of-type(9) {
696 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
699 /*=------------------------------=*/
700 /*= Theme select button tooltips =*/
701 /*=------------------------------=*/
702 /* (with the name & description of the theme that each button selects) */
704 #theme-selector button {
705 position: relative;
706 z-index: 1;
708 #theme-selector button::before {
709 content: attr(data-theme-name);
710 position: absolute;
711 top: 0;
712 right: 100%;
713 padding: 5px 6px 6px 6px;
714 line-height: 1;
715 width: 6em;
716 text-align: right;
717 z-index: 1;
718 visibility: hidden;
720 #theme-selector:hover button::before {
721 visibility: visible;
723 #theme-selector:hover ~ #theme-tweaker-toggle,
724 #theme-selector:active ~ #theme-tweaker-toggle {
725 z-index: -1;
728 /************************/
729 /* THEME TWEAKER TOGGLE */
730 /************************/
732 #theme-tweaker-toggle {
733 position: absolute;
734 top: 7px;
735 left: -75px;
737 #theme-tweaker-toggle button {
738 font-family: "Font Awesome", "Font Awesome 5 Free";
739 font-weight: 900;
740 font-size: 1.25rem;
741 opacity: 0.4;
742 z-index: 1;
744 #theme-tweaker-toggle button:hover {
745 opacity: 1.0;
748 /*******************/
749 /* QUICKNAV WIDGET */
750 /*******************/
752 #quick-nav-ui {
753 position: absolute;
754 right: -67px;
755 bottom: 20px;
757 #quick-nav-ui a {
758 font-family: "Font Awesome", "Font Awesome 5 Free";
759 font-weight: 900;
760 font-size: 1.5rem;
761 line-height: 1.7;
762 text-align: center;
763 display: block;
764 width: 40px;
765 height: 40px;
766 margin: 10px 0 0 0;
768 #quick-nav-ui a[href='#comments'].no-comments {
769 pointer-events: none;
771 #quick-nav-ui a {
772 visibility: hidden;
774 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
775 visibility: visible;
778 /************************/
779 /* NEW COMMENT QUICKNAV */
780 /************************/
782 #new-comment-nav-ui {
783 position: absolute;
784 right: -112px;
785 bottom: 42px;
787 #new-comment-nav-ui > * {
788 display: block;
789 position: relative;
791 #new-comment-nav-ui.no-comments {
792 display: none;
795 /*=--------------------=*/
796 /*= New comments count =*/
797 /*=--------------------=*/
799 #new-comment-nav-ui .new-comments-count {
800 width: 2em;
801 font-size: 1.25rem;
802 line-height: 1.1;
803 text-align: center;
804 left: 1px;
805 cursor: pointer;
807 #new-comment-nav-ui .new-comments-count::selection {
808 background-color: transparent;
810 #new-comment-nav-ui .new-comments-count::after {
811 content: "NEW";
812 display: block;
813 font-size: 0.625rem;
816 /*=-----------------------------------=*/
817 /*= Next/previous new comment buttons =*/
818 /*=-----------------------------------=*/
820 #new-comment-nav-ui .new-comment-sequential-nav-button {
821 font-size: 1.75rem;
822 font-family: "Font Awesome", "Font Awesome 5 Free";
823 font-weight: 900;
824 width: 1.5em;
825 z-index: 5001;
827 #new-comment-nav-ui .new-comment-previous {
828 top: 8px;
830 #new-comment-nav-ui .new-comment-next {
831 bottom: 6px;
833 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
834 cursor: auto;
835 pointer-events: none;
838 /*******************/
839 /* HNS DATE PICKER */
840 /*******************/
842 #hns-date-picker {
843 position: absolute;
844 bottom: 72px;
845 right: -253px;
846 opacity: 0.6;
848 #hns-date-picker:hover,
849 #hns-date-picker:focus-within {
850 opacity: 1.0;
852 #hns-date-picker.no-comments {
853 display: none;
856 /*=---------------=*/
857 /*= "Since" label =*/
858 /*=---------------=*/
860 #hns-date-picker span {
861 display: block;
862 font-size: 0.75rem;
863 text-transform: uppercase;
866 /*=--------------------=*/
867 /*= "Since" text field =*/
868 /*=--------------------=*/
870 #hns-date-picker input {
871 margin-top: 1px;
872 padding: 1px 3px;
873 width: 140px;
874 text-align: center;
875 box-shadow: 0 0 0 1px transparent;
878 /************************/
879 /* ANTI-KIBITZER TOGGLE */
880 /************************/
882 #anti-kibitzer-toggle {
883 position: absolute;
884 right: -67px;
885 bottom: 225px;
887 #anti-kibitzer-toggle button {
888 display: block;
889 width: 40px;
890 height: 54px;
891 padding: 0;
893 #anti-kibitzer-toggle button::before,
894 #anti-kibitzer-toggle button::after {
895 font-family: "Font Awesome", "Font Awesome 5 Free";
897 #anti-kibitzer-toggle button::before {
898 content: "\F06E";
899 display: block;
900 font-size: 1.75em;
901 font-weight: 400;
903 #anti-kibitzer-toggle button::after {
904 content: "\F007\2004\F164";
905 font-size: 0.875em;
906 font-weight: 900;
908 #anti-kibitzer-toggle.engaged button::before {
909 content: "\F070";
912 /************************/
913 /* TEXT SIZE ADJUSTMENT */
914 /************************/
916 #text-size-adjustment-ui {
917 position: absolute;
918 top: 30px;
919 right: -78px;
920 opacity: 0.4;
922 #text-size-adjustment-ui:hover {
923 opacity: 1.0;
926 /* This doesn't work in Mozilla browsers, so hide it */
927 @-moz-document url-prefix() {
928 #text-size-adjustment-ui {
929 display: none;
933 /*=---------=*/
934 /*= Buttons =*/
935 /*=---------=*/
937 #text-size-adjustment-ui button {
938 font-weight: 900;
939 font-family: "Font Awesome", "Font Awesome 5 Free";
940 font-size: 0.75rem;
941 width: 24px;
942 height: 24px;
943 padding: 0;
945 #text-size-adjustment-ui button.default {
946 font-family: inherit;
947 font-size: 1.125rem;
948 position: relative;
949 top: 1px;
951 #text-size-adjustment-ui button:disabled {
952 opacity: 0.5;
954 #text-size-adjustment-ui button:disabled:hover {
955 cursor: default;
958 /*=----------------=*/
959 /*= Hover tooltips =*/
960 /*=----------------=*/
962 #text-size-adjustment-ui::after {
963 content: "Adjust text size";
964 position: absolute;
965 display: block;
966 left: 0;
967 width: 100%;
968 text-align: center;
969 top: 32px;
970 visibility: hidden;
971 font-size: 0.9em;
973 #text-size-adjustment-ui:hover::after {
974 visibility: visible;
977 /*******************************/
978 /* COMMENTS VIEW MODE SELECTOR */
979 /*******************************/
981 #comments-view-mode-selector {
982 position: absolute;
983 bottom: 30px;
984 left: -40px;
985 opacity: 0.6;
987 #comments-view-mode-selector:hover {
988 opacity: 1.0;
991 /*=---------=*/
992 /*= Buttons =*/
993 /*=---------=*/
995 #comments-view-mode-selector a {
996 display: block;
997 font-family: "Font Awesome", "Font Awesome 5 Free";
998 font-size: 1.25rem;
999 text-align: center;
1000 opacity: 0.4;
1001 padding: 0.25em;
1002 z-index: 1;
1004 #comments-view-mode-selector a.threaded {
1005 transform: scaleY(-1);
1006 font-weight: 900;
1008 #comments-view-mode-selector a.chrono {
1009 font-weight: normal;
1011 #comments-view-mode-selector a.selected,
1012 #comments-view-mode-selector a:hover {
1013 opacity: 1.0;
1014 text-decoration: none;
1016 #comments-view-mode-selector a.selected {
1017 cursor: default;
1020 /*****************/
1021 /* KEYBOARD HELP */
1022 /*****************/
1024 #keyboard-help-overlay {
1025 width: 100vw;
1026 height: 100vh;
1027 background-color: rgba(0,0,0,0.7);
1028 position: fixed;
1029 left: 0;
1030 top: 0;
1031 z-index: 5001;
1033 display: flex;
1034 justify-content: center;
1035 align-items: center;
1036 padding: 20px 30px 30px 20px;
1038 visibility: hidden;
1041 #keyboard-help-overlay .keyboard-help-container {
1042 background-color: #fff;
1043 filter: drop-shadow(4px 4px 2px #000);
1044 flex: 1 1 auto;
1045 max-width: 1500px;
1046 max-height: 100%;
1047 overflow-y: auto;
1048 position: relative;
1050 #keyboard-help-overlay .keyboard-help-container h1 {
1051 text-align: center;
1052 border-bottom: 1px solid #ddd;
1053 margin: 0;
1054 padding: 10px 20px;
1056 #keyboard-help-overlay .keyboard-help-container .note {
1057 margin: 0.5em auto;
1058 padding: 0 1em;
1059 width: fit-content;
1061 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1062 column-width: 21em;
1063 column-count: auto;
1064 column-gap: 1.5em;
1065 border-top: 1px solid #ddd;
1066 padding: 15px 20px;
1068 #keyboard-help-overlay .keyboard-help-container ul {
1069 list-style-type: none;
1070 margin: 0;
1071 padding: 0;
1072 break-inside: avoid;
1073 white-space: nowrap;
1075 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1076 margin: 20px 0 0 0;
1078 #keyboard-help-overlay .keyboard-help-container ul li.section {
1079 font-weight: bold;
1080 font-size: 1.125rem;
1081 break-after: avoid;
1083 #keyboard-help-overlay .keyboard-help-container .keys {
1084 margin: 0 0.5em 0 0;
1085 min-width: 4.5em;
1086 display: inline-block;
1088 #keyboard-help-overlay .keyboard-help-container .keys code {
1089 margin: 0 6px 0 0;
1091 #keyboard-help-overlay .keyboard-help-container code {
1092 display: inline-block;
1093 background-color: #eee;
1094 border: 1px solid #ccc;
1095 padding: 3px 8px 4px 8px;
1096 margin: 0 1px;
1098 #keyboard-help-overlay .keyboard-help-container code.ak {
1099 background-color: #ffeb83;
1100 border-color: #d4a500;
1102 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1103 content: "ak+";
1104 opacity: 0.3;
1107 #nav-item-about button.open-keyboard-help {
1108 display: none;
1110 @media only screen and (hover:hover) and (pointer:fine) {
1111 #nav-item-about {
1112 position: relative;
1113 padding-right: 0.25em;
1115 #nav-item-about button.open-keyboard-help {
1116 font-family: "Font Awesome", "Font Awesome 5 Free";
1117 font-weight: 900;
1118 position: absolute;
1119 top: 0;
1120 right: 0;
1121 height: 100%;
1122 padding: 8px;
1123 display: initial;
1124 line-height: 1;
1125 background-color: transparent;
1129 #keyboard-help-overlay button.close-keyboard-help {
1130 position: absolute;
1131 right: 0;
1132 top: 0;
1133 font-family: "Font Awesome", "Font Awesome 5 Free";
1134 font-size: 1.5rem;
1135 padding: 10px 12px;
1138 /************/
1139 /* ARCHIVES */
1140 /************/
1142 .archive-nav {
1143 margin: 1.25em 0.5em 0 0.5em;
1144 padding: 0.25em;
1146 .archive-nav > * {
1147 display: flex;
1149 .archive-nav *[class^='archive-nav-item'] {
1150 line-height: 1;
1151 flex: 1 1 5%;
1152 text-align: center;
1153 padding: 6px 4px 4px 4px;
1154 max-width: 8%;
1156 @-moz-document url-prefix() {
1157 .archive-nav *[class^='archive-nav-item'] {
1158 padding: 5px 4px;
1161 .archive-nav-days .archive-nav-item-day {
1162 font-size: 0.8em;
1163 padding: 7px 0 5px 0;
1164 max-width: 4%;
1166 .archive-nav-days .archive-nav-item-day:first-child {
1167 flex-basis: 10%;
1170 /************/
1171 /* ARCHIVES */
1172 /************/
1174 .archive-nav {
1175 margin: 1.25em 0.5em 0 0.5em;
1176 padding: 0.25em;
1178 .archive-nav > * {
1179 display: flex;
1181 .archive-nav *[class^='archive-nav-item'] {
1182 line-height: 1;
1183 flex: 1 1 5%;
1184 text-align: center;
1185 padding: 6px 4px 4px 4px;
1186 max-width: 8%;
1188 @-moz-document url-prefix() {
1189 .archive-nav *[class^='archive-nav-item'] {
1190 padding: 5px 4px;
1193 .archive-nav-days .archive-nav-item-day {
1194 font-size: 0.8em;
1195 padding: 7px 0 5px 0;
1196 max-width: 4%;
1198 .archive-nav-days .archive-nav-item-day:first-child {
1199 flex-basis: 10%;
1202 /************/
1203 /* LISTINGS */
1204 /************/
1206 h1.listing {
1207 font-size: 1.875rem;
1208 line-height: 1.15;
1209 max-height: 1.15em;
1210 position: relative;
1213 h1.listing a {
1214 position: relative;
1217 /* Links to link-posts (not the link-post links themselves; that's below) */
1218 h1.listing .link-post-link + a {
1219 margin-left: 0.25em;
1222 h1.listing .link-post-link {
1223 font-size: 0.8em;
1224 display: inline;
1225 vertical-align: top;
1226 position: relative;
1227 top: 4px;
1230 /*=----------------------=*/
1231 /*= Listing hover reveal =*/
1232 /*=----------------------=*/
1233 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1235 @media only screen and (min-width: 1160px) {
1236 h1.listing a {
1237 max-width: 100%;
1238 display: inline-block;
1239 white-space: nowrap;
1240 text-overflow: ellipsis;
1241 overflow: hidden;
1242 border-bottom: 1px solid transparent;
1243 -webkit-hyphens: auto;
1244 -moz-hyphens: auto;
1245 -ms-hyphens: auto;
1246 hyphens: auto;
1247 z-index: 1;
1248 padding: 0 0 1px 1px;
1250 h1.listing .link-post-link + a {
1251 max-width: calc(100% - 40px);
1253 h1.listing a:hover,
1254 h1.listing a:focus {
1255 text-decoration: dotted underline;
1256 white-space: initial;
1257 overflow: visible;
1258 z-index: 2;
1260 h1.listing:focus-within::before {
1261 content: "\F105";
1262 font-family: "Font Awesome", "Font Awesome 5 Free";
1263 display: block;
1264 position: absolute;
1265 left: -0.75em;
1268 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1269 mouse movements) */
1271 h1.listing a:not(.edit-post-link):hover::before {
1272 content: "";
1273 position: absolute;
1274 top: -10px;
1275 right: -10px;
1276 bottom: -10px;
1277 left: -10px;
1278 z-index: -1;
1280 h1.listing .link-post-link:hover {
1281 text-decoration: none;
1285 /*=-----------------------=*/
1286 /*= In-listing edit links =*/
1287 /*=-----------------------=*/
1289 h1.listing .edit-post-link {
1290 position: absolute;
1291 margin: 0;
1294 /*=---------------------------------=*/
1295 /*= Error messages on listing pages =*/
1296 /*=---------------------------------=*/
1298 .listing-message {
1299 width: 100%;
1300 text-align: center;
1301 padding: 1.25em 0 1.25em 0;
1302 font-size: 1.375em;
1305 /*********************/
1306 /* LISTING POST-META */
1307 /*********************/
1309 h1.listing + .post-meta {
1310 position: relative;
1311 justify-content: flex-start;
1312 margin: 0 20px 0 21px;
1315 h1.listing + .post-meta > * {
1316 margin: 0 1em 0 0;
1319 h1.listing + .post-meta .post-section {
1320 width: 0;
1321 margin: 0;
1322 overflow: hidden;
1324 h1.listing + .post-meta .post-section::before {
1325 position: absolute;
1326 left: -36px;
1329 h1.listing + .post-meta .read-time {
1330 cursor: default;
1333 /********************/
1334 /* SEQUENCES & TAGS */
1335 /********************/
1337 .sequence-text, .tag-description {
1338 font-size: 1.2rem;
1339 padding: 0 22px;
1342 #content.tag-index-page .tag-description {
1343 margin: 1em 0 0;
1346 section {
1347 max-width: 100%;
1348 margin-top: 2em;
1349 margin-bottom: 4em;
1352 h1.sequence-chapter {
1353 font-size: 2.3rem;
1356 article {
1357 max-width: 100%;
1360 .post-meta + .comments {
1361 margin-top: 3em;
1364 .tag-list {
1365 column-count: auto;
1366 column-width: 15em;
1367 margin-top: 0;
1368 border-bottom: 1px solid #999;
1369 padding-bottom: 1em;
1370 margin-bottom: 0;
1373 #content.sequence-page h1 {
1374 margin-top: 0.1em;
1377 /**************/
1378 /* USER PAGES */
1379 /**************/
1381 /*=---------------------=*/
1382 /*= User's display name =*/
1383 /*=---------------------=*/
1385 #content.user-page h1.page-main-heading {
1386 margin: 0.25em 0 0 0;
1387 line-height: 1.1;
1388 grid-column: 1 / span 2;
1389 order: -2;
1392 #content.user-page h1.page-main-heading .user-full-name {
1393 font-size: 1rem;
1394 font-weight: normal;
1395 padding-left: 0.5em;
1398 /*=--------------------=*/
1399 /*= User's karma total =*/
1400 /*=--------------------=*/
1402 #content.user-page .user-stats {
1403 grid-column: 3;
1404 order: -2;
1405 text-align: right;
1406 align-self: end;
1409 #content.user-page .user-stats .karma-type {
1410 white-space: nowrap;
1413 /*=----------------------=*/
1414 /*= Expanded vs. compact =*/
1415 /*=----------------------=*/
1417 #content.user-page #comments-list-mode-selector {
1418 grid-row: span 2;
1420 #content.user-page #comments-list-mode-selector button {
1421 display: block;
1424 /*=----------------------------------------------------=*/
1425 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1426 /*=----------------------------------------------------=*/
1428 #content.user-page .sublevel-nav {
1429 margin-bottom: 0.5em;
1432 /*=--------------=*/
1433 /*= User's posts =*/
1434 /*=--------------=*/
1436 #content.user-page h1.listing {
1437 margin: 0.5em 0 0 0;
1440 #content.user-page .user-bio :first-child {
1441 margin-top: 0.5em;
1444 /*****************/
1445 /* CONVERSATIONS */
1446 /*****************/
1448 /*=----------------------=*/
1449 /*= List of participants =*/
1450 /*=----------------------=*/
1452 #content.conversation-page .conversation-participants {
1453 grid-column: 2 / span 2;
1454 text-align: right;
1455 margin: 0.5em 0 0 0;
1457 .post-meta > .conversation-participants {
1458 white-space: normal;
1460 .conversation-participants ul,
1461 .conversation-participants li {
1462 list-style-type: none;
1463 display: inline-block;
1464 margin: 0;
1465 padding: 0;
1467 .conversation-participants li {
1468 margin-left: 0.375em;
1470 .conversation-participants li:not(:last-of-type)::after {
1471 content: ",";
1474 /*=-------------------------=*/
1475 /*= Posting controls (form) =*/
1476 /*=-------------------------=*/
1478 #content.conversation-page .posting-controls {
1479 padding: 0 0 1em 0;
1481 #content.conversation-page .post-meta-fields {
1482 overflow: auto;
1483 display: flex;
1484 flex-flow: row wrap;
1486 .posting-controls.standalone textarea {
1487 margin-top: 0.375em;
1489 .posting-controls.standalone form {
1490 padding: 0 1em;
1492 #content.conversation-page .posting-controls.standalone form {
1493 padding: 0 1em 3em 1em;
1495 .posting-controls.standalone input[type='text'],
1496 .posting-controls.standalone label {
1497 margin: 0.25em 0;
1499 .posting-controls.standalone label {
1500 width: 4em;
1501 text-align: right;
1502 padding: 2px 6px;
1503 border: 1px solid transparent;
1505 .posting-controls.standalone input[type='text'] {
1506 width: calc(100% - 4em);
1507 padding: 0.25em;
1509 .posting-controls.standalone input[type='submit'] {
1510 float: right;
1512 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1513 white-space: nowrap;
1515 .posting-controls.standalone #markdown-hints {
1516 top: calc(100% + 2em);
1519 /*=--------------------=*/
1520 /*= Conversation title =*/
1521 /*=--------------------=*/
1523 #content.conversation-page h1.page-main-heading {
1524 text-align: center;
1525 margin: 0.5em 0;
1526 line-height: 1.15;
1529 /*=----------=*/
1530 /*= Messages =*/
1531 /*=----------=*/
1533 #content.conversation-page > ul.comment-thread:last-of-type {
1534 margin-bottom: 2em;
1537 /******************/
1538 /* SEARCH RESULTS */
1539 /******************/
1541 #content.search-results-page h1.listing,
1542 #content.sequence-page h1.listing,
1543 #content.post-page h1.listing {
1544 font-size: 1.625em;
1547 /**************/
1548 /* LOGIN PAGE */
1549 /**************/
1551 .login-container {
1552 margin: 2em 0;
1553 padding: 1em;
1554 display: flex;
1555 flex-flow: row wrap;
1558 .login-container form {
1559 flex-basis: 50%;
1560 display: grid;
1561 grid-row-gap: 0.5em;
1562 align-content: start;
1564 .login-container form label {
1565 text-align: right;
1566 padding: 0.25em 0.5em;
1567 white-space: nowrap;
1568 grid-column: 1;
1570 .login-container form input {
1571 grid-column: 2;
1572 padding: 0.25em;
1574 .login-container form input[type='submit'],
1575 .login-container form a {
1576 grid-column: 2;
1577 justify-self: center;
1579 .login-container form input[type='submit'] {
1580 width: 10em;
1581 padding: 0.35em;
1582 line-height: 1;
1583 margin: 0.5em 0 0 0;
1585 .login-container form h1 {
1586 text-align: center;
1587 margin: 0;
1588 grid-column: 2;
1591 /* “Log in” form */
1593 #login-form {
1594 grid-template-columns: 5.5em 1fr;
1595 padding: 0.5em 2em 0.5em 0;
1598 /* “Create account” form */
1600 #signup-form {
1601 font-size: 0.9em;
1602 grid-template-columns: 8.5em 1fr;
1603 padding: 0.5em 1em 1em 1em;
1605 #signup-form h1 {
1606 font-size: 1.7em;
1608 #signup-form input[type='submit'] {
1609 padding: 0.4em 0.5em 0.5em 0.5em;
1612 /* Log in tip */
1614 .login-container .login-tip {
1615 padding: 0.5em 0.5em 0.5em 3em;
1616 margin: 2em 4em 0 4em;
1617 text-indent: -2em;
1618 line-height: 1.4;
1620 .login-container .login-tip span {
1621 font-weight: bold;
1624 /* Message box */
1626 #content.login-page .error-box {
1627 margin: 1.5em 0.875em -1.5em 0.875em;
1629 .error-box, .success-box {
1630 padding: 0.25em;
1631 text-align: center;
1634 /***********************/
1635 /* PASSWORD RESET PAGE */
1636 /***********************/
1638 .reset-password-container {
1639 margin-bottom: 2em;
1641 .reset-password-container input[type='submit'] {
1642 padding: 0.2em 0.5em;
1643 width: unset;
1645 .reset-password-container input {
1646 margin-left: 0.5em;
1647 width: 12em;
1649 .reset-password-container label {
1650 display: inline-block;
1651 width: 9em;
1653 .reset-password-container form > div {
1654 margin: 0.2em;
1656 .reset-password-container .action-container {
1657 padding-left: 11em;
1658 padding-top: 0.2em;
1660 .reset-password-container .error-box {
1661 margin: unset;
1664 /*********************/
1665 /* TABLE OF CONTENTS */
1666 /*********************/
1668 .contents {
1669 float: right;
1670 min-width: 6em;
1671 max-width: 40%;
1672 margin: 1.25em 0 0.75em 1.25em;
1673 padding: 7px 14px 10px 10px;
1674 position: relative;
1675 z-index: 1;
1678 .collection-page .contents {
1679 margin-top: 0;
1682 .contents-head {
1683 text-align: center;
1684 margin-bottom: 0.25em;
1687 .body-text .contents ul {
1688 list-style-type: none;
1689 margin: 0 0 0 0.5em;
1690 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1691 padding-left: 1em;
1692 font-size: 0.75em;
1694 .body-text .contents li {
1695 margin: 0.15em 0 0.3em 1em;
1696 text-align: left;
1697 text-indent: -1em;
1698 line-height: 1.2;
1699 position: relative;
1701 .body-text .contents li::before {
1702 position: absolute;
1703 width: 3em;
1704 display: block;
1705 text-align: right;
1706 left: -4.5em;
1708 .contents .toc-item-1 {
1709 counter-increment: toc-item-1;
1710 counter-reset: toc-item-2 toc-item-3;
1712 .contents .toc-item-1::before {
1713 content: counter(toc-item-1);
1715 .contents .toc-item-1 ~ .toc-item-2 {
1716 margin-left: 2.9em;
1717 font-size: 0.95em;
1719 .contents .toc-item-2 {
1720 counter-increment: toc-item-2;
1721 counter-reset: toc-item-3;
1723 .contents .toc-item-1 ~ .toc-item-2::before {
1724 content: counter(toc-item-1) "." counter(toc-item-2);
1726 .contents .toc-item-2::before {
1727 content: counter(toc-item-2);
1729 .contents .toc-item-1 + .toc-item-3 {
1730 counter-increment: toc-item-2 toc-item-3;
1732 .contents .toc-item-2 ~ .toc-item-3,
1733 .contents .toc-item-1 ~ .toc-item-3 {
1734 margin-left: 2.9em;
1735 font-size: 0.95em;
1737 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1738 margin-left: 5.7em;
1739 font-size: 0.9em;
1741 .contents .toc-item-3 {
1742 counter-increment: toc-item-3;
1744 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1745 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1747 .contents .toc-item-1 ~ .toc-item-3::before {
1748 content: counter(toc-item-1) "." counter(toc-item-3);
1750 .contents .toc-item-2 ~ .toc-item-3::before {
1751 content: counter(toc-item-2) "." counter(toc-item-3);
1753 .contents .toc-item-3::before {
1754 content: counter(toc-item-3);
1756 .contents .toc-item-4,
1757 .contents .toc-item-5,
1758 .contents .toc-item-6 {
1759 display: none;
1762 /********************/
1763 /* POSTS & COMMENTS */
1764 /********************/
1766 .post-meta > *,
1767 .comment-meta > * {
1768 display: inline-block;
1769 margin-right: 1em;
1770 font-size: 1.0625em;
1772 .body-text {
1773 overflow-wrap: break-word;
1774 text-align: justify;
1776 .body-text p {
1777 margin: 1em 0;
1779 .retracted .body-text {
1780 text-decoration: line-through;
1783 .bare-url {
1784 word-break: break-all;
1785 hyphens: auto;
1787 .body-text a:not([href]),
1788 .body-text a:not([href]):hover,
1789 .body-text a:not([href])::before,
1790 .body-text a:not([href])::after {
1791 text-decoration: none;
1792 text-shadow: unset;
1793 border: unset;
1794 color: unset;
1795 content: unset;
1797 /*************/
1798 /* POST-META */
1799 /*************/
1801 .post-meta {
1802 display: flex;
1803 flex-flow: row wrap;
1804 justify-content: center;
1806 .post-meta .lw2-link {
1807 opacity: 0.5;
1808 order: 1;
1810 .post-meta > *,
1811 .post-meta .post-section::before {
1812 margin: 0 0.5em;
1814 .post-meta .post-section {
1815 order: -1;
1816 margin: 0;
1817 visibility: hidden;
1819 .post-meta .post-section::before,
1820 .comment-meta .alignment-forum {
1821 visibility: visible;
1822 font-family: "Font Awesome", "Font Awesome 5 Free";
1823 font-weight: 900;
1825 .post-section.frontpage::before {
1826 content: "\F015";
1828 .post-section.featured::before {
1829 content: "\F005";
1831 .post-section.meta::before {
1832 content: "\F077";
1834 .post-section.events::before {
1835 content: "\F5A0";
1837 .post-section.personal::before {
1838 content: "\F007";
1840 .post-section.draft::before {
1841 content: "\F15B";
1843 .post-section.alignment-forum::before,
1844 .comment-meta .alignment-forum {
1845 content: "AF";
1846 font-family: Concourse, 'Changa One';
1849 /*= Karma controls hover tooltips =*/
1851 @media only screen and (pointer: fine) {
1852 .post .voting-controls,
1853 .comment-item .voting-controls {
1854 position: relative;
1856 .post .karma.active-controls::after,
1857 .comment-item .karma.active-controls::after {
1858 content: "Double-click for strong vote";
1859 position: absolute;
1860 pointer-events: none;
1861 display: block;
1862 left: 6px;
1863 width: 100%;
1864 line-height: 1.15;
1865 white-space: normal;
1866 text-align: center;
1867 font-size: 0.875rem;
1868 opacity: 0;
1869 transition: opacity 0.2s ease;
1871 .post .voting-controls.active-controls:hover::after,
1872 .comment-item .voting-controls.active-controls:hover::after {
1873 opacity: 1.0;
1876 .post .voting-controls .karma-value::after,
1877 .comment-item .voting-controls .karma-value::after {
1878 content: attr(title);
1879 position: absolute;
1880 pointer-events: none;
1881 display: block;
1882 left: 50%;
1883 transform: translateX(-50%);
1884 white-space: pre-wrap;
1885 width: max-content;
1886 text-align: center;
1887 font-size: 0.875rem;
1888 color: #bbb;
1889 opacity: 0;
1890 transition: opacity 0.2s ease;
1892 .post .voting-controls.agreement .karma-value:hover::after,
1893 .comment-item .voting-controls.agreement .karma-value:hover::after {
1894 top: unset;
1895 bottom: 100%;
1897 .post .voting-controls .karma-value:hover::after,
1898 .comment-item .voting-controls .karma-value:hover::after {
1899 opacity: 1.0;
1901 .post .voting-controls.waiting .karma-value:hover::after,
1902 .comment-item .voting-controls.waiting .karma-value:hover::after {
1903 display: none;
1905 .comment-item .voting-controls .karma-value:hover::after {
1906 z-index: 5001;
1909 .author {
1910 position: relative;
1912 .author:not(.redacted)::before {
1913 content: attr(data-full-name);
1914 position: absolute;
1915 pointer-events: none;
1916 display: block;
1917 padding: 0 1em;
1918 left: 50%;
1919 bottom: 2em;
1920 transform: translateX(-50%);
1921 white-space: nowrap;
1922 text-align: center;
1923 font-size: 0.875rem;
1924 font-weight: normal;
1925 opacity: 0;
1926 transition: opacity 0.2s ease;
1927 z-index: 5001;
1929 .author:hover::before {
1930 opacity: 1.0;
1934 /*********/
1935 /* POSTS */
1936 /*********/
1938 .post {
1939 max-width: 100%;
1942 .post-body {
1943 min-height: 8em;
1944 padding: 0 30px;
1945 line-height: 1.5;
1946 font-size: 1.3rem;
1947 overflow: auto;
1948 margin: 0.5em 0 0 0;
1950 h1.post-title {
1951 margin: 1.1em 0 0.35em 0;
1952 padding: 0 30px;
1953 text-align: center;
1954 font-size: 2.5em;
1955 line-height: 1;
1957 .post .post-meta {
1958 text-align: center;
1959 position: relative;
1960 z-index: 2;
1962 .post .top-post-meta:last-child {
1963 margin-bottom: 40px;
1965 .post .bottom-post-meta {
1966 margin: 0;
1967 padding: 20px 0;
1969 .bottom-post-meta {
1970 border-style: solid;
1971 border-width: 1px 0;
1974 /**********/
1975 /* EVENTS */
1976 /**********/
1978 .event-info .map {
1979 position: relative;
1980 width: 100%;
1981 margin: 2em 0 1em;
1984 .event-info .map::before {
1985 content: "";
1986 display: block;
1987 padding-bottom: 50%;
1990 .event-info .map iframe {
1991 width: 100%;
1992 height: 100%;
1993 border: 1px solid #000;
1994 position: absolute;
1995 top: 0;
1996 left: 0;
1999 .event-info ul {
2000 list-style: none;
2001 padding: 0;
2002 text-align: center;
2005 /*******************/
2006 /* POST NAVIGATION */
2007 /*******************/
2009 .post-nav-item {
2010 display: grid;
2011 grid-template: 100% / 32% 36% 32%;
2012 grid-template-areas:
2013 "prev seq next";
2015 .post-nav {
2016 display: flex;
2017 flex-flow: column;
2018 justify-content: flex-end;
2019 padding: 0.5em;
2022 .post-nav-title {
2023 font-size: 1.125em;
2024 line-height: 1.15;
2025 display: inline;
2026 border-top: 1px solid transparent;
2028 .post-nav.prev .post-nav-title,
2029 .post-nav.next .post-nav-title {
2030 border-bottom: 1px solid transparent;
2033 .sequence-title {
2034 align-items: center;
2035 text-align: center;
2036 grid-area: seq;
2038 .sequence-title .post-nav-title {
2039 font-size: 1.5em;
2042 .post-nav.prev {
2043 grid-area: prev;
2044 align-items: flex-start;
2046 .post-nav.prev .post-nav-title::before {
2047 content: "\F0D9\2005";
2049 .post-nav.next {
2050 grid-area: next;
2051 text-align: right;
2052 align-items: flex-end;
2054 .post-nav.prev .post-nav-label,
2055 .post-nav.next .post-nav-label {
2056 display: none;
2058 .post-nav.next .post-nav-title::after {
2059 content: "\2004\F0DA";
2061 .post-nav.prev .post-nav-title::before,
2062 .post-nav.next .post-nav-title::after {
2063 font-family: Font Awesome;
2064 font-weight: 900;
2065 vertical-align: text-bottom;
2066 opacity: 0.75;
2068 .post-nav-links {
2069 max-width: 100%;
2072 @media only screen and (max-width: 900px) {
2073 .post-nav-item {
2074 font-size: 0.875em;
2075 grid-template: auto auto / 50% 50%;
2076 grid-template-areas:
2077 "prev next"
2078 "seq seq";
2080 .post-nav.prev .post-nav-title,
2081 .post-nav.next .post-nav-title {
2082 border-bottom: none;
2084 .post-nav.prev {
2085 margin: 0 0 0 -1px;
2086 position: relative;
2087 left: 1px;
2089 .sequence-title {
2090 padding: 0.75em 0;
2093 @media only screen and (max-width: 520px) {
2094 .post-nav-links + .comments {
2095 padding: 1em 0 0 0;
2099 .related-posts, .related-post-group {
2100 padding-bottom: 1em;
2102 .related-post-type {
2103 font-size: 1.2em;
2104 font-weight: 600;
2105 margin-top: 0.5em;
2106 margin-bottom: -0.5em;
2107 list-style-type: disc;
2108 margin-left: -0.5em;
2109 opacity: 0.7;
2111 .related-post-type::before {
2112 content: "\269c";
2113 font-size: 1.375em;
2114 font-weight: normal;
2115 margin-right: 0.15em;
2116 position: relative;
2117 vertical-align: baseline;
2118 top: 0.05em;
2120 .related-posts .post-type-prefix {
2121 display: none;
2124 .crosspost {
2125 padding: 0.1em 1em;
2126 margin: 1em auto;
2129 /**************/
2130 /* LINK POSTS */
2131 /**************/
2133 .post.link-post > .post-body > p:first-child {
2134 text-align: center;
2135 font-size: 1.125em;
2136 margin: 0.5em 0 0 0;
2138 .post.link-post > .post-body > p:only-child {
2139 font-size: 1.5em;
2140 margin: 1em 0;
2142 .post.link-post a.link-post-link::before {
2143 content: "\F0C1";
2144 font-family: "Font Awesome", "Font Awesome 5 Free";
2145 font-weight: 900;
2146 font-size: 0.75em;
2147 position: relative;
2148 top: -2px;
2149 margin-right: 0.25em;
2152 /************/
2153 /* COMMENTS */
2154 /************/
2156 .comments {
2157 max-width: 100%;
2158 padding: 0 0 1px 0;
2159 position: relative;
2161 .comments::before {
2162 content: "";
2163 position: absolute;
2164 display: block;
2165 top: 0;
2166 left: 0;
2167 width: 100%;
2168 height: 100%;
2169 pointer-events: none;
2171 ul.comment-thread {
2172 list-style-type: none;
2173 padding: 0;
2174 max-width: 100%;
2176 .comments .comment-thread > li {
2177 position: relative;
2179 #content > #top-nav-bar + .comment-thread .comment-item {
2180 margin-top: 0;
2183 .comment-item {
2184 margin: 2em 0 0 0;
2186 .comment-item .comment-item {
2187 margin: 1em 8px 8px 16px;
2189 .comment-item .comment-item + .comment-item {
2190 margin: 2em 8px 8px 16px;
2193 .comment-body {
2194 line-height: 1.45;
2195 font-size: 1.2rem;
2196 padding: 10px;
2198 .comment-body ul {
2199 list-style-type: circle;
2201 .comment-body > *:first-child {
2202 margin-top: 0;
2204 .comment-body > *:last-child {
2205 margin-bottom: 0;
2208 .comments-empty-message {
2209 width: 100%;
2210 text-align: center;
2211 padding: 0.75em 0 0.9em 0;
2212 font-size: 1.375em;
2215 /**********************************/
2216 /* DEEP COMMENT THREAD COLLAPSING */
2217 /**********************************/
2219 .comment-item > input[id^="expand"] {
2220 display: none;
2222 .comment-item > input[id^="expand"] + label {
2223 display: block;
2224 visibility: hidden;
2225 position: relative;
2226 margin: 8px 9px;
2228 .comment-item > input[id^="expand"] + label::after {
2229 content: "(Expand " attr(data-child-count) " below)";
2230 visibility: visible;
2231 position: absolute;
2232 left: 0;
2233 white-space: nowrap;
2234 cursor: pointer;
2236 .comment-item > input[id^="expand"]:checked + label::after {
2237 content: "(Collapse " attr(data-child-count) " below)";
2239 .comment-item > input[id^="expand"] ~ .comment-thread {
2240 max-height: 34px;
2241 overflow: hidden;
2243 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2244 margin-top: 0;
2246 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2247 max-height: 1000000px;
2250 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2251 margin: 0;
2253 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2254 display: none;
2257 /*************/
2258 /* BACKLINKS */
2259 /*************/
2261 .backlinks > input {
2262 display: none;
2265 .backlinks > label {
2266 margin-left: 10px;
2267 display: block;
2268 color: #00f;
2269 cursor: pointer;
2272 .backlinks > label::before {
2273 content: " ";
2274 border-left: 5px solid currentColor;
2275 border-top: 5px solid transparent;
2276 border-bottom: 5px solid transparent;
2277 transition: transform 0.25s ease-out;
2278 transform-origin: 29% 55%;
2279 display: inline-block;
2280 padding-right: 0.5em;
2283 .backlinks > input:checked + label::before {
2284 transform: rotate(90deg);
2287 .backlinks li {
2288 margin-top: 0;
2291 .backlinks > ul {
2292 height: 0;
2293 perspective-origin: top;
2294 transform: perspective(100em) rotateX(-90deg);
2295 transform-origin: center top;
2296 opacity: 0;
2297 margin-top: 0.5em;
2298 margin-bottom: 0.5em;
2301 .backlinks > input:checked ~ ul {
2302 height: auto;
2303 transform: perspective(100em) rotateX(0deg);
2304 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2305 opacity: 1;
2308 /****************/
2309 /* COMMENT-META */
2310 /****************/
2312 .comment-meta {
2313 padding: 2px 24px 2px 10px;
2314 margin: 0 -1px;
2315 border: none;
2316 display: flex;
2317 flex-flow: row wrap;
2318 align-items: baseline;
2320 .user-page .comment-meta,
2321 .conversation-page .comment-meta {
2322 padding-right: 10px;
2324 .comment-meta .comment-post-title {
2325 flex-basis: 100%;
2326 overflow: hidden;
2327 text-overflow: ellipsis;
2328 white-space: nowrap;
2329 line-height: 1.3;
2331 .conversation-page .comment-meta .comment-post-title {
2332 margin: 0;
2333 flex-basis: unset;
2334 flex: 1 0 auto;
2335 text-align: right;
2336 display: none; /* Not sure if we need to display this... */
2338 .comment-item .author:not(.redacted).original-poster::after {
2339 content: "\2004(OP)";
2340 font-size: 0.75em;
2343 /*****************************/
2344 /* COMMENT THREAD NAVIGATION */
2345 /*****************************/
2347 a.comment-parent-link:not(.inline-author),
2348 a.comment-parent-link.inline-author::before {
2349 opacity: 0.5;
2351 a.comment-parent-link:hover {
2352 opacity: 1.0;
2354 a.comment-parent-link::before {
2355 content: "\F062";
2356 font-family: "Font Awesome", "Font Awesome 5 Free";
2357 font-weight: 900;
2358 font-size: 0.75rem;
2359 line-height: 1;
2360 position: absolute;
2361 z-index: 1;
2362 display: block;
2363 padding: 3px 3px 0 3px;
2364 width: 16px;
2365 height: calc(100% + 2px);
2366 top: -1px;
2367 left: -17px;
2369 a.comment-parent-link::after {
2370 content: "";
2371 position: absolute;
2372 z-index: 0;
2373 display: block;
2374 width: calc(100% + 26px);
2375 height: calc(100% + 38px);
2376 top: -29px;
2377 left: -17px;
2378 pointer-events: none;
2379 overflow: hidden;
2380 visibility: hidden;
2382 a.comment-parent-link:hover::after {
2383 visibility: visible;
2386 .comment-child-links {
2387 flex-basis: 100%;
2389 .comment-child-link {
2390 margin: 0 0.25em;
2391 display: inline-block;
2393 .comment-child-link::before {
2394 content: ">";
2395 display: inline-block;
2396 margin: 0 2px 0 0;
2399 .comment-popup {
2400 position: fixed;
2401 top: 10%;
2402 right: 10%;
2403 max-width: 700px;
2404 z-index: 10001;
2405 font-size: 1rem;
2406 white-space: unset;
2407 pointer-events: none;
2409 .comment-popup .comment-parent-link {
2410 display: none;
2412 .comment-popup .comment-body {
2413 font-size: 1.0625rem;
2416 .comment-item.depth-odd {
2417 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2418 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2420 .comment-item.depth-even {
2421 --GW-comment-background-color: var(--GW-comment-background-color-even);
2422 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2425 .comment-item:target {
2426 --GW-comment-background-color: var(--GW-comment-background-color-target);
2428 .comment-item:target > .comment-thread > .comment-item {
2429 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2432 /**********************/
2433 /* COMMENT PERMALINKS */
2434 /**********************/
2435 /********************/
2436 /* COMMENT LW LINKS */
2437 /********************/
2439 .comment-meta .permalink::before,
2440 .comment-meta .lw2-link::before,
2441 .individual-thread-page a.comment-parent-link:empty::before {
2442 content: "";
2443 display: inline-block;
2444 width: 1rem;
2445 height: 1rem;
2446 border-radius: 3px;
2447 box-shadow:
2448 0 0 0 1px #fff,
2449 0 0 0 2px #00e,
2450 0 0 0 3px transparent;
2451 padding: 0 0 0 2px;
2452 background-size: 100%;
2453 position: relative;
2454 top: 2px;
2455 opacity: 0.5;
2457 .comment-meta .permalink::before {
2458 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');
2460 .comment-meta .lw2-link::before {
2461 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==');
2463 .individual-thread-page a.comment-parent-link:empty::before {
2464 left: unset;
2465 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==');
2467 .comment-meta .permalink:hover::before {
2468 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');
2470 .comment-meta .lw2-link:hover::before {
2471 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==');
2473 .individual-thread-page a.comment-parent-link:empty:hover::before {
2474 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=');
2476 .comment-meta .permalink:hover::before,
2477 .comment-meta .lw2-link:hover::before,
2478 .individual-thread-page a.comment-parent-link:empty:hover::before {
2479 box-shadow:
2480 0 0 0 2px #00e,
2481 0 0 0 3px transparent;
2482 opacity: 1.0;
2483 filter: unset;
2485 .comment-meta .permalink:active::before,
2486 .comment-meta .lw2-link:active::before,
2487 .individual-thread-page a.comment-parent-link:empty:active::before {
2488 transform: scale(0.9);
2491 .comment-meta .permalink,
2492 .comment-meta .lw2-link,
2493 .individual-thread-page .comment-parent-link:empty {
2494 position: relative;
2495 opacity: 1.0;
2497 .comment-meta .permalink::after,
2498 .comment-meta .lw2-link::after,
2499 .individual-thread-page .comment-parent-link:empty::after {
2500 content: "";
2501 width: 30px;
2502 height: 30px;
2503 display: block;
2504 position: absolute;
2505 top: -2px;
2506 left: -7px;
2507 box-shadow: none;
2508 pointer-events: auto;
2509 visibility: visible;
2512 /*************************/
2513 /* COMMENTS COMPACT VIEW */
2514 /*************************/
2516 #comments-list-mode-selector,
2517 #content.index-page #comments-list-mode-selector,
2518 #content.user-page #comments-list-mode-selector {
2519 padding-top: 6px;
2520 grid-column: 1;
2521 position: unset;
2522 z-index: 1;
2523 justify-self: start;
2524 align-self: start;
2526 #comments-list-mode-selector button {
2527 color: transparent;
2528 width: 32px;
2529 height: 32px;
2530 padding: 6px;
2531 margin: 1px;
2532 overflow: hidden;
2533 background-repeat: no-repeat;
2534 background-size: 100%;
2535 background-origin: content-box;
2537 #comments-list-mode-selector button:disabled {
2538 cursor: auto;
2540 #comments-list-mode-selector button.expanded {
2541 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2543 #comments-list-mode-selector button.compact {
2544 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2546 @media only screen and (max-resolution: 1dppx) {
2547 #comments-list-mode-selector button.expanded {
2548 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2550 #comments-list-mode-selector button.compact {
2551 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2555 #content > ul.comment-thread > li.comment-item,
2556 #content.compact > ul.comment-thread > li.comment-item {
2557 margin: 0;
2560 #content > .comment-thread {
2561 margin: 1em 0;
2563 #content.compact > .comment-thread {
2564 font-size: 0.9375rem;
2565 margin: 0.5em 0;
2567 #content.compact > .comment-thread:hover {
2568 z-index: 1;
2570 #content.compact > .comment-thread .comment-body {
2571 font-size: 1.0625rem;
2573 #content.compact > .comment-thread .comment-item,
2574 #content.index-page .comment-item.ignored,
2575 #content.inbox-user-page .comment-item.ignored {
2576 max-height: 61px;
2577 margin-top: 1em;
2578 overflow: hidden;
2579 position: relative;
2581 #content.compact > .comment-thread .comment-item {
2582 pointer-events: none;
2584 #content.compact > .comment-thread .comment-item::after {
2585 content: "…";
2586 position: absolute;
2587 right: 0;
2588 bottom: 0;
2589 font-size: 2rem;
2590 line-height: 1;
2591 padding: 0 16px 10px 64px;
2592 pointer-events: auto;
2594 @media only screen and (hover: hover) {
2595 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2596 #content.compact > .comment-thread .comment-item.expanded {
2597 overflow: visible;
2598 pointer-events: auto;
2599 z-index: 10;
2602 @media only screen and (hover: none) {
2603 #content.compact > .comment-thread.expanded .comment-item {
2604 overflow: visible;
2605 pointer-events: auto;
2606 z-index: 10;
2609 #content.compact > .comment-thread .comment-item .comment-meta {
2610 white-space: nowrap;
2611 overflow: hidden;
2612 text-overflow: ellipsis;
2613 padding: 2px 10px;
2615 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2616 white-space: unset;
2618 #content.compact > .comment-thread .comment-item .comment-meta a {
2619 pointer-events: auto;
2621 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2622 display: inline;
2624 #content.compact > .comment-thread .comment-item .comment-meta .voting-controls + .comment-post-title {
2625 margin-left: 0.75em;
2627 @media only screen and (hover: hover) {
2628 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2629 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2630 max-height: unset;
2632 #content.compact > .comment-thread .comment-item:hover .comment,
2633 #content.compact > .comment-thread .comment-item.expanded .comment {
2634 position: relative;
2635 z-index: 1;
2636 margin-bottom: 2em;
2637 bottom: 0;
2639 #content.compact > .comment-thread .comment-item:hover .comment::before,
2640 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2641 content: "";
2642 position: absolute;
2643 display: block;
2644 width: calc(100% + 20px);
2645 height: calc(100% + 20px);
2646 z-index: -1;
2647 top: -10px;
2648 left: -10px;
2650 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2651 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2652 margin: 0;
2655 @media only screen and (hover: none) {
2656 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2657 max-height: unset;
2659 #content.compact > .comment-thread.expanded .comment-item .comment {
2660 position: relative;
2661 z-index: 1;
2662 margin-bottom: 2em;
2663 bottom: 0;
2665 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2666 content: "";
2667 position: absolute;
2668 display: block;
2669 width: calc(100% + 14px);
2670 height: calc(100% + 20px);
2671 z-index: -1;
2672 top: -10px;
2673 left: -10px;
2675 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2676 margin: 0;
2678 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2679 content: "";
2680 display: block;
2681 position: fixed;
2682 top: 0;
2683 left: 0;
2684 width: 100%;
2685 height: 100%;
2686 z-index: -2;
2687 background-color: rgba(0,0,0,0.5);
2691 /*****************************/
2692 /* HIGHLIGHTING NEW COMMENTS */
2693 /*****************************/
2695 .new-comment::before {
2696 content: "";
2697 position: absolute;
2698 width: 100%;
2699 height: 100%;
2700 z-index: 5000;
2701 pointer-events: none;
2704 /***********************************/
2705 /* COMMENT THREAD MINIMIZE BUTTONS */
2706 /***********************************/
2708 .comment-minimize-button {
2709 font-family: "Font Awesome", "Font Awesome 5 Free";
2710 font-weight: 900;
2711 font-size: 1.25rem;
2712 line-height: 1;
2713 position: absolute;
2714 right: 1px;
2715 top: 1px;
2716 width: 18px;
2717 margin: 0;
2718 cursor: pointer;
2720 .comment-minimize-button:active {
2721 transform: scale(0.9);
2723 .comment-minimize-button::after {
2724 content: attr(data-child-count);
2725 font-weight: normal;
2726 font-size: 0.8125rem;
2727 position: absolute;
2728 left: 0;
2729 width: 100%;
2730 text-align: center;
2731 top: 21px;
2733 #content.individual-thread-page .comment-minimize-button {
2734 display: none;
2737 /*****************/
2738 /* IGNORE SYSTEM */
2739 /*****************/
2741 #content.comment-thread-page .comment-item.ignored {
2742 height: 38px;
2743 overflow: hidden;
2745 .comment-item.ignored > .comment > .comment-meta > .author {
2746 text-decoration: line-through;
2749 /***********************************/
2750 /* INDIVIDUAL COMMENT THREAD PAGES */
2751 /***********************************/
2753 .individual-thread-page > h1 {
2754 line-height: 1;
2755 margin: 0.75em 0 3px 0;
2757 .individual-thread-page .comments {
2758 border: none;
2761 /*************/
2762 /* SHORTFORM */
2763 /*************/
2765 .shortform-index-page .comments::before {
2766 border: none;
2767 box-shadow: none;
2770 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2771 margin-top: 0;
2774 /****************/
2775 /* VOTE BUTTONS */
2776 /****************/
2778 .vote {
2779 margin: 0;
2781 .vote {
2782 font-family: "Font Awesome", "Font Awesome 5 Free";
2783 font-weight: 900;
2784 border: none;
2787 .vote:disabled {
2788 visibility: hidden;
2789 cursor: default;
2792 @keyframes waiting {
2793 0% {background-position: 200% 0%}
2794 100% {background-position: 0% 0%}
2797 .voting-controls .karma-value {
2798 opacity: 1;
2799 transition: opacity 0.5s linear;
2802 .voting-controls.waiting .karma-value {
2803 opacity: 0.5;
2804 background: repeat-x linear-gradient(70deg, #000 50%, #fff 75%, #000);
2805 background-clip: text;
2806 -webkit-background-clip: text;
2807 color: transparent;
2808 background-position: 200% 0%;
2809 background-size: 200% 100%;
2810 animation: waiting 1s linear infinite;
2813 /* Replicated karma controls at bottom of comments. */
2814 .comment-controls .voting-controls {
2815 float: left;
2816 font-size: 0.9375em;
2819 .comment-controls .voting-controls:first-of-type {
2820 margin-left: -14px;
2823 /*****************************/
2824 /* COMMENTING AND POSTING UI */
2825 /*****************************/
2827 .comment-controls {
2828 text-align: right;
2829 margin: 0 8px 8px 16px;
2830 position: relative;
2831 z-index: 9999;
2833 .comment-thread .comment-controls + .comment-thread > li:first-child {
2834 margin-top: 8px;
2836 .comments > .comment-controls {
2837 margin: 8px 0 0 0;
2839 .comments > .comment-controls:last-child {
2840 margin: 8px 0 16px 0;
2843 .posting-controls input[type='submit'] {
2844 margin: 6px;
2845 padding: 4px 10px;
2846 font-size: 1.125rem;
2849 .comment-controls .cancel-comment-button {
2850 position: absolute;
2851 right: 0;
2852 margin: 0;
2853 height: 27px;
2854 font-size: inherit;
2855 padding: 4px 8px 2px 4px;
2856 z-index: 1;
2858 .comment-controls .cancel-comment-button::before {
2859 font-family: "Font Awesome", "Font Awesome 5 Free";
2860 margin-right: 3px;
2861 content: '\F00D';
2862 font-weight: 900;
2863 font-size: 0.9em;
2864 opacity: 0.7;
2867 .comment + .comment-controls .action-button {
2868 font-weight: normal;
2869 font-size: 1.0625em;
2870 padding: 1px 6px;
2872 .comment-controls .action-button::before {
2873 font-family: "Font Awesome", "Font Awesome 5 Free";
2874 margin-right: 3px;
2876 .new-comment-button {
2877 font-size: 1.5rem;
2878 margin: 0 0.25em;
2880 .comment-controls .reply-button::before {
2881 content: '\F3E5';
2882 font-weight: 900;
2883 font-size: 0.9em;
2884 opacity: 0.6;
2886 .comment-meta .replied::before {
2887 content: '\F3E5';
2888 font-family: "Font Awesome", "Font Awesome 5 Free";
2889 color: #090;
2890 font-weight: 900;
2891 font-size: 0.9em;
2892 opacity: 0.6;
2895 .post-controls {
2896 text-align: right;
2897 margin: 0.75em 0 0 0;
2898 align-self: start;
2899 justify-self: end;
2901 .edit-post-link {
2902 display: inline-block;
2903 margin-bottom: 0.25em;
2904 font-size: 1.125rem;
2906 .edit-post-link::before {
2907 margin-right: 0.3em;
2909 .comment-controls .edit-button::before,
2910 .edit-post-link::before {
2911 content: '\F303';
2912 font-family: "Font Awesome", "Font Awesome 5 Free";
2913 font-weight: 900;
2914 font-size: 0.75em;
2915 position: relative;
2916 top: -1px;
2919 .comment-controls .delete-button {
2920 margin-right: 0.25em;
2922 .comment-controls .edit-button,
2923 .comment-controls .retract-button,
2924 .comment-controls .unretract-button {
2925 margin-right: 1em;
2927 .comment-controls .retract-button::before {
2928 content: '\F4B3';
2929 opacity: 0.6;
2931 .comment-controls .unretract-button::before {
2932 content: '\F075';
2933 opacity: 0.9;
2935 .comment-controls .delete-button::before {
2936 content: '\F05E';
2937 opacity: 0.7;
2939 .comment-controls .retract-button::before,
2940 .comment-controls .unretract-button::before,
2941 .comment-controls .delete-button::before {
2942 font-weight: 900;
2943 font-size: 0.9em;
2946 .comment-controls form {
2947 position: relative;
2949 .textarea-container {
2950 position: relative;
2952 .posting-controls textarea {
2953 display: block;
2954 width: 100%;
2955 height: 15em;
2956 min-height: 15em;
2957 max-height: calc(100vh - 6em);
2958 margin: 2px 0 0 0;
2959 padding: 4px 5px;
2960 font-size: 1.2rem;
2961 border-style: solid;
2962 border-width: 29px 1px 1px 1px;
2963 resize: none;
2966 /* GUIEdit buttons */
2968 .guiedit-buttons-container {
2969 position: absolute;
2970 left: 1px;
2971 top: 1px;
2972 width: calc(100% - 2px);
2973 height: 28px;
2974 text-align: left;
2975 padding: 1px 4px 0 4px;
2976 overflow: hidden;
2978 .comment-thread-page .guiedit-buttons-container {
2979 padding-right: 60px;
2981 .guiedit-buttons-container button {
2982 height: 26px;
2983 padding: 0 7px;
2984 font-weight: 900;
2985 font-size: 0.875rem;
2986 line-height: 1;
2987 position: static;
2989 .guiedit-buttons-container button:active {
2990 transform: none;
2992 .guiedit-buttons-container button:active div {
2993 transform: scale(0.9);
2995 .guiedit-buttons-container button sup {
2996 font-weight: bold;
2998 .guiedit::after {
2999 content: attr(data-tooltip);
3000 position: absolute;
3001 font-weight: normal;
3002 font-size: 1rem;
3003 top: 2px;
3004 left: 464px;
3005 height: 25px;
3006 padding: 4px 0;
3007 white-space: nowrap;
3008 visibility: hidden;
3010 .guiedit:hover::after {
3011 visibility: visible;
3014 /* Markdown hints */
3016 .posting-controls .markdown-reference-link {
3017 float: left;
3018 padding: 1px 0 0 6px;
3020 .posting-controls .markdown-reference-link a {
3021 padding-right: 1.5em;
3022 margin-right: 0.15em;
3023 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');
3024 background-size: 1.25em;
3025 background-repeat: no-repeat;
3026 background-position: right center;
3029 #markdown-hints-checkbox + label {
3030 float: left;
3031 margin: 2px 0 0 1em;
3032 line-height: 1.3;
3033 cursor: pointer;
3035 #edit-post-form #markdown-hints-checkbox + label {
3036 padding: 0;
3038 #markdown-hints-checkbox {
3039 visibility: hidden;
3040 float: left;
3042 #markdown-hints-checkbox + label::after {
3043 content: "(Show Markdown help)";
3045 #markdown-hints-checkbox:checked + label::after {
3046 content: "(Hide Markdown help)";
3048 #markdown-hints-checkbox + label::before {
3049 content: '\F059';
3050 font-family: "Font Awesome", "Font Awesome 5 Free";
3051 font-weight: 900;
3052 margin-right: 3px;
3054 #markdown-hints-checkbox:checked + label::before {
3055 font-weight: normal;
3057 #markdown-hints {
3058 margin: 4px 0 0 4px;
3059 padding: 4px 8px;
3060 position: absolute;
3061 text-align: left;
3062 top: calc(100% - 1em);
3063 z-index: 1;
3064 display: none;
3066 .comment-controls #markdown-hints {
3067 top: calc(100% + 1.75em);
3069 #markdown-hints-checkbox:checked ~ #markdown-hints {
3070 display: table;
3072 .markdown-hints-row {
3073 display: table-row;
3075 #markdown-hints .markdown-hints-row span,
3076 #markdown-hints .markdown-hints-row code {
3077 float: none;
3078 display: table-cell;
3079 border: none;
3080 background-color: inherit;
3081 padding: 0 12px 0 0;
3084 /******************/
3085 /* EDIT POST FORM */
3086 /******************/
3088 #edit-post-form {
3089 padding: 1em 1em 4em 1em;
3091 #edit-post-form .post-meta-fields {
3092 display: grid;
3093 grid-template-columns: 5em auto auto auto 1fr auto;
3094 margin-bottom: 0.625em;
3097 #edit-post-form label[for='title'],
3098 #edit-post-form label[for='url'],
3099 #edit-post-form label[for='section'] {
3100 grid-column: 1;
3102 #edit-post-form input[type='text'] {
3103 padding: 0.25em;
3104 grid-column: 2 / span 4;
3105 margin-bottom: 0.5em;
3108 #edit-post-form .link-post-checkbox,
3109 #edit-post-form .link-post-checkbox + label {
3110 grid-row: 1;
3111 grid-column: 6;
3113 #edit-post-form .question-checkbox,
3114 #edit-post-form .question-checkbox + label {
3115 grid-row: 3;
3116 grid-column: 5;
3117 justify-self: start;
3118 margin-left: 1.5em;
3121 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3122 grid-row: 4;
3123 grid-column: 2 / span 4;
3124 text-align: left;
3125 margin-top: 8px;
3128 #edit-post-form .post-meta-fields input[type='checkbox'] {
3129 height: 0;
3130 opacity: 0;
3131 pointer-events: none;
3133 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3134 white-space: nowrap;
3135 position: relative;
3136 cursor: pointer;
3137 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3138 align-self: start;
3140 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3141 content: "";
3142 font-family: "Font Awesome", "Font Awesome 5 Free";
3143 font-size: 1.375rem;
3144 line-height: 0.7;
3145 text-indent: 1px;
3146 font-weight: 900;
3147 position: absolute;
3148 width: 20px;
3149 height: 20px;
3150 left: 5px;
3152 #edit-post-form label[for='url'],
3153 #edit-post-form input[name='url'] {
3154 display: none;
3156 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3157 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3158 display: initial;
3160 #edit-post-form label {
3161 line-height: normal;
3162 border: 1px solid transparent;
3163 text-align: right;
3164 padding: 0.25em 0.5em;
3165 white-space: nowrap;
3167 #edit-post-form input[type='radio'] {
3168 width: 0;
3169 margin: 0;
3170 opacity: 0;
3171 pointer-events: none;
3173 #edit-post-form input[type='radio'] + label {
3174 padding: 4px 12px;
3175 text-align: center;
3176 border-style: solid;
3177 border-width: 1px 1px 1px 0;
3178 cursor: pointer;
3180 #edit-post-form input[type='radio']:checked + label {
3181 cursor: default;
3184 #edit-post-form label[for='section'] {
3185 grid-row: 3;
3187 #edit-post-form input[type='radio'] + label {
3188 grid-row: 3;
3190 @supports (width: -moz-fit-content) {
3191 #edit-post-form input[type='radio'] + label {
3192 width: -moz-fit-content;
3195 @supports (width: fit-content) {
3196 #edit-post-form input[type='radio'] + label {
3197 width: fit-content;
3201 #edit-post-form textarea {
3202 min-height: 24em;
3205 #edit-post-form input[type='submit'] {
3206 padding: 6px 12px;
3207 float: right;
3209 #edit-post-form #markdown-hints {
3210 top: calc(100% + 2em);
3213 #edit-post-form button.guiedit div {
3214 overflow: visible;
3216 .guiedit-mobile-auxiliary-button {
3217 display: none;
3220 /***********/
3221 /* BUTTONS */
3222 /***********/
3224 button,
3225 input[type='submit'] {
3226 font-family: inherit;
3227 font-size: inherit;
3228 background-color: inherit;
3229 cursor: pointer;
3230 border: none;
3231 border-radius: 0;
3234 /************/
3235 /* HEADINGS */
3236 /************/
3238 .body-text h1,
3239 .body-text h2,
3240 .body-text h3,
3241 .body-text h4,
3242 .body-text h5,
3243 .body-text h6 {
3244 line-height: 1.1;
3245 margin: 1em 0 0.75em 0;
3246 text-align: left;
3249 .post-body h5,
3250 .post-body h6 {
3251 font-size: 1em;
3253 .post-body h4,
3254 .body-text h4 {
3255 font-size: 1.2em;
3257 .post-body h3,
3258 .body-text h3 {
3259 font-size: 1.4em;
3261 .post-body h2,
3262 .body-text h2 {
3263 font-size: 1.75em;
3265 .post-body h1,
3266 .body-text h1 {
3267 font-size: 2.1em;
3270 .comment-body h5,
3271 .comment-body h6 {
3272 font-size: 1em;
3274 .comment-body h4 {
3275 font-size: 1.15em;
3277 .comment-body h3 {
3278 font-size: 1.3em;
3280 .comment-body h2 {
3281 font-size: 1.5em;
3283 .comment-body h1 {
3284 font-size: 1.75em;
3287 /**********/
3288 /* QUOTES */
3289 /**********/
3291 blockquote,
3292 .post-body .comment-box .comment-body {
3293 font-size: 0.9em;
3294 margin: 1em 0;
3295 padding-left: 0.5em;
3296 margin-left: 1px;
3297 padding-bottom: 3px;
3299 blockquote *:first-child {
3300 margin-top: 0;
3302 blockquote *:last-child {
3303 margin-bottom: 0;
3305 blockquote blockquote {
3306 font-size: 0.95em;
3309 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3311 .post-body .comment-box .user-name {
3312 font-style: italic;
3314 .post-body .comment-box .user-name::after {
3315 content: ":";
3317 .post-body .comment-box {
3318 zoom: 1.25;
3321 /**********/
3322 /* IMAGES */
3323 /**********/
3325 #content img, #content figure {
3326 max-width: 100%;
3329 .prediction-poll > svg {
3330 width: 700px;
3331 max-width: 100%;
3334 img.inline-latex {
3335 position: relative;
3336 top: 2.5px;
3337 margin: 0 2px;
3340 #content figure {
3341 text-align: center;
3342 margin: 1.5em auto;
3345 p.imgonly,
3346 div.imgonly,
3347 figure {
3348 text-align: center;
3349 margin: auto;
3350 clear: both;
3353 .imgonly iframe {
3354 display: block;
3355 width: 100%;
3356 height: 250px;
3357 border: 0;
3360 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3362 [style*="--aspect-ratio"] > * {
3363 width: 100%;
3365 [style*="--aspect-ratio"] > img {
3366 height: auto;
3368 @supports (--custom:property) {
3369 [style*="--aspect-ratio"] {
3370 position: relative;
3372 [style*="--aspect-ratio"]::before {
3373 content: "";
3374 display: block;
3375 padding-bottom: calc(100% / (var(--aspect-ratio)));
3377 [style*="--aspect-ratio"] > * {
3378 position: absolute;
3379 top: 0;
3380 left: 0;
3381 height: 100%;
3385 /**********/
3386 /* TABLES */
3387 /**********/
3389 .body-text table {
3390 border-collapse: collapse;
3391 font-size: 0.875em;
3393 .body-text table th,
3394 .body-text table td {
3395 text-align: left;
3396 padding: 4px 6px;
3397 line-height: 1.3;
3399 .body-text table .numeric {
3400 text-align: right;
3401 font-family: Inconsolata, Menlo, monospace;
3403 .body-text table caption {
3404 margin: 0 0 0.25em 0;
3405 font-weight: bold;
3406 font-size: 1.125em;
3409 /********/
3410 /* MISC */
3411 /********/
3413 /*= Superscripts & subscripts =*/
3415 /* Make sure superscripts and subscripts do not affect line spacing. */
3416 sup, sub {
3417 vertical-align: baseline;
3418 position: relative;
3419 top: -0.5em;
3420 left: 0.05em;
3421 font-size: 0.8em;
3423 sub {
3424 top: 0.3em;
3427 /*= Code blocks & other "unstyled" text. =*/
3429 pre,
3430 code {
3431 font-family: Inconsolata, Menlo, monospace;
3433 pre {
3434 white-space: pre-wrap;
3436 .body-text pre {
3437 text-align: left;
3439 code {
3440 font-size: 0.95em;
3441 display: inline-block;
3442 padding: 0 4px 1px 5px;
3444 pre > code {
3445 display: block;
3446 border-radius: 0;
3447 padding: 3px 4px 5px 8px;
3448 tab-size: 4;
3451 /*= Fractions =*/
3453 .frac::after {
3454 content: "\200B";
3457 /*= Removing browser default styling of various elements =*/
3459 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3460 :focus {
3461 outline: none;
3464 /* Remove "embossed" appearance of horizontal rules. */
3465 hr {
3466 border: none;
3469 input,
3470 button,
3471 textarea {
3472 -webkit-appearance: none;
3473 -moz-appearance: none;
3474 appearance: none;
3477 input {
3478 font-family: inherit;
3479 font-size: inherit;
3480 font-weight: inherit;
3483 /*************/
3484 /* FOOTNOTES */
3485 /*************/
3487 ol {
3488 counter-reset: ordered-list;
3490 .footnote-definition {
3491 font-size: 0.9em;
3492 list-style-type: none;
3493 counter-increment: ordered-list;
3494 position: relative;
3496 .footnote-definition p {
3497 font-size: inherit !important;
3499 .footnote-definition::before {
3500 content: counter(ordered-list) ".";
3501 position: absolute;
3502 left: -2.5em;
3503 font-weight: bold;
3504 text-align: right;
3505 width: 2em;
3508 /*= LW Docs footnotes =*/
3510 .footnote-item {
3511 display: flex;
3514 .footnote-item > :not(.nothing) {
3515 margin: 0 0.2em;
3518 .footnote-item > :first-child {
3519 margin-left: -0.2em;
3520 margin-right: 0;
3523 .footnote-back-link a:not(.nothing) {
3524 font-size: 0;
3525 text-decoration: none;
3526 border: none;
3529 .footnote-back-link a:not(.nothing):hover {
3530 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #00e;
3531 border: none;
3532 text-decoration: none;
3535 .footnote-back-link a::after {
3536 content: '\F106';
3537 font-family: Font Awesome;
3538 font-size: 1rem;
3539 padding: 0.2em;
3540 text-decoration: none;
3541 font-weight: bold;
3544 .footnote-content > :first-child {
3545 margin-top: 0;
3548 /*********/
3549 /* LISTS */
3550 /*********/
3552 li {
3553 margin-bottom: 0.5em;
3556 .body-text ol p,
3557 .body-text ul p {
3558 margin: 0.5em 0;
3561 .body-text ol {
3562 list-style: none;
3563 padding: 0;
3564 counter-reset: ol;
3566 .body-text ol > li {
3567 position: relative;
3568 counter-increment: ol;
3569 padding: 0 0 0 2.5em;
3570 margin: 0.25em 0 0 0;
3572 .body-text ol > li::before {
3573 content: counter(ol) ".";
3574 position: absolute;
3575 width: 2em;
3576 text-align: right;
3577 left: 0;
3579 .body-text ul {
3580 list-style: none;
3581 padding: 0;
3583 .body-text ul:not(.contents-list) > li:empty {
3584 padding-bottom: 1.25em;
3586 .body-text ul:not(.contents-list) > li {
3587 position: relative;
3588 padding: 0 0 0 1.75em;
3589 margin: 0.25em 0 0 0;
3591 .body-text ul:not(.contents-list) > li ul > li {
3592 padding: 0 0 0 2em;
3594 .body-text ul:not(.contents-list) > li::before {
3595 content: "•";
3596 position: absolute;
3597 width: 1.25em;
3598 text-align: right;
3599 left: 0;
3601 .body-text ul:not(.contents-list) > li ul > li::before {
3602 width: 1.5em;
3604 .body-text li > ul:first-child > li {
3605 padding-left: 0;
3607 .body-text li > ul:first-child > li::before {
3608 content: none;
3611 /**************/
3612 /* ERROR PAGE */
3613 /**************/
3615 .error-retry-form {
3616 margin: 0.5em 0;
3619 .error-retry-form input[type="submit"] {
3620 border: 1px solid #aaa;
3621 font-weight: bold;
3622 font-size: 1.125rem;
3623 padding: 0.5em 1.25em;
3626 /**************/
3627 /* ABOUT PAGE */
3628 /**************/
3630 #content.about-page .contents {
3631 margin-top: 0.25em;
3633 #content.about-page .accesskey-table {
3634 border-collapse: collapse;
3635 margin: auto;
3637 #content.about-page .accesskey-table th,
3638 #content.about-page .accesskey-table td {
3639 padding: 2px 6px;
3641 #content.about-page .accesskey-table td:first-child {
3642 padding-right: 1.5em;
3644 #content.about-page .accesskey-table td:last-child {
3645 text-align: center;
3646 font-family: Inconsolata, Menlo, monospace;
3648 #content.about-page h3:nth-of-type(n+2) {
3649 clear: both;
3652 /******************/
3653 /* IMAGES OVERLAY */
3654 /******************/
3656 #images-overlay + #content .post-body img {
3657 visibility: hidden;
3660 #images-overlay div {
3661 position: absolute;
3663 #images-overlay div::after {
3664 content: "Click to enlarge";
3665 display: block;
3666 position: absolute;
3667 margin: auto;
3668 left: 0;
3669 right: 0;
3670 bottom: 10px;
3671 padding: 6px 10px;
3672 font-size: 1.25rem;
3673 background-color: rgba(0,0,0,0.6);
3674 color: #fff;
3675 border-radius: 5px;
3676 opacity: 0.0;
3677 transition: opacity 0.15s ease;
3678 pointer-events: none;
3680 @supports (width: -moz-fit-content) {
3681 #images-overlay div::after {
3682 width: -moz-fit-content;
3685 @supports (width: fit-content) {
3686 #images-overlay div::after {
3687 width: fit-content;
3690 #images-overlay div:hover::after {
3691 opacity: 1.0;
3694 #images-overlay img {
3695 width: 100%;
3698 /***************/
3699 /* IMAGE FOCUS */
3700 /***************/
3702 /*=--------------=*/
3703 /*= Hover styles =*/
3704 /*=--------------=*/
3706 #content img:hover,
3707 #images-overlay img:hover {
3708 filter: drop-shadow(0 0 3px #777);
3709 cursor: zoom-in;
3711 #content img:active,
3712 #images-overlay img:active {
3713 transform: scale(0.975);
3716 /*=---------=*/
3717 /*= Overlay =*/
3718 /*=---------=*/
3720 #image-focus-overlay {
3721 position: fixed;
3722 top: 0;
3723 right: 0;
3724 bottom: 0;
3725 left: 0;
3726 z-index: 2;
3727 display: none;
3728 cursor: zoom-out;
3730 #image-focus-overlay::before {
3731 content: "";
3732 display: block;
3733 position: absolute;
3734 top: 0;
3735 right: 0;
3736 bottom: 0;
3737 left: 0;
3738 background-color: #000;
3739 opacity: 0.5;
3740 z-index: -1;
3742 #image-focus-overlay.engaged {
3743 display: initial;
3746 #image-focus-overlay img {
3747 margin: auto;
3748 position: absolute;
3749 left: 50%;
3750 top: 50%;
3751 transform: translateX(-50%) translateY(-50%);
3754 /*=-------------------=*/
3755 /*= Single-image mode =*/
3756 /*=-------------------=*/
3758 #image-focus-overlay:not(.slideshow) .image-number,
3759 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3760 visibility: hidden;
3763 /*=---------=*/
3764 /*= Caption =*/
3765 /*=---------=*/
3767 #image-focus-overlay .caption {
3768 position: absolute;
3769 bottom: 0.75em;
3770 background-color: rgba(0,0,0,0.7);
3771 left: 9em;
3772 right: 9em;
3773 margin: auto;
3774 max-width: calc(100% - 18em);
3775 text-align: center;
3776 font-size: 1.375em;
3777 border-radius: 8px;
3778 z-index: 1;
3779 transition:
3780 bottom 0.2s ease;
3782 @supports (width: -moz-fit-content) {
3783 #image-focus-overlay .caption {
3784 width: -moz-fit-content;
3787 @supports (width: fit-content) {
3788 #image-focus-overlay .caption {
3789 width: fit-content;
3792 #image-focus-overlay .caption.hidden {
3793 bottom: -5em;
3794 transition:
3795 bottom 0.5s ease;
3798 #image-focus-overlay .caption p {
3799 margin: 1em 1.25em;
3800 color: #fff;
3803 #image-focus-overlay .caption:not(:empty)::before {
3804 content: "";
3805 display: block;
3806 position: absolute;
3807 width: 100vw;
3808 height: calc(100% + 1.5em);
3809 z-index: -1;
3810 top: -0.75em;
3811 left: calc(-50vw + 50%);
3815 /*=--------------=*/
3816 /*= Help overlay =*/
3817 /*=--------------=*/
3819 #image-focus-overlay .help-overlay {
3820 position: absolute;
3821 display: flex;
3822 flex-flow: column;
3823 z-index: 2;
3824 font-size: 1.5rem;
3825 padding: 1em;
3826 border-radius: 10px;
3827 bottom: 1em;
3828 right: 1em;
3829 overflow: hidden;
3830 white-space: nowrap;
3831 color: transparent;
3832 cursor: default;
3833 visibility: hidden;
3834 transition:
3835 visibility 1s ease,
3836 color 1s ease,
3837 background-color 1s ease,
3838 bottom 0.3s ease;
3840 #image-focus-overlay .help-overlay:hover {
3841 max-width: 24em;
3842 max-height: 14em;
3843 background-color: rgba(0,0,0,0.85);
3844 color: #fff;
3845 visibility: visible;
3846 transition:
3847 visibility 0.2s ease 0.3s,
3848 color 0.2s ease 0.3s,
3849 background-color 0.2s ease 0.3s;
3852 #image-focus-overlay .help-overlay::after {
3853 content: "\F128";
3854 font-family: "Font Awesome", "Font Awesome 5 Free";
3855 font-weight: 900;
3856 font-size: 2rem;
3857 position: absolute;
3858 right: 0;
3859 bottom: 0;
3860 padding: 10px;
3861 color: #000;
3862 filter: drop-shadow(0 0 6px #fff);
3863 visibility: visible;
3864 opacity: 0.85;
3865 transition:
3866 visibility 1s ease;
3868 #image-focus-overlay .help-overlay:hover::after {
3869 visibility: hidden;
3870 transition:
3871 visibility 0.2s ease 0.3s;
3874 #image-focus-overlay .help-overlay p {
3875 margin: 0;
3876 text-indent: -2em;
3877 padding-left: 2em;
3878 max-width: 100%;
3879 overflow: hidden;
3881 #image-focus-overlay .help-overlay p + p {
3882 margin: 0.75em 0 0 0;
3884 #image-focus-overlay .help-overlay.hidden {
3885 bottom: -2em;
3888 /*=--------------=*/
3889 /*= Slide number =*/
3890 /*=--------------=*/
3892 #image-focus-overlay .image-number {
3893 position: absolute;
3894 z-index: 2;
3895 font-size: 1.75rem;
3896 left: 1em;
3897 bottom: 1em;
3898 font-weight: 600;
3899 text-shadow:
3900 0 0 3px #fff,
3901 0 0 5px #fff,
3902 0 0 8px #fff,
3903 0 0 13px #fff;
3904 width: 1.5em;
3905 text-align: right;
3906 white-space: nowrap;
3907 transition: bottom 0.3s ease;
3909 #image-focus-overlay .image-number::before {
3910 content: "#";
3911 opacity: 0.3;
3913 #image-focus-overlay .image-number::after {
3914 content: " of " attr(data-number-of-images);
3915 opacity: 0.3;
3917 #image-focus-overlay .image-number:hover::before,
3918 #image-focus-overlay .image-number:hover::after {
3919 opacity: 1.0;
3921 #image-focus-overlay .image-number.hidden {
3922 bottom: -1.25em;
3925 /*=-------------------=*/
3926 /*= Slideshow buttons =*/
3927 /*=-------------------=*/
3929 #image-focus-overlay .slideshow-buttons {
3930 position: absolute;
3931 top: 0;
3932 left: 0;
3933 width: 100%;
3934 height: 100%;
3935 z-index: 1;
3936 display: flex;
3937 justify-content: space-between;
3938 pointer-events: none;
3940 #image-focus-overlay .slideshow-buttons button {
3941 font-family: "Font Awesome", "Font Awesome 5 Free";
3942 font-weight: 900;
3943 font-size: 3rem;
3944 padding: 0.5em;
3945 color: #ddd;
3946 position: relative;
3947 left: 0;
3948 transition:
3949 left 0.3s ease;
3950 pointer-events: auto;
3952 #image-focus-overlay .slideshow-buttons button::selection {
3953 background-color: transparent;
3955 @media only screen and (hover: hover) {
3956 #image-focus-overlay .slideshow-buttons button:hover {
3957 background-color: rgba(0,0,0,0.1);
3958 color: #777;
3961 #image-focus-overlay .slideshow-buttons button:active {
3962 transform: none;
3963 color: #888;
3965 #image-focus-overlay .slideshow-buttons button:disabled {
3966 text-shadow: none;
3967 background-color: transparent;
3968 color: #ddd;
3969 cursor: default;
3970 opacity: 0.4;
3972 #image-focus-overlay .slideshow-button.previous.hidden {
3973 left: -1.75em;
3975 #image-focus-overlay .slideshow-button.next.hidden {
3976 left: 1.75em;
3979 /*=-----------------=*/
3980 /*= Background blur =*/
3981 /*=-----------------=*/
3983 .blurred {
3984 filter: blur(3px);
3987 /**************************/
3988 /* QUALIFIED HYPERLINKING */
3989 /**************************/
3991 #content.no-nav-bars {
3992 margin: 8px auto;
3994 #content.no-nav-bars + #ui-elements-container > * {
3995 padding-top: 8px;
3998 #aux-about-link {
3999 position: fixed;
4000 top: 40px;
4001 left: calc((100% - 900px) / 2 - 69px);
4002 width: 1.5em;
4003 height: 1.5em;
4004 text-align: center;
4005 display: table;
4007 #aux-about-link a {
4008 display: table-cell;
4009 width: 100%;
4010 vertical-align: middle;
4011 font-family: "Font Awesome", "Font Awesome 5 Free";
4012 font-weight: 900;
4013 font-size: 1.25rem;
4014 opacity: 0.4;
4015 z-index: 1;
4018 .qualified-linking {
4019 margin: 0;
4020 position: relative;
4022 .qualified-linking input[type='checkbox'] {
4023 visibility: hidden;
4024 width: 0;
4025 height: 0;
4026 margin: 0;
4028 .qualified-linking label {
4029 font-family: "Font Awesome", "Font Awesome 5 Free";
4030 font-weight: 900;
4031 font-size: 1rem;
4032 padding: 0 0.5em;
4033 display: inline-block;
4034 margin-left: 0.25em;
4036 .qualified-linking label:hover {
4037 cursor: pointer;
4039 .qualified-linking label:active span {
4040 display: inline-block;
4041 transform: scale(0.9);
4043 .qualified-linking label::selection {
4044 background-color: transparent;
4047 .qualified-linking label::after {
4048 content: "";
4049 width: 100vw;
4050 height: 0;
4051 left: 0;
4052 top: 0;
4053 position: fixed;
4054 z-index: 1;
4055 cursor: default;
4057 .qualified-linking input[type='checkbox']:checked + label::after {
4058 height: 100vh;
4061 .qualified-linking-toolbar {
4062 position: absolute;
4063 right: 0.25em;
4064 top: 110%;
4065 z-index: 1;
4067 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
4068 display: none;
4070 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
4071 display: block;
4073 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
4074 top: unset;
4075 bottom: 125%;
4078 .qualified-linking-toolbar a {
4079 display: block;
4080 padding: 0 6px;
4081 margin: 4px;
4083 .qualified-linking-toolbar a::selection {
4084 background-color: transparent;
4087 /*****************/
4088 /* HOVER PREVIEW */
4089 /*****************/
4091 #preview-popup-toggle {
4092 position: absolute;
4093 right: -67px;
4094 bottom: 285px;
4095 cursor: pointer;
4096 color: var(--GW-toggle-widget-color, #888);
4098 #preview-popup-toggle:hover {
4099 color: var(--GW-toggle-widget-hover-color, #444);
4102 #content.preview:not(not) {
4103 padding: 0;
4105 #content.preview > .comment-thread {
4106 margin: 2px;
4108 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4109 border: none;
4111 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4112 padding: 0 8px;
4114 #content.preview.user-page .page-main-heading {
4115 margin-left: 8px;
4117 #content.preview.not(not) .body-text {
4118 margin-left: 8px;
4119 margin-right: 8px;
4121 #content.preview.user-page .user-stats {
4122 margin-right: 32px;
4124 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4125 display: none;
4127 #content.preview button.vote {
4128 display: none;
4130 #content.preview > h1.listing {
4131 max-height: unset;
4133 #content.preview.user-page > .comment-thread {
4134 margin: 0.5em 0;
4136 #content.preview > .post {
4137 margin: 0 18px;
4139 #content.preview .post-title {
4140 margin-top: 0.5em;
4142 #content.preview .post-meta {
4143 line-height: 1.0;
4145 #content.preview .body-text {
4146 font-size: 1em;
4148 #content.preview nav.contents,
4149 #content.preview .lw2-link {
4150 display: none;
4153 .preview-popup {
4154 position: fixed;
4155 transform-origin: top;
4156 top: 10%;
4157 right: 10%;
4158 max-width: 700px;
4159 z-index: 10001;
4160 background-color: #eee;
4161 border: 1px solid #ccc;
4162 box-shadow: 2px 6px 20px -4px #000;
4163 transition: height 0.2s ease, top 0.2s ease;
4165 .popup-hide-button {
4166 position: fixed;
4167 top: 4px;
4168 right: 4px;
4169 color: #000;
4170 background-color: #fff;
4171 width: 28px;
4172 height: 28px;
4173 display: flex;
4174 font-family: "Font Awesome";
4175 font-size: 14px;
4176 line-height: 1;
4177 border: 1px solid #bbb;
4178 border-radius: 28px;
4179 align-items: center;
4180 justify-content: center;
4181 //padding-bottom: 2px;
4182 padding-left: 1.5px;
4183 font-family: "Font Awesome", "Font Awesome 5 Free";
4184 cursor: pointer;
4186 .popup-hide-button:hover::before {
4187 content: "Turn off preview popups";
4188 display: block;
4189 position: absolute;
4190 width: max-content;
4191 right: 32px;
4192 color #000;
4193 background-color: #fff;
4194 border: 1px solid #eee;
4195 border-radius: 2px;
4196 padding: 4px;
4199 /********/
4200 /* MATH */
4201 /********/
4203 .mathjax-block-container {
4204 display: block;
4205 overflow-y: hidden;
4206 border-radius: 6px;
4207 margin: 1em 0 1.5em 0;
4209 .mathjax-inline-container {
4210 max-width: 100%;
4211 overflow-x: auto;
4212 overflow-y: hidden;
4213 position: relative;
4214 padding: 0 1px;
4216 #content .mathjax-inline-container,
4217 #content .mathjax-inline-container .mjpage,
4218 #content .mathjax-inline-container .mjx-chtml,
4219 #content .mathjax-inline-container .mjx-math,
4220 #content .mathjax-inline-container .mjx-mrow {
4221 display: inline;
4222 white-space: normal;
4224 .post .mathjax-inline-container {
4225 line-height: 1;
4227 .comment .mathjax-inline-container {
4228 line-height: 1;
4230 .mathjax-inline-container .mjx-chtml {
4231 padding: 0;
4234 /************/
4235 /* SPOILERS */
4236 /************/
4238 .spoiler {
4239 color: #000;
4240 background-color: currentColor;
4241 transition: none;
4242 text-shadow: none;
4243 margin: 1em 0;
4244 box-shadow: 0 0 0 1px currentColor inset;
4245 overflow: auto;
4247 .spoiler:not(:last-child) {
4248 margin-bottom: 0;
4250 #content .spoiler * {
4251 color: inherit;
4252 border: none;
4254 .spoiler:hover {
4255 color: unset;
4256 background-color: unset;
4257 text-shadow: unset;
4258 transition:
4259 color 0.1s ease-out 0.1s,
4260 background-color 0.1s ease-out 0.1s,
4261 text-shadow 0.1s ease-out 0.1s;
4263 .spoiler::selection,
4264 .spoiler ::selection {
4265 color: #fff;
4266 background-color: #000;
4268 .spoiler:not(:hover)::selection,
4269 .spoiler:not(:hover) ::selection {
4270 background-color: transparent;
4273 /*= Fix for LessWrong being weird =*/
4275 .spoiler > p {
4276 padding: 0 7px;
4278 .spoiler > p:first-child {
4279 margin-top: 0.25em;
4281 .spoiler > p:last-child {
4282 margin-bottom: 0;
4283 padding-bottom: 0.25em;
4285 .spoiler > p:hover ~ p {
4286 background-color: currentColor;
4288 .spoiler > p + p {
4289 margin-top: -1em;
4291 .spoiler > p:not(:first-child) {
4292 padding-top: 0.5em;
4294 .spoiler > p:not(:last-child) {
4295 padding-bottom: 0.5em;
4298 .spoiler:not(:hover) pre,
4299 .spoiler:not(:hover) code {
4300 background-color: inherit;
4301 box-shadow: none;
4303 #content .spoiler pre {
4304 border-color: currentColor;
4305 border-style: solid;
4306 border-width: 0 1px;
4307 border-radius: 0;
4310 /*******************/
4311 /* PAGE LIST INDEX */
4312 /*******************/
4314 .page-list-index {
4315 margin: 1em 30px;
4316 line-height: 1.2;
4319 .page-list-index > p {
4320 font-weight: bold;
4321 font-size: 1.2em;
4324 .page-list-index > ul * {
4325 margin: 0;
4328 .page-list-index ul {
4329 padding-left: 1.5em;
4332 .page-list-index li {
4333 margin-top: 0.67em;
4336 .page-list-index li > a {
4337 display: block;
4338 font-size: 1.1em;
4339 font-weight: bold;
4340 margin: 0.33em 0;
4343 .page-list-index li > a:last-child {
4344 margin-bottom: 1em;
4348 /*****************/
4349 /* USER MENTIONS */
4350 /*****************/
4352 .textarea-container .autocomplete-container {
4353 position: absolute;
4354 overflow-y: auto;
4355 font-size: 1.125rem;
4356 cursor: default;
4357 backdrop-filter: blur(2px);
4358 width: 360px;
4360 .textarea-container .autocomplete-container:empty {
4361 display: none;
4364 @media only screen and (min-width: 521px) {
4365 .textarea-container .autocomplete-container.inside {
4366 max-height: calc(100% - 36px);
4367 top: 32px;
4369 .textarea-container .autocomplete-container.outside {
4370 max-height: calc(100% - 28px);
4371 top: 28px;
4372 z-index: 10001;
4375 .textarea-container .autocomplete-container.inside.right {
4376 right: 18px;
4378 .textarea-container .autocomplete-container.inside.left {
4379 left: 18px;
4381 .textarea-container .autocomplete-container.outside.right {
4382 left: calc(100% + 3px);
4384 .textarea-container .autocomplete-container.outside.left {
4385 right: calc(100% + 3px);
4388 head.content-width-normal + body .textarea-container .autocomplete-container.outside {
4389 max-width: calc((100vw - (900px - 40px * 2)) / 2);
4391 head.content-width-wide + body .textarea-container .autocomplete-container.outside {
4392 max-width: calc((100vw - (1150px - 40px * 2)) / 2);
4394 head.content-width-fluid + body .textarea-container .autocomplete-container.outside {
4395 max-width: calc((300px + 40px * 2) / 2);
4399 .textarea-container .autocomplete-container div {
4400 padding: 2px 8px 0 8px;
4401 white-space: nowrap;
4402 display: flex;
4403 justify-content: flex-end;
4406 .textarea-container .autocomplete-container div span.name {
4407 flex: 1 1 auto;
4408 width: calc(100% - 9em);
4409 overflow: hidden;
4410 text-overflow: ellipsis;
4412 .textarea-container .autocomplete-container div span.name:hover {
4413 overflow: visible;
4414 z-index: 1;
4416 .textarea-container .autocomplete-container div span.age,
4417 .textarea-container .autocomplete-container div span.karma {
4418 font-size: 0.9em;
4419 text-align: right;
4421 .textarea-container .autocomplete-container div span.age {
4422 flex: 0 0 3em;
4424 .textarea-container .autocomplete-container div span.karma {
4425 flex: 0 0 6em;
4429 /***************/
4430 /* COLLECTIONS */
4431 /***************/
4433 h2.sequence-chapter,
4434 h3.sequence-chapter,
4435 h4.sequence-chapter {
4436 text-align: center;
4438 h2.sequence-chapter::before,
4439 h3.sequence-chapter::before,
4440 h4.sequence-chapter::before {
4441 display: block;
4442 clear: both;
4443 margin: 1.5em 0 0.75em 0;
4444 font-style: normal;
4445 font-weight: normal;
4446 font-family: 'Concourse', 'a_Avante', 'GW-Symbols';
4448 h2.sequence-chapter::before {
4449 content: '\25A3';
4451 h3.sequence-chapter::before {
4452 content: '\25AA\2004\25AA';
4454 h4.sequence-chapter::before {
4455 content: '\00B7\2004\00B7\2004\00B7';
4459 /*******************/
4460 /* ALIGNMENT FORUM */
4461 /*******************/
4463 #content.alignment-forum-index-page::after {
4464 content: "Alignment Forum";
4465 font-size: 1.5rem;
4466 margin: 0.375em 0 0 -0.375em;
4467 order: -1;
4470 /**********************/
4471 /* FOR NARROW SCREENS */
4472 /**********************/
4474 @media only screen and (max-width: 1440px) {
4475 #hns-date-picker {
4476 right: -81px;
4477 padding: 8px 10px 10px 10px;
4478 bottom: 62px;
4479 display: none;
4481 #hns-date-picker::before {
4482 content: "";
4483 position: absolute;
4484 display: block;
4485 z-index: -1;
4486 height: calc(100% + 2px);
4487 top: -1px;
4488 left: -1px;
4489 width: 50%;
4492 @media only screen and (max-width: 1160px) {
4493 #new-comment-nav-ui {
4494 bottom: 180px;
4495 right: -68px;
4497 #hns-date-picker {
4498 bottom: 200px;
4499 right: -36px;
4501 #hns-date-picker::before {
4502 width: calc(100% - 35px);
4504 #theme-selector button::before {
4505 right: unset;
4506 left: 100%;
4508 #theme-selector:hover::after {
4509 content: "";
4510 display: block;
4511 position: absolute;
4512 width: calc(6em - 7px);
4513 height: calc(100% + 2px);
4514 top: 0;
4515 left: calc(100% + 1px);
4517 #anti-kibitzer-toggle {
4518 bottom: 330px;
4521 @media only screen and (max-width: 1080px) {
4522 #width-selector {
4523 right: -30px;
4525 #width-selector button {
4526 display: block;
4528 #text-size-adjustment-ui {
4529 top: 90px;
4530 right: -30px;
4532 #text-size-adjustment-ui button {
4533 display: block;
4534 position: relative;
4536 #text-size-adjustment-ui button.increase {
4537 bottom: 48px;
4539 #text-size-adjustment-ui button.decrease {
4540 top: 50px;
4542 #theme-selector {
4543 top: 46px;
4544 left: -44px;
4546 #theme-tweaker-toggle {
4547 left: -44px;
4548 top: 2px;
4550 #theme-tweaker-toggle button {
4551 height: 2em;
4552 width: 2em;
4553 padding: 7px;
4555 #quick-nav-ui {
4556 right: -54px;
4558 #new-comment-nav-ui {
4559 right: -55px;
4561 #hns-date-picker {
4562 right: -23px;
4564 #hns-date-picker::before {
4565 width: calc(100% - 22px);
4567 #anti-kibitzer-toggle {
4568 right: -54px;
4571 @media only screen and (max-width: 1040px) {
4572 #quick-nav-ui {
4573 right: -49px;
4575 #new-comment-nav-ui {
4576 right: -50px;
4578 #hns-date-picker {
4579 right: -18px;
4581 #hns-date-picker::before {
4582 width: calc(100% - 17px);
4584 #anti-kibitzer-toggle {
4585 right: -50px;
4588 @media only screen and (max-width: 1020px) {
4589 #quick-nav-ui {
4590 right: -20px;
4592 #new-comment-nav-ui {
4593 right: -21px;
4595 #new-comment-nav-ui .new-comments-count::before {
4596 content: "";
4597 position: absolute;
4598 width: 100%;
4599 height: calc(100% + 45px);
4600 z-index: -1;
4601 left: 0;
4602 top: -22px;
4604 #hns-date-picker {
4605 right: 19px;
4607 #hns-date-picker::before {
4608 width: 100%;
4610 #anti-kibitzer-toggle {
4611 right: -20px;
4614 @media only screen and (max-width: 1000px) {
4615 #theme-selector {
4616 left: -17px;
4617 top: 120px;
4618 padding: 3px 0;
4619 max-width: 32px;
4621 #theme-selector button {
4622 margin: 1px 4px;
4624 #text-size-adjustment-ui {
4625 top: 100px;
4626 right: -12px;
4628 @media not screen and (hover: none) {
4629 #quick-nav-ui,
4630 #new-comment-nav-ui,
4631 #new-comment-nav-ui + #hns-date-picker,
4632 #anti-kibitzer-toggle {
4633 opacity: 0.4;
4635 #quick-nav-ui:hover,
4636 #new-comment-nav-ui:hover,
4637 #new-comment-nav-ui + #hns-date-picker:hover,
4638 #new-comment-nav-ui + #hns-date-picker:focus-within,
4639 #new-comment-nav-ui:hover + #hns-date-picker,
4640 #anti-kibitzer-toggle:hover {
4641 opacity: 1.0;
4644 #theme-tweaker-toggle {
4645 top: 70px;
4646 left: -21px;
4650 /**************/
4651 /* PRINT VIEW */
4652 /**************/
4654 @media only print {
4655 .nav-bar {
4656 visibility: hidden;
4657 max-height: 0;
4658 overflow: hidden;
4660 #ui-elements-container {
4661 display: none;
4663 #images-overlay {
4664 display: none;
4666 #images-overlay + #content .post-body img {
4667 visibility: visible;
4669 .comment-controls {
4670 display: none;
4672 #comments-sort-mode-selector {
4673 display: none;
4675 .comment-minimize-button {
4676 display: none;
4678 .post-meta .qualified-linking,
4679 .post-meta .lw2-link {
4680 display: none;
4682 .comment-meta .permalink,
4683 .comment-meta .lw2-link,
4684 .comment-meta .comment-parent-link {
4685 display: none;
4687 .new-comment::before {
4688 display: none;
4690 #content::before {
4691 box-shadow: none;
4695 /*****************/
4696 /* MOBILE LAYOUT */
4697 /*****************/
4699 /* Hide the mobile elements on desktop screens: */
4701 @media only screen and (max-width: 1160px) {
4702 #post-nav-ui-toggle,
4703 #appearance-adjust-ui-toggle {
4704 display: none;
4708 @media only screen and (max-width: 1160px) {
4710 /*====================*/
4711 /* MOBILE UI ELEMENTS */
4712 /*====================*/
4714 #ui-elements-container {
4715 height: unset !important;
4716 position: unset;
4718 #ui-elements-container > * {
4719 position: fixed;
4720 visibility: hidden;
4721 opacity: 1.0;
4722 z-index: 10000;
4725 #ui-elements-container > div[id$='-ui-toggle'] {
4726 visibility: visible;
4727 display: inline-block;
4728 border-radius: 50%;
4729 z-index: 10000;
4731 #ui-elements-container > div[id$='-ui-toggle'] button,
4732 #theme-selector .theme-selector-close-button {
4733 font-family: Font Awesome;
4734 font-weight: 900;
4735 font-size: 32px;
4736 padding: 10px;
4737 opacity: 0.8;
4738 -webkit-tap-highlight-color: transparent;
4739 transition: transform 0.2s ease;
4741 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4742 #theme-selector .theme-selector-close-button::selection {
4743 background-color: transparent;
4745 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4746 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4747 border: none;
4749 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4750 transform: rotate(-90deg);
4751 opacity: 1.0;
4754 #appearance-adjust-ui-toggle {
4755 bottom: 10px;
4756 left: 10px;
4759 #post-nav-ui-toggle {
4760 bottom: 10px;
4761 right: 10px;
4764 #theme-selector.engaged,
4765 #quick-nav-ui.engaged,
4766 #new-comment-nav-ui.engaged,
4767 #hns-date-picker.engaged {
4768 visibility: visible;
4771 #image-focus-overlay.engaged {
4772 visibility: visible;
4774 #image-focus-overlay .help-overlay {
4775 display: none;
4778 /*=========*/
4779 /* GENERAL */
4780 /*=========*/
4782 @media only screen and (max-width: 900px) {
4783 #content,
4784 #images-overlay,
4785 #ui-elements-container {
4786 min-width: unset;
4787 width: unset;
4789 #content {
4790 padding: 0 4px;
4794 /*================*/
4795 /* THEME SELECTOR */
4796 /*================*/
4798 #theme-selector {
4799 display: flex;
4800 flex-flow: column;
4801 background-color: #fff;
4802 width: calc(100vw - 20px);
4803 max-width: 360px;
4804 padding: 0 0 3px 0;
4805 overflow: hidden;
4806 max-height: 0;
4807 transition:
4808 top 0.2s ease,
4809 max-height 0.2s ease,
4810 visibility 0.2s ease;
4811 top: calc(100% + 10px);
4812 left: 0;
4813 right: 0;
4814 margin: auto;
4816 #theme-selector.engaged {
4817 max-height: 1000px;
4818 top: 10px;
4819 z-index: 10001;
4821 #theme-selector::before {
4822 content: "Select theme";
4823 white-space: nowrap;
4824 display: block;
4825 font-weight: 600;
4826 font-size: 2rem;
4827 margin: 0.375em 1em 0.5em 1em;
4828 text-align: center;
4830 #theme-selector button {
4831 width: calc(100% - 0.5em);
4832 background-repeat: no-repeat;
4833 padding: 1em 0.875em;
4834 margin: 1px 4px;
4835 line-height: 1;
4836 height: unset;
4837 position: relative;
4839 #theme-selector button::after {
4840 content: attr(data-theme-description);
4841 color: #000;
4842 white-space: nowrap;
4843 position: absolute;
4844 text-align: left;
4845 left: 2.5em;
4846 top: 1em;
4848 @media only screen and (max-height: 675px) {
4849 #theme-selector button {
4850 padding: 0.875em;
4852 #theme-selector button::after {
4853 top: 0.875em;
4856 #theme-selector .theme-selector-close-button {
4857 position: absolute;
4858 width: unset;
4859 background-color: transparent;
4860 top: 0;
4861 right: -3px;
4863 #theme-selector .theme-selector-close-button,
4864 #theme-selector .theme-selector-close-button:focus,
4865 #theme-selector .theme-selector-close-button:active,
4866 #theme-selector .theme-selector-close-button:hover {
4867 box-shadow: none;
4870 /*===============*/
4871 /* THEME TWEAKER */
4872 /*===============*/
4874 #theme-selector {
4875 padding: 0 0 64px 0;
4877 #theme-selector ~ #theme-tweaker-toggle {
4878 top: 100%;
4880 #theme-selector ~ #theme-tweaker-toggle::after {
4881 content: "Open theme tweaker";
4882 position: absolute;
4883 font-size: 0.625em;
4884 white-space: nowrap;
4885 left: -50%;
4886 top: 100%;
4888 #theme-selector.engaged ~ #theme-tweaker-toggle {
4889 visibility: visible;
4890 top: 530px;
4891 left: 0;
4892 right: 0;
4893 margin: auto;
4894 z-index: 11111;
4895 transition:
4896 top 0.2s ease,
4897 visibility 0.2s ease;
4899 @media only screen and (max-height: 675px) {
4900 #theme-selector.engaged ~ #theme-tweaker-toggle {
4901 top: 492px;
4904 @supports (width: -moz-fit-content) {
4905 #theme-selector.engaged ~ #theme-tweaker-toggle {
4906 width: -moz-fit-content;
4909 @supports (width: fit-content) {
4910 #theme-selector.engaged ~ #theme-tweaker-toggle {
4911 width: fit-content;
4914 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4915 opacity: 1.0;
4918 #theme-tweaker-ui {
4919 visibility: visible;
4922 /*======================*/
4923 /* ANTI-KIBITZER TOGGLE */
4924 /*======================*/
4926 #theme-selector ~ #anti-kibitzer-toggle {
4927 top: 100%;
4928 bottom: unset;
4929 left: 0;
4930 right: 0;
4931 margin: auto;
4932 box-shadow: none;
4933 width: calc(100vw - 44px);
4934 max-width: 330px;
4935 text-align: right;
4936 pointer-events: none;
4938 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4939 visibility: visible;
4940 z-index: 11110;
4941 top: 530px;
4942 transition:
4943 top 0.2s ease,
4944 visibility 0.2s ease;
4946 @media only screen and (max-height: 675px) {
4947 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4948 top: 492px;
4951 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4952 pointer-events: auto;
4953 display: inline-block;
4956 /*=================*/
4957 /* QUICKNAV WIDGET */
4958 /*=================*/
4960 #quick-nav-ui {
4961 max-width: 0px;
4962 transition:
4963 max-width 0.2s ease,
4964 visibility 0.2s ease;
4965 display: flex;
4966 right: 72px;
4967 bottom: 14px;
4969 #quick-nav-ui.engaged {
4970 max-width: 1000px;
4972 #quick-nav-ui a {
4973 position: relative;
4974 margin: 2px;
4976 #quick-nav-ui a + a {
4977 margin-left: 5px;
4979 #quick-nav-ui a::after {
4980 position: absolute;
4981 top: calc(100% + 2px);
4982 font-size: 0.375rem;
4983 left: 0;
4984 right: 0;
4985 margin: auto;
4986 line-height: 1;
4987 padding: 2px;
4988 text-transform: uppercase;
4989 z-index: -1;
4991 @supports (width: -moz-fit-content) {
4992 #quick-nav-ui a::after {
4993 width: -moz-fit-content;
4996 @supports (width: fit-content) {
4997 #quick-nav-ui a::after {
4998 width: fit-content;
5001 #quick-nav-ui a[href='#top']::after {
5002 content: "Top";
5003 left: -1px;
5005 #quick-nav-ui a[href='#comments']::after {
5006 content: "Comments";
5008 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
5009 visibility: hidden;
5010 transition: visibility 0.2s ease;
5012 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
5013 visibility: visible;
5015 #quick-nav-ui a[href='#bottom-bar']::after {
5016 content: "Bottom";
5019 /*======================*/
5020 /* NEW COMMENT QUICKNAV */
5021 /*======================*/
5023 #new-comment-nav-ui {
5024 max-width: 0px;
5025 max-height: 0px;
5026 transition:
5027 max-width 0.2s ease,
5028 max-height 0.2s ease,
5029 visibility 0.2s ease;
5030 display: flex;
5031 right: 78px;
5032 bottom: 70px;
5034 #new-comment-nav-ui::before {
5035 content: "New Comments";
5036 position: absolute;
5037 bottom: 100%;
5038 font-size: 0.5625rem;
5039 left: 0;
5040 right: 0;
5041 margin: auto;
5042 padding: 2px 3px;
5043 text-transform: uppercase;
5044 z-index: -1;
5046 @supports (width: -moz-fit-content) {
5047 #new-comment-nav-ui::before {
5048 width: -moz-fit-content;
5051 @supports (width: fit-content) {
5052 #new-comment-nav-ui::before {
5053 width: fit-content;
5056 #new-comment-nav-ui.engaged {
5057 max-width: 1000px;
5058 max-height: 1000px;
5060 #new-comment-nav-ui .new-comment-sequential-nav-button {
5061 top: unset;
5062 bottom: unset;
5063 padding: 2px 7px;
5065 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
5066 padding: 2px 7px 3px 7px;
5068 #new-comment-nav-ui .new-comments-count {
5069 padding: 4px 0 5px 0;
5071 #new-comment-nav-ui .new-comments-count::before {
5072 display: none;
5074 #new-comment-nav-ui button::after {
5075 position: absolute;
5076 font-size: 0.375rem;
5077 left: 0;
5078 right: 0;
5079 margin: auto;
5080 line-height: 1;
5081 text-transform: uppercase;
5082 pointer-events: none;
5084 #new-comment-nav-ui button.new-comment-previous::after {
5085 content: "Previous";
5086 bottom: 5px;
5088 #new-comment-nav-ui button.new-comment-next::after {
5089 content: "Next";
5090 top: 7px;
5093 /*=================*/
5094 /* HNS DATE PICKER */
5095 /*=================*/
5097 #hns-date-picker {
5098 max-height: 0px;
5099 bottom: 132px;
5100 right: 62px;
5101 transition:
5102 max-height 0.2s ease,
5103 visibility 0.2s ease;
5105 #hns-date-picker.engaged {
5106 max-height: 1000px;
5108 #hns-date-picker::before {
5109 width: calc(100% + 2px);
5110 border-width: 1px !important;
5113 /*=========*/
5114 /* NAV BAR */
5115 /*=========*/
5117 #bottom-bar {
5118 margin-left: auto;
5119 margin-right: auto;
5120 width: calc(100% - 9rem + 8px);
5121 background: rgba(255,255,255,0.85);
5122 backdrop-filter: blur(1px);
5124 #content.index-page #bottom-bar {
5125 z-index: 10001;
5127 #bottom-bar .nav-item {
5128 box-shadow: none;
5129 position: relative;
5131 #bottom-bar .nav-inner {
5132 font-size: 2rem;
5133 padding: 1rem 0 1.25rem 0;
5134 visibility: hidden;
5135 position: static;
5136 width: 0;
5138 #content #bottom-bar .nav-item .nav-inner::before {
5139 margin: 0;
5140 visibility: visible;
5141 position: absolute;
5142 width: 100%;
5143 height: 100%;
5144 left: 0;
5145 top: 0;
5146 padding: 1rem 0;
5148 #bottom-bar .nav-inner::after {
5149 display: block;
5150 visibility: visible;
5151 text-transform: uppercase;
5152 color: unset;
5153 font-size: 0.75rem;
5154 top: unset;
5155 left: 0;
5156 bottom: 1rem;
5157 width: 100%;
5159 #bottom-bar #nav-item-first .nav-inner::after {
5160 content: "First Page";
5162 #bottom-bar #nav-item-prev .nav-inner::after {
5163 content: "Prev. Page";
5165 #bottom-bar #nav-item-top .nav-inner::after {
5166 content: "Top";
5168 #bottom-bar #nav-item-next .nav-inner::after {
5169 content: "Next Page";
5171 #bottom-bar #nav-item-last .nav-inner::after {
5172 content: "Last Page";
5175 @media only screen and (max-width: 900px) {
5176 .nav-bar-top {
5177 font-size: 0.75rem;
5179 .nav-bar {
5180 width: calc(100% + 8px);
5181 margin: 0 -4px;
5183 .nav-bar .nav-inner::after {
5184 display: none;
5187 #primary-bar .nav-item {
5188 flex: 1 1 100%;
5190 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
5191 flex: 1 1 60px;
5193 .nav-bar-top:not(#anything) .nav-inner {
5194 text-transform: uppercase;
5195 padding: 6px;
5197 .nav-bar-top .nav-inner::before {
5198 display: block;
5199 font-family: "Font Awesome";
5200 font-size: 2em;
5201 font-weight: 900;
5204 #nav-item-home .nav-inner::before {
5205 content: "\F015";
5207 #nav-item-featured .nav-inner::before {
5208 content: "\F005";
5210 #nav-item-all .nav-inner::before {
5211 content: "\F069";
5213 #nav-item-meta .nav-inner::before {
5214 content: "\F077";
5216 #nav-item-tags .nav-inner::before {
5217 content: "\F02C";
5219 #nav-item-recent-comments > * > span {
5220 display: none;
5222 #nav-item-recent-comments .nav-inner::before,
5223 #nav-item-alignment-forum-comments .nav-inner::before {
5224 content: "\F036";
5226 #nav-item-alignment-forum .nav-inner::before {
5227 content: "AF";
5228 font-family: Concourse, 'Changa One';
5230 #nav-item-questions .nav-inner::before {
5231 content: "?";
5232 font-family: Concourse, 'Changa One';
5234 #nav-item-events .nav-inner::before {
5235 content: "\F5A0";
5237 #nav-item-shortform .nav-inner::before {
5238 content: "\F2F2";
5240 #nav-item-archive .nav-inner::before {
5241 content: "\F187";
5243 #nav-item-about .nav-inner::before {
5244 content: "\F129";
5246 #nav-item-search {
5247 font-size: 2em;
5248 padding: 10px;
5250 #nav-item-search .nav-inner::before {
5251 content: none;
5253 #nav-item-search .nav-inner {
5254 height: 100%;
5255 display: flex;
5257 #nav-item-search input {
5258 width: 100%;
5259 height: 100%;
5261 #nav-item-search button {
5262 height: 100%;
5263 padding: 5px 5px 5px 10px;
5264 width: 40px;
5265 overflow: visible;
5266 visibility: hidden;
5268 #nav-item-search button::before {
5269 content: "\F002";
5270 font-family: Font Awesome;
5271 font-weight: 900;
5272 visibility: visible;
5274 #nav-item-login {
5275 padding: 0;
5277 #nav-item-login .nav-inner::before {
5278 content: "\F007";
5281 @media only screen and (max-width: 520px) {
5282 .nav-bar-top {
5283 font-size: 0.5rem;
5286 #nav-item-search,
5287 #nav-item-search .nav-inner {
5288 padding: 0;
5290 #nav-item-search button {
5291 width: 31px;
5294 #bottom-bar #nav-item-first .nav-inner::after {
5295 content: "First";
5297 #bottom-bar #nav-item-prev .nav-inner::after {
5298 content: "Prev";
5300 #bottom-bar #nav-item-next .nav-inner::after {
5301 content: "Next";
5303 #bottom-bar #nav-item-last .nav-inner::after {
5304 content: "Last";
5308 /*=================*/
5309 /* INBOX INDICATOR */
5310 /*=================*/
5312 @media only screen and (max-width: 900px) {
5313 #inbox-indicator {
5314 width: 100%;
5315 top: 0;
5316 pointer-events: none;
5318 #inbox-indicator::before {
5319 width: 100%;
5320 font-size: 1rem;
5321 text-align: right;
5322 padding: 1px 6px;
5324 #inbox-indicator.new-messages {
5325 pointer-events: auto;
5327 #inbox-indicator.new-messages::before {
5328 box-shadow: 0 0 8px 1px #f00 inset;
5331 @media only screen and (max-width: 520px) {
5332 #inbox-indicator::before {
5333 font-size: 0.75rem;
5334 padding: 2px 5px;
5337 @media only screen and (max-width: 374px) {
5338 #inbox-indicator::before {
5339 font-size: 0.625rem;
5343 /*===================*/
5344 /* TOP PAGINATION UI */
5345 /*===================*/
5347 #top-nav-bar {
5348 font-size: 1.75rem;
5351 /*==============*/
5352 /* PAGE TOOLBAR */
5353 /*==============*/
5355 @media only screen and (max-width: 900px) {
5356 #content > .page-toolbar {
5357 font-size: 1rem;
5358 margin-right: 0;
5360 #content.user-page > .page-toolbar {
5361 grid-column: 2 / span 2;
5362 margin: 0 0 6px 0;
5365 @media only screen and (max-width: 520px) {
5366 #content:not(.user-page) .page-toolbar {
5367 display: flex;
5368 flex-direction: column-reverse;
5369 text-align: right;
5370 align-self: start;
5371 padding: 4px 0 0 0;
5373 #content.user-page .page-toolbar {
5374 display: flex;
5375 flex-flow: row;
5376 justify-content: flex-end;
5377 padding: 2px 0 0 0;
5379 #content.user-page .page-toolbar > form,
5380 #content.user-page .page-toolbar > .button {
5381 text-align: center;
5382 flex-basis: 25%;
5383 margin-left: 1.5em;
5385 #content.user-page .page-toolbar .button {
5386 text-transform: uppercase;
5387 font-size: 0.625rem;
5389 #content.user-page .page-toolbar .button::before {
5390 font-size: 1.375rem;
5391 display: block;
5392 padding: 0;
5394 #content.user-page .page-toolbar .rss {
5395 white-space: nowrap;
5396 margin: 0 0 0 1.5em;
5398 .page-toolbar > * {
5399 line-height: 1.15;
5400 padding: 6px 0;
5401 margin: 0;
5405 /*==============*/
5406 /* SUBLEVEL NAV */
5407 /*==============*/
5409 @media only screen and (max-width: 900px) {
5410 .sublevel-nav:not(.sort) {
5411 flex-wrap: wrap;
5412 width: calc(100vw - 200px);
5414 .sublevel-nav:not(.sort) .sublevel-item {
5415 margin: 1px;
5416 flex-basis: 7em;
5419 @media only screen and (max-width: 520px) {
5420 .sublevel-nav:not(.sort) .sublevel-item {
5421 font-size: 1rem;
5425 /*=====================*/
5426 /* SORT ORDER SELECTOR */
5427 /*=====================*/
5429 @media only screen and (max-width: 720px) {
5430 #content.index-page > .sublevel-nav.sort {
5431 flex-flow: column;
5432 margin-left: 4px;
5436 /*==========*/
5437 /* ARCHIVES */
5438 /*==========*/
5440 @media only screen and (max-width: 900px) {
5441 div[class^='archive-nav-'] {
5442 flex-wrap: wrap;
5443 justify-content: flex-start;
5445 .archive-nav *[class^='archive-nav-item'],
5446 .archive-nav *[class^='archive-nav-item']:first-child {
5447 padding: 10px;
5448 margin: 2px;
5449 max-width: unset;
5450 flex: 0 1 calc((100% / 8) - 4px);
5452 .archive-nav .archive-nav-item-day,
5453 .archive-nav .archive-nav-item-day:first-child {
5454 flex-basis: calc((100% / 16) - 4px);
5456 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5457 margin-top: 8px;
5458 position: relative;
5460 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5461 content: "";
5462 display: block;
5463 position: absolute;
5464 height: 1px;
5465 width: calc(100% + 8px);
5466 left: -4px;
5467 top: -4px;
5470 @media only screen and (max-width: 720px) {
5471 .archive-nav .archive-nav-item-day,
5472 .archive-nav .archive-nav-item-day:first-child {
5473 flex-basis: calc((100% / 12) - 4px);
5476 @media only screen and (max-width: 520px) {
5477 .archive-nav *[class^='archive-nav-item'],
5478 .archive-nav *[class^='archive-nav-item']:first-child {
5479 flex-basis: calc((100% / 5) - 4px);
5481 .archive-nav .archive-nav-item-day,
5482 .archive-nav .archive-nav-item-day:first-child {
5483 flex-basis: calc((100% / 8) - 4px);
5487 /*==========*/
5488 /* LISTINGS */
5489 /*==========*/
5491 h1.listing {
5492 max-height: unset;
5495 /*============*/
5496 /* USER PAGES */
5497 /*============*/
5499 #content.user-page h1.page-main-heading {
5500 align-self: end;
5502 @media only screen and (max-width: 520px) {
5503 #content.user-page h1.page-main-heading {
5504 overflow: hidden;
5505 text-overflow: ellipsis;
5507 #content.user-page .user-stats .karma-type {
5508 display: block;
5512 /*============*/
5513 /* LOGIN PAGE */
5514 /*============*/
5516 @media only screen and (max-width: 640px) {
5517 .login-container {
5518 flex-flow: column;
5519 margin: 0 auto 3em auto;
5520 max-width: 400px;
5522 .login-container #login-form,
5523 .login-container #signup-form {
5524 padding: 0 1em 1.25em 1em;
5525 grid-row-gap: 0;
5527 .login-container #signup-form {
5528 padding-top: 1em;
5530 .login-container #login-form > *,
5531 .login-container #signup-form > * {
5532 grid-column: 1 / span 2;
5534 .login-container form label {
5535 text-align: left;
5536 padding: 0;
5537 line-height: 1;
5539 .login-container form input {
5540 margin: 0.25em 0 0.75em 0;
5541 padding: 0.5em;
5543 .login-container form h1 {
5544 grid-column: 1 / span 2;
5545 margin: 0 0 0.25em 0;
5547 .login-container form a {
5548 margin: 0.75em 0 0 0;
5550 .login-container .login-tip {
5551 margin: 1.5em 1em 0 1em;
5555 /*==================*/
5556 /* POSTS & COMMENTS */
5557 /*==================*/
5559 @media only screen and (max-width: 720px) {
5560 .body-text ol > li {
5561 padding: 0 0 0 2.25em;
5563 .body-text ol > li::before {
5564 width: 1.75em;
5566 .body-text ul:not(.contents-list) > li,
5567 .body-text ul:not(.contents-list) > li ul > li {
5568 padding: 0 0 0 0.75em;
5570 .body-text ul:not(.contents-list) > li::before,
5571 .body-text ul:not(.contents-list) > li ul > li::before {
5572 width: 0.125em;
5573 margin-left: -0.06em;
5577 /*===========*/
5578 /* POST-META */
5579 /*===========*/
5581 .post-meta {
5582 line-height: 1.9;
5584 @media only screen and (max-width: 720px) {
5585 .post-meta .lw2-link span,
5586 .post-meta .karma-value span,
5587 .post-meta .comment-count span {
5588 display: none;
5590 .post-meta .comment-count::before {
5591 content: "\F086";
5592 font-family: Font Awesome;
5593 font-size: 0.875em;
5594 margin: 0 0.25em 0 0;
5595 font-weight: 400;
5599 /*===================*/
5600 /* POSTS & BODY TEXT */
5601 /*===================*/
5603 @media only screen and (max-width: 900px) {
5604 .post-body,
5605 h1.post-title,
5606 .tag-description,
5607 .sequence-text {
5608 padding: 0 6px;
5611 @media only screen and (max-width: 520px) {
5612 .post-body {
5613 font-size: 1.2rem;
5614 line-height: 1.45;
5616 h1.post-title {
5617 font-size: 2em;
5621 /*==============*/
5622 /* COMMENT-META */
5623 /*==============*/
5625 a.comment-parent-link::after {
5626 display: none;
5628 @media only screen and (max-width: 900px) {
5629 .comment-meta {
5630 padding: 2px 40px 2px 10px;
5633 @media only screen and (max-width: 720px) {
5634 .comment .karma-value span {
5635 display: none;
5637 .comment-meta .comment-parent-link {
5638 opacity: 1.0;
5641 @media only screen and (max-width: 520px) {
5642 .comment-meta {
5643 padding: 2px 24px 2px 10px;
5644 position: relative;
5646 .comment-meta > * {
5647 order: 3;
5649 .comment-meta > :not(.author) {
5650 line-height: 1.8;
5652 .comment-meta .author,
5653 .comment-meta .date {
5654 order: 1;
5656 .comment-meta:before {
5657 content: "";
5658 order: 2;
5659 flex-basis: 100%;
5661 .comment-post-title2 {
5662 display: block;
5663 text-overflow: ellipsis;
5664 overflow: hidden;
5666 .comment-meta .lw2-link {
5667 display: none;
5671 /*=======================*/
5672 /* COMMENTS COMPACT VIEW */
5673 /*=======================*/
5675 /*===========================*/
5676 /* COMMENT THREAD NAVIGATION */
5677 /*===========================*/
5679 @media only screen and (max-width: 900px) {
5680 a.comment-parent-link {
5681 width: 0;
5682 visibility: hidden;
5683 position: relative;
5685 a.comment-parent-link::before {
5686 padding: 0;
5687 font-size: 1em;
5688 left: 0;
5689 top: 0;
5690 line-height: inherit;
5691 visibility: visible;
5692 content: "\F3BF";
5693 transform: scaleX(-1);
5694 width: 2em;
5695 text-align: center;
5698 @media only screen and (max-width: 520px) {
5699 a.comment-parent-link {
5700 position: static;
5702 a.comment-parent-link::before {
5703 padding: 6px;
5704 left: unset;
5705 right: 0;
5706 top: unset;
5707 bottom: 0;
5708 height: 2em;
5712 /*=================================*/
5713 /* COMMENT THREAD MINIMIZE BUTTONS */
5714 /*=================================*/
5716 @media only screen and (max-width: 520px) {
5717 .comment-minimize-button{
5718 right: 2px;
5722 /*===========================*/
5723 /* COMMENTING AND POSTING UI */
5724 /*===========================*/
5726 @media only screen and (max-width: 900px) {
5727 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5728 font-size: 0;
5730 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5731 font-size: 0.9rem;
5733 .comment-controls .cancel-comment-button {
5734 max-width: 1.3em;
5735 overflow: hidden;
5736 margin-right: 0.125em;
5738 .comment-controls .edit-button::before {
5739 font-size: 0.9375rem;
5741 .comments > .comment-controls .cancel-comment-button {
5742 right: 8px;
5744 .comment-controls .cancel-comment-button::before {
5745 font-size: 1.25rem;
5748 @media only screen and (max-width: 520px) {
5749 .comment-controls {
5750 position: static;
5752 .comment-controls:focus-within {
5753 z-index: 10001;
5755 .comment-controls .cancel-comment-button {
5756 right: 10px;
5758 .textarea-container:focus-within textarea {
5759 position: fixed;
5760 top: 0;
5761 left: 2px;
5762 width: calc(100vw - 4px);
5763 height: calc(100% - 100px);
5764 min-height: unset;
5765 max-height: unset;
5766 border-width: 1px;
5767 z-index: 11001;
5769 #content.conversation-page .textarea-container:focus-within textarea {
5770 height: calc(100% - 54px);
5772 #content.conversation-page .textarea-container:focus-within::after {
5773 content: "";
5774 display: block;
5775 width: 100%;
5776 height: 50px;
5777 position: fixed;
5778 left: 0;
5779 bottom: 0;
5780 z-index: 11000;
5782 .textarea-container:focus-within .guiedit-buttons-container {
5783 position: fixed;
5784 z-index: 11002;
5785 left: 0;
5786 width: 100vw;
5787 height: auto;
5788 background-image: none;
5789 padding: 3px 4px 4px 4px;
5790 margin: 0;
5791 text-align: center;
5792 top: auto;
5793 bottom: 0;
5795 .textarea-container:focus-within button.guiedit {
5796 font-size: 0.9375rem;
5797 line-height: 1.5;
5798 height: auto;
5799 width: calc((100% / 10) - 2px);
5800 padding: 10px 1px 8px 0;
5801 position: relative;
5802 margin: 1px;
5804 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5805 z-index: 11011;
5806 position: fixed;
5807 bottom: 7px;
5808 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5809 font-size: 1.25rem;
5810 padding: 5px 5px 6px 5px;
5811 display: block;
5813 .textarea-container:focus-within button.guiedit sup {
5814 position: absolute;
5815 left: calc(50% + 0.65em);
5816 top: calc(50% - 1.3em);
5818 .textarea-container:focus-within .guiedit-mobile-help-button {
5819 left: 8px;
5821 .textarea-container:focus-within .guiedit-mobile-exit-button {
5822 right: 8px;
5824 .guiedit::after {
5825 display: none;
5828 #markdown-hints,
5829 #edit-post-form #markdown-hints {
5830 z-index: 11111;
5831 position: fixed;
5832 top: 40px;
5833 left: 0;
5834 right: 0;
5835 margin: auto;
5836 padding: 4px 0 4px 8px;
5837 width: 310px;
5838 border-width: 3px;
5839 border-style: double;
5840 pointer-events: none;
5842 #markdown-hints::after {
5843 content: "(Type to hide this help box.)";
5844 color: #090;
5845 display: block;
5846 margin: 12px 18px 13px 10px;
5847 padding: 5px;
5848 font-size: 0.9em;
5849 text-align: center;
5853 /*================*/
5854 /* EDIT POST FORM */
5855 /*================*/
5857 @media only screen and (max-width: 520px) {
5858 #edit-post-form {
5859 padding-bottom: 0;
5861 #edit-post-form .post-meta-fields {
5862 grid-template-columns: 4.5em auto auto auto 1fr auto;
5864 #edit-post-form label[for='url'],
5865 #edit-post-form label[for='section'],
5866 #edit-post-form label[for='title'] {
5867 padding-left: 0;
5869 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5870 white-space: normal;
5871 line-height: 0.9;
5872 top: -1px;
5873 font-family: Font Awesome;
5874 font-weight: 900;
5875 justify-self: start;
5877 #edit-post-form .post-meta-fields .question-checkbox,
5878 #edit-post-form .post-meta-fields .question-checkbox + label {
5879 grid-column: 6;
5880 margin-left: unset;
5882 #edit-post-form .post-meta-fields input[type='radio'] + label {
5883 align-self: start;
5885 #edit-post-form .textarea-container:focus-within textarea {
5886 height: calc(100% - 101px);
5887 min-height: unset;
5890 #markdown-hints-checkbox,
5891 #markdown-hints-checkbox + label {
5892 display: none;
5895 #edit-post-form div:last-child {
5896 clear: both;
5897 overflow: auto;
5899 #edit-post-form input[type='submit'] {
5900 float: none;
5901 display: block;
5902 font-size: 1.5rem;
5903 margin: 1rem auto 1.5rem auto;
5904 padding: 6px 12px 8px 12px;
5907 #edit-post-form .textarea-container .autocomplete-container,
5908 .comment-controls .textarea-container .autocomplete-container {
5909 max-height: calc(50vh - 101px);
5910 position: fixed;
5911 top: 50vh;
5912 left: 4px;
5913 right: 4px;
5914 width: unset;
5915 z-index: 11002;
5919 /*===================*/
5920 /* TABLE OF CONTENTS */
5921 /*===================*/
5923 @media only screen and (max-width: 900px) {
5924 .contents {
5925 float: none;
5926 display: table;
5927 max-width: none;
5928 margin-left: auto;
5929 margin-right: auto;
5932 @media only screen and (max-width: 520px) {
5933 .contents {
5934 max-width: 100%;
5935 margin: 1em auto 0 auto;
5936 display: table;
5938 .contents-head {
5939 font-size: 1.2em;
5941 div.post-body .contents ul {
5942 font-size: unset;
5946 /*========================*/
5947 /* QUALIFIED HYPERLINKING */
5948 /*========================*/
5950 @media only screen and (max-width: 520px) {
5951 .qualified-linking-toolbar {
5952 right: -5em;
5956 } /* END MOBILE LAYOUT */
5959 /******************************/
5960 /* READTHESEQUENCES.COM THEME */
5961 /******************************/
5963 /*===========*/
5964 /* VARIABLES */
5965 /*===========*/
5967 /* Color scheme.
5969 :root {
5970 --GW-toggle-widget-color: #bbb;
5971 --GW-toggle-widget-hover-color: #777;
5974 /*======*/
5975 /* BASE */
5976 /*======*/
5978 body {
5979 color: #000;
5980 background-color: #fffffa;
5981 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
5983 #content {
5984 line-height: 1.55;
5987 /*=========*/
5988 /* NAV BAR */
5989 /*=========*/
5991 .nav-inner {
5992 font-size: 1.375em;
5993 font-weight: 600;
5995 .nav-bar-top:not(#primary-bar) .nav-inner {
5996 font-size: 1em;
5999 *.nav-inner,
6000 #nav-item-search button {
6001 font-weight: 300;
6002 color: #888;
6005 #bottom-bar.decorative {
6006 border: none;
6008 #bottom-bar.decorative::before,
6009 #bottom-bar.decorative::after {
6010 content: "GW";
6011 font-weight: 200;
6012 display: block;
6013 text-align: center;
6014 padding: 0.25em 0 1em 0;
6016 #bottom-bar.decorative::before {
6017 width: 100%;
6018 color: transparent;
6019 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
6020 background-repeat: repeat-x;
6021 background-position: center 35%;
6022 margin: 0 30px;
6024 #bottom-bar.decorative::after {
6025 color: #d8d8d8;
6026 position: absolute;
6027 left: 0;
6028 right: 0;
6029 margin: auto;
6030 background-color: #fff;
6031 padding-right: 4px;
6032 padding-left: 4px;
6034 @supports (width: -moz-fit-content) {
6035 #bottom-bar.decorative::after {
6036 width: -moz-fit-content;
6039 @supports (width: fit-content) {
6040 #bottom-bar.decorative::after {
6041 width: fit-content;
6045 /* Accesskey hints */
6047 .nav-inner::after {
6048 display: block;
6049 position: absolute;
6050 left: 5px;
6051 top: -2px;
6052 font-weight: 300;
6053 font-size: 0.7em;
6054 color: #d8d8d8;
6056 .inactive-bar .nav-inner::after {
6057 color: #ccc;
6059 .nav-inner:hover::after {
6060 color: #bbb;
6063 /* This makes the navbar items look like tabs: */
6065 #bottom-bar {
6066 border-top: 1px solid #bbb;
6067 margin-top: 2em;
6069 .post-page #bottom-bar {
6070 margin-top: 0.5em;
6072 #content.no-nav-bars {
6073 margin: auto;
6075 #content.no-comments #bottom-bar {
6076 margin-top: 0.125em;
6078 .nav-bar .nav-item:not(:last-child) {
6079 border-right: 1px solid #bbb;
6081 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
6082 #nav-item-search:focus-within {
6083 background-color: #f0f0eb;
6085 .nav-bar a:hover,
6086 .nav-bar a:focus,
6087 .nav-bar button:hover,
6088 .nav-bar button:focus {
6089 color: #333;
6090 text-shadow: 0px 0px 0.5px #333;
6092 #bottom-bar .nav-item a::before,
6093 #top-nav-bar a::before {
6094 font-size: 1em;
6095 bottom: -2px;
6096 color: #aaa;
6098 #bottom-bar .nav-item a:hover::before,
6099 #top-nav-bar a:hover::before {
6100 color: #333;
6102 #bottom-bar #nav-item-first a::before,
6103 #top-nav-bar a.nav-item-first::before {
6104 content: "\F0D9\F0D9";
6106 #bottom-bar #nav-item-prev a::before,
6107 #top-nav-bar a.nav-item-prev::before {
6108 content: "\F0D9";
6110 #bottom-bar #nav-item-top a::before {
6111 content: "\F0D8";
6113 #bottom-bar #nav-item-next a::before,
6114 #top-nav-bar a.nav-item-next::before {
6115 content: "\F0DA";
6117 #bottom-bar #nav-item-last a::before,
6118 #top-nav-bar a.nav-item-last::before {
6119 content: "\F0DA\F0DA";
6121 #bottom-bar #nav-item-next a::before {
6122 margin-left: -1em;
6123 left: 2.85em;
6125 .nav-bar + .nav-bar {
6126 position: relative;
6127 border-style: solid;
6128 border-color: #bbb;
6130 .nav-bar {
6131 border-width: 1px 0 0 0;
6133 .active-bar {
6134 border-width: 1px 0;
6137 /* Search tab */
6139 #nav-item-search form::before {
6140 color: #999;
6142 #nav-item-search button:hover {
6143 color: #333;
6145 #nav-item-search input::placeholder {
6146 color: #d00;
6147 font-weight: normal;
6150 /* User/login tab */
6152 #inbox-indicator::before {
6153 color: #ddd;
6156 /*= Top pagination UI hover tooltips =*/
6158 #top-nav-bar a::after,
6159 #bottom-bar a::after {
6160 color: #222;
6161 text-shadow: none;
6164 /*==============*/
6165 /* PAGE TOOLBAR */
6166 /*==============*/
6168 .page-toolbar {
6169 z-index: 1;
6171 .page-toolbar * {
6172 color: #888;
6173 font-weight: 400;
6175 .page-toolbar a:hover,
6176 .page-toolbar button:hover {
6177 text-shadow: 0px 0px 0.5px #333;
6179 .logout-button {
6180 color: #d33;
6183 /*===================*/
6184 /* TOP PAGINATION UI */
6185 /*===================*/
6187 #top-nav-bar {
6188 margin: 0;
6189 flex-wrap: wrap;
6190 grid-column: 2;
6191 min-width: 240px;
6193 #top-nav-bar .page-number {
6194 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6195 padding-top: 7px;
6197 #top-nav-bar .page-number-label {
6198 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6199 bottom: 70%;
6201 #top-nav-bar::after {
6202 content: "";
6203 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6204 background-origin: content-box;
6205 background-repeat: no-repeat;
6206 display: block;
6207 margin: 0.125em auto 0 auto;
6208 padding: 0 12.5%;
6209 height: 1px;
6210 flex: 1 0 100%;
6213 /*==============*/
6214 /* SUBLEVEL NAV */
6215 /*==============*/
6217 .sublevel-nav .sublevel-item {
6218 color: #777;
6219 background-color: #fffffa;
6221 .sublevel-nav .sublevel-item:not(.selected):hover {
6222 background-color: #ddd;
6223 color: #000;
6225 .sublevel-nav .sublevel-item:not(.selected):active,
6226 .sublevel-nav .sublevel-item.selected {
6227 background-color: #ddd;
6228 border-color: #ddd;
6229 color: #000;
6230 text-shadow:
6231 0 -1px 0 #fff,
6232 0 0.5px 0.5px #000;
6235 .sublevel-nav:not(.sort) .sublevel-item {
6236 border-style: solid;
6237 border-color: #ddd;
6238 border-width: 1px 0 1px 1px;
6240 .sublevel-nav:not(.sort) .sublevel-item:first-child {
6241 border-radius: 8px 0 0 8px;
6243 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6244 border-width: 1px;
6245 border-radius: 0 8px 8px 0;
6248 /*=====================*/
6249 /* SORT ORDER SELECTOR */
6250 /*=====================*/
6252 .sublevel-nav.sort .sublevel-item {
6253 font-feature-settings: 'smcp';
6254 padding: 7px 7px 6px 7px;
6255 text-transform: uppercase;
6256 box-shadow: 1px 1px 0 0 #bbb inset;
6257 pointer-events: auto;
6259 .sublevel-nav.sort {
6260 padding: 20px 0 0 0;
6261 border-radius: 8px;
6262 pointer-events: none;
6263 background-color: #bbb;
6264 overflow: hidden;
6265 box-shadow:
6266 0 0 1px #aaa,
6267 0 0 3px #aaa,
6268 0 0 5px #aaa;
6270 .sublevel-nav.sort::before {
6271 text-transform: uppercase;
6272 font-weight: 600;
6273 color: #444;
6274 text-shadow: 0.5px 0.5px 0 #fff;
6275 line-height: 2;
6276 z-index: 1;
6278 .sublevel-nav.sort::after {
6279 content: "";
6280 position: absolute;
6281 display: block;
6282 top: 0;
6283 left: 0;
6284 width: 100%;
6285 height: 100%;
6286 border-radius: 6px 6px 8px 8px;
6287 box-shadow:
6288 0 0 0 1px #bbb inset,
6289 0 20px 0 0 #bbb inset,
6290 0 20px 0 1px #aaa inset,
6291 0 0 0 3px #fffffa;
6294 /*================*/
6295 /* WIDTH SELECTOR */
6296 /*================*/
6297 /* THEME SELECTOR */
6298 /*================*/
6300 #width-selector button,
6301 #theme-selector button {
6302 box-shadow:
6303 0 0 0 4px #fffffa inset,
6304 0 0 0 5px #bbb inset;
6306 #width-selector button:hover,
6307 #width-selector button.selected,
6308 #theme-selector button:hover,
6309 #theme-selector button.selected {
6310 box-shadow:
6311 0 0 0 1px #bbb inset,
6312 0 0 0 4px #fffffa inset,
6313 0 0 0 5px #bbb inset;
6316 #theme-selector button::before {
6317 font-size: 0.9375em;
6318 padding: 6px;
6319 font-weight: 300;
6320 color: #bbb;
6321 background-color: #fff;
6323 #theme-selector button:hover::before,
6324 #theme-selector button.selected::before {
6325 color: #444;
6327 #width-selector button::after {
6328 color: #aaa;
6329 font-weight: 300;
6332 /*======================*/
6333 /* THEME TWEAKER TOGGLE */
6334 /*======================*/
6336 #theme-tweaker-toggle button {
6337 color: #777;
6340 /*=================*/
6341 /* QUICKNAV WIDGET */
6342 /*=================*/
6344 #quick-nav-ui a {
6345 box-shadow: 0 0 0 1px #ccc inset;
6346 color: #bbb;
6347 border-radius: 4px;
6349 #quick-nav-ui a[href='#bottom-bar'] {
6350 line-height: 1.8;
6352 #quick-nav-ui a:active {
6353 transform: scale(0.9);
6355 #quick-nav-ui a[href='#comments'].no-comments {
6356 opacity: 0.4;
6357 color: #bbb;
6359 @media only screen and (hover: hover) {
6360 #quick-nav-ui a:hover {
6361 background-color: #f0f0eb;
6362 color: #333;
6363 text-shadow: 0px 0px 0.5px #333;
6365 #quick-nav-ui a:focus:not(:hover) {
6366 transform: none;
6367 text-shadow: none;
6371 /*======================*/
6372 /* NEW COMMENT QUICKNAV */
6373 /*======================*/
6375 #new-comment-nav-ui .new-comments-count,
6376 #new-comment-nav-ui .new-comments-count::after {
6377 color: #999;
6378 font-weight: normal;
6380 #new-comment-nav-ui .new-comments-count {
6381 text-shadow: 0.5px 0.5px 0 #fff;
6383 #new-comment-nav-ui .new-comment-sequential-nav-button {
6384 color: #999;
6386 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6387 color: #e6e6e6;
6388 text-shadow: none;
6390 @media only screen and (hover: hover) {
6391 #new-comment-nav-ui .new-comments-count:hover {
6392 text-shadow:
6393 0 0 1px #fff,
6394 0 0 3px #fff,
6395 0 0 5px #fff,
6396 0 0 8px #fff,
6397 0.5px 0.5px 0 #fff;
6399 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6400 color: #d00;
6404 /*=================*/
6405 /* HNS DATE PICKER */
6406 /*=================*/
6408 #hns-date-picker span {
6409 color: #777;
6410 text-shadow: 0.5px 0.5px 0 #fff;
6411 font-weight: 600;
6413 #hns-date-picker input[type='text'] {
6415 #hns-date-picker input {
6416 border: 1px solid #aaa;
6417 color: #666;
6418 background-color: transparent;
6420 #hns-date-picker input:hover,
6421 #hns-date-picker input:focus {
6422 color: #444;
6424 #hns-date-picker span {
6425 color: #888;
6428 /*======================*/
6429 /* ANTI-KIBITZER TOGGLE */
6430 /*======================*/
6432 #anti-kibitzer-toggle button::before,
6433 #anti-kibitzer-toggle button::after {
6434 background-color: var(--GW-toggle-widget-color);
6435 -webkit-background-clip: text;
6436 color: transparent;
6437 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
6439 #anti-kibitzer-toggle button:hover::before,
6440 #anti-kibitzer-toggle button:hover::after {
6441 background-color: var(--GW-toggle-widget-hover-color);
6444 /*======================*/
6445 /* TEXT SIZE ADJUSTMENT */
6446 /*======================*/
6448 #text-size-adjustment-ui button {
6449 color: #777;
6451 #text-size-adjustment-ui button.default {
6452 font-weight: 600;
6454 #text-size-adjustment-ui button:disabled:hover {
6455 text-shadow: none;
6457 #text-size-adjustment-ui::after {
6458 color: #aaa;
6459 font-weight: 300;
6462 /*=============================*/
6463 /* COMMENTS VIEW MODE SELECTOR */
6464 /*=============================*/
6466 #comments-view-mode-selector a {
6467 color: #777;
6470 /*==========*/
6471 /* ARCHIVES */
6472 /*==========*/
6474 .archive-nav {
6475 border: 1px solid transparent;
6477 .archive-nav *[class^='archive-nav-item'] {
6478 border-style: solid;
6479 border-color: #ddd;
6480 border-width: 1px 0 1px 1px;
6482 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6483 border-top-width: 0;
6484 border-bottom-width: 0;
6486 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6487 border-bottom-width: 1px;
6489 .archive-nav *[class^='archive-nav-item']:last-child {
6490 border-right-width: 1px;
6492 .archive-nav span[class^='archive-nav-item'] {
6493 font-weight: bold;
6494 background-color: #ddd;
6497 .archive-nav a:link,
6498 .archive-nav a:visited {
6499 color: #999;
6500 font-weight: 300;
6502 .archive-nav a:hover,
6503 .archive-nav span[class^='archive-nav-item'] {
6504 font-weight: 300;
6505 background-color: #f0f0eb;
6506 color: #333;
6507 text-shadow: 0px 0px 0.5px #333;
6509 .archive-nav a:active {
6510 transform: scale(0.9);
6512 .archive-nav a:focus:not(:hover) {
6513 transform: none;
6515 .archive-nav a.archive-nav-item-day:hover {
6516 background-color: #ddd;
6519 /*===============*/
6520 /* KEYBOARD HELP */
6521 /*===============*/
6523 #nav-item-about button.open-keyboard-help {
6524 font-weight: 400;
6527 /*==========*/
6528 /* LISTINGS */
6529 /*==========*/
6531 h1.listing {
6532 margin: 0.7em 20px 0.1em 20px;
6533 max-width: calc(100% - 40px);
6534 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif, 'Font Awesome';
6535 text-align: center;
6538 h1.listing .link-post-link {
6539 font-size: 0.6875em;
6540 top: 6px;
6541 color: #888;
6543 h1.listing .post-title-link {
6544 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6545 text-decoration: none;
6546 color: #690010;
6547 font-weight: 500;
6548 text-shadow: 0.5px 0.5px 0.5px #de7069;
6549 padding: 0 2px 1px 1px;
6552 @media only screen and (hover: hover) {
6553 h1.listing .post-title-link {
6554 max-width: calc(100% - 60px);
6555 padding: 2px 2px 1px 1px;
6557 h1.listing a:hover,
6558 h1.listing a:focus {
6559 text-shadow:
6560 0px 0px 0.5px #ff987b,
6561 0px 0px 1.5px #c05651,
6562 0.5px 0.5px 0.5px #de7069;
6563 background-color: rgba(255,255,250,0.85);
6565 h1.listing:focus-within::before {
6566 display: inline-block;
6567 vertical-align: top;
6568 position: relative;
6569 left: -0.125em;
6570 top: 1px;
6571 color: #690010;
6573 h1.listing .link-post-link:hover {
6574 color: #690010;
6575 text-shadow:
6576 0.5px 0.5px 0 #fff,
6577 -0.5px -0.5px 0 #fff,
6578 0 0 2px #fff,
6579 0 0 3px #00c;
6583 h1.listing .edit-post-link {
6584 padding: 5px 3px 36px 0.5em;
6585 top: 0;
6586 right: 0;
6588 h1.listing .edit-post-link:hover {
6589 text-decoration: none;
6591 #content.user-page h1.listing .edit-post-link {
6592 background-color: #fff;
6595 /*======*/
6596 /* SPAM */
6597 /*======*/
6599 h1.listing.spam {
6600 opacity: 0.1;
6602 h1.listing.spam + .post-meta {
6603 opacity: 0.25;
6605 h1.listing.spam:hover,
6606 h1.listing.spam + .post-meta:hover,
6607 h1.listing.spam:hover + .post-meta {
6608 opacity: 1.0;
6611 /*===================*/
6612 /* LISTING POST-META */
6613 /*===================*/
6615 h1.listing + .post-meta {
6616 justify-content: center;
6618 h1.listing + .post-meta > * {
6619 line-height: 1.5;
6621 h1.listing + .post-meta .post-section {
6622 order: 1;
6624 h1.listing + .post-meta .post-section::before {
6625 left: unset;
6627 h1.listing + .post-meta .link-post-domain {
6628 order: 2;
6629 flex-basis: 100%;
6632 /*============*/
6633 /* USER PAGES */
6634 /*============*/
6636 #content.user-page h1.page-main-heading {
6637 border-bottom: 1px solid #ccc;
6640 #content.user-page #top-nav-bar {
6641 margin: -0.5em 0 0.25em 0;
6642 grid-column: 1 / span 3;
6645 #content.user-page h1.listing {
6646 padding: 6px 6px 0 6px;
6647 max-width: 100%;
6648 margin: 1rem 0 0 0;
6650 #content.own-user-page h1.listing,
6651 h1.listing.own-post-listing {
6652 padding-right: 36px;
6654 @media only screen and (hover: hover) {
6655 #content.user-page h1.listing:focus-within::before {
6656 top: -2px;
6659 #content.user-page h1.listing::after {
6660 content: "";
6661 display: block;
6662 position: absolute;
6663 top: 0;
6664 left: 0;
6665 width: 100%;
6666 height: calc(100% + 1.25em);
6667 box-shadow: 0px 0px 10px #555;
6669 #content.user-page h1.listing.link-post-listing::after {
6670 height: calc(100% + 2.125em);
6672 #content.user-page h1.listing + .post-meta {
6673 margin: 6px 6px 1.5rem 35px;
6675 #content.user-page h1.listing + .post-meta::after {
6676 display: none;
6679 #content.conversations-user-page h1.listing {
6680 padding: 8px 6px;
6681 font-size: 1.75rem;
6683 #content.conversations-user-page h1.listing + .post-meta {
6684 padding: 6px 4px;
6685 margin: 0;
6688 .user-stats .karma-total {
6689 font-weight: bold;
6692 /*===============*/
6693 /* CONVERSATIONS */
6694 /*===============*/
6696 #content.conversation-page h1.page-main-heading {
6697 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6700 /*============*/
6701 /* LOGIN PAGE */
6702 /*============*/
6704 .login-container form input[type='submit'] {
6705 font-weight: bold;
6706 background-color: #eee;
6707 border: 1px solid #ccc;
6709 .login-container form input[type='submit']:hover,
6710 .login-container form input[type='submit']:focus {
6711 background-color: #ddd;
6712 border: 1px solid #aaa;
6715 /* “Create account” form */
6717 #signup-form {
6718 background-color: #f3f3f3;
6719 border: 1px solid #ddd;
6721 #signup-form input[type='submit'] {
6722 background-color: #e4e4e4;
6723 border: 1px solid #ccc;
6725 #signup-form input[type='submit']:hover {
6726 background-color: #d8d8d8;
6727 border: 1px solid #aaa;
6730 /* Log in tip */
6732 .login-container .login-tip {
6733 border: 1px solid #eee;
6736 /* Message box */
6738 .error-box {
6739 border: 1px solid red;
6740 background-color: #faa;
6742 .success-box {
6743 border: 1px solid green;
6744 background-color: #afa;
6747 /*=====================*/
6748 /* PASSWORD RESET PAGE */
6749 /*=====================*/
6751 .reset-password-container input[type='submit'] {
6752 background-color: #e4e4e4;
6753 border: 1px solid #ccc;
6754 font-weight: bold;
6757 /*===================*/
6758 /* TABLE OF CONTENTS */
6759 /*===================*/
6761 .contents {
6762 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6763 margin-left: 1.5em;
6764 font-family: Garamond Premier Pro;
6765 min-width: unset;
6767 .contents-head {
6768 font-weight: bold;
6770 .contents-head::after {
6771 content: "";
6772 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6773 display: block;
6774 margin: 0 auto 0.5em auto;
6775 width: 75%;
6776 height: 1px;
6778 .contents a::after {
6779 display: none;
6781 .body-text .contents ul {
6782 margin: 0 0.5em;
6783 padding: 0 1em;
6785 .body-text .contents a,
6786 .body-text .contents a:visited {
6787 color: #690010;
6788 font-weight: 600;
6790 .body-text .contents a:hover {
6791 color: #690010;
6792 text-shadow:
6793 0px 0px 0.5px #ff987b,
6794 0px 0px 1px #c05651;
6795 border: none;
6797 .body-text .contents li::before {
6798 color: #999;
6799 font-feature-settings: 'onum';
6802 /*==================*/
6803 /* POSTS & COMMENTS */
6804 /*==================*/
6806 .body-text {
6807 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6809 h1.post-title {
6810 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6811 font-weight: 600;
6813 .body-text {
6814 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6815 font-weight: 500;
6816 line-height: 1.45;
6819 .body-text a,
6820 .body-text a:visited {
6821 text-decoration: none;
6822 color: inherit;
6824 .body-text a:link::after,
6825 .body-text a:visited::after {
6826 position: relative;
6827 content: "°";
6828 margin-left: 2px;
6829 margin-right: 1px;
6830 color: #933;
6832 .body-text a:hover {
6833 color: #999;
6834 border-bottom: 1px dotted #999;
6837 /*===========*/
6838 /* POST-META */
6839 /*===========*/
6841 .post-meta,
6842 h1.listing + .post-meta {
6843 text-align: center;
6844 font-weight: 400;
6846 .post-meta .post-section::before,
6847 .comment-meta .alignment-forum {
6848 color: #fff;
6849 top: -1px;
6850 text-shadow:
6851 1px 1px 0 #999,
6852 0 1px 0 #999,
6853 0 0 5px #999;
6854 margin: 0 0 0 0.5em;
6856 .comment-meta .alignment-forum {
6857 margin: 0 1em 0 0;
6859 a.post-section:hover {
6860 text-decoration: none;
6862 .post-meta .post-section.alignment-forum::before {
6863 text-shadow:
6864 1px 1px 0 #b9bbff,
6865 0 1px 0 #b9bbff,
6866 0 0 5px #b9bbff;
6868 a.post-section.alignment-forum:hover::before {
6869 color: #e7e8ff;
6871 .post-meta > *,
6872 .comment-meta a {
6873 color: #999;
6875 .post-meta a:hover,
6876 .comment-meta a:hover {
6877 color: #333;
6878 text-shadow: 0px 0px 0.5px #333;=
6880 .bottom-post-meta {
6881 border-color: #ddd;
6884 /*============*/
6885 /* LINK POSTS */
6886 /*============*/
6888 .post.link-post a.link-post-link {
6889 text-decoration: none;
6890 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
6891 font-weight: 600;
6892 color: #77121a;
6894 .post.link-post a.link-post-link:hover {
6895 color: #942f2f;
6896 text-shadow:
6897 0px 0px 0.5px #ff987b,
6898 0px 0px 1.5px #c05651,
6899 0.5px 0.5px 0.5px #de7069;
6901 .post.link-post a.link-post-link:hover::before {
6902 color: #4879ec;
6903 text-shadow:
6904 0.5px 0.5px 0 #fff,
6905 -0.5px -0.5px 0 #fff,
6906 0 0 2px #fff,
6907 0 0 3px #00c;
6909 .post.link-post a.link-post-link:focus {
6910 text-shadow:
6911 0px 0px 0.5px #ff987b,
6912 0px 0px 1.5px #c05651,
6913 0.5px 0.5px 0.5px #de7069;
6916 /*=======*/
6917 /* POSTS */
6918 /*=======*/
6920 .post-body {
6921 font-size: 1.375rem;
6923 .post-page .post-meta::after {
6924 display: block;
6925 margin: 0.625em 0 0 0;
6926 font-size: 1.5rem;
6927 flex-basis: 100%;
6928 order: 2;
6930 .post-page .post-meta:first-of-type::after {
6931 content: "❦";
6933 .post-body {
6934 margin: 0;
6937 .post .bottom-post-meta {
6938 border-color: #bbb;
6939 padding-bottom: 17px;
6942 /*=================*/
6943 /* POST NAVIGATION */
6944 /*=================*/
6946 .post-nav-links a,
6947 .post-nav-links a:visited {
6948 color: #888;
6949 font-weight: 200;
6951 .post-nav-links a:hover {
6952 text-decoration: none;
6953 color: #333;
6954 text-shadow:
6955 0px 0px 0.5px #333;
6956 background-color: #f0f0eb;
6959 .post-nav-label {
6960 opacity: 0.75;
6961 font-weight: 300;
6964 .post-nav.prev, .sequence-title {
6965 border-right: 1px solid #bbb;
6968 @media only screen and (max-width: 900px) {
6969 .post-nav.prev,
6970 .post-nav.next {
6971 padding: 0.75em 0.5em 0.5em 0.5em;
6973 .sequence-title {
6974 border-top: 1px solid #bbb;
6975 border-right: none;
6977 .post-nav.prev {
6978 border-right: 1px solid #bbb;
6980 .post-nav.next {
6981 border-left: 1px solid #bbb;
6985 /*==========*/
6986 /* COMMENTS */
6987 /*==========*/
6989 .comments::before {
6990 border-top: 1px solid #bbb;
6993 #content > .comment-thread .comment-meta a.date:focus,
6994 #content > .comment-thread .comment-meta a.permalink:focus {
6995 color: #444;
6996 font-weight: normal;
6997 outline: 2px dotted #444;
6998 position: relative;
6999 background-color: #fff;
7000 padding: 0 5px;
7001 left: -5px;
7003 #content > .comment-thread .comment-meta a.date:focus + *,
7004 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
7005 margin-left: -10px;
7007 .comment-item {
7008 border: 1px solid transparent;
7011 .comment-item {
7012 box-shadow:
7013 0 0 3px #bbb,
7014 0 0 5px #bbb,
7015 0 0 7px #bbb,
7016 0 0 10px #bbb;
7018 .comment-body {
7019 font-size: 1.25rem;
7022 /*================================*/
7023 /* DEEP COMMENT THREAD COLLAPSING */
7024 /*================================*/
7026 .comment-item input[id^="expand"] + label::after {
7027 color: #888;
7028 font-weight: 600;
7030 .comment-item input[id^="expand"] + label:hover::after {
7031 color: #c00;
7033 .comment-item input[id^="expand"] + label:active::after,
7034 .comment-item input[id^="expand"] + label:focus::after{
7035 color: #c00;
7037 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
7038 border-width: 1px 0 0 0;
7040 .comment-item input[id^="expand"] ~ .comment-thread {
7041 max-height: 39px;
7042 padding-top: 5px;
7045 /*==============*/
7046 /* COMMENT-META */
7047 /*==============*/
7049 .comment-meta {
7050 font-weight: 400;
7051 padding-top: 5px;
7052 padding-bottom: 4px;
7053 border-bottom: 1px dotted #bbb;
7056 .comment-meta .author {
7057 font-size: 1.125em;
7058 color: #666;
7059 font-weight: 600;
7061 .comment-item .author:not(.redacted).original-poster::after {
7062 opacity: 0.8;
7065 .comment-item .voting-controls.active-controls::after,
7066 .comment-item .voting-controls .karma-value::after,
7067 .post .voting-controls.active-controls::after,
7068 .post .voting-controls .karma-value::after,
7069 .author::before {
7070 background-color: #fff;
7071 color: #777;
7072 box-shadow: 0 0 0 1px #ccc inset;
7073 text-shadow: none;
7074 border-radius: 4px;
7076 .comment-item .voting-controls.active-controls::after,
7077 .post .voting-controls.active-controls::after {
7078 padding: 6px;
7079 bottom: -46px;
7081 .comment-item .voting-controls .karma-value::after,
7082 .post .voting-controls .karma-value::after {
7083 padding: 2px 8px;
7084 top: -26px;
7085 min-width: 64px;
7088 /*====================*/
7089 /* ANTI-KIBITZER MODE */
7090 /*====================*/
7092 .author.redacted,
7093 .inline-author.redacted {
7094 opacity: 0.8;
7095 font-weight: 300;
7098 .karma-value.redacted {
7099 opacity: 0.5;
7102 .link-post-domain.redacted {
7103 opacity: 0.5;
7106 /*===========================*/
7107 /* COMMENT THREAD NAVIGATION */
7108 /*===========================*/
7110 a.comment-parent-link::after {
7111 display: none;
7113 a.comment-parent-link::before {
7114 color: #bbb;
7116 a.comment-parent-link:hover::before {
7117 color: #999;
7118 text-shadow: none;
7119 background-image: linear-gradient(to right, transparent 0%, #bbb 100%);
7120 background-repeat: no-repeat;
7121 box-shadow: 1px 0 0 0 #bbb;
7124 .comment-child-link::before {
7125 color: #ccc;
7128 .comment-item-highlight {
7129 box-shadow:
7130 0 0 2px #e7b200,
7131 0 0 3px #e7b200,
7132 0 0 5px #e7b200,
7133 0 0 7px #e7b200,
7134 0 0 10px #e7b200;
7135 border: 1px solid #e7b200;
7137 .comment-item-highlight-faint {
7138 box-shadow:
7139 0 0 2px #f8e7b5,
7140 0 0 3px #f8e7b5,
7141 0 0 5px #f8e7b5,
7142 0 0 7px #f8e7b5,
7143 0 0 10px #f8e7b5;
7144 border: 1px solid #f8e7b5;
7147 .comment-popup {
7148 background-color: #fff;
7151 /*====================*/
7152 /* COMMENT PERMALINKS */
7153 /*====================*/
7155 .comment-meta .permalink,
7156 .comment-meta .lw2-link,
7157 .individual-thread-page .comment-parent-link:empty {
7158 filter: grayscale(50%);
7160 .comment-meta .permalink:hover,
7161 .comment-meta .lw2-link:hover,
7162 .individual-thread-page .comment-parent-link:empty:hover {
7163 filter: unset;
7166 /*=======================*/
7167 /* COMMENTS COMPACT VIEW */
7168 /*=======================*/
7170 #comments-list-mode-selector button {
7171 box-shadow:
7172 0 0 0 4px #fff inset,
7173 0 0 0 5px #bbb inset;
7175 #comments-list-mode-selector button:hover,
7176 #comments-list-mode-selector button.selected {
7177 box-shadow:
7178 0 0 0 5px #bbb inset;
7180 #content.compact > .comment-thread .comment-item {
7181 max-height: 56px;
7183 #content.compact > .comment-thread .comment-item::after {
7184 color: #888;
7185 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
7188 @media only screen and (hover: hover) {
7189 #content.compact > .comment-thread .comment-item:hover .comment,
7190 #content.compact > .comment-thread .comment-item.expanded .comment {
7191 background-color: #fff;
7192 outline: 3px solid #888;
7194 #content.compact > .comment-thread .comment-item:hover .comment::before,
7195 #content.compact > .comment-thread .comment-item.expanded .comment::before {
7196 background-color: #fff;
7197 box-shadow:
7198 0 0 3px #fff,
7199 0 0 5px #fff,
7200 0 0 7px #fff,
7201 0 0 10px #fff,
7202 0 0 20px #fff,
7203 0 0 30px #fff,
7204 0 0 40px #fff;
7207 @media only screen and (hover: none) {
7208 #content.compact > .comment-thread.expanded .comment-item .comment {
7209 background-color: #fff;
7210 outline: 3px solid #888;
7212 #content.compact > .comment-thread.expanded .comment-item .comment::before {
7213 background-color: #fff;
7214 box-shadow:
7215 0 0 3px #fff,
7216 0 0 5px #fff,
7217 0 0 7px #fff,
7218 0 0 10px #fff,
7219 0 0 20px #fff,
7220 0 0 30px #fff,
7221 0 0 40px #fff;
7225 #content.user-page.compact > h1.listing {
7226 margin-top: 0.5rem;
7228 #content.user-page.compact > h1.listing + .post-meta {
7229 margin-bottom: 1rem;
7232 /*===========================*/
7233 /* HIGHLIGHTING NEW COMMENTS */
7234 /*===========================*/
7236 .new-comment::before {
7237 outline: 2px solid #5a5;
7238 box-shadow:
7239 0 0 6px -2px #5a5 inset,
7240 0 0 4px #5a5,
7241 0 0 6px #5a5;
7244 /*=================================*/
7245 /* COMMENT THREAD MINIMIZE BUTTONS */
7246 /*=================================*/
7248 .comment-minimize-button {
7249 color: #ccc;
7251 .comment-minimize-button:hover {
7252 color: #aaa;
7254 .comment-minimize-button::after {
7255 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7256 color: #777;
7258 .comment-minimize-button.maximized::after {
7259 color: #ccc;
7262 /*=================================*/
7263 /* INDIVIDUAL COMMENT THREAD PAGES */
7264 /*=================================*/
7266 .individual-thread-page > h1 a {
7267 color: #690010;
7269 .individual-thread-page > h1 a:hover {
7270 text-shadow:
7271 0px 0px 0.5px #ff987b,
7272 0px 0px 1.5px #c05651,
7273 0.5px 0.5px 0.5px #de7069;
7276 .individual-thread-page > h1 {
7277 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7280 /*==============*/
7281 /* VOTE BUTTONS */
7282 /*==============*/
7284 .vote {
7285 position: relative;
7287 .vote::before {
7288 position: relative;
7289 z-index: 1;
7291 .vote::after {
7292 position: absolute;
7295 .karma .upvote::before {
7296 content: "\F077";
7297 top: 1px;
7299 .karma .downvote::before {
7300 content: "\F078";
7301 left: -2px;
7303 .karma .upvote::after {
7304 content: "\F325";
7305 left: 6px;
7306 bottom: 4px;
7308 .karma .downvote::after {
7309 content: "\F322";
7310 left: 4px;
7311 top: 4px;
7313 @-moz-document url-prefix() {
7314 .karma .upvote::after {
7315 left: 4px;
7316 bottom: 4px;
7318 .karma .downvote::after {
7319 left: 2px;
7320 top: 5px;
7324 .agreement .upvote::before {
7325 content: "\F00C";
7326 top: 1px;
7328 .agreement .downvote::before {
7329 content: "\F00D";
7330 left: -2px;
7332 .agreement .upvote::after {
7333 content: "\F560";
7334 left: 6px;
7335 bottom: 2px;
7337 .agreement .downvote::after {
7338 content: "\E59B";
7339 left: 2px;
7340 top: 1px;
7342 @-moz-document url-prefix() {
7343 .agreement .upvote::after {
7344 left: 4px;
7345 bottom: 2px;
7347 .agreement .downvote::after {
7348 left: 0;
7349 top: 1px;
7353 /**********/
7354 /* States.
7357 /* _ 1
7359 .vote {
7360 color: #bbb;
7363 /* _ 2
7365 .upvote:hover,
7366 .upvote:not(.none) {
7367 color: var(--GW-upvote-button-color);
7368 text-shadow:
7369 0 0 0.5px #fff,
7370 0 0 8px #0f0;
7372 .downvote:hover,
7373 .downvote:not(.none) {
7374 color: var(--GW-downvote-button-color);
7375 text-shadow:
7376 0 0 0.5px #fff,
7377 0 0 8px #f00;
7380 /* 0 _
7382 .vote::after {
7383 visibility: hidden;
7386 /* 1,2 _
7388 .vote.two-temp::after,
7389 .vote.two::after {
7390 visibility: visible;
7393 /* 1 _
7395 .vote.two-temp::after {
7396 color: #bbb;
7397 text-shadow: none;
7400 /* Disabled.
7402 .vote:disabled {
7403 visibility: unset;
7404 color: #eee;
7406 .vote:disabled:hover {
7407 text-shadow: none;
7410 /*===========================*/
7411 /* COMMENTING AND POSTING UI */
7412 /*===========================*/
7414 .posting-controls input[type='submit'] {
7415 background-color: #fff;
7416 border: 1px solid #aaa;
7417 font-weight: bold;
7419 .posting-controls input[type='submit']:hover,
7420 .posting-controls input[type='submit']:focus {
7421 background-color: #ddd;
7422 border: 1px solid #999;
7424 .comment + .comment-controls .action-button {
7425 font-weight: 400;
7428 .comment-controls .cancel-comment-button {
7429 font-weight: 600;
7430 color: #c00;
7431 text-shadow:
7432 0 0 1px #fff,
7433 0 0 2px #fff;
7435 .comment-controls .cancel-comment-button:hover {
7436 color: #f00;
7439 .new-comment-button {
7440 font-weight: 600;
7443 .comment-controls .delete-button,
7444 .comment-controls .retract-button {
7445 color: #d00;
7447 .comment-controls .delete-button::before {
7448 opacity: 0.6;
7449 font-weight: 400;
7451 .comment-controls .retract-button::before {
7452 opacity: 0.5;
7453 font-weight: 400;
7455 .comment-controls .edit-button,
7456 .comment-controls .unretract-button {
7457 color: #0a0;
7459 .comment-controls .edit-button::before,
7460 .comment-controls .unretract-button::before {
7461 font-weight: 400;
7463 .comment-controls .action-button:hover {
7464 color: #f00;
7465 text-shadow:
7466 0px 0px 0.5px #fff,
7467 0px 0px 1.5px #800,
7470 .post-controls {
7471 margin: 0.5em -0.75em 0 0;
7473 .edit-post-link,
7474 .edit-post-link:visited {
7475 color: #090;
7478 .posting-controls textarea {
7479 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7480 font-size: 1.25rem;
7481 font-weight: 500;
7482 color: #000;
7483 background-color: #fff;
7484 border-color: #aaa;
7485 box-shadow:
7486 0 0 0 1px #eee inset;
7488 .posting-controls textarea:focus {
7489 background-color: #ffd;
7490 border-color: #888;
7491 box-shadow:
7492 0 0 0 1px #ddf inset,
7493 0 0 0 1px #fff,
7494 0 0 0 2px #888;
7496 .posting-controls.edit-existing-post textarea:focus,
7497 .posting-controls form.edit-existing-comment textarea:focus {
7498 border-color: #090;
7499 box-shadow:
7500 0 0 0 1px #81ff7f inset,
7501 0 0 0 1px #fff,
7502 0 0 0 2px #090;
7505 /* GUIEdit buttons */
7507 .guiedit-buttons-container {
7508 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
7511 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7512 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7513 color: #050;
7515 .guiedit-buttons-container button {
7516 font-family: Font Awesome, 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
7519 .guiedit::after {
7520 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7521 color: #777;
7522 text-shadow: none;
7525 /* Markdown hints */
7527 #markdown-hints-checkbox + label {
7528 color: #888;
7530 #markdown-hints-checkbox + label:hover {
7531 color: #e00;
7533 #markdown-hints {
7534 border: 1px solid #c00;
7535 background-color: #ffa;
7538 /*================*/
7539 /* EDIT POST FORM */
7540 /*================*/
7542 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7543 border-radius: 3px;
7544 border: 1px solid #ddd;
7545 color: #777;
7547 @media only screen and (hover:hover) {
7548 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7549 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7550 text-shadow:
7551 0 0 1px #fff,
7552 0 0 2px #fff,
7553 0 0 2.5px #aaa;
7555 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7556 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7557 border-color: #aaa;
7560 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7561 content: "\F00C";
7563 #edit-post-form input[type='radio'] + label {
7564 color: #777;
7565 border-color: #ddd;
7567 #edit-post-form input[type='radio'][value='all'] + label {
7568 border-radius: 8px 0 0 8px;
7569 border-width: 1px;
7571 #edit-post-form input[type='radio'][value='drafts'] + label {
7572 border-radius: 0 8px 8px 0;
7574 #edit-post-form input[type='radio'] + label:hover,
7575 #edit-post-form input[type='radio']:focus + label {
7576 background-color: #ddd;
7577 color: #000;
7579 #edit-post-form input[type='radio']:focus + label {
7580 color: #000;
7581 box-shadow:
7582 0 0 0 1px #aaa;
7584 #edit-post-form input[type='radio']:checked + label {
7585 background-color: #ddd;
7586 border-color: #ddd;
7587 color: #000;
7588 text-shadow:
7589 0 -1px 0 #fff,
7590 0 0.5px 0.5px #000;
7593 /*=======*/
7594 /* LINKS */
7595 /*=======*/
7598 text-decoration: none;
7599 color: #888;
7601 a:visited {
7602 color: #888;
7605 /*=========*/
7606 /* BUTTONS */
7607 /*=========*/
7609 button,
7610 input[type='submit'] {
7611 color: #888;
7614 button:active,
7615 input[type='submit']:active {
7616 color: #f00;
7617 transform: scale(0.9);
7619 .button:visited {
7620 color: #888;
7622 .button:active {
7623 transform: scale(0.9);
7625 @-moz-document url-prefix() {
7626 .button:active {
7627 transform: none;
7630 @media only screen and (hover: hover) {
7631 button:hover,
7632 input[type='submit']:hover,
7633 button:focus,
7634 input[type='submit']:focus {
7635 color: #333;
7636 text-shadow: 0px 0px 0.5px #333;
7639 .button:hover {
7640 color: #333;
7641 text-shadow: 0px 0px 0.5px #333;
7642 text-decoration: none;
7644 .button:focus:not(:hover) {
7645 transform: none;
7649 /*==========*/
7650 /* HEADINGS */
7651 /*==========*/
7653 .body-text h1,
7654 .body-text h2,
7655 .body-text h3,
7656 .body-text h4,
7657 .body-text h5,
7658 .body-text h6 {
7659 margin: 1.5em 0 0.25em 0;
7661 .body-text h4 {
7662 font-size: 1.15em;
7664 .body-text h3 {
7665 font-variant: small-caps;
7666 font-size: 1.3em;
7668 .body-text h2 {
7669 font-style: italic;
7670 font-size: 1.5em;
7672 .body-text h1 {
7673 font-size: 1.9em;
7674 border: none;
7676 .post-body h1 {
7677 text-align: center;
7678 margin: 1em 0 0 0;
7680 .post-body h2 {
7681 margin: 1em 0 0 0;
7683 .post-body h1::before {
7684 content: "❦";
7685 display: block;
7686 margin: 0 auto 1em auto;
7687 font-size: 0.625em;
7688 font-weight: normal;
7690 .post-body h2::before {
7691 content: "☙";
7692 text-align: center;
7693 display: block;
7694 margin: 0 auto 0.5em auto;
7695 font-weight: normal;
7696 font-style: normal;
7698 .post-body h1:first-child::before,
7699 .body-text .contents + h1::before,
7700 .post-body h2:first-child::before,
7701 .body-text .contents + h2::before {
7702 content: "";
7705 /*========*/
7706 /* QUOTES */
7707 /*========*/
7709 blockquote {
7710 border-left: 5px solid #ccc;
7713 /*========*/
7714 /* IMAGES */
7715 /*========*/
7717 #content img,
7718 #content figure.image img {
7719 border: 1px solid #ccc;
7721 #content figure img {
7722 border: 1px solid #000;
7724 #content img[src$='.svg'],
7725 #content figure img[src$='.svg'] {
7726 border: none;
7728 #content img[style^='float'] {
7729 border: 1px solid transparent;
7732 /*========*/
7733 /* TABLES */
7734 /*========*/
7736 #content:not(.tag-index-page) .body-text table,
7737 #content:not(.tag-index-page) .body-text table th,
7738 #content:not(.tag-index-page) .body-text table td {
7739 border: 1px solid #ddd;
7742 /*======*/
7743 /* MISC */
7744 /*======*/
7746 hr {
7747 height: 1px;
7748 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
7751 code,
7752 pre {
7753 font-family: Triplicate Code, Courier, Courier New, monospace;
7754 font-size: 0.8125em;
7757 pre {
7758 border: 1px solid #ceccc3;
7759 background-color: #f6f4ea;
7760 border-radius: 4px;
7761 padding: 0 1px;
7764 input[type='text'],
7765 input[type='search'],
7766 input[type='password'] {
7767 background-color: transparent;
7768 border: 1px solid #ccc;
7769 color: #000;
7771 input[type='text']:focus,
7772 input[type='search']:focus,
7773 input[type='password']:focus {
7774 background-color: #ffd;
7775 border: 1px solid #bbb;
7776 box-shadow: 0 0 1px #bbb;
7779 select {
7780 color: #000;
7783 /*============*/
7784 /* ABOUT PAGE */
7785 /*============*/
7787 .about-page mark {
7788 background-color: #e6e6e6;
7789 text-decoration: none;
7790 box-shadow:
7791 0 -1px 0 0 #000 inset,
7792 0 -3px 1px -2px #000 inset;
7793 padding: 0 1px;
7796 #content.about-page .accesskey-table {
7797 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
7798 border-color: #ddd;
7801 #content.about-page img {
7802 border: 1px solid #000;
7805 /*========================*/
7806 /* QUALIFIED HYPERLINKING */
7807 /*========================*/
7809 #aux-about-link a {
7810 color: #777;
7812 #aux-about-link a:hover {
7813 opacity: 1.0;
7816 .qualified-linking label {
7817 color: #bbb;
7819 .qualified-linking label:hover {
7820 color: #333;
7821 text-shadow: 0px 0px 0.5px #333;
7824 .qualified-linking-toolbar {
7825 border: 1px solid #000;
7826 background-color: #fff;
7828 .qualified-linking-toolbar a {
7829 background-color: #eee;
7830 border: 1px solid #ccc;
7831 border-radius: 4px;
7833 .qualified-linking-toolbar a:visited {
7834 color: #888;
7836 .qualified-linking-toolbar a:hover {
7837 text-decoration: none;
7838 background-color: #ddd;
7840 .qualified-linking label::after {
7841 background-color: #fffffa;
7842 opacity: 0.8;
7845 /*======*/
7846 /* MATH */
7847 /*======*/
7849 .mathjax-block-container::-webkit-scrollbar {
7850 height: 12px;
7851 background-color: #f6f6ff;
7852 border-radius: 6px;
7853 border: 1px solid #ddf;
7855 .mathjax-block-container::-webkit-scrollbar-thumb {
7856 background-color: #dde;
7857 border-radius: 6px;
7858 border: 1px solid #cce;
7860 .mathjax-inline-container::-webkit-scrollbar {
7861 height: 8px;
7862 background-color: #f6f6ff;
7863 border-radius: 4px;
7864 border: 1px solid #ddf;
7866 .mathjax-inline-container::-webkit-scrollbar-thumb {
7867 background-color: #dde;
7868 border-radius: 4px;
7869 border: 1px solid #cce;
7873 /*===============*/
7874 /* USER MENTIONS */
7875 /*===============*/
7877 .textarea-container .autocomplete-container {
7878 background-color: rgba(255, 255, 170, 0.75);
7879 border: 1px solid rgba(136, 136, 136, 0.75);
7880 font-weight: 300;
7883 .textarea-container .autocomplete-container div.highlighted {
7884 background-color: rgba(136, 136, 136, 0.75);
7885 color: #fff;
7888 .textarea-container .autocomplete-container div:not(.highlighted):hover {
7889 background-color: rgba(136, 136, 136, 0.25);
7892 .textarea-container .autocomplete-container div span.age,
7893 .textarea-container .autocomplete-container div span.karma {
7894 color: #888;
7897 .textarea-container .autocomplete-container div.highlighted span.age,
7898 .textarea-container .autocomplete-container div.highlighted span.karma {
7899 color: #ddd;
7903 /*=================*/
7904 /* ALIGNMENT FORUM */
7905 /*=================*/
7907 #content.alignment-forum-index-page::before {
7908 background-color: #f4f5ff;
7909 border-color: #bbb;
7910 border-style: solid;
7911 border-width: 0 1px;
7913 #content.alignment-forum-index-page::after {
7914 grid-column: 1;
7915 font-family: "Concourse SmallCaps";
7916 font-weight: 600;
7917 background-color: #7f85b2;
7918 color: transparent;
7919 -webkit-background-clip: text;
7920 text-shadow:
7921 rgba(255,255,255,0.5) 0px 3px 3px;
7923 @media only screen and (hover: hover) {
7924 #content.alignment-forum-index-page h1.listing a:hover,
7925 #content.alignment-forum-index-page h1.listing a:focus {
7926 background-color: rgba(244,245,255,0.85);
7930 /*====================*/
7931 /* FOR NARROW SCREENS */
7932 /*====================*/
7934 @media only screen and (max-width: 1440px) {
7935 #hns-date-picker {
7936 background-color: #fffffa;
7937 opacity: 1.0;
7940 @media only screen and (max-width: 1160px) {
7941 #theme-selector:hover::after {
7942 width: calc(6em - 9px);
7943 height: calc(100% - 5px);
7944 top: 3px;
7945 left: 100%;
7947 #text-size-adjustment-ui button {
7948 background-color: #ddd;
7950 #text-size-adjustment-ui button:hover {
7951 background-color: #eee;
7953 #theme-tweaker-toggle button {
7954 background-color: #ddd;
7957 @media only screen and (max-width: 1080px) {
7958 #text-size-adjustment-ui button {
7959 border: 1px solid #999;
7960 padding: 0 0 0 1px;
7961 border-radius: 50%;
7962 box-shadow:
7963 0 0 6px #999 inset,
7964 0 0 0 1px transparent;
7966 #theme-tweaker-toggle button {
7967 border: 1px solid #999;
7968 box-shadow:
7969 0 0 10px #999 inset,
7970 0 0 0 1px transparent;
7971 border-radius: 50%;
7972 transform: scale(0.8);
7976 /*========*/
7977 /* MOBILE */
7978 /*========*/
7980 /*******************************************************/
7981 @media not screen and (hover:hover) and (pointer:fine) {
7982 /*******************************************************/
7983 #ui-elements-container > div[id$='-ui-toggle'] button {
7984 color: #bbb;
7985 text-shadow:
7986 0 0 1px #fffffa,
7987 0 0 3px #fffffa,
7988 0 0 5px #fffffa,
7989 0 0 10px #fffffa,
7990 0 0 20px #fffffa,
7991 0 0 30px #fffffa;
7994 #theme-selector {
7995 background-color: #fffffa;
7996 box-shadow:
7997 0 0 0 1px #ccc,
7998 0 0 1px 3px #fffffa,
7999 0 0 3px 3px #fffffa,
8000 0 0 5px 3px #fffffa,
8001 0 0 10px 3px #fffffa,
8002 0 0 20px 3px #fffffa;
8003 border-radius: 8px;
8005 #theme-selector::before {
8006 color: #999;
8007 font-weight: 300;
8008 text-shadow: 0.5px 0.5px 0 #fff;
8010 #theme-selector button {
8011 background-color: #fffffa;
8012 border-radius: 8px;
8014 #theme-selector button::after {
8015 color: #777;
8016 max-width: calc(100% - 3.5em);
8017 overflow: hidden;
8018 text-overflow: ellipsis;
8020 #theme-selector button.selected::after {
8021 color: #222;
8022 text-shadow:
8023 0 -1px 0 #fff,
8024 0 0.5px 0.5px #000;
8026 #theme-selector .theme-selector-close-button {
8027 color: #fffffa;
8028 text-shadow:
8029 1px 1px 0 #ccc,
8030 0 0 8px #ccc;
8031 opacity: 1.0;
8034 #quick-nav-ui {
8035 background-color: #fffffa;
8037 #quick-nav-ui,
8038 #new-comment-nav-ui,
8039 #hns-date-picker {
8040 box-shadow:
8041 0 0 1px 3px #fffffa,
8042 0 0 3px 3px #fffffa,
8043 0 0 5px 3px #fffffa,
8044 0 0 10px 3px #fffffa,
8045 0 0 20px 3px #fffffa;
8047 #quick-nav-ui a::after,
8048 #new-comment-nav-ui::before {
8049 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
8050 font-weight: bold;
8051 box-shadow:
8052 0 0 1px 0 #fffffa,
8053 0 0 3px 0 #fffffa,
8054 0 0 5px 0 #fffffa;
8055 background-color: #fffffa;
8056 border-radius: 4px;
8058 #quick-nav-ui,
8059 #new-comment-nav-ui {
8060 border-radius: 8px;
8062 #new-comment-nav-ui {
8063 background-color: #fffffa;
8064 border: 1px solid #ccc;
8066 #new-comment-nav-ui::before {
8067 color: #777;
8068 font-weight: 600;
8070 #new-comment-nav-ui .new-comment-sequential-nav-button {
8071 box-shadow: 0 0 0 1px #ccc;
8072 color: #777;
8074 #new-comment-nav-ui .new-comments-count {
8075 background-color: inherit;
8076 box-shadow: 0 -1px 0 0 #ccc;
8078 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
8079 border-radius: 7px 0 0 7px;
8081 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
8082 border-radius: 0 7px 7px 0;
8084 #new-comment-nav-ui button::after {
8085 font-family: 'Proxima Nova', 'GW-Symbols', sans-serif;
8088 /*****************************************/
8089 @media only screen and (max-width: 900px) {
8090 /*****************************************/
8091 h1.listing {
8092 line-height: 1;
8094 h1.listing + .post-meta .post-section::before {
8095 position: unset;
8097 h1.listing + .post-meta .post-section {
8098 overflow: visible;
8101 .nav-bar-top:not(#primary-bar) .nav-inner {
8102 font-size: 1.125em;
8104 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
8105 padding: 6px 10px;
8108 #top-nav-bar .page-number {
8109 padding-top: 11px;
8111 #top-nav-bar::after {
8112 margin: 0 auto;
8115 .archive-nav *[class^='archive-nav-item-'] {
8116 border-width: 1px !important;
8118 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
8119 background-color: #bbb;
8122 .comment-item .comment-item {
8123 margin: 0.75em 3px 3px 6px;
8125 .comment-item .comment-item + .comment-item {
8126 margin: 1.5em 3px 3px 6px;
8129 .sublevel-nav:not(.sort) .sublevel-item,
8130 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8131 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8132 border-radius: 8px;
8133 border-width: 1px;
8134 margin: 2px;
8137 .contents {
8138 margin-left: auto;
8140 /*******************************************/
8141 } @media only screen and (max-width: 720px) {
8142 /*******************************************/
8143 /*******************************************/
8144 } @media only screen and (max-width: 520px) {
8145 /*******************************************/
8146 h1.listing {
8147 font-size: 1.5rem;
8148 margin: 18px 6px 4px 6px;
8149 max-width: calc(100% - 12px);
8151 h1.listing + .post-meta {
8152 margin: 4px 6px;
8154 h1.listing + .post-meta > * {
8155 line-height: 1.4;
8157 h1.listing .link-post-link {
8158 top: 4px;
8161 #content.user-page h1.listing::after {
8162 height: calc(100% + 2.375em);
8164 #content.user-page h1.listing.link-post-listing::after {
8165 height: calc(100% + 3.375em);
8167 #content.user-page h1.listing + .post-meta {
8168 margin-bottom: 1.5rem;
8171 #content.compact > .comment-thread .comment-item {
8172 max-height: 104px;
8174 #content.compact.user-page h1.listing {
8175 margin-top: 0.5rem;
8177 #content.compact.user-page h1.listing + .post-meta {
8178 margin-bottom: 0.75rem;
8181 .comment-body {
8182 font-size: 1.1875rem;
8183 line-height: 1.35;
8186 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8187 padding: 5px 6px 6px 6px;
8188 font-weight: 600;
8190 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8191 box-shadow:
8192 0 0 0 1px #c00,
8193 0 0 0 1px #c00 inset;
8194 color: #c00;
8195 border-color: transparent;
8197 .textarea-container:focus-within .guiedit-buttons-container {
8198 background-color: #fff;
8199 border-top: 1px solid #ddf;
8201 #content.conversation-page .textarea-container:focus-within::after {
8202 background-color: #fff;
8204 .textarea-container:focus-within .guiedit-mobile-auxiliary-button,
8205 .textarea-container:focus-within button.guiedit {
8206 border: 1px solid #bbb;
8207 border-radius: 6px;
8209 #markdown-hints::after {
8210 color: #090;
8213 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8214 top: 2px;
8216 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8217 top: 1px;
8219 #edit-post-form textarea {
8220 min-height: calc(100vh - 440px);
8225 /*************/
8226 /* ACCORDIUS */
8227 /*************/
8229 /*======*/
8230 /* TAGS */
8231 /*======*/
8233 #tags {
8234 order: 12;
8235 display: flex;
8236 flex-basis: 100%;
8237 justify-content: center;
8238 margin: 0;
8239 flex-flow: row wrap;
8240 align-items: flex-start;
8243 /*========================*/
8244 /* READTHESEQUENCES THEME */
8245 /*========================*/
8247 /*++++++*/
8248 /* TAGS */
8249 /*++++++*/
8251 #tags {
8252 padding: 0.5em;
8253 align-items: center;
8255 #tags::before {
8256 content: "\F02C";
8257 font-family: Font Awesome;
8258 font-weight: 400;
8259 font-size: 0.875em;
8260 margin: 0 0.5em 0 0;
8261 opacity: 0.6;
8263 #tags a {
8264 margin: 0 0.375em 0 0;
8266 #tags a:not(:last-of-type)::after {
8267 content: ","
8270 .post-page .post-meta::after {
8271 order: 20;