Add default black-on-white colors for mobile theme selector.
[lw2-viewer.git] / www / css / style-ultramodern.mac.css
blob7adf13d8796a20dca609c9a41ef18390ae3acfd8
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;
12 /***************/
13 /* BASE LAYOUT */
14 /***************/
16 html {
17 box-sizing: border-box;
18 font-size: 16px;
20 *, *::before, *::after {
21 box-sizing: inherit;
23 script {
24 display: none !important;
27 /*=------=*/
28 /*= Body =*/
29 /*=------=*/
31 body {
32 padding: 0;
33 margin: 0;
35 body::before {
36 background-color: inherit;
37 position: fixed;
38 width: 100%;
39 height: 100%;
42 body.no-scroll {
43 overflow-y: scroll;
44 position: fixed;
45 width: 100%;
48 /*=----------------------------=*/
49 /*= Immediate children of body =*/
50 /*=----------------------------=*/
52 body > * {
53 max-width: 900px;
56 /* Special styles for special browsers.
57 (This one is a fix for Firefox’s built-in screenshot feature.)
59 body > iframe[id^='firefox-screenshots'] {
60 max-width: unset;
63 #content {
64 margin: 0 auto;
65 padding: 0 30px;
66 position: relative;
67 overflow: visible;
68 display: grid;
69 grid-template-columns: 2fr 1fr 2fr;
71 #content::before {
72 content: "";
73 display: block;
74 position: absolute;
75 top: 0;
76 left: 0;
77 width: 100%;
78 height: 100%;
79 z-index: -1;
80 pointer-events: none;
83 /*=---------=*/
84 /*= Content =*/
85 /*=---------=*/
87 #content > * {
88 grid-column: 1 / span 3;
91 /*=----------------------=*/
92 /*= Floating UI elements =*/
93 /*=----------------------=*/
95 #ui-elements-container {
96 position: fixed;
97 height: 100vh;
98 top: 0;
99 left: 0;
100 right: 0;
101 margin: auto;
102 z-index: 10000;
103 pointer-events: none;
105 #ui-elements-container > * {
106 pointer-events: auto;
109 /*=----------------=*/
110 /*= Images overlay =*/
111 /*=----------------=*/
112 /* (To exclude images in posts from theme tweaks) */
114 #images-overlay {
115 position: absolute;
116 z-index: 1;
117 left: 0;
118 right: 0;
119 margin: auto;
122 /***********/
123 /* NAV BAR */
124 /***********/
126 .nav-bar {
127 margin: 0 -30px;
128 display: flex;
129 order: -11;
130 z-index: 1;
133 /*=---------------=*/
134 /*= Nav bar items =*/
135 /*=---------------=*/
137 .nav-item {
138 flex: 1 1 auto;
140 .nav-item * {
141 text-overflow: ellipsis;
142 white-space: nowrap;
143 overflow: hidden;
145 .nav-inner {
146 padding: 12px 30px;
147 text-align: center;
148 display: block;
149 position: relative;
151 .nav-bar-top:not(#primary-bar) .nav-inner {
152 padding: 4px 0;
155 #nav-item-sequences .nav-inner::before {
156 font-family: "Font Awesome", "Font Awesome 5 Free";
157 content: "\F5DB";
159 @media only screen and (min-width: 901px) {
160 #nav-item-about .nav-inner {
161 margin-right: 0.5em;
163 #nav-item-sequences .nav-inner::before {
164 font-size: 1rem;
165 display: block;
167 #secondary-bar #nav-item-sequences .nav-inner {
168 font-size: 0;
169 line-height: 1.4;
173 /*=------------=*/
174 /*= Bottom bar =*/
175 /*=------------=*/
177 #bottom-bar {
178 order: 11;
180 h1.listing ~ #bottom-bar {
181 margin-top: 1.25em;
183 #bottom-bar .nav-item {
184 flex: 1 1 0;
187 /*=-----------------=*/
188 /*= Accesskey hints =*/
189 /*=-----------------=*/
191 .nav-inner::after {
192 content: attr(accesskey);
193 display: none;
196 /*=---------------=*/
197 /*= Pagination UI =*/
198 /*=---------------=*/
200 #bottom-bar .nav-item a::before,
201 #top-nav-bar a::before {
202 font-family: "Font Awesome", "Font Awesome 5 Free";
203 font-weight: 900;
204 font-size: 0.8em;
205 position: relative;
206 bottom: 1px;
207 margin-right: 0.5em;
209 #bottom-bar #nav-item-first a::before,
210 #top-nav-bar a.nav-item-first::before {
211 content: "\F33e";
213 #bottom-bar #nav-item-top a::before {
214 content: "\F062";
216 #bottom-bar #nav-item-prev a::before,
217 #top-nav-bar a.nav-item-prev::before {
218 content: "\F060";
220 #bottom-bar #nav-item-next a::before,
221 #top-nav-bar a.nav-item-next::before {
222 content: "\F061";
224 #bottom-bar #nav-item-last a::before,
225 #top-nav-bar a.nav-item-last::before {
226 content: "\F340";
228 #bottom-bar #nav-item-next a::before {
229 margin-left: -2em;
230 margin-right: 0;
231 left: 3.8em;
233 #bottom-bar #nav-item-last a::before {
234 margin-left: -1.8em;
235 margin-right: 0;
236 left: 3.4em;
239 /*= Hover tooltips =*/
241 #top-nav-bar a {
242 position: relative;
244 #top-nav-bar a::after {
245 bottom: calc(100% - 3px);
246 content: attr(data-target-page);
248 #top-nav-bar a::after {
249 display: block;
250 position: absolute;
251 font-size: 0.75rem;
252 width: 100%;
253 line-height: 1;
254 visibility: hidden;
256 #top-nav-bar a:hover::after,
257 #bottom-bar a:hover::after {
258 visibility: visible;
261 /*=-----------------------=*/
262 /*= Decorative bottom bar =*/
263 /*=-----------------------=*/
264 /* (On short pages with no pagination) */
266 #bottom-bar.decorative {
267 position: relative;
269 #bottom-bar.decorative .nav-item {
270 display: none;
273 /*=------------=*/
274 /*= Search tab =*/
275 /*=------------=*/
277 #nav-item-search {
278 flex: 4 1 auto;
280 #nav-item-search form::before {
281 content: "\F002";
282 font-family: "Font Awesome", "Font Awesome 5 Free";
283 font-weight: 900;
284 display: inline-block;
285 vertical-align: top;
286 height: 23px;
287 width: 23px;
289 #nav-item-search input {
290 height: 23px;
291 width: calc(95% - 80px);
292 padding: 1px 4px;
294 #nav-item-search button {
295 height: 21px;
298 /*=-----------=*/
299 /*= Login tab =*/
300 /*=-----------=*/
302 #nav-item-login {
303 position: relative;
304 padding-right: 0.5em;
307 /*******************/
308 /* INBOX INDICATOR */
309 /*******************/
311 #inbox-indicator {
312 position: absolute;
313 top: 1px;
314 right: 0;
315 height: 100%;
316 visibility: hidden;
318 #inbox-indicator::before {
319 content: "\F0E0";
320 font-family: "Font Awesome", "Font Awesome 5 Free";
321 color: #bbb;
322 font-size: 1.1875rem;
323 position: absolute;
324 height: 100%;
325 right: 0;
326 top: 0;
327 padding: 0 0.45em;
328 visibility: visible;
329 font-weight: 900;
331 #inbox-indicator.new-messages::before {
332 color: #f00;
333 text-shadow:
334 0 0 1px #777,
335 0.5px 0.5px 1px #777;
337 a#inbox-indicator:hover::before {
338 color: #fff;
339 text-shadow:
340 0 0 1px #000,
341 0 0 2px #000,
342 0 0 4px #000,
343 0 0 1px #777,
344 0.5px 0.5px 1px #777;
346 a#inbox-indicator.new-messages:hover::before {
347 text-shadow:
348 0 0 1px #f00,
349 0 0 2px #f00,
350 0 0 4px #f00,
351 0 0 1px #777,
352 0.5px 0.5px 1px #777;
355 /****************/
356 /* PAGE TOOLBAR */
357 /****************/
359 .page-toolbar {
360 font-size: 0.9em;
361 line-height: 1.8;
362 text-align: right;
363 margin-right: -20px;
365 #content > .page-toolbar {
366 grid-column: 3;
367 grid-row: span 3;
369 #content.user-page > .page-toolbar {
370 grid-column: 2 / span 2;
371 order: -4;
374 /*=--------------------------=*/
375 /*= Page toolbar items (all) =*/
376 /*=--------------------------=*/
378 .page-toolbar > * {
379 display: inline-block;
380 margin-left: 1.5em;
382 .page-toolbar > form button {
383 padding: 0;
384 text-align: right;
385 white-space: unset;
387 .page-toolbar > form button::before {
388 text-align: center;
390 .page-toolbar .button::before {
391 font-family: "Font Awesome", "Font Awesome 5 Free";
392 font-size: 0.9em;
393 padding-right: 0.3em;
396 /*=-------------------------------=*/
397 /*= Page toolbar items (specific) =*/
398 /*=-------------------------------=*/
400 .new-post::before {
401 content: '\F067';
402 font-weight: 900;
404 .new-private-message::before {
405 content: '\F075';
406 font-weight: 400;
408 .logout-button::before {
409 content: '\F2F5';
410 font-weight: 900;
412 #enable-push-notifications::before {
413 content: '\F0F3';
414 font-weight: 400;
416 .ignore-button::before {
417 content: "\F070";
418 font-weight: 400;
420 .unignore-button::before {
421 content: "\F06E";
422 font-weight: 400;
424 .rss::before {
425 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
426 display: inline-block;
427 width: 1em;
428 padding-right: 0.2em;
429 position: relative;
430 top: 1px;
433 /*********************/
434 /* TOP PAGINATION UI */
435 /*********************/
437 #top-nav-bar {
438 grid-column: 2;
439 margin: 0.25em 0 0 0;
440 padding: 0.75em 0 0 0;
441 text-align: center;
442 font-size: 1.25em;
443 display: flex;
444 justify-content: center;
446 #top-nav-bar a {
447 line-height: 1;
449 #top-nav-bar a.disabled {
450 pointer-events: none;
451 visibility: hidden;
453 #top-nav-bar .page-number {
454 position: relative;
455 display: inline-block;
456 width: 1.5em;
458 #top-nav-bar .page-number-label {
459 position: absolute;
460 font-size: 0.5em;
461 text-transform: uppercase;
462 width: 100%;
463 bottom: 90%;
464 left: 0;
466 #top-nav-bar a::before {
467 margin: 0.5em;
468 display: inline-block;
471 /****************/
472 /* SUBLEVEL NAV */
473 /****************/
475 .sublevel-nav {
476 text-align: center;
477 display: flex;
478 justify-content: center;
479 margin: 1em 0 0 0;
481 #content > .sublevel-nav:not(.sort) {
482 grid-column: 2;
483 align-self: start;
485 .sublevel-nav .sublevel-item {
486 flex: 0 0 6em;
487 padding: 0.125em 0.5em;
488 font-size: 1.125rem;
490 .sublevel-nav .sublevel-item:active {
491 transform: none;
493 .sublevel-nav .sublevel-item.selected {
494 cursor: default;
497 /***********************/
498 /* SORT ORDER SELECTOR */
499 /***********************/
501 .sublevel-nav.sort {
502 position: relative;
503 margin-top: 8px;
504 font-size: 0.75em;
506 #content > .sublevel-nav.sort {
507 grid-column: 3;
508 grid-row: span 2;
509 justify-self: end;
510 align-self: start;
511 flex-flow: column;
513 #content.index-page > .sublevel-nav.sort {
514 grid-column: 1;
515 justify-self: start;
516 flex-flow: row;
519 .sublevel-nav.sort::before {
520 content: "Sort";
521 font-size: 0.75rem;
522 position: absolute;
523 top: 0;
524 left: 0;
525 width: 100%;
527 .sublevel-nav.sort .sublevel-item {
528 line-height: 1;
529 font-size: 0.875rem;
530 flex-basis: unset;
533 /*******************************/
534 /* COMMENTS SORT MODE SELECTOR */
535 /*******************************/
537 .comments > .sublevel-nav.sort {
538 margin: 1em auto 0 auto;
540 @supports (width: -moz-fit-content) {
541 .comments > .sublevel-nav.sort {
542 width: -moz-fit-content;
545 @supports (width: fit-content) {
546 .comments > .sublevel-nav.sort {
547 width: fit-content;
551 /******************/
552 /* WIDTH SELECTOR */
553 /******************/
555 #width-selector {
556 position: absolute;
557 top: 4px;
558 right: -78px;
560 #width-selector button {
561 width: 22px;
562 height: 22px;
563 padding: 6px;
564 margin: 1px;
565 overflow: hidden;
566 background-repeat: no-repeat;
567 background-size: 100%;
568 background-origin: content-box;
570 #width-selector button,
571 #width-selector button:active,
572 #width-selector button:focus {
573 text-shadow: none;
574 color: transparent;
576 #width-selector button:disabled {
577 cursor: auto;
579 #width-selector button.select-width-normal {
580 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
582 #width-selector button.select-width-wide {
583 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
585 #width-selector button.select-width-fluid {
586 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
589 /*=----------------=*/
590 /*= Hover tooltips =*/
591 /*=----------------=*/
593 #width-selector button::after {
594 content: attr(data-name);
595 position: absolute;
596 display: block;
597 left: 0;
598 width: 100%;
599 text-align: center;
600 top: 56px;
601 visibility: hidden;
603 #width-selector button.selected::after {
604 content: attr(data-name) " (selected)";
606 #width-selector button:hover:not(:active)::after {
607 visibility: visible;
610 head.content-width-normal + body > * {
611 max-width: 900px;
613 head.content-width-wide + body > * {
614 max-width: 1150px;
616 head.content-width-fluid + body > * {
617 max-width: calc(100% - 300px);
620 /******************/
621 /* THEME SELECTOR */
622 /******************/
624 #theme-selector {
625 position: absolute;
626 top: 3px;
627 left: -41px;
628 opacity: 0.4;
629 display: table;
630 max-width: 40px;
632 #theme-selector:hover {
633 opacity: 1.0;
636 /*=----------------------=*/
637 /*= Theme select buttons =*/
638 /*=----------------------=*/
640 .theme-selector button {
641 display: table-cell;
642 width: 26px;
643 height: 26px;
644 padding: 5px;
645 margin: 1px 7px 0 7px;
646 color: transparent;
647 background-size: 16px 16px;
648 background-origin: content-box;
650 .theme-selector button,
651 .theme-selector button:hover,
652 .theme-selector button:active,
653 .theme-selector button:focus {
654 text-shadow: none;
655 color: transparent;
657 .theme-selector button:disabled {
658 cursor: auto;
661 /*=----------------------------=*/
662 /*= Pre-rendered button images =*/
663 /*=----------------------------=*/
664 /* (Each is just a capital letter A through whatever) */
666 .theme-selector button:nth-of-type(1) {
667 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
669 .theme-selector button:nth-of-type(2) {
670 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
672 .theme-selector button:nth-of-type(3) {
673 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=');
675 .theme-selector button:nth-of-type(4) {
676 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
678 .theme-selector button:nth-of-type(5) {
679 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
681 .theme-selector button:nth-of-type(6) {
682 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
684 .theme-selector button:nth-of-type(7) {
685 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
687 .theme-selector button:nth-of-type(8) {
688 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
690 .theme-selector button:nth-of-type(9) {
691 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
694 /*=------------------------------=*/
695 /*= Theme select button tooltips =*/
696 /*=------------------------------=*/
697 /* (with the name & description of the theme that each button selects) */
699 #theme-selector button {
700 position: relative;
701 z-index: 1;
703 #theme-selector button::before {
704 content: attr(data-theme-name);
705 position: absolute;
706 top: 0;
707 right: 100%;
708 padding: 5px 6px 6px 6px;
709 line-height: 1;
710 width: 6em;
711 text-align: right;
712 z-index: 1;
713 visibility: hidden;
715 #theme-selector:hover button::before {
716 visibility: visible;
718 #theme-selector:hover ~ #theme-tweaker-toggle,
719 #theme-selector:active ~ #theme-tweaker-toggle {
720 z-index: -1;
723 /************************/
724 /* THEME TWEAKER TOGGLE */
725 /************************/
727 #theme-tweaker-toggle {
728 position: absolute;
729 top: 7px;
730 left: -75px;
732 #theme-tweaker-toggle button {
733 font-family: "Font Awesome", "Font Awesome 5 Free";
734 font-weight: 900;
735 font-size: 1.25rem;
736 opacity: 0.4;
737 z-index: 1;
739 #theme-tweaker-toggle button:hover {
740 opacity: 1.0;
743 /*******************/
744 /* QUICKNAV WIDGET */
745 /*******************/
747 #quick-nav-ui {
748 position: absolute;
749 right: -67px;
750 bottom: 20px;
752 #quick-nav-ui a {
753 font-family: "Font Awesome", "Font Awesome 5 Free";
754 font-weight: 900;
755 font-size: 1.5rem;
756 line-height: 1.7;
757 text-align: center;
758 display: block;
759 width: 40px;
760 height: 40px;
761 margin: 10px 0 0 0;
763 #quick-nav-ui a[href='#comments'].no-comments {
764 pointer-events: none;
766 #quick-nav-ui a {
767 visibility: hidden;
769 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
770 visibility: visible;
773 /************************/
774 /* NEW COMMENT QUICKNAV */
775 /************************/
777 #new-comment-nav-ui {
778 position: absolute;
779 right: -112px;
780 bottom: 42px;
782 #new-comment-nav-ui > * {
783 display: block;
784 position: relative;
786 #new-comment-nav-ui.no-comments {
787 display: none;
790 /*=--------------------=*/
791 /*= New comments count =*/
792 /*=--------------------=*/
794 #new-comment-nav-ui .new-comments-count {
795 width: 2em;
796 font-size: 1.25rem;
797 line-height: 1.1;
798 text-align: center;
799 left: 1px;
800 cursor: pointer;
802 #new-comment-nav-ui .new-comments-count::selection {
803 background-color: transparent;
805 #new-comment-nav-ui .new-comments-count::after {
806 content: "NEW";
807 display: block;
808 font-size: 0.625rem;
811 /*=-----------------------------------=*/
812 /*= Next/previous new comment buttons =*/
813 /*=-----------------------------------=*/
815 #new-comment-nav-ui .new-comment-sequential-nav-button {
816 font-size: 1.75rem;
817 font-family: "Font Awesome", "Font Awesome 5 Free";
818 font-weight: 900;
819 width: 1.5em;
820 z-index: 5001;
822 #new-comment-nav-ui .new-comment-previous {
823 top: 8px;
825 #new-comment-nav-ui .new-comment-next {
826 bottom: 6px;
828 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
829 cursor: auto;
830 pointer-events: none;
833 /*******************/
834 /* HNS DATE PICKER */
835 /*******************/
837 #hns-date-picker {
838 position: absolute;
839 bottom: 72px;
840 right: -253px;
841 opacity: 0.6;
843 #hns-date-picker:hover,
844 #hns-date-picker:focus-within {
845 opacity: 1.0;
847 #hns-date-picker.no-comments {
848 display: none;
851 /*=---------------=*/
852 /*= "Since" label =*/
853 /*=---------------=*/
855 #hns-date-picker span {
856 display: block;
857 font-size: 0.75rem;
858 text-transform: uppercase;
861 /*=--------------------=*/
862 /*= "Since" text field =*/
863 /*=--------------------=*/
865 #hns-date-picker input {
866 margin-top: 1px;
867 padding: 1px 3px;
868 width: 140px;
869 text-align: center;
870 box-shadow: 0 0 0 1px transparent;
873 /************************/
874 /* ANTI-KIBITZER TOGGLE */
875 /************************/
877 #anti-kibitzer-toggle {
878 position: absolute;
879 right: -67px;
880 bottom: 225px;
882 #anti-kibitzer-toggle button {
883 display: block;
884 width: 40px;
885 height: 54px;
886 padding: 0;
888 #anti-kibitzer-toggle button::before,
889 #anti-kibitzer-toggle button::after {
890 font-family: "Font Awesome", "Font Awesome 5 Free";
892 #anti-kibitzer-toggle button::before {
893 content: "\F06E";
894 display: block;
895 font-size: 1.75em;
896 font-weight: 400;
898 #anti-kibitzer-toggle button::after {
899 content: "\F007\2004\F164";
900 font-size: 0.875em;
901 font-weight: 900;
903 #anti-kibitzer-toggle.engaged button::before {
904 content: "\F070";
907 /************************/
908 /* TEXT SIZE ADJUSTMENT */
909 /************************/
911 #text-size-adjustment-ui {
912 position: absolute;
913 top: 30px;
914 right: -78px;
915 opacity: 0.4;
917 #text-size-adjustment-ui:hover {
918 opacity: 1.0;
921 /* This doesn't work in Mozilla browsers, so hide it */
922 @-moz-document url-prefix() {
923 #text-size-adjustment-ui {
924 display: none;
928 /*=---------=*/
929 /*= Buttons =*/
930 /*=---------=*/
932 #text-size-adjustment-ui button {
933 font-weight: 900;
934 font-family: "Font Awesome", "Font Awesome 5 Free";
935 font-size: 0.75rem;
936 width: 24px;
937 height: 24px;
938 padding: 0;
940 #text-size-adjustment-ui button.default {
941 font-family: inherit;
942 font-size: 1.125rem;
943 position: relative;
944 top: 1px;
946 #text-size-adjustment-ui button:disabled {
947 opacity: 0.5;
949 #text-size-adjustment-ui button:disabled:hover {
950 cursor: default;
953 /*=----------------=*/
954 /*= Hover tooltips =*/
955 /*=----------------=*/
957 #text-size-adjustment-ui::after {
958 content: "Adjust text size";
959 position: absolute;
960 display: block;
961 left: 0;
962 width: 100%;
963 text-align: center;
964 top: 32px;
965 visibility: hidden;
966 font-size: 0.9em;
968 #text-size-adjustment-ui:hover::after {
969 visibility: visible;
972 /*******************************/
973 /* COMMENTS VIEW MODE SELECTOR */
974 /*******************************/
976 #comments-view-mode-selector {
977 position: absolute;
978 bottom: 30px;
979 left: -40px;
980 opacity: 0.6;
982 #comments-view-mode-selector:hover {
983 opacity: 1.0;
986 /*=---------=*/
987 /*= Buttons =*/
988 /*=---------=*/
990 #comments-view-mode-selector a {
991 display: block;
992 font-family: "Font Awesome", "Font Awesome 5 Free";
993 font-size: 1.25rem;
994 text-align: center;
995 opacity: 0.4;
996 padding: 0.25em;
997 z-index: 1;
999 #comments-view-mode-selector a.threaded {
1000 transform: scaleY(-1);
1001 font-weight: 900;
1003 #comments-view-mode-selector a.chrono {
1004 font-weight: normal;
1006 #comments-view-mode-selector a.selected,
1007 #comments-view-mode-selector a:hover {
1008 opacity: 1.0;
1009 text-decoration: none;
1011 #comments-view-mode-selector a.selected {
1012 cursor: default;
1015 /*****************/
1016 /* KEYBOARD HELP */
1017 /*****************/
1019 #keyboard-help-overlay {
1020 width: 100vw;
1021 height: 100vh;
1022 background-color: rgba(0,0,0,0.7);
1023 position: fixed;
1024 left: 0;
1025 top: 0;
1026 z-index: 5001;
1028 display: flex;
1029 justify-content: center;
1030 align-items: center;
1031 padding: 20px 30px 30px 20px;
1033 visibility: hidden;
1036 #keyboard-help-overlay .keyboard-help-container {
1037 background-color: #fff;
1038 filter: drop-shadow(4px 4px 2px #000);
1039 flex: 1 1 auto;
1040 max-width: 1500px;
1041 max-height: 100%;
1042 overflow-y: auto;
1043 position: relative;
1045 #keyboard-help-overlay .keyboard-help-container h1 {
1046 text-align: center;
1047 border-bottom: 1px solid #ddd;
1048 margin: 0;
1049 padding: 10px 20px;
1051 #keyboard-help-overlay .keyboard-help-container .note {
1052 margin: 0.5em auto;
1053 padding: 0 1em;
1054 width: fit-content;
1056 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1057 column-width: 21em;
1058 column-count: auto;
1059 column-gap: 1.5em;
1060 border-top: 1px solid #ddd;
1061 padding: 15px 20px;
1063 #keyboard-help-overlay .keyboard-help-container ul {
1064 list-style-type: none;
1065 margin: 0;
1066 padding: 0;
1067 break-inside: avoid;
1068 white-space: nowrap;
1070 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1071 margin: 20px 0 0 0;
1073 #keyboard-help-overlay .keyboard-help-container ul li.section {
1074 font-weight: bold;
1075 font-size: 1.125rem;
1076 break-after: avoid;
1078 #keyboard-help-overlay .keyboard-help-container .keys {
1079 margin: 0 0.5em 0 0;
1080 min-width: 4.5em;
1081 display: inline-block;
1083 #keyboard-help-overlay .keyboard-help-container .keys code {
1084 margin: 0 6px 0 0;
1086 #keyboard-help-overlay .keyboard-help-container code {
1087 display: inline-block;
1088 background-color: #eee;
1089 border: 1px solid #ccc;
1090 padding: 3px 8px 4px 8px;
1091 margin: 0 1px;
1093 #keyboard-help-overlay .keyboard-help-container code.ak {
1094 background-color: #ffeb83;
1095 border-color: #d4a500;
1097 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1098 content: "ak+";
1099 opacity: 0.3;
1102 #nav-item-about button.open-keyboard-help {
1103 display: none;
1105 @media only screen and (hover:hover) and (pointer:fine) {
1106 #nav-item-about {
1107 position: relative;
1108 padding-right: 0.25em;
1110 #nav-item-about button.open-keyboard-help {
1111 font-family: "Font Awesome", "Font Awesome 5 Free";
1112 font-weight: 900;
1113 position: absolute;
1114 top: 0;
1115 right: 0;
1116 height: 100%;
1117 padding: 8px;
1118 display: initial;
1119 line-height: 1;
1120 background-color: transparent;
1124 #keyboard-help-overlay button.close-keyboard-help {
1125 position: absolute;
1126 right: 0;
1127 top: 0;
1128 font-family: "Font Awesome", "Font Awesome 5 Free";
1129 font-size: 1.5rem;
1130 padding: 10px 12px;
1133 /************/
1134 /* ARCHIVES */
1135 /************/
1137 .archive-nav {
1138 margin: 1.25em 0.5em 0 0.5em;
1139 padding: 0.25em;
1141 .archive-nav > * {
1142 display: flex;
1144 .archive-nav *[class^='archive-nav-item'] {
1145 line-height: 1;
1146 flex: 1 1 5%;
1147 text-align: center;
1148 padding: 6px 4px 4px 4px;
1149 max-width: 8%;
1151 @-moz-document url-prefix() {
1152 .archive-nav *[class^='archive-nav-item'] {
1153 padding: 5px 4px;
1156 .archive-nav-days .archive-nav-item-day {
1157 font-size: 0.8em;
1158 padding: 7px 0 5px 0;
1159 max-width: 4%;
1161 .archive-nav-days .archive-nav-item-day:first-child {
1162 flex-basis: 10%;
1165 /************/
1166 /* ARCHIVES */
1167 /************/
1169 .archive-nav {
1170 margin: 1.25em 0.5em 0 0.5em;
1171 padding: 0.25em;
1173 .archive-nav > * {
1174 display: flex;
1176 .archive-nav *[class^='archive-nav-item'] {
1177 line-height: 1;
1178 flex: 1 1 5%;
1179 text-align: center;
1180 padding: 6px 4px 4px 4px;
1181 max-width: 8%;
1183 @-moz-document url-prefix() {
1184 .archive-nav *[class^='archive-nav-item'] {
1185 padding: 5px 4px;
1188 .archive-nav-days .archive-nav-item-day {
1189 font-size: 0.8em;
1190 padding: 7px 0 5px 0;
1191 max-width: 4%;
1193 .archive-nav-days .archive-nav-item-day:first-child {
1194 flex-basis: 10%;
1197 /************/
1198 /* LISTINGS */
1199 /************/
1201 h1.listing {
1202 font-size: 1.875rem;
1203 line-height: 1.15;
1204 max-height: 1.15em;
1205 position: relative;
1208 h1.listing a {
1209 position: relative;
1212 /* Links to link-posts (not the link-post links themselves; that's below) */
1213 h1.listing .link-post-link + a {
1214 margin-left: 0.25em;
1217 h1.listing .link-post-link {
1218 font-size: 0.8em;
1219 display: inline;
1220 vertical-align: top;
1221 position: relative;
1222 top: 4px;
1225 /*=----------------------=*/
1226 /*= Listing hover reveal =*/
1227 /*=----------------------=*/
1228 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1230 @media only screen and (min-width: 1160px) {
1231 h1.listing a {
1232 max-width: 100%;
1233 display: inline-block;
1234 white-space: nowrap;
1235 text-overflow: ellipsis;
1236 overflow: hidden;
1237 border-bottom: 1px solid transparent;
1238 -webkit-hyphens: auto;
1239 -moz-hyphens: auto;
1240 -ms-hyphens: auto;
1241 hyphens: auto;
1242 z-index: 1;
1243 padding: 0 0 1px 1px;
1245 h1.listing .link-post-link + a {
1246 max-width: calc(100% - 33px);
1248 h1.listing a:hover,
1249 h1.listing a:focus {
1250 text-decoration: dotted underline;
1251 white-space: initial;
1252 overflow: visible;
1253 z-index: 2;
1255 h1.listing:focus-within::before {
1256 content: "\F105";
1257 font-family: "Font Awesome", "Font Awesome 5 Free";
1258 display: block;
1259 position: absolute;
1260 left: -0.75em;
1263 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1264 mouse movements) */
1266 h1.listing a:not(.edit-post-link):hover::before {
1267 content: "";
1268 position: absolute;
1269 top: -10px;
1270 right: -10px;
1271 bottom: -10px;
1272 left: -10px;
1273 z-index: -1;
1275 h1.listing .link-post-link:hover {
1276 text-decoration: none;
1280 /*=-----------------------=*/
1281 /*= In-listing edit links =*/
1282 /*=-----------------------=*/
1284 h1.listing .edit-post-link {
1285 position: absolute;
1286 margin: 0;
1289 /*=---------------------------------=*/
1290 /*= Error messages on listing pages =*/
1291 /*=---------------------------------=*/
1293 .listing-message {
1294 width: 100%;
1295 text-align: center;
1296 padding: 1.25em 0 1.25em 0;
1297 font-size: 1.375em;
1300 /*********************/
1301 /* LISTING POST-META */
1302 /*********************/
1304 h1.listing + .post-meta {
1305 position: relative;
1306 justify-content: flex-start;
1307 margin: 0 20px 0 21px;
1310 h1.listing + .post-meta > * {
1311 margin: 0 1em 0 0;
1314 h1.listing + .post-meta .post-section {
1315 width: 0;
1316 margin: 0;
1317 overflow: hidden;
1319 h1.listing + .post-meta .post-section::before {
1320 position: absolute;
1321 left: -36px;
1324 h1.listing + .post-meta .read-time {
1325 cursor: default;
1328 /********************/
1329 /* SEQUENCES & TAGS */
1330 /********************/
1332 .sequence-text, .tag-description {
1333 font-size: 1.2rem;
1334 padding: 0 22px;
1337 #content.tag-index-page .tag-description {
1338 margin: 1em 0 0;
1341 section {
1342 margin-top: 2em;
1343 margin-bottom: 4em;
1346 h1.sequence-chapter {
1347 font-size: 2.3rem;
1350 article {
1351 max-width: 100%;
1354 .post-meta + .comments {
1355 margin-top: 3em;
1358 .tag-list {
1359 column-count: auto;
1360 column-width: 15em;
1361 margin-top: 0;
1362 border-bottom: 1px solid #999;
1363 padding-bottom: 1em;
1364 margin-bottom: 0;
1367 /**************/
1368 /* USER PAGES */
1369 /**************/
1371 /*=---------------------=*/
1372 /*= User's display name =*/
1373 /*=---------------------=*/
1375 #content.user-page h1.page-main-heading {
1376 margin: 0.25em 0 0 0;
1377 line-height: 1.1;
1378 grid-column: 1 / span 2;
1379 order: -2;
1382 #content.user-page h1.page-main-heading .user-full-name {
1383 font-size: 1rem;
1384 font-weight: normal;
1385 padding-left: 0.5em;
1388 /*=--------------------=*/
1389 /*= User's karma total =*/
1390 /*=--------------------=*/
1392 #content.user-page .user-stats {
1393 grid-column: 3;
1394 order: -2;
1395 text-align: right;
1396 align-self: end;
1399 #content.user-page .user-stats .karma-type {
1400 white-space: nowrap;
1403 /*=----------------------=*/
1404 /*= Expanded vs. compact =*/
1405 /*=----------------------=*/
1407 #content.user-page #comments-list-mode-selector {
1408 grid-row: span 2;
1410 #content.user-page #comments-list-mode-selector button {
1411 display: block;
1414 /*=----------------------------------------------------=*/
1415 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1416 /*=----------------------------------------------------=*/
1418 #content.user-page .sublevel-nav {
1419 margin-bottom: 0.5em;
1422 /*=--------------=*/
1423 /*= User's posts =*/
1424 /*=--------------=*/
1426 #content.user-page h1.listing {
1427 margin: 0.5em 0 0 0;
1430 #content.user-page .user-bio :first-child {
1431 margin-top: 0.5em;
1434 /*****************/
1435 /* CONVERSATIONS */
1436 /*****************/
1438 /*=----------------------=*/
1439 /*= List of participants =*/
1440 /*=----------------------=*/
1442 #content.conversation-page .conversation-participants {
1443 grid-column: 2 / span 2;
1444 text-align: right;
1445 margin: 0.5em 0 0 0;
1447 .post-meta > .conversation-participants {
1448 white-space: normal;
1450 .conversation-participants ul,
1451 .conversation-participants li {
1452 list-style-type: none;
1453 display: inline-block;
1454 margin: 0;
1455 padding: 0;
1457 .conversation-participants li {
1458 margin-left: 0.375em;
1460 .conversation-participants li:not(:last-of-type)::after {
1461 content: ",";
1464 /*=-------------------------=*/
1465 /*= Posting controls (form) =*/
1466 /*=-------------------------=*/
1468 #content.conversation-page .posting-controls {
1469 padding: 0 0 1em 0;
1471 #content.conversation-page .post-meta-fields {
1472 overflow: auto;
1473 display: flex;
1474 flex-flow: row wrap;
1476 .posting-controls.standalone textarea {
1477 margin-top: 0.375em;
1479 .posting-controls.standalone form {
1480 padding: 0 1em;
1482 #content.conversation-page .posting-controls.standalone form {
1483 padding: 0 1em 3em 1em;
1485 .posting-controls.standalone input[type='text'],
1486 .posting-controls.standalone label {
1487 margin: 0.25em 0;
1489 .posting-controls.standalone label {
1490 width: 4em;
1491 text-align: right;
1492 padding: 2px 6px;
1493 border: 1px solid transparent;
1495 .posting-controls.standalone input[type='text'] {
1496 width: calc(100% - 4em);
1497 padding: 0.25em;
1499 .posting-controls.standalone input[type='submit'] {
1500 float: right;
1502 .posting-controls.standalone #markdown-hints-checkbox ~ label {
1503 white-space: nowrap;
1505 .posting-controls.standalone #markdown-hints {
1506 top: calc(100% + 2em);
1509 /*=--------------------=*/
1510 /*= Conversation title =*/
1511 /*=--------------------=*/
1513 #content.conversation-page h1.page-main-heading {
1514 text-align: center;
1515 margin: 0.5em 0;
1516 line-height: 1.15;
1519 /*=----------=*/
1520 /*= Messages =*/
1521 /*=----------=*/
1523 #content.conversation-page > ul.comment-thread:last-of-type {
1524 margin-bottom: 2em;
1527 /******************/
1528 /* SEARCH RESULTS */
1529 /******************/
1531 #content.search-results-page h1.listing,
1532 #content.sequence-page h1.listing,
1533 #content.post-page h1.listing {
1534 font-size: 1.625em;
1537 /**************/
1538 /* LOGIN PAGE */
1539 /**************/
1541 .login-container {
1542 margin: 2em 0;
1543 padding: 1em;
1544 display: flex;
1545 flex-flow: row wrap;
1548 .login-container form {
1549 flex-basis: 50%;
1550 display: grid;
1551 grid-row-gap: 0.5em;
1552 align-content: start;
1554 .login-container form label {
1555 text-align: right;
1556 padding: 0.25em 0.5em;
1557 white-space: nowrap;
1558 grid-column: 1;
1560 .login-container form input {
1561 grid-column: 2;
1562 padding: 0.25em;
1564 .login-container form input[type='submit'],
1565 .login-container form a {
1566 grid-column: 2;
1567 justify-self: center;
1569 .login-container form input[type='submit'] {
1570 width: 10em;
1571 padding: 0.35em;
1572 line-height: 1;
1573 margin: 0.5em 0 0 0;
1575 .login-container form h1 {
1576 text-align: center;
1577 margin: 0;
1578 grid-column: 2;
1581 /* “Log in” form */
1583 #login-form {
1584 grid-template-columns: 5.5em 1fr;
1585 padding: 0.5em 2em 0.5em 0;
1588 /* “Create account” form */
1590 #signup-form {
1591 font-size: 0.9em;
1592 grid-template-columns: 8.5em 1fr;
1593 padding: 0.5em 1em 1em 1em;
1595 #signup-form h1 {
1596 font-size: 1.7em;
1598 #signup-form input[type='submit'] {
1599 padding: 0.4em 0.5em 0.5em 0.5em;
1602 /* Log in tip */
1604 .login-container .login-tip {
1605 padding: 0.5em 0.5em 0.5em 3em;
1606 margin: 2em 4em 0 4em;
1607 text-indent: -2em;
1608 line-height: 1.4;
1610 .login-container .login-tip span {
1611 font-weight: bold;
1614 /* Message box */
1616 #content.login-page .error-box {
1617 margin: 1.5em 0.875em -1.5em 0.875em;
1619 .error-box, .success-box {
1620 padding: 0.25em;
1621 text-align: center;
1624 /***********************/
1625 /* PASSWORD RESET PAGE */
1626 /***********************/
1628 .reset-password-container {
1629 margin-bottom: 2em;
1631 .reset-password-container input[type='submit'] {
1632 padding: 0.2em 0.5em;
1633 width: unset;
1635 .reset-password-container input {
1636 margin-left: 0.5em;
1637 width: 12em;
1639 .reset-password-container label {
1640 display: inline-block;
1641 width: 9em;
1643 .reset-password-container form > div {
1644 margin: 0.2em;
1646 .reset-password-container .action-container {
1647 padding-left: 11em;
1648 padding-top: 0.2em;
1650 .reset-password-container .error-box {
1651 margin: unset;
1654 /*********************/
1655 /* TABLE OF CONTENTS */
1656 /*********************/
1658 .contents {
1659 float: right;
1660 min-width: 6em;
1661 max-width: 40%;
1662 margin: 1.25em 0 0.75em 1.25em;
1663 padding: 7px 14px 10px 10px;
1664 position: relative;
1665 z-index: 1;
1668 .contents-head {
1669 text-align: center;
1670 margin-bottom: 0.25em;
1673 .post-body .contents ul {
1674 list-style-type: none;
1675 margin: 0 0 0 0.5em;
1676 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1677 padding-left: 1em;
1678 font-size: 0.75em;
1680 .post-body .contents li {
1681 margin: 0.15em 0 0.3em 1em;
1682 text-align: left;
1683 text-indent: -1em;
1684 line-height: 1.2;
1685 position: relative;
1687 .post-body .contents li::before {
1688 position: absolute;
1689 width: 3em;
1690 display: block;
1691 text-align: right;
1692 left: -4.5em;
1694 .contents .toc-item-1 {
1695 counter-increment: toc-item-1;
1696 counter-reset: toc-item-2 toc-item-3;
1698 .contents .toc-item-1::before {
1699 content: counter(toc-item-1);
1701 .contents .toc-item-1 ~ .toc-item-2 {
1702 margin-left: 2.9em;
1703 font-size: 0.95em;
1705 .contents .toc-item-2 {
1706 counter-increment: toc-item-2;
1707 counter-reset: toc-item-3;
1709 .contents .toc-item-1 ~ .toc-item-2::before {
1710 content: counter(toc-item-1) "." counter(toc-item-2);
1712 .contents .toc-item-2::before {
1713 content: counter(toc-item-2);
1715 .contents .toc-item-1 + .toc-item-3 {
1716 counter-increment: toc-item-2 toc-item-3;
1718 .contents .toc-item-2 ~ .toc-item-3,
1719 .contents .toc-item-1 ~ .toc-item-3 {
1720 margin-left: 2.9em;
1721 font-size: 0.95em;
1723 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1724 margin-left: 5.7em;
1725 font-size: 0.9em;
1727 .contents .toc-item-3 {
1728 counter-increment: toc-item-3;
1730 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1731 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1733 .contents .toc-item-1 ~ .toc-item-3::before {
1734 content: counter(toc-item-1) "." counter(toc-item-3);
1736 .contents .toc-item-2 ~ .toc-item-3::before {
1737 content: counter(toc-item-2) "." counter(toc-item-3);
1739 .contents .toc-item-3::before {
1740 content: counter(toc-item-3);
1742 .contents .toc-item-4,
1743 .contents .toc-item-5,
1744 .contents .toc-item-6 {
1745 display: none;
1748 /********************/
1749 /* POSTS & COMMENTS */
1750 /********************/
1752 .post-meta > *,
1753 .comment-meta > * {
1754 display: inline-block;
1755 margin-right: 1em;
1756 font-size: 1.0625em;
1758 .body-text {
1759 overflow-wrap: break-word;
1760 text-align: justify;
1762 .body-text p {
1763 margin: 1em 0;
1765 .retracted .body-text {
1766 text-decoration: line-through;
1769 .bare-url {
1770 word-break: break-all;
1771 hyphens: auto;
1773 .body-text a:not([href]),
1774 .body-text a:not([href]):hover,
1775 .body-text a:not([href])::before,
1776 .body-text a:not([href])::after {
1777 text-decoration: none;
1778 text-shadow: unset;
1779 border: unset;
1780 color: unset;
1781 content: unset;
1783 /*************/
1784 /* POST-META */
1785 /*************/
1787 .post-meta {
1788 display: flex;
1789 flex-flow: row wrap;
1790 justify-content: center;
1792 .post-meta .lw2-link {
1793 opacity: 0.5;
1794 order: 1;
1796 .post-meta > *,
1797 .post-meta .post-section::before {
1798 margin: 0 0.5em;
1800 .post-meta .post-section {
1801 order: -1;
1802 margin: 0;
1803 visibility: hidden;
1805 .post-meta .post-section::before,
1806 .comment-meta .alignment-forum {
1807 visibility: visible;
1808 font-family: "Font Awesome", "Font Awesome 5 Free";
1809 font-weight: 900;
1811 .post-section.frontpage::before {
1812 content: "\F015";
1814 .post-section.featured::before {
1815 content: "\F005";
1817 .post-section.meta::before {
1818 content: "\F077";
1820 .post-section.events::before {
1821 content: "\F5A0";
1823 .post-section.personal::before {
1824 content: "\F007";
1826 .post-section.draft::before {
1827 content: "\F15B";
1829 .post-section.alignment-forum::before,
1830 .comment-meta .alignment-forum {
1831 content: "AF";
1832 font-family: Concourse, 'Changa One';
1835 /*= Karma controls hover tooltips =*/
1837 @media only screen and (hover: hover) {
1838 .post .karma,
1839 .comment-item .karma {
1840 position: relative;
1842 .post .karma.active-controls::after,
1843 .comment-item .karma.active-controls::after {
1844 content: "Double-click for strong vote";
1845 position: absolute;
1846 pointer-events: none;
1847 display: block;
1848 left: 6px;
1849 max-width: calc(100% - 12px);
1850 line-height: 1.15;
1851 white-space: normal;
1852 text-align: center;
1853 font-size: 0.875rem;
1854 opacity: 0;
1855 transition: opacity 0.2s ease;
1857 .post .karma.active-controls:hover::after,
1858 .comment-item .karma.active-controls:hover::after {
1859 opacity: 1.0;
1862 .post .karma .karma-value::after,
1863 .comment-item .karma .karma-value::after {
1864 content: attr(title);
1865 position: absolute;
1866 pointer-events: none;
1867 display: block;
1868 left: 50%;
1869 transform: translateX(-50%);
1870 white-space: nowrap;
1871 text-align: center;
1872 font-size: 0.875rem;
1873 color: #bbb;
1874 opacity: 0;
1875 transition: opacity 0.2s ease;
1877 .post .karma .karma-value:hover::after,
1878 .comment-item .karma .karma-value:hover::after {
1879 opacity: 1.0;
1881 .comment-item .karma .karma-value:hover::after {
1882 z-index: 5001;
1885 .author {
1886 position: relative;
1888 .author:not(.redacted)::before {
1889 content: attr(data-full-name);
1890 position: absolute;
1891 pointer-events: none;
1892 display: block;
1893 padding: 0 1em;
1894 left: 50%;
1895 bottom: 2em;
1896 transform: translateX(-50%);
1897 white-space: nowrap;
1898 text-align: center;
1899 font-size: 0.875rem;
1900 font-weight: normal;
1901 opacity: 0;
1902 transition: opacity 0.2s ease;
1903 z-index: 5001;
1905 .author:hover::before {
1906 opacity: 1.0;
1910 /*********/
1911 /* POSTS */
1912 /*********/
1914 .post {
1915 max-width: 100%;
1918 .post-body {
1919 min-height: 8em;
1920 padding: 0 30px;
1921 line-height: 1.5;
1922 font-size: 1.3rem;
1923 overflow: auto;
1924 margin: 0.5em 0 0 0;
1926 h1.post-title {
1927 margin: 1.1em 0 0.35em 0;
1928 padding: 0 30px;
1929 text-align: center;
1930 font-size: 2.5em;
1931 line-height: 1;
1933 .post .post-meta {
1934 text-align: center;
1935 position: relative;
1936 z-index: 2;
1938 .post .top-post-meta:last-child {
1939 margin-bottom: 40px;
1941 .post .bottom-post-meta {
1942 margin: 0;
1943 padding: 20px 0;
1945 .bottom-post-meta {
1946 border-style: solid;
1947 border-width: 1px 0;
1950 /**********/
1951 /* EVENTS */
1952 /**********/
1954 .event-info .map {
1955 position: relative;
1956 width: 100%;
1957 margin: 2em 0 1em;
1960 .event-info .map::before {
1961 content: "";
1962 display: block;
1963 padding-bottom: 50%;
1966 .event-info .map iframe {
1967 width: 100%;
1968 height: 100%;
1969 border: 1px solid #000;
1970 position: absolute;
1971 top: 0;
1972 left: 0;
1975 .event-info ul {
1976 list-style: none;
1977 padding: 0;
1978 text-align: center;
1981 /*******************/
1982 /* POST NAVIGATION */
1983 /*******************/
1985 .post-nav-item {
1986 display: grid;
1987 grid-template: 100% / 32% 36% 32%;
1988 grid-template-areas:
1989 "prev seq next";
1991 .post-nav {
1992 display: flex;
1993 flex-flow: column;
1994 justify-content: flex-end;
1995 padding: 0.5em;
1998 .post-nav-title {
1999 font-size: 1.125em;
2000 line-height: 1.15;
2001 display: inline;
2002 border-top: 1px solid transparent;
2004 .post-nav.prev .post-nav-title,
2005 .post-nav.next .post-nav-title {
2006 border-bottom: 1px solid transparent;
2009 .sequence-title {
2010 align-items: center;
2011 text-align: center;
2012 grid-area: seq;
2014 .sequence-title .post-nav-title {
2015 font-size: 1.5em;
2018 .post-nav.prev {
2019 grid-area: prev;
2020 align-items: flex-start;
2022 .post-nav.prev .post-nav-title::before {
2023 content: "\F0D9\2005";
2025 .post-nav.next {
2026 grid-area: next;
2027 text-align: right;
2028 align-items: flex-end;
2030 .post-nav.prev .post-nav-label,
2031 .post-nav.next .post-nav-label {
2032 display: none;
2034 .post-nav.next .post-nav-title::after {
2035 content: "\2004\F0DA";
2037 .post-nav.prev .post-nav-title::before,
2038 .post-nav.next .post-nav-title::after {
2039 font-family: Font Awesome;
2040 font-weight: 900;
2041 vertical-align: text-bottom;
2042 opacity: 0.75;
2044 .post-nav-links {
2045 max-width: 100%;
2048 @media only screen and (max-width: 900px) {
2049 .post-nav-item {
2050 font-size: 0.875em;
2051 grid-template: auto auto / 50% 50%;
2052 grid-template-areas:
2053 "prev next"
2054 "seq seq";
2056 .post-nav.prev .post-nav-title,
2057 .post-nav.next .post-nav-title {
2058 border-bottom: none;
2060 .post-nav.prev {
2061 margin: 0 0 0 -1px;
2062 position: relative;
2063 left: 1px;
2065 .sequence-title {
2066 padding: 0.75em 0;
2069 @media only screen and (max-width: 520px) {
2070 .post-nav-links + .comments {
2071 padding: 1em 0 0 0;
2075 .related-posts, .related-post-group {
2076 padding-bottom: 1em;
2078 .related-post-type {
2079 font-size: 1.2em;
2080 font-weight: 600;
2081 margin-top: 0.5em;
2082 margin-bottom: -0.5em;
2083 list-style-type: disc;
2084 margin-left: -0.5em;
2085 opacity: 0.7;
2087 .related-post-type::before {
2088 content: "\269c";
2089 margin-right: 0.15em;
2091 .related-posts .post-type-prefix {
2092 display: none;
2095 /**************/
2096 /* LINK POSTS */
2097 /**************/
2099 .post.link-post > .post-body > p:first-child {
2100 text-align: center;
2101 font-size: 1.125em;
2102 margin: 0.5em 0 0 0;
2104 .post.link-post > .post-body > p:only-child {
2105 font-size: 1.5em;
2106 margin: 1em 0;
2108 .post.link-post a.link-post-link::before {
2109 content: "\F0C1";
2110 font-family: "Font Awesome", "Font Awesome 5 Free";
2111 font-weight: 900;
2112 font-size: 0.75em;
2113 position: relative;
2114 top: -2px;
2115 margin-right: 0.25em;
2118 /************/
2119 /* COMMENTS */
2120 /************/
2122 .comments {
2123 max-width: 100%;
2124 padding: 0 0 1px 0;
2125 position: relative;
2127 .comments::before {
2128 content: "";
2129 position: absolute;
2130 display: block;
2131 top: 0;
2132 left: 0;
2133 width: 100%;
2134 height: 100%;
2135 pointer-events: none;
2137 ul.comment-thread {
2138 list-style-type: none;
2139 padding: 0;
2140 max-width: 100%;
2142 .comments .comment-thread > li {
2143 position: relative;
2145 #content > #top-nav-bar + .comment-thread .comment-item {
2146 margin-top: 0;
2149 .comment-item {
2150 margin: 2em 0 0 0;
2152 .comment-item .comment-item {
2153 margin: 1em 8px 8px 16px;
2155 .comment-item .comment-item + .comment-item {
2156 margin: 2em 8px 8px 16px;
2159 .comment-body {
2160 line-height: 1.45;
2161 font-size: 1.2rem;
2162 padding: 10px;
2164 .comment-body ul {
2165 list-style-type: circle;
2167 .comment-body > *:first-child {
2168 margin-top: 0;
2170 .comment-body > *:last-child {
2171 margin-bottom: 0;
2174 .comments-empty-message {
2175 width: 100%;
2176 text-align: center;
2177 padding: 0.75em 0 0.9em 0;
2178 font-size: 1.375em;
2181 /**********************************/
2182 /* DEEP COMMENT THREAD COLLAPSING */
2183 /**********************************/
2185 .comment-item > input[id^="expand"] {
2186 display: none;
2188 .comment-item > input[id^="expand"] + label {
2189 display: block;
2190 visibility: hidden;
2191 position: relative;
2192 margin: 8px 9px;
2194 .comment-item > input[id^="expand"] + label::after {
2195 content: "(Expand " attr(data-child-count) " below)";
2196 visibility: visible;
2197 position: absolute;
2198 left: 0;
2199 white-space: nowrap;
2200 cursor: pointer;
2202 .comment-item > input[id^="expand"]:checked + label::after {
2203 content: "(Collapse " attr(data-child-count) " below)";
2205 .comment-item > input[id^="expand"] ~ .comment-thread {
2206 max-height: 34px;
2207 overflow: hidden;
2209 .comment-item > input[id^="expand"] ~ .comment-thread > li:first-child {
2210 margin-top: 0;
2212 .comment-item > input[id^="expand"]:checked ~ .comment-thread {
2213 max-height: 1000000px;
2216 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2217 margin: 0;
2219 .comment-item > input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2220 display: none;
2223 /*************/
2224 /* BACKLINKS */
2225 /*************/
2227 .backlinks > input {
2228 display: none;
2231 .backlinks > label {
2232 margin-left: 10px;
2233 display: block;
2234 color: #00f;
2235 cursor: pointer;
2238 .backlinks > label::before {
2239 content: " ";
2240 border-left: 5px solid currentColor;
2241 border-top: 5px solid transparent;
2242 border-bottom: 5px solid transparent;
2243 transition: transform 0.25s ease-out;
2244 transform-origin: 29% 55%;
2245 display: inline-block;
2246 padding-right: 0.5em;
2249 .backlinks > input:checked + label::before {
2250 transform: rotate(90deg);
2253 .backlinks li {
2254 margin-top: 0;
2257 .backlinks > ul {
2258 height: 0;
2259 perspective-origin: top;
2260 transform: perspective(100em) rotateX(-90deg);
2261 transform-origin: center top;
2262 opacity: 0;
2263 margin-top: 0.5em;
2264 margin-bottom: 0.5em;
2267 .backlinks > input:checked ~ ul {
2268 height: auto;
2269 transform: perspective(100em) rotateX(0deg);
2270 transition: transform 0.25s ease-in, opacity 0.25s ease-in;
2271 opacity: 1;
2274 /****************/
2275 /* COMMENT-META */
2276 /****************/
2278 .comment-meta {
2279 padding: 2px 24px 2px 10px;
2280 margin: 0 -1px;
2281 border: none;
2282 display: flex;
2283 flex-flow: row wrap;
2284 align-items: baseline;
2286 .user-page .comment-meta,
2287 .conversation-page .comment-meta {
2288 padding-right: 10px;
2290 .comment-meta .comment-post-title {
2291 flex-basis: 100%;
2292 overflow: hidden;
2293 text-overflow: ellipsis;
2294 line-height: 1.3;
2296 .conversation-page .comment-meta .comment-post-title {
2297 margin: 0;
2298 flex-basis: unset;
2299 flex: 1 0 auto;
2300 text-align: right;
2301 display: none; /* Not sure if we need to display this... */
2303 .comment-item .author:not(.redacted).original-poster::after {
2304 content: "\2004(OP)";
2305 font-size: 0.75em;
2308 /*****************************/
2309 /* COMMENT THREAD NAVIGATION */
2310 /*****************************/
2312 a.comment-parent-link:not(.inline-author),
2313 a.comment-parent-link.inline-author::before {
2314 opacity: 0.5;
2316 a.comment-parent-link:hover {
2317 opacity: 1.0;
2319 a.comment-parent-link::before {
2320 content: "\F062";
2321 font-family: "Font Awesome", "Font Awesome 5 Free";
2322 font-weight: 900;
2323 font-size: 0.75rem;
2324 line-height: 1;
2325 position: absolute;
2326 z-index: 1;
2327 display: block;
2328 padding: 3px 3px 0 3px;
2329 width: 16px;
2330 height: calc(100% + 2px);
2331 top: -1px;
2332 left: -17px;
2334 a.comment-parent-link::after {
2335 content: "";
2336 position: absolute;
2337 z-index: 0;
2338 display: block;
2339 width: calc(100% + 26px);
2340 height: calc(100% + 38px);
2341 top: -29px;
2342 left: -17px;
2343 pointer-events: none;
2344 overflow: hidden;
2345 visibility: hidden;
2347 a.comment-parent-link:hover::after {
2348 visibility: visible;
2351 .comment-child-links {
2352 flex-basis: 100%;
2354 .comment-child-link {
2355 margin: 0 0.25em;
2356 display: inline-block;
2358 .comment-child-link::before {
2359 content: ">";
2360 display: inline-block;
2361 margin: 0 2px 0 0;
2364 .comment-popup {
2365 position: fixed;
2366 top: 10%;
2367 right: 10%;
2368 max-width: 700px;
2369 z-index: 10001;
2370 font-size: 1rem;
2371 white-space: unset;
2372 pointer-events: none;
2374 .comment-popup .comment-parent-link {
2375 display: none;
2377 .comment-popup .comment-body {
2378 font-size: 1.0625rem;
2381 .comment-item.depth-odd {
2382 --GW-comment-background-color: var(--GW-comment-background-color-odd);
2383 --GW-comment-parent-background-color: var(--GW-comment-background-color-even);
2385 .comment-item.depth-even {
2386 --GW-comment-background-color: var(--GW-comment-background-color-even);
2387 --GW-comment-parent-background-color: var(--GW-comment-background-color-odd);
2390 .comment-item:target {
2391 --GW-comment-background-color: var(--GW-comment-background-color-target);
2393 .comment-item:target > .comment-thread > .comment-item {
2394 --GW-comment-parent-background-color: var(--GW-comment-background-color-target);
2397 /**********************/
2398 /* COMMENT PERMALINKS */
2399 /**********************/
2400 /********************/
2401 /* COMMENT LW LINKS */
2402 /********************/
2404 .comment-meta .permalink::before,
2405 .comment-meta .lw2-link::before,
2406 .individual-thread-page a.comment-parent-link:empty::before {
2407 content: "";
2408 display: inline-block;
2409 width: 1rem;
2410 height: 1rem;
2411 border-radius: 3px;
2412 box-shadow:
2413 0 0 0 1px #fff,
2414 0 0 0 2px #00e,
2415 0 0 0 3px transparent;
2416 padding: 0 0 0 2px;
2417 background-size: 100%;
2418 position: relative;
2419 top: 2px;
2420 opacity: 0.5;
2422 .comment-meta .permalink::before {
2423 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');
2425 .comment-meta .lw2-link::before {
2426 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==');
2428 .individual-thread-page a.comment-parent-link:empty::before {
2429 left: unset;
2430 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==');
2432 .comment-meta .permalink:hover::before {
2433 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');
2435 .comment-meta .lw2-link:hover::before {
2436 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==');
2438 .individual-thread-page a.comment-parent-link:empty:hover::before {
2439 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=');
2441 .comment-meta .permalink:hover::before,
2442 .comment-meta .lw2-link:hover::before,
2443 .individual-thread-page a.comment-parent-link:empty:hover::before {
2444 box-shadow:
2445 0 0 0 2px #00e,
2446 0 0 0 3px transparent;
2447 opacity: 1.0;
2448 filter: unset;
2450 .comment-meta .permalink:active::before,
2451 .comment-meta .lw2-link:active::before,
2452 .individual-thread-page a.comment-parent-link:empty:active::before {
2453 transform: scale(0.9);
2456 .comment-meta .permalink,
2457 .comment-meta .lw2-link,
2458 .individual-thread-page .comment-parent-link:empty {
2459 position: relative;
2460 opacity: 1.0;
2462 .comment-meta .permalink::after,
2463 .comment-meta .lw2-link::after,
2464 .individual-thread-page .comment-parent-link:empty::after {
2465 content: "";
2466 width: 30px;
2467 height: 30px;
2468 display: block;
2469 position: absolute;
2470 top: -2px;
2471 left: -7px;
2472 box-shadow: none;
2473 pointer-events: auto;
2474 visibility: visible;
2477 /*************************/
2478 /* COMMENTS COMPACT VIEW */
2479 /*************************/
2481 #comments-list-mode-selector,
2482 #content.index-page #comments-list-mode-selector,
2483 #content.user-page #comments-list-mode-selector {
2484 padding-top: 6px;
2485 grid-column: 1;
2486 position: unset;
2487 z-index: 1;
2488 justify-self: start;
2489 align-self: start;
2491 #comments-list-mode-selector button {
2492 color: transparent;
2493 width: 32px;
2494 height: 32px;
2495 padding: 6px;
2496 margin: 1px;
2497 overflow: hidden;
2498 background-repeat: no-repeat;
2499 background-size: 100%;
2500 background-origin: content-box;
2502 #comments-list-mode-selector button:disabled {
2503 cursor: auto;
2505 #comments-list-mode-selector button.expanded {
2506 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2508 #comments-list-mode-selector button.compact {
2509 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2511 @media only screen and (max-resolution: 1dppx) {
2512 #comments-list-mode-selector button.expanded {
2513 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2515 #comments-list-mode-selector button.compact {
2516 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2520 #content > ul.comment-thread > li.comment-item,
2521 #content.compact > ul.comment-thread > li.comment-item {
2522 margin: 0;
2525 #content > .comment-thread {
2526 margin: 1em 0;
2528 #content.compact > .comment-thread {
2529 font-size: 0.9375rem;
2530 margin: 0.5em 0;
2532 #content.compact > .comment-thread:hover {
2533 z-index: 1;
2535 #content.compact > .comment-thread .comment-body {
2536 font-size: 1.0625rem;
2538 #content.compact > .comment-thread .comment-item,
2539 #content.index-page .comment-item.ignored,
2540 #content.inbox-user-page .comment-item.ignored {
2541 max-height: 61px;
2542 margin-top: 1em;
2543 overflow: hidden;
2544 position: relative;
2546 #content.compact > .comment-thread .comment-item {
2547 pointer-events: none;
2549 #content.compact > .comment-thread .comment-item::after {
2550 content: "…";
2551 position: absolute;
2552 right: 0;
2553 bottom: 0;
2554 font-size: 2rem;
2555 line-height: 1;
2556 padding: 0 16px 10px 64px;
2557 pointer-events: auto;
2559 @media only screen and (hover: hover) {
2560 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2561 #content.compact > .comment-thread .comment-item.expanded {
2562 overflow: visible;
2563 pointer-events: auto;
2564 z-index: 10;
2567 @media only screen and (hover: none) {
2568 #content.compact > .comment-thread.expanded .comment-item {
2569 overflow: visible;
2570 pointer-events: auto;
2571 z-index: 10;
2574 #content.compact > .comment-thread .comment-item .comment-meta {
2575 white-space: nowrap;
2576 overflow: hidden;
2577 text-overflow: ellipsis;
2578 padding: 2px 10px;
2580 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2581 white-space: unset;
2583 #content.compact > .comment-thread .comment-item .comment-meta a {
2584 pointer-events: auto;
2586 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2587 display: inline;
2589 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2590 margin-left: 0.75em;
2592 @media only screen and (hover: hover) {
2593 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2594 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2595 max-height: unset;
2597 #content.compact > .comment-thread .comment-item:hover .comment,
2598 #content.compact > .comment-thread .comment-item.expanded .comment {
2599 position: relative;
2600 z-index: 1;
2601 margin-bottom: 2em;
2602 bottom: 0;
2604 #content.compact > .comment-thread .comment-item:hover .comment::before,
2605 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2606 content: "";
2607 position: absolute;
2608 display: block;
2609 width: calc(100% + 20px);
2610 height: calc(100% + 20px);
2611 z-index: -1;
2612 top: -10px;
2613 left: -10px;
2615 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2616 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2617 margin: 0;
2620 @media only screen and (hover: none) {
2621 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2622 max-height: unset;
2624 #content.compact > .comment-thread.expanded .comment-item .comment {
2625 position: relative;
2626 z-index: 1;
2627 margin-bottom: 2em;
2628 bottom: 0;
2630 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2631 content: "";
2632 position: absolute;
2633 display: block;
2634 width: calc(100% + 14px);
2635 height: calc(100% + 20px);
2636 z-index: -1;
2637 top: -10px;
2638 left: -10px;
2640 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2641 margin: 0;
2643 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2644 content: "";
2645 display: block;
2646 position: fixed;
2647 top: 0;
2648 left: 0;
2649 width: 100%;
2650 height: 100%;
2651 z-index: -2;
2652 background-color: rgba(0,0,0,0.5);
2656 /*****************************/
2657 /* HIGHLIGHTING NEW COMMENTS */
2658 /*****************************/
2660 .new-comment::before {
2661 content: "";
2662 position: absolute;
2663 width: 100%;
2664 height: 100%;
2665 z-index: 5000;
2666 pointer-events: none;
2669 /***********************************/
2670 /* COMMENT THREAD MINIMIZE BUTTONS */
2671 /***********************************/
2673 .comment-minimize-button {
2674 font-family: "Font Awesome", "Font Awesome 5 Free";
2675 font-weight: 900;
2676 font-size: 1.25rem;
2677 line-height: 1;
2678 position: absolute;
2679 right: 1px;
2680 top: 1px;
2681 width: 18px;
2682 margin: 0;
2683 cursor: pointer;
2685 .comment-minimize-button:active {
2686 transform: scale(0.9);
2688 .comment-minimize-button::after {
2689 content: attr(data-child-count);
2690 font-weight: normal;
2691 font-size: 0.8125rem;
2692 position: absolute;
2693 left: 0;
2694 width: 100%;
2695 text-align: center;
2696 top: 21px;
2698 #content.individual-thread-page .comment-minimize-button {
2699 display: none;
2702 /*****************/
2703 /* IGNORE SYSTEM */
2704 /*****************/
2706 #content.comment-thread-page .comment-item.ignored {
2707 height: 38px;
2708 overflow: hidden;
2710 .comment-item.ignored > .comment > .comment-meta > .author {
2711 text-decoration: line-through;
2714 /***********************************/
2715 /* INDIVIDUAL COMMENT THREAD PAGES */
2716 /***********************************/
2718 .individual-thread-page > h1 {
2719 line-height: 1;
2720 margin: 0.75em 0 3px 0;
2722 .individual-thread-page .comments {
2723 border: none;
2726 /*************/
2727 /* SHORTFORM */
2728 /*************/
2730 .shortform-index-page .comments::before {
2731 border: none;
2732 box-shadow: none;
2735 .shortform-index-page .comments > .comment-thread > .comment-item:first-child {
2736 margin-top: 0;
2739 /****************/
2740 /* VOTE BUTTONS */
2741 /****************/
2743 .vote {
2744 margin: 0;
2746 .vote {
2747 font-family: "Font Awesome", "Font Awesome 5 Free";
2748 font-weight: 900;
2749 border: none;
2752 .vote:disabled {
2753 visibility: hidden;
2754 cursor: default;
2757 .karma.waiting {
2758 opacity: 0.5;
2760 .karma.waiting button {
2761 pointer-events: none;
2764 /* Replicated karma controls at bottom of comments. */
2765 .comment-controls .karma {
2766 float: left;
2767 margin-left: -14px;
2768 font-size: 0.9375em;
2771 /*****************************/
2772 /* COMMENTING AND POSTING UI */
2773 /*****************************/
2775 .comment-controls {
2776 text-align: right;
2777 margin: 0 8px 8px 16px;
2778 position: relative;
2779 z-index: 9999;
2781 .comment-thread .comment-controls + .comment-thread > li:first-child {
2782 margin-top: 8px;
2784 .comments > .comment-controls {
2785 margin: 8px 0 0 0;
2787 .comments > .comment-controls:last-child {
2788 margin: 8px 0 16px 0;
2791 .posting-controls input[type='submit'] {
2792 margin: 6px;
2793 padding: 4px 10px;
2794 font-size: 1.125rem;
2797 .comment-controls .cancel-comment-button {
2798 position: absolute;
2799 right: 0;
2800 margin: 0;
2801 height: 27px;
2802 font-size: inherit;
2803 padding: 4px 8px 2px 4px;
2804 z-index: 1;
2806 .comment-controls .cancel-comment-button::before {
2807 font-family: "Font Awesome", "Font Awesome 5 Free";
2808 margin-right: 3px;
2809 content: '\F00D';
2810 font-weight: 900;
2811 font-size: 0.9em;
2812 opacity: 0.7;
2815 .comment + .comment-controls .action-button {
2816 font-weight: normal;
2817 font-size: 1.0625em;
2818 padding: 1px 6px;
2820 .comment-controls .action-button::before {
2821 font-family: "Font Awesome", "Font Awesome 5 Free";
2822 margin-right: 3px;
2824 .new-comment-button {
2825 font-size: 1.5rem;
2826 margin: 0 0.25em;
2828 .comment-controls .reply-button::before {
2829 content: '\F3E5';
2830 font-weight: 900;
2831 font-size: 0.9em;
2832 opacity: 0.6;
2834 .comment-meta .replied::before {
2835 content: '\F3E5';
2836 font-family: "Font Awesome", "Font Awesome 5 Free";
2837 color: #090;
2838 font-weight: 900;
2839 font-size: 0.9em;
2840 opacity: 0.6;
2843 .post-controls {
2844 text-align: right;
2845 margin: 0.75em 0 0 0;
2846 align-self: start;
2847 justify-self: end;
2849 .edit-post-link {
2850 display: inline-block;
2851 margin-bottom: 0.25em;
2852 font-size: 1.125rem;
2854 .edit-post-link::before {
2855 margin-right: 0.3em;
2857 .comment-controls .edit-button::before,
2858 .edit-post-link::before {
2859 content: '\F303';
2860 font-family: "Font Awesome", "Font Awesome 5 Free";
2861 font-weight: 900;
2862 font-size: 0.75em;
2863 position: relative;
2864 top: -1px;
2867 .comment-controls .delete-button {
2868 margin-right: 0.25em;
2870 .comment-controls .edit-button,
2871 .comment-controls .retract-button,
2872 .comment-controls .unretract-button {
2873 margin-right: 1em;
2875 .comment-controls .retract-button::before {
2876 content: '\F4B3';
2877 opacity: 0.6;
2879 .comment-controls .unretract-button::before {
2880 content: '\F075';
2881 opacity: 0.9;
2883 .comment-controls .delete-button::before {
2884 content: '\F05E';
2885 opacity: 0.7;
2887 .comment-controls .retract-button::before,
2888 .comment-controls .unretract-button::before,
2889 .comment-controls .delete-button::before {
2890 font-weight: 900;
2891 font-size: 0.9em;
2894 .comment-controls form {
2895 position: relative;
2897 .textarea-container {
2898 position: relative;
2900 .posting-controls textarea {
2901 display: block;
2902 width: 100%;
2903 height: 15em;
2904 min-height: 15em;
2905 max-height: calc(100vh - 6em);
2906 margin: 2px 0 0 0;
2907 padding: 4px 5px;
2908 font-size: 1.2rem;
2909 border-style: solid;
2910 border-width: 29px 1px 1px 1px;
2911 resize: none;
2914 /* GUIEdit buttons */
2916 .guiedit-buttons-container {
2917 position: absolute;
2918 left: 1px;
2919 top: 1px;
2920 width: calc(100% - 2px);
2921 height: 28px;
2922 text-align: left;
2923 padding: 1px 4px 0 4px;
2924 overflow: hidden;
2926 .comment-thread-page .guiedit-buttons-container {
2927 padding-right: 60px;
2929 .guiedit-buttons-container button {
2930 height: 26px;
2931 padding: 0 7px;
2932 font-weight: 900;
2933 font-size: 0.875rem;
2934 line-height: 1;
2935 position: static;
2937 .guiedit-buttons-container button:active {
2938 transform: none;
2940 .guiedit-buttons-container button:active div {
2941 transform: scale(0.9);
2943 .guiedit-buttons-container button sup {
2944 font-weight: bold;
2946 .guiedit::after {
2947 content: attr(data-tooltip);
2948 position: absolute;
2949 font-weight: normal;
2950 font-size: 1rem;
2951 top: 2px;
2952 left: 464px;
2953 height: 25px;
2954 padding: 4px 0;
2955 white-space: nowrap;
2956 visibility: hidden;
2958 .guiedit:hover::after {
2959 visibility: visible;
2962 /* Markdown hints */
2964 .posting-controls .markdown-reference-link {
2965 float: left;
2966 padding: 1px 0 0 6px;
2968 .posting-controls .markdown-reference-link a {
2969 padding-right: 1.5em;
2970 margin-right: 0.15em;
2971 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');
2972 background-size: 1.25em;
2973 background-repeat: no-repeat;
2974 background-position: right center;
2977 #markdown-hints-checkbox + label {
2978 float: left;
2979 margin: 2px 0 0 1em;
2980 line-height: 1.3;
2981 cursor: pointer;
2983 #edit-post-form #markdown-hints-checkbox + label {
2984 padding: 0;
2986 #markdown-hints-checkbox {
2987 visibility: hidden;
2988 float: left;
2990 #markdown-hints-checkbox + label::after {
2991 content: "(Show Markdown help)";
2993 #markdown-hints-checkbox:checked + label::after {
2994 content: "(Hide Markdown help)";
2996 #markdown-hints-checkbox + label::before {
2997 content: '\F059';
2998 font-family: "Font Awesome", "Font Awesome 5 Free";
2999 font-weight: 900;
3000 margin-right: 3px;
3002 #markdown-hints-checkbox:checked + label::before {
3003 font-weight: normal;
3005 #markdown-hints {
3006 margin: 4px 0 0 4px;
3007 padding: 4px 8px;
3008 position: absolute;
3009 text-align: left;
3010 top: calc(100% - 1em);
3011 z-index: 1;
3012 display: none;
3014 .comment-controls #markdown-hints {
3015 top: calc(100% + 1.75em);
3017 #markdown-hints-checkbox:checked ~ #markdown-hints {
3018 display: table;
3020 .markdown-hints-row {
3021 display: table-row;
3023 #markdown-hints .markdown-hints-row span,
3024 #markdown-hints .markdown-hints-row code {
3025 float: none;
3026 display: table-cell;
3027 border: none;
3028 background-color: inherit;
3029 padding: 0 12px 0 0;
3032 /******************/
3033 /* EDIT POST FORM */
3034 /******************/
3036 #edit-post-form {
3037 padding: 1em 1em 4em 1em;
3039 #edit-post-form .post-meta-fields {
3040 display: grid;
3041 grid-template-columns: 5em auto auto auto 1fr auto;
3042 margin-bottom: 0.625em;
3045 #edit-post-form label[for='title'],
3046 #edit-post-form label[for='url'],
3047 #edit-post-form label[for='section'] {
3048 grid-column: 1;
3050 #edit-post-form input[type='text'] {
3051 padding: 0.25em;
3052 grid-column: 2 / span 4;
3053 margin-bottom: 0.5em;
3056 #edit-post-form .link-post-checkbox,
3057 #edit-post-form .link-post-checkbox + label {
3058 grid-row: 1;
3059 grid-column: 6;
3061 #edit-post-form .question-checkbox,
3062 #edit-post-form .question-checkbox + label {
3063 grid-row: 3;
3064 grid-column: 5;
3065 justify-self: start;
3066 margin-left: 1.5em;
3069 #edit-post-form .post-meta-fields label[for="submit-to-frontpage"] {
3070 grid-row: 4;
3071 grid-column: 2 / span 4;
3072 text-align: left;
3073 margin-top: 8px;
3076 #edit-post-form .post-meta-fields input[type='checkbox'] {
3077 height: 0;
3078 opacity: 0;
3079 pointer-events: none;
3081 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
3082 white-space: nowrap;
3083 position: relative;
3084 cursor: pointer;
3085 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
3086 align-self: start;
3088 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
3089 content: "";
3090 font-family: "Font Awesome", "Font Awesome 5 Free";
3091 font-size: 1.375rem;
3092 line-height: 0.7;
3093 text-indent: 1px;
3094 font-weight: 900;
3095 position: absolute;
3096 width: 20px;
3097 height: 20px;
3098 left: 5px;
3100 #edit-post-form label[for='url'],
3101 #edit-post-form input[name='url'] {
3102 display: none;
3104 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
3105 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
3106 display: initial;
3108 #edit-post-form label {
3109 line-height: normal;
3110 border: 1px solid transparent;
3111 text-align: right;
3112 padding: 0.25em 0.5em;
3113 white-space: nowrap;
3115 #edit-post-form input[type='radio'] {
3116 width: 0;
3117 margin: 0;
3118 opacity: 0;
3119 pointer-events: none;
3121 #edit-post-form input[type='radio'] + label {
3122 padding: 4px 12px;
3123 text-align: center;
3124 border-style: solid;
3125 border-width: 1px 1px 1px 0;
3126 cursor: pointer;
3128 #edit-post-form input[type='radio']:checked + label {
3129 cursor: default;
3132 #edit-post-form label[for='section'] {
3133 grid-row: 3;
3135 #edit-post-form input[type='radio'] + label {
3136 grid-row: 3;
3138 @supports (width: -moz-fit-content) {
3139 #edit-post-form input[type='radio'] + label {
3140 width: -moz-fit-content;
3143 @supports (width: fit-content) {
3144 #edit-post-form input[type='radio'] + label {
3145 width: fit-content;
3149 #edit-post-form textarea {
3150 min-height: 24em;
3153 #edit-post-form input[type='submit'] {
3154 padding: 6px 12px;
3155 float: right;
3157 #edit-post-form #markdown-hints {
3158 top: calc(100% + 2em);
3161 #edit-post-form button.guiedit div {
3162 overflow: visible;
3164 .guiedit-mobile-auxiliary-button {
3165 display: none;
3168 /***********/
3169 /* BUTTONS */
3170 /***********/
3172 button,
3173 input[type='submit'] {
3174 font-family: inherit;
3175 font-size: inherit;
3176 background-color: inherit;
3177 cursor: pointer;
3178 border: none;
3179 border-radius: 0;
3182 /************/
3183 /* HEADINGS */
3184 /************/
3186 .body-text h1,
3187 .body-text h2,
3188 .body-text h3,
3189 .body-text h4,
3190 .body-text h5,
3191 .body-text h6 {
3192 line-height: 1.1;
3193 margin: 1em 0 0.75em 0;
3194 text-align: left;
3197 .post-body h5,
3198 .post-body h6 {
3199 font-size: 1em;
3201 .post-body h4 {
3202 font-size: 1.2em;
3204 .post-body h3 {
3205 font-size: 1.4em;
3207 .post-body h2 {
3208 font-size: 1.75em;
3210 .post-body h1 {
3211 font-size: 2.1em;
3214 .comment-body h5,
3215 .comment-body h6 {
3216 font-size: 1em;
3218 .comment-body h4 {
3219 font-size: 1.15em;
3221 .comment-body h3 {
3222 font-size: 1.3em;
3224 .comment-body h2 {
3225 font-size: 1.5em;
3227 .comment-body h1 {
3228 font-size: 1.75em;
3231 /**********/
3232 /* QUOTES */
3233 /**********/
3235 blockquote,
3236 .post-body .comment-box .comment-body {
3237 font-size: 0.9em;
3238 margin: 1em 0;
3239 padding-left: 0.5em;
3240 margin-left: 1px;
3241 padding-bottom: 3px;
3243 blockquote *:first-child {
3244 margin-top: 0;
3246 blockquote *:last-child {
3247 margin-bottom: 0;
3249 blockquote blockquote {
3250 font-size: 0.95em;
3253 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3255 .post-body .comment-box .user-name {
3256 font-style: italic;
3258 .post-body .comment-box .user-name::after {
3259 content: ":";
3261 .post-body .comment-box {
3262 zoom: 1.25;
3265 /**********/
3266 /* IMAGES */
3267 /**********/
3269 #content img {
3270 max-width: 100%;
3273 img.inline-latex {
3274 position: relative;
3275 top: 2.5px;
3276 margin: 0 2px;
3279 #content figure {
3280 text-align: center;
3281 margin: 1.5em auto;
3284 p.imgonly,
3285 div.imgonly,
3286 figure {
3287 text-align: center;
3288 margin: auto;
3289 clear: both;
3292 .imgonly iframe {
3293 display: block;
3294 width: 100%;
3295 height: 250px;
3296 border: 0;
3299 // Aspect ratio trick from https://css-tricks.com/aspect-ratio-boxes/
3301 [style*="--aspect-ratio"] > :first-child {
3302 width: 100%;
3304 [style*="--aspect-ratio"] > img {
3305 height: auto;
3307 @supports (--custom:property) {
3308 [style*="--aspect-ratio"] {
3309 position: relative;
3311 [style*="--aspect-ratio"]::before {
3312 content: "";
3313 display: block;
3314 padding-bottom: calc(100% / (var(--aspect-ratio)));
3316 [style*="--aspect-ratio"] > :first-child {
3317 position: absolute;
3318 top: 0;
3319 left: 0;
3320 height: 100%;
3324 /**********/
3325 /* TABLES */
3326 /**********/
3328 .body-text table {
3329 border-collapse: collapse;
3330 font-family: Inconsolata, Menlo, monospace;
3331 font-size: 0.875em;
3333 .body-text table th,
3334 .body-text table td {
3335 text-align: left;
3336 padding: 4px 6px;
3337 line-height: 1.3;
3339 .body-text table caption {
3340 margin: 0 0 0.25em 0;
3341 font-weight: bold;
3342 font-size: 1.125em;
3345 /********/
3346 /* MISC */
3347 /********/
3349 /*= Superscripts & subscripts =*/
3351 /* Make sure superscripts and subscripts do not affect line spacing. */
3352 sup, sub {
3353 vertical-align: baseline;
3354 position: relative;
3355 top: -0.5em;
3356 left: 0.05em;
3357 font-size: 0.8em;
3359 sub {
3360 top: 0.3em;
3363 /*= Code blocks & other "unstyled" text. =*/
3365 pre,
3366 code {
3367 font-family: Inconsolata, Menlo, monospace;
3369 pre {
3370 white-space: pre-wrap;
3372 .body-text pre {
3373 text-align: left;
3375 code {
3376 font-size: 0.95em;
3377 display: inline-block;
3378 padding: 0 4px 1px 5px;
3380 pre > code {
3381 display: block;
3382 border-radius: 0;
3383 padding: 3px 4px 5px 8px;
3386 /*= Fractions =*/
3388 .frac::after {
3389 content: "\200B";
3392 /*= Removing browser default styling of various elements =*/
3394 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3395 :focus {
3396 outline: none;
3399 /* Remove "embossed" appearance of horizontal rules. */
3400 hr {
3401 border: none;
3404 input,
3405 button,
3406 textarea {
3407 -webkit-appearance: none;
3408 -moz-appearance: none;
3409 appearance: none;
3412 input {
3413 font-family: inherit;
3414 font-size: inherit;
3415 font-weight: inherit;
3418 /*************/
3419 /* FOOTNOTES */
3420 /*************/
3422 ol {
3423 counter-reset: ordered-list;
3425 .footnote-definition {
3426 font-size: 0.9em;
3427 list-style-type: none;
3428 counter-increment: ordered-list;
3429 position: relative;
3431 .footnote-definition p {
3432 font-size: inherit !important;
3434 .footnote-definition::before {
3435 content: counter(ordered-list) ".";
3436 position: absolute;
3437 left: -2.5em;
3438 font-weight: bold;
3439 text-align: right;
3440 width: 2em;
3443 /*********/
3444 /* LISTS */
3445 /*********/
3447 li {
3448 margin-bottom: 0.5em;
3451 .body-text ol p,
3452 .body-text ul p {
3453 margin: 0.5em 0;
3456 .body-text ol {
3457 list-style: none;
3458 padding: 0;
3459 counter-reset: ol;
3461 .body-text ol > li {
3462 position: relative;
3463 counter-increment: ol;
3464 padding: 0 0 0 2.5em;
3465 margin: 0.25em 0 0 0;
3467 .body-text ol > li::before {
3468 content: counter(ol) ".";
3469 position: absolute;
3470 width: 2em;
3471 text-align: right;
3472 left: 0;
3474 .body-text ul {
3475 list-style: none;
3476 padding: 0;
3478 .body-text ul:not(.contents-list) > li:empty {
3479 padding-bottom: 1.25em;
3481 .body-text ul:not(.contents-list) > li {
3482 position: relative;
3483 padding: 0 0 0 1.75em;
3484 margin: 0.25em 0 0 0;
3486 .body-text ul:not(.contents-list) > li ul > li {
3487 padding: 0 0 0 2em;
3489 .body-text ul:not(.contents-list) > li::before {
3490 content: "•";
3491 position: absolute;
3492 width: 1.25em;
3493 text-align: right;
3494 left: 0;
3496 .body-text ul:not(.contents-list) > li ul > li::before {
3497 width: 1.5em;
3499 .body-text li > ul:first-child > li {
3500 padding-left: 0;
3502 .body-text li > ul:first-child > li::before {
3503 content: none;
3506 /**************/
3507 /* ERROR PAGE */
3508 /**************/
3510 .error-retry-form {
3511 margin: 0.5em 0;
3514 .error-retry-form input[type="submit"] {
3515 border: 1px solid #aaa;
3516 font-weight: bold;
3517 font-size: 1.125rem;
3518 padding: 0.5em 1.25em;
3521 /**************/
3522 /* ABOUT PAGE */
3523 /**************/
3525 #content.about-page .contents {
3526 margin-top: 0.25em;
3528 #content.about-page .accesskey-table {
3529 border-collapse: collapse;
3530 margin: auto;
3532 #content.about-page .accesskey-table th,
3533 #content.about-page .accesskey-table td {
3534 padding: 2px 6px;
3536 #content.about-page .accesskey-table td:first-child {
3537 padding-right: 1.5em;
3539 #content.about-page .accesskey-table td:last-child {
3540 text-align: center;
3541 font-family: Inconsolata, Menlo, monospace;
3543 #content.about-page h3:nth-of-type(n+2) {
3544 clear: both;
3547 /******************/
3548 /* IMAGES OVERLAY */
3549 /******************/
3551 #images-overlay + #content .post-body img {
3552 visibility: hidden;
3555 #images-overlay div {
3556 position: absolute;
3558 #images-overlay div::after {
3559 content: "Click to enlarge";
3560 display: block;
3561 position: absolute;
3562 margin: auto;
3563 left: 0;
3564 right: 0;
3565 bottom: 10px;
3566 padding: 6px 10px;
3567 font-size: 1.25rem;
3568 background-color: rgba(0,0,0,0.6);
3569 color: #fff;
3570 border-radius: 5px;
3571 opacity: 0.0;
3572 transition: opacity 0.15s ease;
3573 pointer-events: none;
3575 @supports (width: -moz-fit-content) {
3576 #images-overlay div::after {
3577 width: -moz-fit-content;
3580 @supports (width: fit-content) {
3581 #images-overlay div::after {
3582 width: fit-content;
3585 #images-overlay div:hover::after {
3586 opacity: 1.0;
3589 #images-overlay img {
3590 width: 100%;
3593 /***************/
3594 /* IMAGE FOCUS */
3595 /***************/
3597 /*=--------------=*/
3598 /*= Hover styles =*/
3599 /*=--------------=*/
3601 #content img:hover,
3602 #images-overlay img:hover {
3603 filter: drop-shadow(0 0 3px #777);
3604 cursor: zoom-in;
3606 #content img:active,
3607 #images-overlay img:active {
3608 transform: scale(0.975);
3611 /*=---------=*/
3612 /*= Overlay =*/
3613 /*=---------=*/
3615 #image-focus-overlay {
3616 position: fixed;
3617 top: 0;
3618 right: 0;
3619 bottom: 0;
3620 left: 0;
3621 z-index: 2;
3622 display: none;
3623 cursor: zoom-out;
3625 #image-focus-overlay::before {
3626 content: "";
3627 display: block;
3628 position: absolute;
3629 top: 0;
3630 right: 0;
3631 bottom: 0;
3632 left: 0;
3633 background-color: #000;
3634 opacity: 0.5;
3635 z-index: -1;
3637 #image-focus-overlay.engaged {
3638 display: initial;
3641 #image-focus-overlay img {
3642 margin: auto;
3643 position: absolute;
3644 left: 50%;
3645 top: 50%;
3646 transform: translateX(-50%) translateY(-50%);
3649 /*=-------------------=*/
3650 /*= Single-image mode =*/
3651 /*=-------------------=*/
3653 #image-focus-overlay:not(.slideshow) .image-number,
3654 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3655 visibility: hidden;
3658 /*=---------=*/
3659 /*= Caption =*/
3660 /*=---------=*/
3662 #image-focus-overlay .caption {
3663 position: absolute;
3664 bottom: 0.75em;
3665 background-color: rgba(0,0,0,0.7);
3666 left: 9em;
3667 right: 9em;
3668 margin: auto;
3669 max-width: calc(100% - 18em);
3670 text-align: center;
3671 font-size: 1.375em;
3672 border-radius: 8px;
3673 z-index: 1;
3674 transition:
3675 bottom 0.2s ease;
3677 @supports (width: -moz-fit-content) {
3678 #image-focus-overlay .caption {
3679 width: -moz-fit-content;
3682 @supports (width: fit-content) {
3683 #image-focus-overlay .caption {
3684 width: fit-content;
3687 #image-focus-overlay .caption.hidden {
3688 bottom: -5em;
3689 transition:
3690 bottom 0.5s ease;
3693 #image-focus-overlay .caption p {
3694 margin: 1em 1.25em;
3695 color: #fff;
3698 #image-focus-overlay .caption:not(:empty)::before {
3699 content: "";
3700 display: block;
3701 position: absolute;
3702 width: 100vw;
3703 height: calc(100% + 1.5em);
3704 z-index: -1;
3705 top: -0.75em;
3706 left: calc(-50vw + 50%);
3710 /*=--------------=*/
3711 /*= Help overlay =*/
3712 /*=--------------=*/
3714 #image-focus-overlay .help-overlay {
3715 position: absolute;
3716 display: flex;
3717 flex-flow: column;
3718 z-index: 2;
3719 font-size: 1.5rem;
3720 padding: 1em;
3721 border-radius: 10px;
3722 bottom: 1em;
3723 right: 1em;
3724 overflow: hidden;
3725 white-space: nowrap;
3726 color: transparent;
3727 cursor: default;
3728 visibility: hidden;
3729 transition:
3730 visibility 1s ease,
3731 color 1s ease,
3732 background-color 1s ease,
3733 bottom 0.3s ease;
3735 #image-focus-overlay .help-overlay:hover {
3736 max-width: 24em;
3737 max-height: 14em;
3738 background-color: rgba(0,0,0,0.85);
3739 color: #fff;
3740 visibility: visible;
3741 transition:
3742 visibility 0.2s ease 0.3s,
3743 color 0.2s ease 0.3s,
3744 background-color 0.2s ease 0.3s;
3747 #image-focus-overlay .help-overlay::after {
3748 content: "\F128";
3749 font-family: "Font Awesome", "Font Awesome 5 Free";
3750 font-weight: 900;
3751 font-size: 2rem;
3752 position: absolute;
3753 right: 0;
3754 bottom: 0;
3755 padding: 10px;
3756 color: #000;
3757 filter: drop-shadow(0 0 6px #fff);
3758 visibility: visible;
3759 opacity: 0.85;
3760 transition:
3761 visibility 1s ease;
3763 #image-focus-overlay .help-overlay:hover::after {
3764 visibility: hidden;
3765 transition:
3766 visibility 0.2s ease 0.3s;
3769 #image-focus-overlay .help-overlay p {
3770 margin: 0;
3771 text-indent: -2em;
3772 padding-left: 2em;
3773 max-width: 100%;
3774 overflow: hidden;
3776 #image-focus-overlay .help-overlay p + p {
3777 margin: 0.75em 0 0 0;
3779 #image-focus-overlay .help-overlay.hidden {
3780 bottom: -2em;
3783 /*=--------------=*/
3784 /*= Slide number =*/
3785 /*=--------------=*/
3787 #image-focus-overlay .image-number {
3788 position: absolute;
3789 z-index: 2;
3790 font-size: 1.75rem;
3791 left: 1em;
3792 bottom: 1em;
3793 font-weight: 600;
3794 text-shadow:
3795 0 0 3px #fff,
3796 0 0 5px #fff,
3797 0 0 8px #fff,
3798 0 0 13px #fff;
3799 width: 1.5em;
3800 text-align: right;
3801 white-space: nowrap;
3802 transition: bottom 0.3s ease;
3804 #image-focus-overlay .image-number::before {
3805 content: "#";
3806 opacity: 0.3;
3808 #image-focus-overlay .image-number::after {
3809 content: " of " attr(data-number-of-images);
3810 opacity: 0.3;
3812 #image-focus-overlay .image-number:hover::before,
3813 #image-focus-overlay .image-number:hover::after {
3814 opacity: 1.0;
3816 #image-focus-overlay .image-number.hidden {
3817 bottom: -1.25em;
3820 /*=-------------------=*/
3821 /*= Slideshow buttons =*/
3822 /*=-------------------=*/
3824 #image-focus-overlay .slideshow-buttons {
3825 position: absolute;
3826 top: 0;
3827 left: 0;
3828 width: 100%;
3829 height: 100%;
3830 z-index: 1;
3831 display: flex;
3832 justify-content: space-between;
3833 pointer-events: none;
3835 #image-focus-overlay .slideshow-buttons button {
3836 font-family: "Font Awesome", "Font Awesome 5 Free";
3837 font-weight: 900;
3838 font-size: 3rem;
3839 padding: 0.5em;
3840 color: #ddd;
3841 position: relative;
3842 left: 0;
3843 transition:
3844 left 0.3s ease;
3845 pointer-events: auto;
3847 #image-focus-overlay .slideshow-buttons button::selection {
3848 background-color: transparent;
3850 @media only screen and (hover: hover) {
3851 #image-focus-overlay .slideshow-buttons button:hover {
3852 background-color: rgba(0,0,0,0.1);
3853 color: #777;
3856 #image-focus-overlay .slideshow-buttons button:active {
3857 transform: none;
3858 color: #888;
3860 #image-focus-overlay .slideshow-buttons button:disabled {
3861 text-shadow: none;
3862 background-color: transparent;
3863 color: #ddd;
3864 cursor: default;
3865 opacity: 0.4;
3867 #image-focus-overlay .slideshow-button.previous.hidden {
3868 left: -1.75em;
3870 #image-focus-overlay .slideshow-button.next.hidden {
3871 left: 1.75em;
3874 /*=-----------------=*/
3875 /*= Background blur =*/
3876 /*=-----------------=*/
3878 .blurred {
3879 filter: blur(3px);
3882 /**************************/
3883 /* QUALIFIED HYPERLINKING */
3884 /**************************/
3886 #content.no-nav-bars {
3887 margin: 8px auto;
3889 #content.no-nav-bars + #ui-elements-container > * {
3890 padding-top: 8px;
3893 #aux-about-link {
3894 position: fixed;
3895 top: 40px;
3896 left: calc((100% - 900px) / 2 - 69px);
3897 width: 1.5em;
3898 height: 1.5em;
3899 text-align: center;
3900 display: table;
3902 #aux-about-link a {
3903 display: table-cell;
3904 width: 100%;
3905 vertical-align: middle;
3906 font-family: "Font Awesome", "Font Awesome 5 Free";
3907 font-weight: 900;
3908 font-size: 1.25rem;
3909 opacity: 0.4;
3910 z-index: 1;
3913 .qualified-linking {
3914 margin: 0;
3915 position: relative;
3917 .qualified-linking input[type='checkbox'] {
3918 visibility: hidden;
3919 width: 0;
3920 height: 0;
3921 margin: 0;
3923 .qualified-linking label {
3924 font-family: "Font Awesome", "Font Awesome 5 Free";
3925 font-weight: 900;
3926 font-size: 1rem;
3927 padding: 0 0.5em;
3928 display: inline-block;
3929 margin-left: 0.25em;
3931 .qualified-linking label:hover {
3932 cursor: pointer;
3934 .qualified-linking label:active span {
3935 display: inline-block;
3936 transform: scale(0.9);
3938 .qualified-linking label::selection {
3939 background-color: transparent;
3942 .qualified-linking label::after {
3943 content: "";
3944 width: 100vw;
3945 height: 0;
3946 left: 0;
3947 top: 0;
3948 position: fixed;
3949 z-index: 1;
3950 cursor: default;
3952 .qualified-linking input[type='checkbox']:checked + label::after {
3953 height: 100vh;
3956 .qualified-linking-toolbar {
3957 position: absolute;
3958 right: 0.25em;
3959 top: 110%;
3960 z-index: 1;
3962 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3963 display: none;
3965 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3966 display: block;
3968 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3969 top: unset;
3970 bottom: 125%;
3973 .qualified-linking-toolbar a {
3974 display: block;
3975 padding: 0 6px;
3976 margin: 4px;
3978 .qualified-linking-toolbar a::selection {
3979 background-color: transparent;
3982 /*****************/
3983 /* HOVER PREVIEW */
3984 /*****************/
3986 #preview-popup-toggle {
3987 position: absolute;
3988 right: -67px;
3989 bottom: 285px;
3990 cursor: pointer;
3991 color: var(--GW-toggle-widget-color, #888);
3993 #preview-popup-toggle:hover {
3994 color: var(--GW-toggle-widget-hover-color, #444);
3997 #content.preview:not(not) {
3998 padding: 0;
4000 #content.preview > .comment-thread {
4001 margin: 2px;
4003 #content.preview.individual-thread-page > .comment-thread > .comment-item {
4004 border: none;
4006 #content.preview.user-page .page-main-heading, #content.preview.user-page .user-stats {
4007 padding: 0 8px;
4009 #content.preview.user-page .page-main-heading {
4010 margin-left: 8px;
4012 #content.preview.not(not) .body-text {
4013 margin-left: 8px;
4014 margin-right: 8px;
4016 #content.preview.user-page .user-stats {
4017 margin-right: 32px;
4019 #content.preview.user-page .page-toolbar, #content.preview.user-page nav {
4020 display: none;
4022 #content.preview button.vote {
4023 display: none;
4025 #content.preview > h1.listing {
4026 max-height: unset;
4028 #content.preview.user-page > .comment-thread {
4029 margin: 0.5em 0;
4031 #content.preview > .post {
4032 margin: 0 18px;
4034 #content.preview .post-title {
4035 margin-top: 0.5em;
4037 #content.preview .post-meta {
4038 line-height: 1.0;
4040 #content.preview .body-text {
4041 font-size: 1em;
4043 #content.preview nav.contents,
4044 #content.preview .lw2-link {
4045 display: none;
4048 .preview-popup {
4049 position: fixed;
4050 transform-origin: top;
4051 top: 10%;
4052 right: 10%;
4053 max-width: 700px;
4054 z-index: 10001;
4055 background-color: #eee;
4056 border: 1px solid #ccc;
4057 box-shadow: 2px 6px 20px -4px #000;
4058 transition: height 0.2s ease, top 0.2s ease;
4060 .popup-hide-button {
4061 position: fixed;
4062 top: 4px;
4063 right: 4px;
4064 color: #000;
4065 background-color: #fff;
4066 width: 28px;
4067 height: 28px;
4068 display: flex;
4069 font-family: "Font Awesome";
4070 font-size: 14px;
4071 line-height: 1;
4072 border: 1px solid #bbb;
4073 border-radius: 28px;
4074 align-items: center;
4075 justify-content: center;
4076 //padding-bottom: 2px;
4077 padding-left: 1.5px;
4078 font-family: "Font Awesome", "Font Awesome 5 Free";
4079 cursor: pointer;
4081 .popup-hide-button:hover::before {
4082 content: "Turn off preview popups";
4083 display: block;
4084 position: absolute;
4085 width: max-content;
4086 right: 32px;
4087 color #000;
4088 background-color: #fff;
4089 border: 1px solid #eee;
4090 border-radius: 2px;
4091 padding: 4px;
4094 /********/
4095 /* MATH */
4096 /********/
4098 .mathjax-block-container {
4099 display: block;
4100 overflow-y: hidden;
4101 border-radius: 6px;
4102 margin: 1em 0 1.5em 0;
4104 .mathjax-inline-container {
4105 max-width: 100%;
4106 display: inline-block;
4107 overflow-x: auto;
4108 overflow-y: hidden;
4109 position: relative;
4110 vertical-align: text-top;
4111 padding: 0 1px;
4113 .post .mathjax-inline-container {
4114 line-height: 1.1;
4115 top: 2px;
4117 .comment .mathjax-inline-container {
4118 top: 3px;
4119 line-height: 1;
4121 .mathjax-inline-container .mjx-chtml {
4122 padding: 0;
4125 /************/
4126 /* SPOILERS */
4127 /************/
4129 .spoiler {
4130 color: #000;
4131 background-color: currentColor;
4132 transition: none;
4133 text-shadow: none;
4134 margin: 1em 0;
4135 box-shadow: 0 0 0 1px currentColor inset;
4136 overflow: auto;
4138 .spoiler:not(:last-child) {
4139 margin-bottom: 0;
4141 #content .spoiler * {
4142 color: inherit;
4143 border: none;
4145 .spoiler:hover {
4146 color: unset;
4147 background-color: unset;
4148 text-shadow: unset;
4149 transition:
4150 color 0.1s ease-out 0.1s,
4151 background-color 0.1s ease-out 0.1s,
4152 text-shadow 0.1s ease-out 0.1s;
4154 .spoiler::selection,
4155 .spoiler ::selection {
4156 color: #fff;
4157 background-color: #000;
4159 .spoiler:not(:hover)::selection,
4160 .spoiler:not(:hover) ::selection {
4161 background-color: transparent;
4164 /*= Fix for LessWrong being weird =*/
4166 .spoiler > p {
4167 padding: 0 7px;
4169 .spoiler > p:first-child {
4170 margin-top: 0.25em;
4172 .spoiler > p:last-child {
4173 margin-bottom: 0;
4174 padding-bottom: 0.25em;
4176 .spoiler > p:hover ~ p {
4177 background-color: currentColor;
4179 .spoiler > p + p {
4180 margin-top: -1em;
4182 .spoiler > p:not(:first-child) {
4183 padding-top: 0.5em;
4185 .spoiler > p:not(:last-child) {
4186 padding-bottom: 0.5em;
4189 .spoiler:not(:hover) pre,
4190 .spoiler:not(:hover) code {
4191 background-color: inherit;
4192 box-shadow: none;
4194 #content .spoiler pre {
4195 border-color: currentColor;
4196 border-style: solid;
4197 border-width: 0 1px;
4198 border-radius: 0;
4201 /*******************/
4202 /* PAGE LIST INDEX */
4203 /*******************/
4205 .page-list-index {
4206 margin: 1em 30px;
4207 line-height: 1.2;
4210 .page-list-index > p {
4211 font-weight: bold;
4212 font-size: 1.2em;
4215 .page-list-index > ul * {
4216 margin: 0;
4219 .page-list-index ul {
4220 padding-left: 1.5em;
4223 .page-list-index li {
4224 margin-top: 0.67em;
4227 .page-list-index li > a {
4228 display: block;
4229 font-size: 1.1em;
4230 font-weight: bold;
4231 margin: 0.33em 0;
4234 .page-list-index li > a:last-child {
4235 margin-bottom: 1em;
4238 /*******************/
4239 /* ALIGNMENT FORUM */
4240 /*******************/
4242 #content.alignment-forum-index-page::after {
4243 content: "Alignment Forum";
4244 font-size: 1.5rem;
4245 margin: 0.375em 0 0 -0.375em;
4246 order: -1;
4249 /**********************/
4250 /* FOR NARROW SCREENS */
4251 /**********************/
4253 @media only screen and (max-width: 1440px) {
4254 #hns-date-picker {
4255 right: -81px;
4256 padding: 8px 10px 10px 10px;
4257 bottom: 62px;
4258 display: none;
4260 #hns-date-picker::before {
4261 content: "";
4262 position: absolute;
4263 display: block;
4264 z-index: -1;
4265 height: calc(100% + 2px);
4266 top: -1px;
4267 left: -1px;
4268 width: 50%;
4271 @media only screen and (max-width: 1160px) {
4272 #new-comment-nav-ui {
4273 bottom: 180px;
4274 right: -68px;
4276 #hns-date-picker {
4277 bottom: 200px;
4278 right: -36px;
4280 #hns-date-picker::before {
4281 width: calc(100% - 35px);
4283 #theme-selector button::before {
4284 right: unset;
4285 left: 100%;
4287 #theme-selector:hover::after {
4288 content: "";
4289 display: block;
4290 position: absolute;
4291 width: calc(6em - 7px);
4292 height: calc(100% + 2px);
4293 top: 0;
4294 left: calc(100% + 1px);
4296 #anti-kibitzer-toggle {
4297 bottom: 330px;
4300 @media only screen and (max-width: 1080px) {
4301 #width-selector {
4302 right: -30px;
4304 #width-selector button {
4305 display: block;
4307 #text-size-adjustment-ui {
4308 top: 90px;
4309 right: -30px;
4311 #text-size-adjustment-ui button {
4312 display: block;
4313 position: relative;
4315 #text-size-adjustment-ui button.increase {
4316 bottom: 48px;
4318 #text-size-adjustment-ui button.decrease {
4319 top: 50px;
4321 #theme-selector {
4322 top: 46px;
4323 left: -44px;
4325 #theme-tweaker-toggle {
4326 left: -44px;
4327 top: 2px;
4329 #theme-tweaker-toggle button {
4330 height: 2em;
4331 width: 2em;
4332 padding: 7px;
4334 #quick-nav-ui {
4335 right: -54px;
4337 #new-comment-nav-ui {
4338 right: -55px;
4340 #hns-date-picker {
4341 right: -23px;
4343 #hns-date-picker::before {
4344 width: calc(100% - 22px);
4346 #anti-kibitzer-toggle {
4347 right: -54px;
4350 @media only screen and (max-width: 1040px) {
4351 #quick-nav-ui {
4352 right: -49px;
4354 #new-comment-nav-ui {
4355 right: -50px;
4357 #hns-date-picker {
4358 right: -18px;
4360 #hns-date-picker::before {
4361 width: calc(100% - 17px);
4363 #anti-kibitzer-toggle {
4364 right: -50px;
4367 @media only screen and (max-width: 1020px) {
4368 #quick-nav-ui {
4369 right: -20px;
4371 #new-comment-nav-ui {
4372 right: -21px;
4374 #new-comment-nav-ui .new-comments-count::before {
4375 content: "";
4376 position: absolute;
4377 width: 100%;
4378 height: calc(100% + 45px);
4379 z-index: -1;
4380 left: 0;
4381 top: -22px;
4383 #hns-date-picker {
4384 right: 19px;
4386 #hns-date-picker::before {
4387 width: 100%;
4389 #anti-kibitzer-toggle {
4390 right: -20px;
4393 @media only screen and (max-width: 1000px) {
4394 #theme-selector {
4395 left: -17px;
4396 top: 120px;
4397 padding: 3px 0;
4398 max-width: 32px;
4400 #theme-selector button {
4401 margin: 1px 4px;
4403 #text-size-adjustment-ui {
4404 top: 100px;
4405 right: -12px;
4407 @media not screen and (hover: none) {
4408 #quick-nav-ui,
4409 #new-comment-nav-ui,
4410 #new-comment-nav-ui + #hns-date-picker,
4411 #anti-kibitzer-toggle {
4412 opacity: 0.4;
4414 #quick-nav-ui:hover,
4415 #new-comment-nav-ui:hover,
4416 #new-comment-nav-ui + #hns-date-picker:hover,
4417 #new-comment-nav-ui + #hns-date-picker:focus-within,
4418 #new-comment-nav-ui:hover + #hns-date-picker,
4419 #anti-kibitzer-toggle:hover {
4420 opacity: 1.0;
4423 #theme-tweaker-toggle {
4424 top: 70px;
4425 left: -21px;
4429 /**************/
4430 /* PRINT VIEW */
4431 /**************/
4433 @media only print {
4434 .nav-bar {
4435 visibility: hidden;
4436 max-height: 0;
4437 overflow: hidden;
4439 #ui-elements-container {
4440 display: none;
4442 #images-overlay {
4443 display: none;
4445 #images-overlay + #content .post-body img {
4446 visibility: visible;
4448 .comment-controls {
4449 display: none;
4451 #comments-sort-mode-selector {
4452 display: none;
4454 .comment-minimize-button {
4455 display: none;
4457 .post-meta .qualified-linking,
4458 .post-meta .lw2-link {
4459 display: none;
4461 .comment-meta .permalink,
4462 .comment-meta .lw2-link,
4463 .comment-meta .comment-parent-link {
4464 display: none;
4466 .new-comment::before {
4467 display: none;
4469 #content::before {
4470 box-shadow: none;
4474 /*****************/
4475 /* MOBILE LAYOUT */
4476 /*****************/
4478 /* Hide the mobile elements on desktop screens: */
4480 @media only screen and (max-width: 1160px) {
4481 #post-nav-ui-toggle,
4482 #appearance-adjust-ui-toggle {
4483 display: none;
4487 @media only screen and (max-width: 1160px) {
4489 /*====================*/
4490 /* MOBILE UI ELEMENTS */
4491 /*====================*/
4493 #ui-elements-container {
4494 height: unset !important;
4495 position: unset;
4497 #ui-elements-container > * {
4498 position: fixed;
4499 visibility: hidden;
4500 opacity: 1.0;
4501 z-index: 10000;
4504 #ui-elements-container > div[id$='-ui-toggle'] {
4505 visibility: visible;
4506 display: inline-block;
4507 border-radius: 50%;
4508 z-index: 10000;
4510 #ui-elements-container > div[id$='-ui-toggle'] button,
4511 #theme-selector .theme-selector-close-button {
4512 font-family: Font Awesome;
4513 font-weight: 900;
4514 font-size: 32px;
4515 padding: 10px;
4516 opacity: 0.8;
4517 -webkit-tap-highlight-color: transparent;
4518 transition: transform 0.2s ease;
4520 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4521 #theme-selector .theme-selector-close-button::selection {
4522 background-color: transparent;
4524 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4525 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4526 border: none;
4528 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4529 transform: rotate(-90deg);
4530 opacity: 1.0;
4533 #appearance-adjust-ui-toggle {
4534 bottom: 10px;
4535 left: 10px;
4538 #post-nav-ui-toggle {
4539 bottom: 10px;
4540 right: 10px;
4543 #theme-selector.engaged,
4544 #quick-nav-ui.engaged,
4545 #new-comment-nav-ui.engaged,
4546 #hns-date-picker.engaged {
4547 visibility: visible;
4550 #image-focus-overlay.engaged {
4551 visibility: visible;
4553 #image-focus-overlay .help-overlay {
4554 display: none;
4557 /*=========*/
4558 /* GENERAL */
4559 /*=========*/
4561 @media only screen and (max-width: 900px) {
4562 #content,
4563 #images-overlay,
4564 #ui-elements-container {
4565 min-width: unset;
4566 width: unset;
4568 #content {
4569 padding: 0 4px;
4573 /*================*/
4574 /* THEME SELECTOR */
4575 /*================*/
4577 #theme-selector {
4578 display: flex;
4579 flex-flow: column;
4580 background-color: #fff;
4581 width: calc(100vw - 20px);
4582 max-width: 360px;
4583 padding: 0 0 3px 0;
4584 overflow: hidden;
4585 max-height: 0;
4586 transition:
4587 top 0.2s ease,
4588 max-height 0.2s ease,
4589 visibility 0.2s ease;
4590 top: calc(100% + 10px);
4591 left: 0;
4592 right: 0;
4593 margin: auto;
4595 #theme-selector.engaged {
4596 max-height: 1000px;
4597 top: 10px;
4598 z-index: 10001;
4600 #theme-selector::before {
4601 content: "Select theme";
4602 white-space: nowrap;
4603 display: block;
4604 font-weight: 600;
4605 font-size: 2rem;
4606 margin: 0.375em 1em 0.5em 1em;
4607 text-align: center;
4609 #theme-selector button {
4610 width: calc(100% - 0.5em);
4611 background-repeat: no-repeat;
4612 padding: 1em 0.875em;
4613 margin: 1px 4px;
4614 line-height: 1;
4615 height: unset;
4616 position: relative;
4618 #theme-selector button::after {
4619 content: attr(data-theme-description);
4620 color: #000;
4621 white-space: nowrap;
4622 position: absolute;
4623 text-align: left;
4624 left: 2.5em;
4625 top: 1em;
4627 @media only screen and (max-height: 675px) {
4628 #theme-selector button {
4629 padding: 0.875em;
4631 #theme-selector button::after {
4632 top: 0.875em;
4635 #theme-selector .theme-selector-close-button {
4636 position: absolute;
4637 width: unset;
4638 background-color: transparent;
4639 top: 0;
4640 right: -3px;
4642 #theme-selector .theme-selector-close-button,
4643 #theme-selector .theme-selector-close-button:focus,
4644 #theme-selector .theme-selector-close-button:active,
4645 #theme-selector .theme-selector-close-button:hover {
4646 box-shadow: none;
4649 /*===============*/
4650 /* THEME TWEAKER */
4651 /*===============*/
4653 #theme-selector {
4654 padding: 0 0 64px 0;
4656 #theme-selector ~ #theme-tweaker-toggle {
4657 top: 100%;
4659 #theme-selector ~ #theme-tweaker-toggle::after {
4660 content: "Open theme tweaker";
4661 position: absolute;
4662 font-size: 0.625em;
4663 white-space: nowrap;
4664 left: -50%;
4665 top: 100%;
4667 #theme-selector.engaged ~ #theme-tweaker-toggle {
4668 visibility: visible;
4669 top: 530px;
4670 left: 0;
4671 right: 0;
4672 margin: auto;
4673 z-index: 11111;
4674 transition:
4675 top 0.2s ease,
4676 visibility 0.2s ease;
4678 @media only screen and (max-height: 675px) {
4679 #theme-selector.engaged ~ #theme-tweaker-toggle {
4680 top: 492px;
4683 @supports (width: -moz-fit-content) {
4684 #theme-selector.engaged ~ #theme-tweaker-toggle {
4685 width: -moz-fit-content;
4688 @supports (width: fit-content) {
4689 #theme-selector.engaged ~ #theme-tweaker-toggle {
4690 width: fit-content;
4693 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4694 opacity: 1.0;
4697 #theme-tweaker-ui {
4698 visibility: visible;
4701 /*======================*/
4702 /* ANTI-KIBITZER TOGGLE */
4703 /*======================*/
4705 #theme-selector ~ #anti-kibitzer-toggle {
4706 top: 100%;
4707 bottom: unset;
4708 left: 0;
4709 right: 0;
4710 margin: auto;
4711 box-shadow: none;
4712 width: calc(100vw - 44px);
4713 max-width: 330px;
4714 text-align: right;
4715 pointer-events: none;
4717 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4718 visibility: visible;
4719 z-index: 11110;
4720 top: 530px;
4721 transition:
4722 top 0.2s ease,
4723 visibility 0.2s ease;
4725 @media only screen and (max-height: 675px) {
4726 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4727 top: 492px;
4730 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4731 pointer-events: auto;
4732 display: inline-block;
4735 /*=================*/
4736 /* QUICKNAV WIDGET */
4737 /*=================*/
4739 #quick-nav-ui {
4740 max-width: 0px;
4741 transition:
4742 max-width 0.2s ease,
4743 visibility 0.2s ease;
4744 display: flex;
4745 right: 72px;
4746 bottom: 14px;
4748 #quick-nav-ui.engaged {
4749 max-width: 1000px;
4751 #quick-nav-ui a {
4752 position: relative;
4753 margin: 2px;
4755 #quick-nav-ui a + a {
4756 margin-left: 5px;
4758 #quick-nav-ui a::after {
4759 position: absolute;
4760 top: calc(100% + 2px);
4761 font-size: 0.375rem;
4762 left: 0;
4763 right: 0;
4764 margin: auto;
4765 line-height: 1;
4766 padding: 2px;
4767 text-transform: uppercase;
4768 z-index: -1;
4770 @supports (width: -moz-fit-content) {
4771 #quick-nav-ui a::after {
4772 width: -moz-fit-content;
4775 @supports (width: fit-content) {
4776 #quick-nav-ui a::after {
4777 width: fit-content;
4780 #quick-nav-ui a[href='#top']::after {
4781 content: "Top";
4782 left: -1px;
4784 #quick-nav-ui a[href='#comments']::after {
4785 content: "Comments";
4787 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4788 visibility: hidden;
4789 transition: visibility 0.2s ease;
4791 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4792 visibility: visible;
4794 #quick-nav-ui a[href='#bottom-bar']::after {
4795 content: "Bottom";
4798 /*======================*/
4799 /* NEW COMMENT QUICKNAV */
4800 /*======================*/
4802 #new-comment-nav-ui {
4803 max-width: 0px;
4804 max-height: 0px;
4805 transition:
4806 max-width 0.2s ease,
4807 max-height 0.2s ease,
4808 visibility 0.2s ease;
4809 display: flex;
4810 right: 78px;
4811 bottom: 70px;
4813 #new-comment-nav-ui::before {
4814 content: "New Comments";
4815 position: absolute;
4816 bottom: 100%;
4817 font-size: 0.5625rem;
4818 left: 0;
4819 right: 0;
4820 margin: auto;
4821 padding: 2px 3px;
4822 text-transform: uppercase;
4823 z-index: -1;
4825 @supports (width: -moz-fit-content) {
4826 #new-comment-nav-ui::before {
4827 width: -moz-fit-content;
4830 @supports (width: fit-content) {
4831 #new-comment-nav-ui::before {
4832 width: fit-content;
4835 #new-comment-nav-ui.engaged {
4836 max-width: 1000px;
4837 max-height: 1000px;
4839 #new-comment-nav-ui .new-comment-sequential-nav-button {
4840 top: unset;
4841 bottom: unset;
4842 padding: 2px 7px;
4844 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4845 padding: 2px 7px 3px 7px;
4847 #new-comment-nav-ui .new-comments-count {
4848 padding: 4px 0 5px 0;
4850 #new-comment-nav-ui .new-comments-count::before {
4851 display: none;
4853 #new-comment-nav-ui button::after {
4854 position: absolute;
4855 font-size: 0.375rem;
4856 left: 0;
4857 right: 0;
4858 margin: auto;
4859 line-height: 1;
4860 text-transform: uppercase;
4861 pointer-events: none;
4863 #new-comment-nav-ui button.new-comment-previous::after {
4864 content: "Previous";
4865 bottom: 5px;
4867 #new-comment-nav-ui button.new-comment-next::after {
4868 content: "Next";
4869 top: 7px;
4872 /*=================*/
4873 /* HNS DATE PICKER */
4874 /*=================*/
4876 #hns-date-picker {
4877 max-height: 0px;
4878 bottom: 132px;
4879 right: 62px;
4880 transition:
4881 max-height 0.2s ease,
4882 visibility 0.2s ease;
4884 #hns-date-picker.engaged {
4885 max-height: 1000px;
4887 #hns-date-picker::before {
4888 width: calc(100% + 2px);
4889 border-width: 1px !important;
4892 /*=========*/
4893 /* NAV BAR */
4894 /*=========*/
4896 #bottom-bar {
4897 margin-left: auto;
4898 margin-right: auto;
4899 width: calc(100% - 9rem + 8px);
4900 background: rgba(255,255,255,0.85);
4901 backdrop-filter: blur(1px);
4903 #content.index-page #bottom-bar {
4904 z-index: 10001;
4906 #bottom-bar .nav-item {
4907 box-shadow: none;
4908 position: relative;
4910 #bottom-bar .nav-inner {
4911 font-size: 2rem;
4912 padding: 1rem 0 1.25rem 0;
4913 visibility: hidden;
4914 position: static;
4915 width: 0;
4917 #content #bottom-bar .nav-item .nav-inner::before {
4918 margin: 0;
4919 visibility: visible;
4920 position: absolute;
4921 width: 100%;
4922 height: 100%;
4923 left: 0;
4924 top: 0;
4925 padding: 1rem 0;
4927 #bottom-bar .nav-inner::after {
4928 display: block;
4929 visibility: visible;
4930 text-transform: uppercase;
4931 color: unset;
4932 font-size: 0.75rem;
4933 top: unset;
4934 left: 0;
4935 bottom: 1rem;
4936 width: 100%;
4938 #bottom-bar #nav-item-first .nav-inner::after {
4939 content: "First Page";
4941 #bottom-bar #nav-item-prev .nav-inner::after {
4942 content: "Prev. Page";
4944 #bottom-bar #nav-item-top .nav-inner::after {
4945 content: "Top";
4947 #bottom-bar #nav-item-next .nav-inner::after {
4948 content: "Next Page";
4950 #bottom-bar #nav-item-last .nav-inner::after {
4951 content: "Last Page";
4954 @media only screen and (max-width: 900px) {
4955 .nav-bar-top {
4956 font-size: 0.75rem;
4958 .nav-bar {
4959 width: calc(100% + 8px);
4960 margin: 0 -4px;
4962 .nav-bar .nav-inner::after {
4963 display: none;
4966 #primary-bar .nav-item {
4967 flex: 1 1 100%;
4969 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) {
4970 flex: 1 1 60px;
4972 .nav-bar-top:not(#anything) .nav-inner {
4973 text-transform: uppercase;
4974 padding: 6px;
4976 .nav-bar-top .nav-inner::before {
4977 display: block;
4978 font-family: "Font Awesome";
4979 font-size: 2em;
4980 font-weight: 900;
4983 #nav-item-home .nav-inner::before {
4984 content: "\F015";
4986 #nav-item-featured .nav-inner::before {
4987 content: "\F005";
4989 #nav-item-all .nav-inner::before {
4990 content: "\F069";
4992 #nav-item-meta .nav-inner::before {
4993 content: "\F077";
4995 #nav-item-tags .nav-inner::before {
4996 content: "\F02C";
4998 #nav-item-recent-comments > * > span {
4999 display: none;
5001 #nav-item-recent-comments .nav-inner::before,
5002 #nav-item-alignment-forum-comments .nav-inner::before {
5003 content: "\F036";
5005 #nav-item-alignment-forum .nav-inner::before {
5006 content: "AF";
5007 font-family: Concourse, 'Changa One';
5009 #nav-item-questions .nav-inner::before {
5010 content: "?";
5011 font-family: Concourse, 'Changa One';
5013 #nav-item-events .nav-inner::before {
5014 content: "\F5A0";
5016 #nav-item-shortform .nav-inner::before {
5017 content: "\F2F2";
5019 #nav-item-archive .nav-inner::before {
5020 content: "\F187";
5022 #nav-item-about .nav-inner::before {
5023 content: "\F129";
5025 #nav-item-search {
5026 font-size: 2em;
5027 padding: 10px;
5029 #nav-item-search .nav-inner::before {
5030 content: none;
5032 #nav-item-search .nav-inner {
5033 height: 100%;
5034 display: flex;
5036 #nav-item-search input {
5037 width: 100%;
5038 height: 100%;
5040 #nav-item-search button {
5041 height: 100%;
5042 padding: 5px 5px 5px 10px;
5043 width: 40px;
5044 overflow: visible;
5045 visibility: hidden;
5047 #nav-item-search button::before {
5048 content: "\F002";
5049 font-family: Font Awesome;
5050 font-weight: 900;
5051 visibility: visible;
5053 #nav-item-login {
5054 padding: 0;
5056 #nav-item-login .nav-inner::before {
5057 content: "\F007";
5060 @media only screen and (max-width: 520px) {
5061 .nav-bar-top {
5062 font-size: 0.5rem;
5065 #nav-item-search,
5066 #nav-item-search .nav-inner {
5067 padding: 0;
5069 #nav-item-search button {
5070 width: 31px;
5073 #bottom-bar #nav-item-first .nav-inner::after {
5074 content: "First";
5076 #bottom-bar #nav-item-prev .nav-inner::after {
5077 content: "Prev";
5079 #bottom-bar #nav-item-next .nav-inner::after {
5080 content: "Next";
5082 #bottom-bar #nav-item-last .nav-inner::after {
5083 content: "Last";
5087 /*=================*/
5088 /* INBOX INDICATOR */
5089 /*=================*/
5091 @media only screen and (max-width: 900px) {
5092 #inbox-indicator {
5093 width: 100%;
5094 top: 0;
5095 pointer-events: none;
5097 #inbox-indicator::before {
5098 width: 100%;
5099 font-size: 1rem;
5100 text-align: right;
5101 padding: 1px 6px;
5103 #inbox-indicator.new-messages {
5104 pointer-events: auto;
5106 #inbox-indicator.new-messages::before {
5107 box-shadow: 0 0 8px 1px #f00 inset;
5110 @media only screen and (max-width: 520px) {
5111 #inbox-indicator::before {
5112 font-size: 0.75rem;
5113 padding: 2px 5px;
5116 @media only screen and (max-width: 374px) {
5117 #inbox-indicator::before {
5118 font-size: 0.625rem;
5122 /*===================*/
5123 /* TOP PAGINATION UI */
5124 /*===================*/
5126 #top-nav-bar {
5127 font-size: 1.75rem;
5130 /*==============*/
5131 /* PAGE TOOLBAR */
5132 /*==============*/
5134 @media only screen and (max-width: 900px) {
5135 #content > .page-toolbar {
5136 font-size: 1rem;
5137 margin-right: 0;
5139 #content.user-page > .page-toolbar {
5140 grid-column: 2 / span 2;
5141 margin: 0 0 6px 0;
5144 @media only screen and (max-width: 520px) {
5145 #content:not(.user-page) .page-toolbar {
5146 display: flex;
5147 flex-direction: column-reverse;
5148 text-align: right;
5149 align-self: start;
5150 padding: 4px 0 0 0;
5152 #content.user-page .page-toolbar {
5153 display: flex;
5154 flex-flow: row;
5155 justify-content: flex-end;
5156 padding: 2px 0 0 0;
5158 #content.user-page .page-toolbar > form,
5159 #content.user-page .page-toolbar > .button {
5160 text-align: center;
5161 flex-basis: 25%;
5162 margin-left: 1.5em;
5164 #content.user-page .page-toolbar .button {
5165 text-transform: uppercase;
5166 font-size: 0.625rem;
5168 #content.user-page .page-toolbar .button::before {
5169 font-size: 1.375rem;
5170 display: block;
5171 padding: 0;
5173 #content.user-page .page-toolbar .rss {
5174 white-space: nowrap;
5175 margin: 0 0 0 1.5em;
5177 .page-toolbar > * {
5178 line-height: 1.15;
5179 padding: 6px 0;
5180 margin: 0;
5184 /*==============*/
5185 /* SUBLEVEL NAV */
5186 /*==============*/
5188 @media only screen and (max-width: 900px) {
5189 .sublevel-nav:not(.sort) {
5190 flex-wrap: wrap;
5191 width: calc(100vw - 200px);
5193 .sublevel-nav:not(.sort) .sublevel-item {
5194 margin: 1px;
5195 flex-basis: 7em;
5198 @media only screen and (max-width: 520px) {
5199 .sublevel-nav:not(.sort) .sublevel-item {
5200 font-size: 1rem;
5204 /*=====================*/
5205 /* SORT ORDER SELECTOR */
5206 /*=====================*/
5208 @media only screen and (max-width: 720px) {
5209 #content.index-page > .sublevel-nav.sort {
5210 flex-flow: column;
5211 margin-left: 4px;
5215 /*==========*/
5216 /* ARCHIVES */
5217 /*==========*/
5219 @media only screen and (max-width: 900px) {
5220 div[class^='archive-nav-'] {
5221 flex-wrap: wrap;
5222 justify-content: flex-start;
5224 .archive-nav *[class^='archive-nav-item'],
5225 .archive-nav *[class^='archive-nav-item']:first-child {
5226 padding: 10px;
5227 margin: 2px;
5228 max-width: unset;
5229 flex: 0 1 calc((100% / 8) - 4px);
5231 .archive-nav .archive-nav-item-day,
5232 .archive-nav .archive-nav-item-day:first-child {
5233 flex-basis: calc((100% / 16) - 4px);
5235 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
5236 margin-top: 8px;
5237 position: relative;
5239 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
5240 content: "";
5241 display: block;
5242 position: absolute;
5243 height: 1px;
5244 width: calc(100% + 8px);
5245 left: -4px;
5246 top: -4px;
5249 @media only screen and (max-width: 720px) {
5250 .archive-nav .archive-nav-item-day,
5251 .archive-nav .archive-nav-item-day:first-child {
5252 flex-basis: calc((100% / 12) - 4px);
5255 @media only screen and (max-width: 520px) {
5256 .archive-nav *[class^='archive-nav-item'],
5257 .archive-nav *[class^='archive-nav-item']:first-child {
5258 flex-basis: calc((100% / 5) - 4px);
5260 .archive-nav .archive-nav-item-day,
5261 .archive-nav .archive-nav-item-day:first-child {
5262 flex-basis: calc((100% / 8) - 4px);
5266 /*==========*/
5267 /* LISTINGS */
5268 /*==========*/
5270 h1.listing {
5271 max-height: unset;
5274 /*============*/
5275 /* USER PAGES */
5276 /*============*/
5278 #content.user-page h1.page-main-heading {
5279 align-self: end;
5281 @media only screen and (max-width: 520px) {
5282 #content.user-page h1.page-main-heading {
5283 overflow: hidden;
5284 text-overflow: ellipsis;
5286 #content.user-page .user-stats .karma-type {
5287 display: block;
5291 /*============*/
5292 /* LOGIN PAGE */
5293 /*============*/
5295 @media only screen and (max-width: 640px) {
5296 .login-container {
5297 flex-flow: column;
5298 margin: 0 auto 3em auto;
5299 max-width: 400px;
5301 .login-container #login-form,
5302 .login-container #signup-form {
5303 padding: 0 1em 1.25em 1em;
5304 grid-row-gap: 0;
5306 .login-container #signup-form {
5307 padding-top: 1em;
5309 .login-container #login-form > *,
5310 .login-container #signup-form > * {
5311 grid-column: 1 / span 2;
5313 .login-container form label {
5314 text-align: left;
5315 padding: 0;
5316 line-height: 1;
5318 .login-container form input {
5319 margin: 0.25em 0 0.75em 0;
5320 padding: 0.5em;
5322 .login-container form h1 {
5323 grid-column: 1 / span 2;
5324 margin: 0 0 0.25em 0;
5326 .login-container form a {
5327 margin: 0.75em 0 0 0;
5329 .login-container .login-tip {
5330 margin: 1.5em 1em 0 1em;
5334 /*==================*/
5335 /* POSTS & COMMENTS */
5336 /*==================*/
5338 @media only screen and (max-width: 720px) {
5339 .body-text ol > li {
5340 padding: 0 0 0 2.25em;
5342 .body-text ol > li::before {
5343 width: 1.75em;
5345 .body-text ul:not(.contents-list) > li,
5346 .body-text ul:not(.contents-list) > li ul > li {
5347 padding: 0 0 0 0.75em;
5349 .body-text ul:not(.contents-list) > li::before,
5350 .body-text ul:not(.contents-list) > li ul > li::before {
5351 width: 0.125em;
5352 margin-left: -0.06em;
5356 /*===========*/
5357 /* POST-META */
5358 /*===========*/
5360 .post-meta {
5361 line-height: 1.9;
5363 @media only screen and (max-width: 720px) {
5364 .post-meta .lw2-link span,
5365 .post-meta .karma-value span,
5366 .post-meta .comment-count span {
5367 display: none;
5369 .post-meta .comment-count::before {
5370 content: "\F086";
5371 font-family: Font Awesome;
5372 font-size: 0.875em;
5373 margin: 0 0.25em 0 0;
5374 font-weight: 400;
5378 /*===================*/
5379 /* POSTS & BODY TEXT */
5380 /*===================*/
5382 @media only screen and (max-width: 900px) {
5383 .post-body,
5384 h1.post-title,
5385 .tag-description,
5386 .sequence-text {
5387 padding: 0 6px;
5390 @media only screen and (max-width: 520px) {
5391 .post-body {
5392 font-size: 1.2rem;
5393 line-height: 1.45;
5395 h1.post-title {
5396 font-size: 2em;
5400 /*==============*/
5401 /* COMMENT-META */
5402 /*==============*/
5404 a.comment-parent-link::after {
5405 display: none;
5407 @media only screen and (max-width: 900px) {
5408 .comment-meta {
5409 padding: 2px 40px 2px 10px;
5412 @media only screen and (max-width: 720px) {
5413 .comment .karma-value span {
5414 display: none;
5416 .comment-meta .comment-parent-link {
5417 opacity: 1.0;
5420 @media only screen and (max-width: 520px) {
5421 .comment-meta {
5422 padding: 2px 10px;
5423 position: relative;
5425 .comment-meta .author {
5426 flex-basis: 100%;
5428 .comment-post-title2 {
5429 display: block;
5430 text-overflow: ellipsis;
5431 overflow: hidden;
5433 .comment-meta .lw2-link {
5434 display: none;
5438 /*=======================*/
5439 /* COMMENTS COMPACT VIEW */
5440 /*=======================*/
5442 /*===========================*/
5443 /* COMMENT THREAD NAVIGATION */
5444 /*===========================*/
5446 @media only screen and (max-width: 900px) {
5447 a.comment-parent-link {
5448 width: 0;
5449 visibility: hidden;
5450 position: relative;
5452 a.comment-parent-link::before {
5453 padding: 0;
5454 font-size: 1em;
5455 left: 0;
5456 top: 0;
5457 line-height: inherit;
5458 visibility: visible;
5459 content: "\F3BF";
5460 transform: scaleX(-1);
5461 width: 2em;
5462 text-align: center;
5465 @media only screen and (max-width: 520px) {
5466 a.comment-parent-link {
5467 position: static;
5469 a.comment-parent-link::before {
5470 padding: 6px;
5471 left: unset;
5472 right: 0;
5473 top: unset;
5474 bottom: 0;
5475 height: 2em;
5479 /*=================================*/
5480 /* COMMENT THREAD MINIMIZE BUTTONS */
5481 /*=================================*/
5483 @media only screen and (max-width: 520px) {
5484 .comment-minimize-button{
5485 right: 2px;
5489 /*===========================*/
5490 /* COMMENTING AND POSTING UI */
5491 /*===========================*/
5493 @media only screen and (max-width: 900px) {
5494 .comment-controls .delete-button, .comment-controls .retract-button, .comment-controls .unretract-button, .comment-controls .edit-button {
5495 font-size: 0;
5497 .comment-controls .delete-button::before, .comment-controls .retract-button::before, .comment-controls .unretract-button::before, .comment-controls .edit-button::before {
5498 font-size: 0.9rem;
5500 .comment-controls .cancel-comment-button {
5501 max-width: 1.3em;
5502 overflow: hidden;
5503 margin-right: 0.125em;
5505 .comment-controls .edit-button::before {
5506 font-size: 0.9375rem;
5508 .comments > .comment-controls .cancel-comment-button {
5509 right: 8px;
5511 .comment-controls .cancel-comment-button::before {
5512 font-size: 1.25rem;
5515 @media only screen and (max-width: 520px) {
5516 .comment-controls {
5517 position: static;
5519 .comment-controls:focus-within {
5520 z-index: 10001;
5522 .comment-controls .cancel-comment-button {
5523 right: 10px;
5525 .textarea-container:focus-within textarea {
5526 position: fixed;
5527 top: 0;
5528 left: 2px;
5529 width: calc(100vw - 4px);
5530 height: calc(100% - 100px);
5531 min-height: unset;
5532 max-height: unset;
5533 border-width: 1px;
5534 z-index: 11001;
5536 #content.conversation-page .textarea-container:focus-within textarea {
5537 height: calc(100% - 54px);
5539 #content.conversation-page .textarea-container:focus-within::after {
5540 content: "";
5541 display: block;
5542 width: 100%;
5543 height: 50px;
5544 position: fixed;
5545 left: 0;
5546 bottom: 0;
5547 z-index: 11000;
5549 .textarea-container:focus-within .guiedit-buttons-container {
5550 position: fixed;
5551 z-index: 11002;
5552 left: 0;
5553 width: 100vw;
5554 height: auto;
5555 background-image: none;
5556 padding: 3px 4px 4px 4px;
5557 margin: 0;
5558 text-align: center;
5559 top: auto;
5560 bottom: 0;
5562 .textarea-container:focus-within button.guiedit {
5563 font-size: 0.9375rem;
5564 line-height: 1.5;
5565 height: auto;
5566 width: calc((100% / 10) - 2px);
5567 padding: 10px 1px 8px 0;
5568 position: relative;
5569 margin: 1px;
5571 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5572 z-index: 11011;
5573 position: fixed;
5574 bottom: 7px;
5575 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5576 font-size: 1.25rem;
5577 padding: 5px 5px 6px 5px;
5578 display: block;
5580 .textarea-container:focus-within button.guiedit sup {
5581 position: absolute;
5582 left: calc(50% + 0.65em);
5583 top: calc(50% - 1.3em);
5585 .textarea-container:focus-within .guiedit-mobile-help-button {
5586 left: 8px;
5588 .textarea-container:focus-within .guiedit-mobile-exit-button {
5589 right: 8px;
5591 .guiedit::after {
5592 display: none;
5595 #markdown-hints,
5596 #edit-post-form #markdown-hints {
5597 z-index: 11111;
5598 position: fixed;
5599 top: 40px;
5600 left: 0;
5601 right: 0;
5602 margin: auto;
5603 padding: 4px 0 4px 8px;
5604 width: 310px;
5605 border-width: 3px;
5606 border-style: double;
5607 pointer-events: none;
5609 #markdown-hints::after {
5610 content: "(Type to hide this help box.)";
5611 color: #090;
5612 display: block;
5613 margin: 12px 18px 13px 10px;
5614 padding: 5px;
5615 font-size: 0.9em;
5616 text-align: center;
5620 /*================*/
5621 /* EDIT POST FORM */
5622 /*================*/
5624 @media only screen and (max-width: 520px) {
5625 #edit-post-form {
5626 padding-bottom: 0;
5628 #edit-post-form .post-meta-fields {
5629 grid-template-columns: 4.5em auto auto auto 1fr auto;
5631 #edit-post-form label[for='url'],
5632 #edit-post-form label[for='section'],
5633 #edit-post-form label[for='title'] {
5634 padding-left: 0;
5636 #edit-post-form .post-meta-fields input[type='checkbox'] + label.iconify {
5637 white-space: normal;
5638 line-height: 0.9;
5639 top: -1px;
5640 font-family: Font Awesome;
5641 font-weight: 900;
5642 justify-self: start;
5644 #edit-post-form .post-meta-fields .question-checkbox,
5645 #edit-post-form .post-meta-fields .question-checkbox + label {
5646 grid-column: 6;
5647 margin-left: unset;
5649 #edit-post-form .post-meta-fields input[type='radio'] + label {
5650 align-self: start;
5652 #edit-post-form .textarea-container:focus-within textarea {
5653 height: calc(100% - 101px);
5654 min-height: unset;
5657 #markdown-hints-checkbox,
5658 #markdown-hints-checkbox + label {
5659 display: none;
5662 #edit-post-form div:last-child {
5663 clear: both;
5664 overflow: auto;
5666 #edit-post-form input[type='submit'] {
5667 float: none;
5668 display: block;
5669 font-size: 1.5rem;
5670 margin: 1rem auto 1.5rem auto;
5671 padding: 6px 12px 8px 12px;
5675 /*===================*/
5676 /* TABLE OF CONTENTS */
5677 /*===================*/
5679 @media only screen and (max-width: 900px) {
5680 .contents {
5681 float: none;
5682 display: table;
5683 max-width: none;
5684 margin-left: auto;
5685 margin-right: auto;
5688 @media only screen and (max-width: 520px) {
5689 .contents {
5690 max-width: 100%;
5691 margin: 1em auto 0 auto;
5692 display: table;
5694 .contents-head {
5695 font-size: 1.2em;
5697 div.post-body .contents ul {
5698 font-size: unset;
5702 /*========================*/
5703 /* QUALIFIED HYPERLINKING */
5704 /*========================*/
5706 @media only screen and (max-width: 520px) {
5707 .qualified-linking-toolbar {
5708 right: -5em;
5712 } /* END MOBILE LAYOUT */
5715 /*********************/
5716 /* ULTRAMODERN THEME */
5717 /*********************/
5719 /*===========*/
5720 /* VARIABLES */
5721 /*===========*/
5723 /* Color scheme.
5725 :root {
5728 /*======*/
5729 /* BASE */
5730 /*======*/
5732 body {
5733 color: #444;
5734 background-color: #888;
5735 font-family: 'Proxima Nova';
5736 font-weight: 300;
5738 #content {
5739 line-height: 1.55;
5742 /*=========*/
5743 /* NAV BAR */
5744 /*=========*/
5746 .active-bar {
5747 border: 1px solid transparent;
5748 border-bottom-color: #666;
5749 box-shadow:
5750 0 1.5px 1.5px -1.5px #bbb,
5751 0 1px 1px -1px #777;
5752 margin: 0 -30px 0 -2px;
5755 .nav-inner {
5756 font-weight: normal;
5757 font-size: 1.1875em;
5758 padding: 11px 30px 13px 30px;
5760 .nav-current .nav-inner {
5761 font-weight: 300;
5762 color: #ccc;
5764 .nav-bar-top:not(#primary-bar) .nav-inner {
5765 font-size: 1em;
5767 .nav-bar-top:not(.nav-bar-top:not(#primary-bar)) .nav-item:not(#nav-item-search) .nav-inner {
5768 padding: 5px 0 3px 0;
5770 @media only screen and (min-width: 901px) {
5771 .nav-bar-top:not(#primary-bar) #nav-item-sequences .nav-inner {
5772 line-height: 1.1;
5776 #bottom-bar.decorative::before,
5777 #bottom-bar.decorative::after {
5778 content: "GW";
5779 display: block;
5780 text-align: center;
5781 padding: 0.25em 0 1em 0;
5783 #bottom-bar.decorative::before {
5784 width: 100%;
5785 color: transparent;
5786 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5787 background-repeat: repeat-x;
5788 background-position: center 35%;
5789 margin: 0 30px;
5790 filter: brightness(50%) opacity(0.6);
5792 #bottom-bar.decorative::after {
5793 color: #777;
5794 position: absolute;
5795 left: 0;
5796 right: 0;
5797 margin: auto;
5798 background-color: #888;
5799 padding-right: 4px;
5800 padding-left: 4px;
5802 @supports (width: -moz-fit-content) {
5803 #bottom-bar.decorative::after {
5804 width: -moz-fit-content;
5807 @supports (width: fit-content) {
5808 #bottom-bar.decorative::after {
5809 width: fit-content;
5813 .nav-bar a:link,
5814 .nav-bar a:visited {
5815 color: #444;
5816 font-weight: 300;
5818 .nav-bar a:hover,
5819 .nav-bar a:focus {
5820 text-decoration: underline;
5823 /* Accesskey hints */
5825 .nav-inner::after {
5826 display: block;
5827 position: absolute;
5828 left: 5px;
5829 top: -2px;
5830 font-weight: 400;
5831 font-size: 0.7em;
5832 color: #7c7c7c;
5834 .inactive-bar .nav-inner::after {
5835 color: #777;
5836 top: 0;
5838 .nav-inner:hover::after {
5839 color: #666;
5842 /* Search tab */
5844 #nav-item-search form::before {
5845 opacity: 0.4;
5846 font-size: 0.9375rem;
5848 #nav-item-search button {
5849 border: none;
5850 font-weight: 300;
5852 #nav-item-search input::placeholder {
5853 color: #f00;
5854 font-weight: normal;
5857 /* Inbox indicator */
5859 #inbox-indicator {
5860 top: 0;
5863 /*= Top pagination UI =*/
5865 #top-nav-bar a::before {
5866 font-weight: 300;
5869 /*= Bottom pagination UI =*/
5871 #bottom-bar .nav-item a::before {
5872 font-weight: 400;
5875 /*= Pagination UI hover tooltips =*/
5877 #top-nav-bar a::after,
5878 #bottom-bar a::after {
5879 color: #222;
5882 /*==============*/
5883 /* PAGE TOOLBAR */
5884 /*==============*/
5886 .page-toolbar > * {
5887 color: #444;
5888 font-weight: 300;
5890 .new-post::before,
5891 .logout-button::before {
5892 opacity: 0.8;
5894 .page-toolbar .button:hover {
5895 text-decoration: none;
5898 /*==============*/
5899 /* SUBLEVEL NAV */
5900 /*==============*/
5902 .sublevel-nav .sublevel-item {
5903 color: #444;
5904 background-color: #888;
5906 .sublevel-nav .sublevel-item:not(.selected):hover {
5907 color: #000;
5908 text-decoration: none;
5910 .sublevel-nav .sublevel-item:hover,
5911 .sublevel-nav .sublevel-item.selected {
5912 background-color: #999;
5914 .sublevel-nav .sublevel-item:not(.selected):active,
5915 .sublevel-nav .sublevel-item.selected {
5916 color: #fff;
5919 .sublevel-nav:not(.sort) .sublevel-item {
5920 border-style: solid;
5921 border-color: #999;
5922 border-width: 1px 0 1px 1px;
5924 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5925 border-radius: 8px 0 0 8px;
5927 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5928 border-width: 1px;
5929 border-radius: 0 8px 8px 0;
5932 /*=====================*/
5933 /* SORT ORDER SELECTOR */
5934 /*=====================*/
5936 .sublevel-nav.sort .sublevel-item {
5937 font-family: 'Proxima Nova';
5938 padding: 8px 8px 6px 8px;
5939 text-transform: uppercase;
5940 pointer-events: auto;
5941 box-shadow: 1px 1px 0 0 #777 inset;
5943 .sublevel-nav.sort {
5944 border: 2px solid transparent;
5945 padding: 18px 0 0 0;
5946 border-radius: 8px;
5947 pointer-events: none;
5948 background-color: #999;
5950 .sublevel-nav.sort::before {
5951 text-transform: uppercase;
5952 font-weight: 600;
5953 color: #444;
5954 z-index: 1;
5956 .sublevel-nav.sort::after {
5957 content: "";
5958 position: absolute;
5959 display: block;
5960 top: 0;
5961 left: 0;
5962 width: 100%;
5963 height: 100%;
5964 border-radius: 6px;
5965 box-shadow:
5966 0 18px 0 0 #888 inset,
5967 0 0 0 1px #777 inset,
5968 0 18px 0 1px #777 inset,
5969 0 0 0 2px #888;
5972 /*================*/
5973 /* WIDTH SELECTOR */
5974 /*================*/
5976 #width-selector button {
5977 box-shadow:
5978 0 0 0 4px #888 inset,
5979 0 0 0 5px #ccc inset;
5981 #width-selector button:hover,
5982 #width-selector button.selected {
5983 box-shadow:
5984 0 0 0 1px #888 inset,
5985 0 0 0 2px #ccc inset,
5986 0 0 0 4px #888 inset,
5987 0 0 0 5px #ccc inset;
5989 #width-selector button::after {
5990 color: #ccc;
5991 font-weight: 300;
5994 /*================*/
5995 /* THEME SELECTOR */
5996 /*================*/
5998 #theme-selector button {
5999 box-shadow:
6000 0 0 0 5px #888 inset;
6002 #theme-selector button:hover,
6003 #theme-selector button.selected {
6004 box-shadow:
6005 0 0 0 2px #888 inset,
6006 0 0 0 3px #ccc inset,
6007 0 0 0 5px #888 inset;
6010 #theme-selector button::before {
6011 color: #aaa;
6012 background-color: #888;
6014 #theme-selector button:hover::before,
6015 #theme-selector button.selected::before {
6016 color: #ccc;
6019 /*======================*/
6020 /* THEME TWEAKER TOGGLE */
6021 /*======================*/
6023 #theme-tweaker-toggle button:hover {
6024 text-decoration: none;
6027 /*=================*/
6028 /* QUICKNAV WIDGET */
6029 /*=================*/
6031 #quick-nav-ui a {
6032 color: #666;
6033 border-radius: 4px;
6034 box-shadow: 0 0 0 1px #999;
6035 text-decoration: none;
6037 #quick-nav-ui a[href='#bottom-bar'] {
6038 line-height: 1.8;
6040 #quick-nav-ui a:active {
6041 transform: scale(0.9);
6043 #quick-nav-ui a[href='#comments'].no-comments {
6044 opacity: 0.4;
6045 color: #777;
6047 @media only screen and (hover: hover) {
6048 #quick-nav-ui a:hover {
6049 color: #444;
6050 box-shadow: 0 0 0 1px #ccc;
6052 #quick-nav-ui a:focus:not(:hover) {
6053 transform: none;
6054 text-shadow: none;
6058 /*======================*/
6059 /* NEW COMMENT QUICKNAV */
6060 /*======================*/
6062 #new-comment-nav-ui .new-comments-count {
6063 font-weight: 600;
6064 color: #666;
6066 #new-comment-nav-ui .new-comments-count::after {
6067 font-weight: 600;
6068 color: #666;
6070 #new-comment-nav-ui .new-comment-sequential-nav-button {
6071 color: #bbb;
6073 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6074 color: #929292;
6076 @media only screen and (hover: hover) {
6077 #new-comment-nav-ui .new-comments-count:hover {
6078 text-shadow:
6079 0 0 1px #fff,
6080 0 0 3px #fff,
6081 0 0 5px #fff,
6082 0 0 8px #fff,
6083 0.5px 0.5px 0 #fff;
6085 #new-comment-nav-ui .new-comment-sequential-nav-button:hover {
6086 color: #444;
6087 text-decoration: none;
6089 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
6090 color: #d00;
6091 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6095 /*=================*/
6096 /* HNS DATE PICKER */
6097 /*=================*/
6099 #hns-date-picker span {
6100 color: #666;
6101 font-weight: 600;
6103 #hns-date-picker input {
6104 border: 1px solid #999;
6105 background-color: transparent;
6106 color: #666;
6108 #hns-date-picker input:focus {
6109 color: #000;
6110 border: 1px solid #ccc;
6113 /*======================*/
6114 /* ANTI-KIBITZER TOGGLE */
6115 /*======================*/
6117 #anti-kibitzer-toggle button::before,
6118 #anti-kibitzer-toggle button::after {
6119 background-color: #222;
6120 -webkit-background-clip: text;
6121 color: transparent;
6122 text-shadow: rgba(255,255,255,0.4) 0px 1px 1px;
6124 #anti-kibitzer-toggle button:hover::before,
6125 #anti-kibitzer-toggle button:hover::after {
6126 background-color: #000;
6129 /*======================*/
6130 /* TEXT SIZE ADJUSTMENT */
6131 /*======================*/
6133 #text-size-adjustment-ui button {
6134 color: #444;
6136 #text-size-adjustment-ui button.default {
6137 font-weight: 600;
6139 #text-size-adjustment-ui button:hover {
6140 text-decoration: none;
6141 color: #aaa;
6143 #text-size-adjustment-ui::after {
6144 color: #ccc;
6145 font-weight: 300;
6148 /*=============================*/
6149 /* COMMENTS VIEW MODE SELECTOR */
6150 /*=============================*/
6152 #comments-view-mode-selector a {
6153 color: #ccc;
6156 /*==========*/
6157 /* ARCHIVES */
6158 /*==========*/
6160 .archive-nav {
6161 border: 1px solid #ccc;
6163 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
6164 border-top-width: 0;
6165 border-bottom-width: 0;
6167 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
6168 border-bottom-width: 1px;
6170 .archive-nav *[class^='archive-nav-item']:last-child {
6171 border-right-width: 1px;
6173 .archive-nav span[class^='archive-nav-item'] {
6174 font-weight: bold;
6177 .archive-nav span[class^="archive-nav-item"],
6178 .archive-nav a:hover {
6179 color: #ffb359;
6180 box-shadow:
6181 0 0 0 3px #888 inset,
6182 0 0 0 4px #ccc inset,
6183 0 0 0 5px #888 inset;
6184 text-decoration: none;
6186 .archive-nav span[class^="archive-nav-item"] {
6187 font-weight: normal;
6188 box-shadow:
6189 0 0 0 1px #ccc inset,
6190 0 0 0 3px #888 inset,
6191 0 0 0 4px #ccc inset,
6192 0 0 0 5px #888 inset;
6194 .archive-nav a:active {
6195 transform: scale(0.9);
6197 .archive-nav a:focus:not(:hover) {
6198 transform: none;
6201 /*==========*/
6202 /* LISTINGS */
6203 /*==========*/
6205 h1.listing {
6206 margin: 0.7em 20px 0.1em 20px;
6207 max-width: calc(100% - 40px);
6208 font-family: 'Proxima Nova', 'Font Awesome';
6209 font-size: 1.5rem;
6211 h1.listing .post-title-link {
6212 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6213 font-weight: 100;
6214 text-shadow:
6215 0px 0px 1px #777,
6216 0.5px 0.5px 1px #aaa,
6217 0.5px 0.5px 1px #bbb;
6219 h1.listing .link-post-link {
6220 color: #aaa;
6223 @media only screen and (hover: hover) {
6224 h1.listing a:hover,
6225 h1.listing a:focus {
6226 background-color: rgba(136,136,136,0.85);
6227 color: #f60;
6228 text-shadow:
6229 0px 0px 1px #777,
6230 0.5px 0.5px 1px #aaa,
6231 0.5px 0.5px 1px #bbb,
6232 0 0 1px #f60,
6233 0 0 2px #f60,
6234 0 0 3px #f60;
6236 h1.listing:focus-within::before {
6237 color: #f60;
6238 left: -0.625em;
6239 top: 1px;
6241 h1.listing .link-post-link:hover {
6242 color: #4879ec;
6243 text-shadow:
6244 0.5px 0.5px 0 #fff,
6245 -0.5px -0.5px 0 #fff,
6246 0 0 2px #fff,
6247 0 0 3px #00c;
6251 h1.listing .edit-post-link {
6252 padding: 10px 3px 30px 0.5em;
6253 top: 0;
6254 right: -1.5em;
6256 h1.listing .edit-post-link:hover {
6257 text-decoration: none;
6259 #content.user-page h1.listing .edit-post-link {
6260 background-color: #888;
6263 /*======*/
6264 /* SPAM */
6265 /*======*/
6267 h1.listing.spam {
6268 opacity: 0.35;
6270 h1.listing.spam + .post-meta {
6271 opacity: 0.3;
6273 h1.listing.spam:hover,
6274 h1.listing.spam + .post-meta:hover,
6275 h1.listing.spam:hover + .post-meta {
6276 opacity: 1.0;
6279 /*===================*/
6280 /* LISTING POST-META */
6281 /*===================*/
6283 h1.listing + .post-meta > * {
6284 color: #222;
6285 font-size: 1em;
6287 h1.listing + .post-meta .karma::after {
6288 content: " by";
6290 h1.listing + .post-meta .date::before {
6291 content: "on ";
6293 h1.listing + .post-meta .date::after {
6294 content: " — ";
6295 opacity: 0.5;
6296 margin: 0 0.5em 0 0.125em;
6298 h1.listing + .post-meta .comment-count.new-comments::before {
6299 color: #0f0;
6301 h1.listing:last-of-type + .post-meta {
6302 margin-bottom: 0;
6304 h1.listing + .post-meta .karma {
6305 order: -1;
6306 margin-right: 0.25em;
6308 h1.listing + .post-meta .author {
6309 margin-right: 0.25em;
6311 h1.listing + .post-meta .date {
6312 margin: 0;
6314 h1.listing + .post-meta .post-section {
6315 overflow: visible;
6316 order: 2;
6318 h1.listing + .post-meta .post-section::before {
6319 font-size: 0.9375em;
6320 left: -32px;
6322 h1.listing + .post-meta .link-post-domain {
6323 order: 1;
6326 /*============*/
6327 /* USER PAGES */
6328 /*============*/
6330 #content.user-page h1.page-main-heading {
6331 border-bottom: 1px solid #777;
6334 #content.user-page h1.listing,
6335 #content.user-page h1.listing + .post-meta {
6336 border-style: solid;
6337 border-color: #666;
6338 border-width: 0 0 0 1px;
6339 box-shadow:
6340 1.5px 0 1.5px -1.5px #bbb inset,
6341 1px 0 1px -1px #777 inset;
6343 #content.user-page h1.listing {
6344 max-width: 100%;
6345 margin: 1rem 0 0 0;
6346 padding: 6px;
6348 @media only screen and (hover: hover) {
6349 #content.user-page h1.listing:focus-within::before {
6350 left: -0.625em;
6351 top: 8px;
6354 #content.user-page h1.listing + .post-meta {
6355 margin: 0 0 1rem 0;
6356 padding: 0.5em 6px 6px 34px;
6358 #content.user-page h1.listing + .post-meta .post-section::before {
6359 left: 1px;
6362 #content.conversations-user-page h1.listing {
6363 padding: 6px 6px 4px 8px;
6364 font-size: 1.5rem;
6366 #content.conversations-user-page h1.listing + .post-meta {
6367 padding: 6px 4px;
6368 margin: 0 0 0.25rem 0;
6370 #content.conversations-user-page h1.listing + .post-meta .date::after {
6371 display: none;
6374 .user-stats .karma-total {
6375 font-weight: bold;
6378 /*===============*/
6379 /* CONVERSATIONS */
6380 /*===============*/
6382 #content.conversation-page h1.page-main-heading {
6383 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6384 font-weight: 100;
6385 color: #000;
6386 text-shadow:
6387 0px 0px 1px #777,
6388 0.5px 0.5px 1px #aaa,
6389 0.5px 0.5px 1px #bbb;
6392 /*============*/
6393 /* LOGIN PAGE */
6394 /*============*/
6396 .login-container h1 {
6397 font-weight: 300;
6400 /* “Create account” form */
6402 #signup-form {
6403 border: 1px solid #aaa;
6406 /* Log in tip */
6408 .login-container .login-tip {
6409 border: 1px solid transparent;
6412 /* Message box */
6414 .error-box {
6415 border: 1px solid red;
6416 background-color: #faa;
6418 .success-box {
6419 border: 1px solid green;
6420 background-color: #afa;
6423 /*=====================*/
6424 /* PASSWORD RESET PAGE */
6425 /*=====================*/
6427 .reset-password-container input[type='submit'] {
6428 background-color: #e4e4e4;
6429 border: 1px solid #ccc;
6430 font-weight: 600;
6433 /*===================*/
6434 /* TABLE OF CONTENTS */
6435 /*===================*/
6437 .contents {
6438 background-color: #888;
6440 .contents-head {
6441 font-weight: 300;
6443 .post-body .contents ul {
6444 font-size: 0.85em;
6446 .post-body .contents li::before {
6447 color: #999;
6448 font-feature-settings: "tnum";
6451 /*=================*/
6452 /* POST NAVIGATION */
6453 /*=================*/
6455 .post-nav-links a,
6456 .post-nav-links a:visited {
6457 color: #444;
6458 font-weight: 300;
6460 .post-nav-links a:hover {
6461 text-decoration: none;
6462 color: #ccc;
6465 .post-nav-label {
6466 opacity: 0.75;
6469 @media only screen and (max-width: 900px) {
6470 .sequence-title {
6471 border-top: 1px solid #777;
6473 .post-nav.prev {
6474 border-right: 1px solid #777;
6476 .post-nav.next {
6477 border-left: 1px solid #777;
6481 /*==================*/
6482 /* POSTS & COMMENTS */
6483 /*==================*/
6485 .body-text {
6486 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6487 font-weight: 300;
6488 color: #000;
6489 text-shadow:
6490 0px 0px 1px #777,
6491 0.5px 0.5px 1px #aaa,
6492 0.5px 0.5px 1px #bbb;
6494 .body-text strong {
6495 font-weight: 500;
6498 .body-text a:link {
6499 color: inherit;
6500 text-shadow:
6501 0px 0px 1px #bd5984,
6502 0.5px 0.5px 1px #f68a84,
6503 0.5px 0.5px 1px #ff9b8c;
6505 .body-text a:visited {
6506 color: inherit;
6507 text-shadow:
6508 0px 0px 1px #a766dd,
6509 0.5px 0.5px 1px #d9f,
6510 0.5px 0.5px 1px #efa9ff;
6512 .body-text a:hover {
6513 color: #f60;
6514 text-shadow:
6515 0px 0px 1px #bd5984,
6516 0.5px 0.5px 1px #f68a84,
6517 0.5px 0.5px 1px #ff9b8c,
6518 0px 0px 5px #f60;
6521 h1.post-title {
6522 margin: 1.1em 0 0.25em 0;
6523 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6524 font-weight: 100;
6525 color: #000;
6526 font-size: 3em;
6527 text-shadow:
6528 0px 0px 1px #777,
6529 0.5px 0.5px 1px #aaa,
6530 0.5px 0.5px 1px #bbb;
6533 .post-body {
6534 font-size: 1.1875rem;
6535 line-height: 1.6;
6537 @media (-webkit-max-device-pixel-ratio: 1), (max-resolution: 191dpi) {
6538 .post-body {
6539 font-size: 1.125rem;
6542 .comment-body {
6543 font-size: 1.125rem;
6546 /*=======*/
6547 /* POSTS */
6548 /*=======*/
6550 .bottom-post-meta {
6551 border-color: #777;
6554 /*===========*/
6555 /* POST-META */
6556 /*===========*/
6558 .post-meta a,
6559 .post-meta .date {
6560 color: #444;
6563 .post-meta > * {
6564 margin: 0;
6565 text-shadow:
6566 0px 0px 1px #777,
6567 0.5px 0.5px 1px #aaa,
6568 0.5px 0.5px 1px #bbb;
6570 .post-meta .comment-count span,
6571 .post-meta .read-time span,
6572 .post-meta .word-count span,
6573 .post-meta .lw2-link span {
6574 display: none;
6576 .post-meta .comment-count::before,
6577 .post-meta .read-time::before,
6578 .post-meta .word-count::before,
6579 .post-meta .lw2-link::before {
6580 font-family: Font Awesome;
6581 margin: 0 0.25em 0 0;
6582 font-size: 0.875em;
6583 color: #666;
6585 .post-meta .comment-count {
6586 margin: 0 0.25em 0 0;
6588 .post-meta .read-time,
6589 .post-meta .word-count,
6590 .post-meta .lw2-link {
6591 margin: 0 0.25em 0 0.5em;
6593 .post-meta .comment-count:hover,
6594 .post-meta .lw2-link:hover {
6595 text-decoration: none;
6596 text-shadow:
6597 0 0 0.5px #000,
6598 0 0 1px #fff,
6599 0 0 8px #000;
6601 .post-meta .comment-count:hover::before,
6602 .post-meta .lw2-link:hover::before,
6603 .post-meta .read-time:hover::before {
6604 color: #ccc;
6606 .post-meta .read-time:hover::before {
6607 cursor: pointer;
6609 .post-meta .comment-count::before {
6610 content: "\F086";
6612 .post-meta .read-time::before {
6613 content: "\F017";
6615 .post-meta .read-time::after {
6616 content: " min";
6618 .post-meta .word-count::before {
6619 content: "\F15C";
6621 .post-meta .word-count::after {
6622 content: "";
6624 .post-meta .lw2-link::before {
6625 content: "\F0C1";
6626 font-weight: 900;
6627 font-size: 0.75em;
6628 position: relative;
6629 bottom: 1px;
6632 .post .post-meta .author {
6633 margin: 0 0.75em 0 0;
6635 .post-meta .author:hover,
6636 .comment-meta .author:hover {
6637 text-decoration: none;
6638 color: #090;
6640 .post .post-meta .comment-count {
6641 margin: 0 0.5em;
6643 .post .post-meta .lw2-link {
6644 margin: 0 1em 0 0.5em;
6646 .post .post-meta .karma {
6647 margin: 0 0.5em 0 1em;
6650 .post-meta .post-section::before,
6651 .comment-meta .alignment-forum {
6652 color: #888;
6653 text-shadow:
6654 1px 1px 0 #ccc,
6655 0 1px 0 #ccc,
6656 0 0 5px #ccc;
6658 a.post-section:hover {
6659 text-decoration: none;
6661 a.post-section:hover::before {
6662 color: #999;
6664 .post-meta .post-section.alignment-forum::before {
6665 text-shadow:
6666 1px 1px 0 #b9bbff,
6667 0 1px 0 #b9bbff,
6668 0 0 5px #b9bbff;
6670 a.post-section.alignment-forum:hover::before {
6671 color: #9093d4;
6674 /*============*/
6675 /* LINK POSTS */
6676 /*============*/
6678 .post.link-post a.link-post-link {
6679 text-decoration: none;
6680 font-family: 'Proxima Nova';
6681 font-weight: 600;
6683 .post.link-post a.link-post-link:hover {
6684 color: #f60;
6686 .post.link-post a.link-post-link:hover::before {
6687 color: #4879ec;
6688 text-shadow:
6689 0.5px 0.5px 0 #fff,
6690 -0.5px -0.5px 0 #fff,
6691 0 0 2px #fff,
6692 0 0 3px #00c;
6694 .post.link-post a.link-post-link:focus {
6695 color: #f60;
6696 border-bottom: 2px dotted #f60;
6697 text-shadow:
6698 0px 0px 1px #777,
6699 0.5px 0.5px 1px #aaa,
6700 0.5px 0.5px 1px #bbb,
6701 0 0 1px #f60,
6702 0 0 2px #f60,
6703 0 0 3px #f60;
6706 /*==========*/
6707 /* COMMENTS */
6708 /*==========*/
6710 .comments::before {
6711 border-top: 1px solid #666;
6712 box-shadow:
6713 0 1.5px 1.5px -1.5px #bbb inset,
6714 0 1px 1px -1px #777 inset;
6717 #content > .comment-thread .comment-meta a.date:focus,
6718 #content > .comment-thread .comment-meta a.permalink:focus {
6719 color: #ccc;
6720 outline: 2px dotted #ccc;
6721 position: relative;
6722 background-color: #444;
6724 #content > .comment-thread .comment-meta a.date:focus {
6725 padding: 0 6px;
6726 left: -6px;
6728 #content > .comment-thread .comment-meta a.date:focus + * {
6729 margin-left: -12px;
6731 #content > .comment-thread .comment-meta a.permalink:focus {
6732 padding: 0 5px;
6733 left: -5px;
6735 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6736 margin-left: -10px;
6738 .comment-item {
6739 border: 1px solid transparent;
6740 border-left-color: #666;
6741 box-shadow:
6742 1.5px 0 1.5px -1.5px #bbb inset,
6743 1px 0 1px -1px #777 inset;
6745 @-moz-document url-prefix() {
6746 .comment-item {
6747 box-shadow:
6748 1.5px 0 1.5px -1px #bbb inset,
6749 1px 0 1px -1px #777 inset;
6753 a.comment-parent-link::after {
6754 display: none;
6756 a.comment-parent-link::before {
6757 padding: 2px 3px 0 4px;
6760 /*================================*/
6761 /* DEEP COMMENT THREAD COLLAPSING */
6762 /*================================*/
6764 .comment-item input[id^="expand"] + label::after {
6765 color: #f60;
6766 font-weight: 600;
6768 .comment-item input[id^="expand"] + label:hover::after {
6769 color: #c00;
6771 .comment-item input[id^="expand"] + label:active::after,
6772 .comment-item input[id^="expand"] + label:focus::after{
6773 color: #c00;
6775 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6776 border-width: 1px 0 0 0;
6779 /*==============*/
6780 /* COMMENT-META */
6781 /*==============*/
6783 .comment-meta a {
6784 color: #222;
6786 .comment-meta .author {
6787 font-weight: 300;
6788 font-size: 1.125em;
6789 color: #444;
6790 font-weight: normal;
6792 .comment-item .author:not(.redacted).original-poster::after {
6793 opacity: 0.8;
6796 .comment-item .karma.active-controls::after,
6797 .comment-item .karma .karma-value::after,
6798 .post .karma.active-controls::after,
6799 .post .karma .karma-value::after,
6800 .author::before {
6801 background-color: #888;
6802 color: #ccc;
6803 border-radius: 4px;
6804 box-shadow: 0 0 0 1px #bbb inset;
6806 .comment-item .karma.active-controls::after,
6807 .post .karma.active-controls::after {
6808 padding: 6px;
6809 bottom: -46px;
6811 .comment-item .karma .karma-value::after,
6812 .post .karma .karma-value::after {
6813 padding: 2px 8px;
6814 top: -28px;
6815 min-width: 64px;
6818 /*====================*/
6819 /* ANTI-KIBITZER MODE */
6820 /*====================*/
6822 .author.redacted,
6823 .inline-author.redacted {
6824 opacity: 0.8;
6825 font-weight: 300;
6828 .karma-value.redacted {
6829 opacity: 0.6;
6832 .link-post-domain.redacted {
6833 opacity: 0.6;
6836 /*===========================*/
6837 /* COMMENT THREAD NAVIGATION */
6838 /*===========================*/
6840 div.comment-parent-link {
6841 font-weight: 400;
6843 a.comment-parent-link {
6844 font-weight: 300;
6846 a.comment-parent-link::before {
6847 color: #666;
6849 a.comment-parent-link:hover::before {
6850 color: #aaa;
6853 div.comment-child-links {
6854 font-weight: 400;
6856 div.comment-child-links a {
6857 font-weight: 300;
6859 .comment-child-link::before {
6860 color: #666;
6863 .comment-item-highlight {
6864 box-shadow:
6865 0 0 2px #e7b200,
6866 0 0 3px #e7b200,
6867 0 0 5px #e7b200,
6868 0 0 7px #e7b200,
6869 0 0 10px #e7b200;
6870 border: 1px solid #e7b200;
6872 .comment-item-highlight-faint {
6873 box-shadow:
6874 0 0 2px #f8e7b5,
6875 0 0 3px #f8e7b5,
6876 0 0 5px #f8e7b5,
6877 0 0 7px #f8e7b5,
6878 0 0 10px #f8e7b5;
6879 border: 1px solid #f8e7b5;
6882 .comment-popup {
6883 background-color: #949494;
6886 /*=======================*/
6887 /* COMMENTS COMPACT VIEW */
6888 /*=======================*/
6890 #comments-list-mode-selector button {
6891 box-shadow:
6892 0 0 0 4px #888 inset,
6893 0 0 0 5px #ccc inset;
6895 #comments-list-mode-selector button:hover,
6896 #comments-list-mode-selector button.selected {
6897 box-shadow:
6898 0 0 0 1px #888 inset,
6899 0 0 0 2px #ccc inset,
6900 0 0 0 4px #888 inset,
6901 0 0 0 5px #ccc inset;
6903 #content.compact > .comment-thread .comment-item::after {
6904 color: #ccc;
6905 background: linear-gradient(to right, transparent 0%, #888 50%, #888 100%);
6908 @media only screen and (hover: hover) {
6909 #content.compact > .comment-thread .comment-item:hover .comment,
6910 #content.compact > .comment-thread .comment-item.expanded .comment {
6911 background-color: #999;
6912 outline: 3px solid #ccc;
6914 #content.compact > .comment-thread .comment-item:hover .comment::before,
6915 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6916 background-color: #999;
6917 box-shadow:
6918 0 0 3px #999,
6919 0 0 5px #999,
6920 0 0 7px #999,
6921 0 0 10px #999,
6922 0 0 20px #999,
6923 0 0 30px #999,
6924 0 0 40px #999;
6927 @media only screen and (hover: none) {
6928 #content.compact > .comment-thread.expanded .comment-item .comment {
6929 background-color: #999;
6930 outline: 3px solid #ccc;
6932 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6933 background-color: #999;
6934 box-shadow:
6935 0 0 3px #999,
6936 0 0 5px #999,
6937 0 0 7px #999,
6938 0 0 10px #999,
6939 0 0 20px #999,
6940 0 0 30px #999,
6941 0 0 40px #999;
6945 #content.user-page.compact > h1.listing {
6946 margin-top: 0.5rem;
6948 #content.user-page.compact > h1.listing + .post-meta {
6949 margin-bottom: 0.5rem;
6952 /*===========================*/
6953 /* HIGHLIGHTING NEW COMMENTS */
6954 /*===========================*/
6956 .new-comment::before {
6957 display: none;
6959 .new-comment {
6960 border: 1px solid #e00;
6961 box-shadow:
6962 0 0 1px #f00,
6963 0 0 1px #f00 inset;
6966 /*=================================*/
6967 /* COMMENT THREAD MINIMIZE BUTTONS */
6968 /*=================================*/
6970 .comment-minimize-button {
6971 color: #777;
6973 .comment-minimize-button:hover {
6974 color: #aaa;
6975 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6977 .comment-minimize-button::after {
6978 font-family: 'Proxima Nova';
6979 color: #777;
6981 .comment-minimize-button.maximized::after {
6982 color: #ccc;
6985 /*====================*/
6986 /* COMMENT PERMALINKS */
6987 /*====================*/
6988 /*==================*/
6989 /* COMMENT LW LINKS */
6990 /*==================*/
6992 .comment-meta .permalink::before,
6993 .comment-meta .lw2-link::before,
6994 .individual-thread-page a.comment-parent-link:empty::before {
6995 opacity: 1.0;
6996 filter: saturate(10%) contrast(20%);
6999 /*=================================*/
7000 /* INDIVIDUAL COMMENT THREAD PAGES */
7001 /*=================================*/
7003 .individual-thread-page > h1 {
7004 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
7005 font-weight: 200;
7008 /*==============*/
7009 /* VOTE BUTTONS */
7010 /*==============*/
7012 .upvote,
7013 .downvote {
7014 color: #666;
7015 position: relative;
7017 .vote::before {
7018 position: relative;
7019 z-index: 1;
7021 .upvote::before {
7022 content: "\F077";
7023 top: 1px;
7025 .downvote::before {
7026 content: "\F078";
7027 position: relative;
7028 left: -2px;
7030 .upvote:hover,
7031 .upvote.selected {
7032 text-shadow:
7033 0 0 0.5px #fff,
7034 0 0 8px #0f0;
7036 .downvote:hover,
7037 .downvote.selected {
7038 text-shadow:
7039 0 0 0.5px #fff,
7040 0 0 8px #f00;
7043 .vote::after {
7044 position: absolute;
7045 color: transparent;
7047 .vote:hover::after {
7048 color: #888;
7050 .vote:not(:hover)::after {
7051 text-shadow: none;
7053 .karma.waiting .vote.big-vote::after {
7054 color: #888;
7056 .vote.big-vote::after,
7057 .vote:not(.big-vote).clicked-twice::after {
7058 color: inherit;
7060 .karma:not(.waiting) .vote.clicked-once::after {
7061 color: #666;
7064 .upvote::after {
7065 content: "\F325";
7066 left: 7px;
7067 bottom: 4px;
7069 .downvote::after {
7070 content: "\F322";
7071 left: 5px;
7072 top: 4px;
7074 @-moz-document url-prefix() {
7075 .upvote::after {
7076 bottom: 3px;
7077 left: 8px;
7079 .downvote::after {
7080 top: 3px;
7081 left: 6px;
7085 /*===========================*/
7086 /* COMMENTING AND POSTING UI */
7087 /*===========================*/
7089 .comment-controls .cancel-comment-button {
7090 font-weight: normal;
7091 color: #f00;
7093 .comment-controls .cancel-comment-button:hover {
7094 color: #f00;
7095 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7098 .posting-controls .action-button,
7099 .posting-controls input[type='submit'] {
7100 font-weight: normal;
7102 .posting-controls .action-button:hover,
7103 .posting-controls input[type='submit']:hover {
7104 text-decoration: underline;
7105 color: #444;
7108 .comment-controls .delete-button,
7109 .comment-controls .retract-button {
7110 color: #900;
7112 .comment-controls .edit-button,
7113 .comment-controls .unretract-button {
7114 color: #070;
7116 .comment-controls .action-button:hover {
7117 color: #bbb;
7118 text-decoration: none;
7121 .edit-post-link,
7122 .edit-post-link:visited {
7123 color: #090;
7126 .posting-controls textarea {
7127 font-weight: 300;
7128 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
7129 color: #000;
7130 background-color: transparent;
7131 border-color: #999;
7132 text-shadow:
7133 0px 0px 1px #777,
7134 0.5px 0.5px 1px #aaa,
7135 0.5px 0.5px 1px #bbb;
7137 @-moz-document url-prefix() {
7138 .posting-controls textarea {
7139 font-weight: 400;
7142 .posting-controls textarea:focus {
7143 border-color: #ccc;
7146 /*= Scroll bars =*/
7148 .posting-controls textarea::-webkit-scrollbar {
7149 width: 16px;
7150 background-color: transparent;
7152 .posting-controls textarea::-webkit-scrollbar-track {
7153 border-left: 1px solid #999;
7155 .posting-controls textarea:focus::-webkit-scrollbar-track {
7156 border-left: 1px solid #999;
7158 .posting-controls textarea::-webkit-scrollbar-thumb {
7159 background-color: #999;
7160 box-shadow: 0 0 0 1px #888 inset;
7161 border-left: 1px solid #999;
7163 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7164 border-left: 1px solid #999;
7165 background-color: #ccc;
7166 box-shadow: 0 0 0 1px #888 inset;
7169 /* GUIEdit buttons */
7171 .guiedit-buttons-container {
7172 background-color: #888;
7173 box-shadow: 0 -1px 0 0 #999 inset;
7175 .textarea-container:focus-within .guiedit-buttons-container {
7176 box-shadow: 0 -1px 0 0 #ccc inset;
7179 button.guiedit {
7180 color: #444;
7181 background-color: transparent;
7182 font-family: Font Awesome, Source Sans Pro, Trebuchet MS, Helvetica, Arial, Verdana, sans-serif;
7184 button.guiedit::after {
7185 font-family: Proxima Nova;
7186 font-weight: 300;
7187 color: #444;
7188 top: 2px;
7189 height: 25px;
7191 button.guiedit:hover {
7192 color: #ccc;
7195 /* Markdown hints */
7197 #markdown-hints-checkbox + label {
7198 color: #444;
7200 #markdown-hints-checkbox + label:hover {
7201 text-decoration: underline;
7203 #markdown-hints {
7204 background-color: #888;
7205 border: 1px solid #ccc;
7208 /*================*/
7209 /* EDIT POST FORM */
7210 /*================*/
7212 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7213 border-radius: 3px;
7214 border: 1px solid #999;
7215 color: #aaa;
7217 @media only screen and (hover:hover) {
7218 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
7219 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
7220 text-decoration: underline;
7222 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
7223 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
7224 border-color: #ccc;
7227 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7228 content: "\F00C";
7230 #edit-post-form input[type='radio'] + label {
7231 color: #444;
7232 border-color: #999;
7234 #edit-post-form input[type='radio'][value='all'] + label {
7235 border-radius: 8px 0 0 8px;
7236 border-width: 1px;
7238 #edit-post-form input[type='radio'][value='drafts'] + label {
7239 border-radius: 0 8px 8px 0;
7241 #edit-post-form input[type='radio'] + label:hover,
7242 #edit-post-form input[type='radio']:focus + label,
7243 #edit-post-form input[type='radio']:checked + label {
7244 background-color: #999;
7246 #edit-post-form input[type='radio'] + label:hover,
7247 #edit-post-form input[type='radio']:focus + label {
7248 color: #000;
7250 #edit-post-form input[type='radio']:active + label,
7251 #edit-post-form input[type='radio']:checked + label {
7252 color: #fff;
7255 /*=======*/
7256 /* LINKS */
7257 /*=======*/
7260 text-decoration: none;
7261 color: #f60;
7263 a:hover {
7264 text-decoration: underline;
7267 /*=========*/
7268 /* BUTTONS */
7269 /*=========*/
7271 button,
7272 input[type='submit'] {
7273 color: #444;
7274 font-weight: normal;
7277 .button,
7278 .button:visited {
7279 color: #444;
7282 button:hover,
7283 input[type='submit']:hover,
7284 button:focus,
7285 input[type='submit']:focus {
7286 color: #aaa;
7288 input[type='submit']:hover,
7289 input[type='submit']:focus {
7290 text-decoration: underline;
7292 button:active,
7293 input[type='submit']:active {
7294 color: #ccc;
7295 transform: scale(0.9);
7297 .button:hover {
7298 color: #aaa;
7300 .button:active {
7301 transform: scale(0.9);
7303 .button:focus:not(:hover) {
7304 transform: none;
7306 @-moz-document url-prefix() {
7307 .button:active {
7308 transform: none;
7312 /*==========*/
7313 /* HEADINGS */
7314 /*==========*/
7316 .body-text h1,
7317 .body-text h2,
7318 .body-text h3,
7319 .body-text h4,
7320 .body-text h5,
7321 .body-text h6 {
7322 font-weight: 100;
7323 text-shadow:
7324 0px 0px 1px #777,
7325 0.5px 0.5px 1px #aaa,
7326 0.5px 0.5px 1px #bbb;
7328 .post-body h1 strong,
7329 .post-body h2 strong,
7330 .post-body h3 strong,
7331 .post-body h4 strong,
7332 .post-body h5 strong,
7333 .post-body h6 strong {
7334 font-weight: normal;
7336 .body-text h6 {
7337 color: #555;
7339 .body-text h1 {
7340 padding-bottom: 2px;
7341 border-bottom-color: #777;
7343 .post-body h2 {
7344 border-bottom: 1px dotted #ccc;
7347 /*========*/
7348 /* QUOTES */
7349 /*========*/
7351 blockquote {
7352 border-left: 5px solid #777;
7355 /*========*/
7356 /* IMAGES */
7357 /*========*/
7359 #content img,
7360 #content figure.image img {
7361 border: 1px solid #666;
7363 #content figure img {
7364 border: 1px solid #000;
7366 #content img[src$='.svg'],
7367 #content figure img[src$='.svg'] {
7368 border: none;
7370 #content img[style^='float'] {
7371 border: 1px solid transparent;
7374 /*========*/
7375 /* TABLES */
7376 /*========*/
7378 #content:not(.tag-index-page) .body-text table,
7379 #content:not(.tag-index-page) .body-text table th,
7380 #content:not(.tag-index-page) .body-text table td {
7381 border: 1px solid #ccc;
7384 /*======*/
7385 /* MISC */
7386 /*======*/
7388 hr {
7389 border-bottom: 1px solid #999;
7392 code,
7393 pre {
7394 font-family: 'Tired of Courier', Courier, Courier New, monospace;
7395 font-size: 0.9375em;
7398 pre {
7399 border: 1px solid #444;
7400 box-shadow:
7401 0px 0px 1px #777,
7402 1px 1px 1px #aaa inset,
7403 1px 1px 1px #bbb;
7406 input[type='text'],
7407 input[type='search'],
7408 input[type='password'] {
7409 border: 1px solid #999;
7410 color: #000;
7411 background-color: transparent;
7413 input[type='text']:focus,
7414 input[type='search']:focus,
7415 input[type='password']:focus {
7416 border: 1px solid #ccc;
7419 select {
7420 color: #000;
7423 .frac {
7424 padding-left: 2px;
7425 font-feature-settings: 'lnum';
7426 font-size: 0.95em;
7428 .frac sup {
7429 position: relative;
7430 left: -1px;
7432 .frac sub {
7433 position: relative;
7434 left: -0.5px;
7437 .body-text *::selection,
7438 textarea::selection,
7439 input::selection {
7440 background-color: #d8d8d8;
7443 /*============*/
7444 /* ABOUT PAGE */
7445 /*============*/
7447 .about-page mark {
7448 background-color: #e6e6e6;
7449 text-decoration: none;
7450 box-shadow:
7451 0 -1px 0 0 #000 inset,
7452 0 -3px 1px -2px #000 inset;
7453 padding: 0 1px;
7456 #content.about-page .accesskey-table {
7457 font-family: 'Proxima Nova';
7458 border-color: #ddd;
7461 #content.about-page img {
7462 border: 1px solid #000;
7465 /*========================*/
7466 /* QUALIFIED HYPERLINKING */
7467 /*========================*/
7469 #aux-about-link a {
7470 color: #444;
7472 #aux-about-link a:hover {
7473 opacity: 1.0;
7474 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7477 .qualified-linking label:hover {
7478 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7481 .qualified-linking-toolbar {
7482 border: 1px solid #000;
7483 background-color: #777;
7485 .qualified-linking-toolbar a {
7486 border: 1px solid #888;
7487 border-radius: 4px;
7488 color: #444;
7490 .qualified-linking-toolbar a:hover {
7491 border: 1px solid #999;
7492 text-decoration: none;
7493 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7495 .qualified-linking label::after {
7496 background-color: #888;
7497 opacity: 0.8;
7500 /*======*/
7501 /* MATH */
7502 /*======*/
7504 .mathjax-block-container::-webkit-scrollbar {
7505 height: 12px;
7506 background-color: #f6f6ff;
7507 border-radius: 6px;
7508 border: 1px solid #ddf;
7510 .mathjax-block-container::-webkit-scrollbar-thumb {
7511 background-color: #dde;
7512 border-radius: 6px;
7513 border: 1px solid #cce;
7515 .mathjax-inline-container::-webkit-scrollbar {
7516 height: 8px;
7517 background-color: #f6f6ff;
7518 border-radius: 4px;
7519 border: 1px solid #ddf;
7521 .mathjax-inline-container::-webkit-scrollbar-thumb {
7522 background-color: #dde;
7523 border-radius: 4px;
7524 border: 1px solid #cce;
7527 /*=================*/
7528 /* ALIGNMENT FORUM */
7529 /*=================*/
7531 #content.alignment-forum-index-page::before {
7532 background-color: #878a9f;
7534 #content.alignment-forum-index-page::after {
7535 font-family: "Concourse SmallCaps";
7536 font-weight: 600;
7537 background-color: #222d4b;
7538 color: transparent;
7539 -webkit-background-clip: text;
7540 text-shadow:
7541 rgba(136,136,136,0.5) 0px 3px 3px;
7543 @media only screen and (hover: hover) {
7544 #content.alignment-forum-index-page h1.listing a:hover,
7545 #content.alignment-forum-index-page h1.listing a:focus {
7546 background-color: rgba(135,138,159,0.85);
7550 /*====================*/
7551 /* FOR NARROW SCREENS */
7552 /*====================*/
7554 @media only screen and (max-width: 1440px) {
7555 #hns-date-picker {
7556 background-color: #888;
7557 bottom: 61px;
7558 opacity: 1.0;
7559 right: -77px;
7561 #hns-date-picker::before {
7562 display: none;
7565 @media only screen and (max-width: 1160px) {
7566 #hns-date-picker {
7567 bottom: 204px;
7568 right: -30px;
7570 #theme-tweaker-toggle {
7571 left: -19px;
7573 #quick-nav-ui,
7574 #new-comment-nav-ui,
7575 #new-comment-nav-ui + #hns-date-picker {
7576 opacity: 1.0;
7579 @media only screen and (max-width: 1080px) {
7580 #text-size-adjustment-ui button {
7581 border: 1px solid #999;
7582 padding: 0 0 0 1px;
7583 border-radius: 50%;
7584 box-shadow:
7585 0 0 6px #999 inset,
7586 0 0 0 1px transparent;
7588 #hns-date-picker {
7589 right: -18px;
7592 @media only screen and (max-width: 1040px) {
7593 #hns-date-picker {
7594 right: -13px;
7597 @media only screen and (max-width: 1020px) {
7598 #hns-date-picker {
7599 right: 15px;
7603 /*========*/
7604 /* MOBILE */
7605 /*========*/
7607 /*******************************************************/
7608 @media not screen and (hover:hover) and (pointer:fine) {
7609 /*******************************************************/
7610 #ui-elements-container > div[id$='-ui-toggle'] button,
7611 #theme-selector .theme-selector-close-button {
7612 color: #444;
7613 text-shadow:
7614 0 0 1px #999,
7615 0 0 3px #999,
7616 0 0 5px #999,
7617 0 0 10px #999,
7618 0 0 20px #999,
7619 0 0 30px #999;
7622 #theme-selector {
7623 background-color: #888;
7624 box-shadow:
7625 0 0 0 1px #444,
7626 0 0 1px 3px #999,
7627 0 0 3px 3px #999,
7628 0 0 5px 3px #999,
7629 0 0 10px 3px #999,
7630 0 0 20px 3px #999;
7631 border-radius: 12px;
7633 #theme-selector::before {
7634 color: #222;
7635 font-weight: 300;
7636 text-shadow:
7637 0px 0px 1px #777,
7638 0.5px 0.5px 1px #aaa,
7639 0.5px 0.5px 1px #bbb;
7641 #theme-selector button {
7642 border-radius: 10px;
7644 #theme-selector button::after {
7645 color: #444;
7646 max-width: calc(100% - 3.5em);
7647 overflow: hidden;
7648 text-overflow: ellipsis;
7650 #theme-selector button.selected::after {
7651 color: #000;
7652 text-shadow:
7653 0 -1px 0 #fff,
7654 0 0.5px 0.5px #000;
7657 #quick-nav-ui {
7658 background-color: #999;
7660 #quick-nav-ui a {
7661 background-color: #888;
7662 box-shadow: 0 0 0 1px #444;
7663 color: #444;
7665 #quick-nav-ui,
7666 #new-comment-nav-ui,
7667 #hns-date-picker {
7668 box-shadow:
7669 0 0 1px 3px #999,
7670 0 0 3px 3px #999,
7671 0 0 5px 3px #999,
7672 0 0 10px 3px #999,
7673 0 0 20px 3px #999;
7675 #quick-nav-ui a::after,
7676 #new-comment-nav-ui::before {
7677 font-family: 'Proxima Nova';
7678 font-weight: bold;
7679 box-shadow:
7680 0 0 1px 0 #999,
7681 0 0 3px 0 #999,
7682 0 0 5px 0 #999;
7683 background-color: #999;
7684 border-radius: 4px;
7686 #quick-nav-ui,
7687 #new-comment-nav-ui {
7688 border-radius: 8px;
7690 #new-comment-nav-ui {
7691 background-color: #888;
7692 border: 1px solid #444;
7694 #new-comment-nav-ui::before {
7695 color: #444;
7696 font-weight: bold;
7698 #new-comment-nav-ui .new-comments-count,
7699 #new-comment-nav-ui .new-comments-count::after {
7700 color: #444;
7702 #new-comment-nav-ui .new-comment-sequential-nav-button {
7703 box-shadow: 0 0 0 1px #444;
7704 color: #444;
7706 #new-comment-nav-ui .new-comments-count {
7707 background-color: inherit;
7708 box-shadow: 0 -1px 0 0 #444;
7710 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7711 color: #999;
7713 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7714 border-radius: 7px 0 0 7px;
7716 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7717 border-radius: 0 7px 7px 0;
7719 #new-comment-nav-ui button::after {
7720 font-family: 'Proxima Nova';
7723 #hns-date-picker.engaged {
7724 bottom: 124px;
7725 right: 61px;
7726 border: 1px solid #444;
7728 #hns-date-picker span,
7729 #hns-date-picker input {
7730 color: #444;
7733 /*****************************************/
7734 @media only screen and (max-width: 900px) {
7735 /*****************************************/
7736 h1.listing + .post-meta .post-section::before {
7737 position: unset;
7740 .nav-bar-top:not(#primary-bar) .nav-inner {
7741 font-size: 1em;
7743 .nav-bar-top:not(#primary-bar) .nav-item:not(#nav-item-search) .nav-inner {
7744 padding: 6px 10px;
7747 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7748 background-color: #ccc;
7751 .comment-item .comment-item {
7752 margin: 0.75em 0 4px 6px;
7754 .comment-item .comment-item + .comment-item {
7755 margin: 1.5em 0 4px 6px;
7758 .comment-controls .cancel-comment-button::before {
7759 text-shadow:
7760 0 0 1px #fff,
7761 0 0 3px #fff;
7764 .sublevel-nav:not(.sort) .sublevel-item,
7765 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7766 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7767 border-radius: 8px;
7768 border-width: 1px;
7769 margin: 2px;
7771 /*****************************************/
7772 } @media only screen and (max-width: 720px) {
7773 /*****************************************/
7774 /*******************************************/
7775 } @media only screen and (max-width: 520px) {
7776 /*******************************************/
7777 h1.listing {
7778 font-size: 1.25rem;
7779 margin: 18px 6px 4px 6px;
7780 max-width: calc(100% - 12px);
7782 h1.listing + .post-meta {
7783 margin: 4px 6px;
7785 h1.listing + .post-meta > * {
7786 line-height: 1.5;
7788 h1.listing .link-post-link {
7789 top: 3px;
7792 #content.compact > .comment-thread .comment-item {
7793 max-height: 105px;
7796 .textarea-container:focus-within textarea {
7797 background-color: #888;
7799 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7800 border: 1px solid transparent;
7801 padding: 6px;
7803 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7804 box-shadow:
7805 0 0 0 1px #ccc,
7806 0 0 0 2px #888,
7807 0 0 0 3px #ccc;
7808 color: #ccc;
7809 font-weight: 600;
7811 .textarea-container:focus-within .guiedit-buttons-container {
7812 background-color: #888;
7813 border-top: 1px solid #ddf;
7815 #content.conversation-page .textarea-container:focus-within::after {
7816 background-color: #888;
7818 .textarea-container:focus-within button.guiedit {
7819 border: 1px solid transparent;
7821 #markdown-hints::after {
7822 color: #0f0;
7825 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7826 top: 2px;
7828 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7829 top: 1px;
7834 /*************/
7835 /* ACCORDIUS */
7836 /*************/
7838 /*======*/
7839 /* TAGS */
7840 /*======*/
7842 #tags {
7843 order: 12;
7844 display: flex;
7845 flex-basis: 100%;
7846 justify-content: center;
7847 margin: 0;
7848 flex-flow: row wrap;
7849 align-items: flex-start;
7852 /*===================*/
7853 /* ULTRAMODERN THEME */
7854 /*===================*/
7856 /*++++++*/
7857 /* TAGS */
7858 /*++++++*/
7860 #tags {
7861 padding: 0.5em;
7862 align-items: center;
7864 #tags::before {
7865 content: "\F02C";
7866 font-family: Font Awesome;
7867 font-weight: 400;
7868 font-size: 0.875em;
7869 margin: 0 0.5em 0 0;
7870 opacity: 0.6;
7872 #tags a {
7873 margin: 0 0.375em 0 0;
7875 #tags a:not(:last-of-type)::after {
7876 content: ","