Post-nav layout tweak
[lw2-viewer.git] / www / css / style.mac.css
bloba859d9ae39bf66f995550167c717ae4e7d57d4b9
2 /***************/
3 /* BASE LAYOUT */
4 /***************/
6 html {
7 box-sizing: border-box;
8 font-size: 16px;
10 *, *::before, *::after {
11 box-sizing: inherit;
14 /*=------=*/
15 /*= Body =*/
16 /*=------=*/
18 body {
19 padding: 0;
20 margin: 0;
22 body::before {
23 background-color: inherit;
24 position: fixed;
25 width: 100%;
26 height: 100%;
29 body.no-scroll {
30 overflow-y: scroll;
31 position: fixed;
32 width: 100%;
35 /*=----------------------------=*/
36 /*= Immediate children of body =*/
37 /*=----------------------------=*/
39 body > * {
40 width: calc(100% - 300px);
41 min-width: 900px;
42 max-width: 900px;
44 #content {
45 margin: 0 auto;
46 padding: 0 30px;
47 position: relative;
48 overflow: visible;
49 display: grid;
50 grid-template-columns: repeat(3, 1fr);
51 grid-auto-flow: dense;
53 #content::before {
54 content: "";
55 display: block;
56 position: absolute;
57 top: 0;
58 left: 0;
59 width: 100%;
60 height: 100%;
61 z-index: -1;
62 pointer-events: none;
65 /*=---------=*/
66 /*= Content =*/
67 /*=---------=*/
69 #content > * {
70 grid-column: 1 / span 3;
73 /*=----------------------=*/
74 /*= Floating UI elements =*/
75 /*=----------------------=*/
77 #ui-elements-container {
78 position: fixed;
79 height: 100vh;
80 top: 0;
81 left: 0;
82 right: 0;
83 margin: auto;
84 z-index: 10000;
85 pointer-events: none;
87 #ui-elements-container > * {
88 pointer-events: auto;
91 /*=----------------=*/
92 /*= Images overlay =*/
93 /*=----------------=*/
94 /* (To exclude images in posts from theme tweaks) */
96 #images-overlay {
97 position: absolute;
98 z-index: 1;
99 left: 0;
100 right: 0;
101 margin: auto;
104 /***********/
105 /* NAV BAR */
106 /***********/
108 .nav-bar {
109 margin: 0 -30px;
111 .nav-bar {
112 display: flex;
115 /*=---------------=*/
116 /*= Nav bar items =*/
117 /*=---------------=*/
119 .nav-item {
120 flex: 1 1 auto;
122 .nav-item * {
123 text-overflow: ellipsis;
124 white-space: nowrap;
125 overflow: hidden;
127 .nav-inner {
128 padding: 12px 30px;
129 text-align: center;
130 display: block;
131 position: relative;
133 #secondary-bar .nav-inner {
134 padding: 4px 0;
137 #nav-item-sequences .nav-inner::before {
138 font-family: "Font Awesome", "Font Awesome 5 Free";
139 content: "\F5DB";
141 @media only screen and (min-width: 901px) {
142 #nav-item-about .nav-inner {
143 margin-right: 0.5em;
145 #nav-item-sequences .nav-inner::before {
146 font-size: 1rem;
147 display: block;
149 #secondary-bar #nav-item-sequences .nav-inner {
150 font-size: 0;
151 line-height: 1.4;
155 /*=------------=*/
156 /*= Bottom bar =*/
157 /*=------------=*/
159 h1.listing ~ #bottom-bar {
160 margin-top: 1.25em;
162 #bottom-bar .nav-item {
163 flex: 1 1 0;
166 /*=-----------------=*/
167 /*= Accesskey hints =*/
168 /*=-----------------=*/
170 .nav-inner::after {
171 content: attr(accesskey);
172 display: none;
175 /*=---------------=*/
176 /*= Pagination UI =*/
177 /*=---------------=*/
179 #bottom-bar .nav-item a::before,
180 #top-nav-bar a::before {
181 font-family: "Font Awesome", "Font Awesome 5 Free";
182 font-weight: 900;
183 font-size: 0.8em;
184 position: relative;
185 bottom: 1px;
186 margin-right: 0.5em;
188 #bottom-bar #nav-item-first a::before,
189 #top-nav-bar a.nav-item-first::before {
190 content: "\F33e";
192 #bottom-bar #nav-item-top a::before {
193 content: "\F062";
195 #bottom-bar #nav-item-prev a::before,
196 #top-nav-bar a.nav-item-prev::before {
197 content: "\F060";
199 #bottom-bar #nav-item-next a::before,
200 #top-nav-bar a.nav-item-next::before {
201 content: "\F061";
203 #bottom-bar #nav-item-last a::before,
204 #top-nav-bar a.nav-item-last::before {
205 content: "\F340";
207 #bottom-bar #nav-item-next a::before {
208 margin-left: -2em;
209 margin-right: 0;
210 left: 3.8em;
212 #bottom-bar #nav-item-last a::before {
213 margin-left: -1.8em;
214 margin-right: 0;
215 left: 3.4em;
218 /*= Hover tooltips =*/
220 #top-nav-bar a {
221 position: relative;
223 #top-nav-bar a::after {
224 bottom: calc(100% - 3px);
225 content: attr(data-target-page);
227 #bottom-bar a:not([href='#top'])::after {
228 content: "Page " attr(data-target-page);
229 top: unset;
230 left: 0;
231 bottom: 4px;
233 #top-nav-bar a::after,
234 #bottom-bar a:not([href='#top'])::after {
235 display: block;
236 position: absolute;
237 font-size: 0.75rem;
238 width: 100%;
239 line-height: 1;
240 visibility: hidden;
242 #top-nav-bar a:hover::after,
243 #bottom-bar a:hover::after {
244 visibility: visible;
247 /*=-----------------------=*/
248 /*= Decorative bottom bar =*/
249 /*=-----------------------=*/
250 /* (On short pages with no pagination) */
252 #bottom-bar.decorative {
253 position: relative;
255 #bottom-bar.decorative .nav-item {
256 display: none;
259 /*=------------=*/
260 /*= Search tab =*/
261 /*=------------=*/
263 #nav-item-search {
264 flex: 4 1 auto;
266 #nav-item-search form::before {
267 content: "\F002";
268 font-family: "Font Awesome", "Font Awesome 5 Free";
269 font-weight: 900;
270 display: inline-block;
271 vertical-align: top;
272 height: 23px;
273 width: 23px;
275 #nav-item-search input {
276 height: 23px;
277 width: calc(95% - 80px);
278 padding: 1px 4px;
280 #nav-item-search button {
281 height: 21px;
284 /*=-----------=*/
285 /*= Login tab =*/
286 /*=-----------=*/
288 #nav-item-login {
289 position: relative;
290 padding-right: 0.5em;
293 /*******************/
294 /* INBOX INDICATOR */
295 /*******************/
297 #inbox-indicator {
298 position: absolute;
299 top: 1px;
300 right: 0;
301 height: 100%;
302 visibility: hidden;
304 #inbox-indicator::before {
305 content: "\F0E0";
306 font-family: "Font Awesome", "Font Awesome 5 Free";
307 color: #bbb;
308 font-size: 1.1875rem;
309 position: absolute;
310 height: 100%;
311 right: 0;
312 top: 0;
313 padding: 0 0.45em;
314 visibility: visible;
315 font-weight: 900;
317 #inbox-indicator.new-messages::before {
318 color: #f00;
319 text-shadow:
320 0 0 1px #777,
321 0.5px 0.5px 1px #777;
323 a#inbox-indicator:hover::before {
324 color: #fff;
325 text-shadow:
326 0 0 1px #000,
327 0 0 2px #000,
328 0 0 4px #000,
329 0 0 1px #777,
330 0.5px 0.5px 1px #777;
332 a#inbox-indicator.new-messages:hover::before {
333 text-shadow:
334 0 0 1px #f00,
335 0 0 2px #f00,
336 0 0 4px #f00,
337 0 0 1px #777,
338 0.5px 0.5px 1px #777;
341 /****************/
342 /* PAGE TOOLBAR */
343 /****************/
345 .page-toolbar {
346 font-size: 0.9em;
347 line-height: 1.8;
348 text-align: right;
349 margin-right: -20px;
351 #content > .page-toolbar {
352 grid-column: 3;
354 #content.user-page > .page-toolbar {
355 grid-column: 2 / span 2;
358 /*=--------------------------=*/
359 /*= Page toolbar items (all) =*/
360 /*=--------------------------=*/
362 .page-toolbar > * {
363 display: inline-block;
364 margin-left: 1.5em;
366 .page-toolbar .button::before {
367 font-family: "Font Awesome", "Font Awesome 5 Free";
368 font-size: 0.9em;
369 padding-right: 0.3em;
372 /*=-------------------------------=*/
373 /*= Page toolbar items (specific) =*/
374 /*=-------------------------------=*/
376 .new-post::before {
377 content: '\F067';
378 font-weight: 900;
380 .new-private-message::before {
381 content: '\F075';
382 font-weight: 400;
384 .logout-button::before {
385 content: '\F2F5';
386 font-weight: 900;
388 .ignore-button::before {
389 content: "\F070";
390 font-weight: 400;
392 .unignore-button::before {
393 content: "\F06E";
394 font-weight: 400;
396 .rss::before {
397 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
398 display: inline-block;
399 width: 1em;
400 padding-right: 0.2em;
401 position: relative;
402 top: 1px;
405 /*********************/
406 /* TOP PAGINATION UI */
407 /*********************/
409 #top-nav-bar {
410 grid-column: 2;
411 margin: 0.25em 0 0 0;
412 padding: 0.75em 0 0 0;
413 text-align: center;
414 font-size: 1.25em;
415 display: flex;
416 justify-content: center;
418 #top-nav-bar a {
419 line-height: 1;
421 #top-nav-bar a.disabled {
422 pointer-events: none;
423 visibility: hidden;
425 #top-nav-bar .page-number {
426 position: relative;
427 display: inline-block;
428 width: 1.5em;
430 #top-nav-bar .page-number-label {
431 position: absolute;
432 font-size: 0.5em;
433 text-transform: uppercase;
434 width: 100%;
435 bottom: 90%;
436 left: 0;
438 #top-nav-bar a::before {
439 margin: 0.5em;
440 display: inline-block;
443 /****************/
444 /* SUBLEVEL NAV */
445 /****************/
447 .sublevel-nav {
448 text-align: center;
449 display: flex;
450 justify-content: center;
451 margin: 1em 0 0 0;
453 #content > .sublevel-nav:not(.sort) {
454 grid-row: 5;
455 grid-column: 2;
456 align-self: start;
458 #content.sequences-page > .sublevel-nav {
459 grid-row: unset;
461 .sublevel-nav .sublevel-item {
462 flex: 0 0 6em;
463 padding: 0.125em 0.5em;
464 font-size: 1.125rem;
466 .sublevel-nav .sublevel-item:active {
467 transform: none;
469 .sublevel-nav .sublevel-item.selected {
470 cursor: default;
473 /***********************/
474 /* SORT ORDER SELECTOR */
475 /***********************/
477 .sublevel-nav.sort {
478 position: relative;
479 margin-top: 8px;
480 font-size: 0.75em;
482 #content > .sublevel-nav.sort {
483 grid-column: 3;
484 grid-row: 5 / span 2;
485 justify-self: end;
486 align-self: start;
487 flex-flow: column;
489 #content.index-page > .sublevel-nav.sort {
490 grid-column: 1;
491 grid-row: 3 / span 1;
492 justify-self: start;
493 flex-flow: row;
496 .sublevel-nav.sort::before {
497 content: "Sort";
498 font-size: 0.75rem;
499 position: absolute;
500 top: 0;
501 left: 0;
502 width: 100%;
504 .sublevel-nav.sort .sublevel-item {
505 line-height: 1;
506 font-size: 0.875rem;
507 flex-basis: unset;
510 /*******************************/
511 /* COMMENTS SORT MODE SELECTOR */
512 /*******************************/
514 .comments > .sublevel-nav.sort {
515 margin: 1em auto 0 auto;
517 @supports (width: -moz-fit-content) {
518 .comments > .sublevel-nav.sort {
519 width: -moz-fit-content;
522 @supports (width: fit-content) {
523 .comments > .sublevel-nav.sort {
524 width: fit-content;
528 /******************/
529 /* WIDTH SELECTOR */
530 /******************/
532 #width-selector {
533 position: absolute;
534 top: 4px;
535 right: -78px;
537 #width-selector button {
538 width: 22px;
539 height: 22px;
540 padding: 6px;
541 margin: 1px;
542 overflow: hidden;
543 background-repeat: no-repeat;
544 background-size: 100%;
545 background-origin: content-box;
547 #width-selector button,
548 #width-selector button:active,
549 #width-selector button:focus {
550 text-shadow: none;
551 color: transparent;
553 #width-selector button:disabled {
554 cursor: auto;
556 #width-selector button.select-width-normal {
557 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
559 #width-selector button.select-width-wide {
560 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
562 #width-selector button.select-width-fluid {
563 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
566 /*=----------------=*/
567 /*= Hover tooltips =*/
568 /*=----------------=*/
570 #width-selector button::after {
571 content: attr(data-name);
572 position: absolute;
573 display: block;
574 left: 0;
575 width: 100%;
576 text-align: center;
577 top: 56px;
578 visibility: hidden;
580 #width-selector button.selected::after {
581 content: attr(data-name) " (selected)";
583 #width-selector button:hover:not(:active)::after {
584 visibility: visible;
587 head.content-width-normal + body > * {
588 max-width: 900px;
590 head.content-width-wide + body > * {
591 max-width: 1150px;
593 head.content-width-fluid + body > * {
594 max-width: calc(100% - 300px);
597 /******************/
598 /* THEME SELECTOR */
599 /******************/
601 #theme-selector {
602 position: absolute;
603 top: 3px;
604 left: -41px;
605 opacity: 0.4;
606 display: table;
607 max-width: 40px;
609 #theme-selector:hover {
610 opacity: 1.0;
613 /*=----------------------=*/
614 /*= Theme select buttons =*/
615 /*=----------------------=*/
617 .theme-selector button {
618 display: table-cell;
619 width: 26px;
620 height: 26px;
621 padding: 5px;
622 margin: 1px 7px 0 7px;
623 color: transparent;
624 background-size: 16px 16px;
625 background-origin: content-box;
627 .theme-selector button,
628 .theme-selector button:hover,
629 .theme-selector button:active,
630 .theme-selector button:focus {
631 text-shadow: none;
632 color: transparent;
634 .theme-selector button:disabled {
635 cursor: auto;
638 /*=----------------------------=*/
639 /*= Pre-rendered button images =*/
640 /*=----------------------------=*/
641 /* (Each is just a capital letter A through whatever) */
643 .theme-selector button:nth-of-type(1) {
644 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
646 .theme-selector button:nth-of-type(2) {
647 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
649 .theme-selector button:nth-of-type(3) {
650 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=');
652 .theme-selector button:nth-of-type(4) {
653 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
655 .theme-selector button:nth-of-type(5) {
656 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
658 .theme-selector button:nth-of-type(6) {
659 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
661 .theme-selector button:nth-of-type(7) {
662 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
664 .theme-selector button:nth-of-type(8) {
665 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
667 .theme-selector button:nth-of-type(9) {
668 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
671 /*=------------------------------=*/
672 /*= Theme select button tooltips =*/
673 /*=------------------------------=*/
674 /* (with the name & description of the theme that each button selects) */
676 #theme-selector button {
677 position: relative;
678 z-index: 1;
680 #theme-selector button::before {
681 content: attr(data-theme-name);
682 position: absolute;
683 top: 0;
684 right: 100%;
685 padding: 5px 6px 6px 6px;
686 line-height: 1;
687 width: 6em;
688 text-align: right;
689 z-index: 1;
690 visibility: hidden;
692 #theme-selector:hover button::before {
693 visibility: visible;
695 #theme-selector:hover ~ #theme-tweaker-toggle,
696 #theme-selector:active ~ #theme-tweaker-toggle {
697 z-index: -1;
700 /************************/
701 /* THEME TWEAKER TOGGLE */
702 /************************/
704 #theme-tweaker-toggle {
705 position: absolute;
706 top: 7px;
707 left: -75px;
709 #theme-tweaker-toggle button {
710 font-family: "Font Awesome", "Font Awesome 5 Free";
711 font-weight: 900;
712 font-size: 1.25rem;
713 opacity: 0.4;
714 z-index: 1;
716 #theme-tweaker-toggle button:hover {
717 opacity: 1.0;
720 /*******************/
721 /* QUICKNAV WIDGET */
722 /*******************/
724 #quick-nav-ui {
725 position: absolute;
726 right: -67px;
727 bottom: 20px;
729 #quick-nav-ui a {
730 font-family: "Font Awesome", "Font Awesome 5 Free";
731 font-weight: 900;
732 font-size: 1.5rem;
733 line-height: 1.7;
734 text-align: center;
735 display: block;
736 width: 40px;
737 height: 40px;
738 margin: 10px 0 0 0;
740 #quick-nav-ui a[href='#comments'].no-comments {
741 pointer-events: none;
743 #quick-nav-ui a {
744 visibility: hidden;
746 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
747 visibility: visible;
750 /************************/
751 /* NEW COMMENT QUICKNAV */
752 /************************/
754 #new-comment-nav-ui {
755 position: absolute;
756 right: -112px;
757 bottom: 42px;
759 #new-comment-nav-ui > * {
760 display: block;
761 position: relative;
763 #new-comment-nav-ui.no-comments {
764 display: none;
767 /*=--------------------=*/
768 /*= New comments count =*/
769 /*=--------------------=*/
771 #new-comment-nav-ui .new-comments-count {
772 width: 2em;
773 font-size: 1.25rem;
774 line-height: 1.1;
775 text-align: center;
776 left: 1px;
777 cursor: pointer;
779 #new-comment-nav-ui .new-comments-count::selection {
780 background-color: transparent;
782 #new-comment-nav-ui .new-comments-count::after {
783 content: "NEW";
784 display: block;
785 font-size: 0.625rem;
788 /*=-----------------------------------=*/
789 /*= Next/previous new comment buttons =*/
790 /*=-----------------------------------=*/
792 #new-comment-nav-ui .new-comment-sequential-nav-button {
793 font-size: 1.75rem;
794 font-family: "Font Awesome", "Font Awesome 5 Free";
795 font-weight: 900;
796 width: 1.5em;
797 z-index: 5001;
799 #new-comment-nav-ui .new-comment-previous {
800 top: 8px;
802 #new-comment-nav-ui .new-comment-next {
803 bottom: 6px;
805 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
806 cursor: auto;
807 pointer-events: none;
810 /*******************/
811 /* HNS DATE PICKER */
812 /*******************/
814 #hns-date-picker {
815 position: absolute;
816 bottom: 72px;
817 right: -253px;
818 opacity: 0.6;
820 #hns-date-picker:hover,
821 #hns-date-picker:focus-within {
822 opacity: 1.0;
824 #hns-date-picker.no-comments {
825 display: none;
828 /*=---------------=*/
829 /*= "Since" label =*/
830 /*=---------------=*/
832 #hns-date-picker span {
833 display: block;
834 font-size: 0.75rem;
835 text-transform: uppercase;
838 /*=--------------------=*/
839 /*= "Since" text field =*/
840 /*=--------------------=*/
842 #hns-date-picker input {
843 margin-top: 1px;
844 padding: 1px 3px;
845 width: 140px;
846 text-align: center;
847 box-shadow: 0 0 0 1px transparent;
850 /************************/
851 /* ANTI-KIBITZER TOGGLE */
852 /************************/
854 #anti-kibitzer-toggle {
855 position: absolute;
856 right: -67px;
857 bottom: 225px;
859 #anti-kibitzer-toggle button {
860 display: block;
861 width: 40px;
862 height: 54px;
863 padding: 0;
865 #anti-kibitzer-toggle button::before,
866 #anti-kibitzer-toggle button::after {
867 font-family: "Font Awesome", "Font Awesome 5 Free";
869 #anti-kibitzer-toggle button::before {
870 content: "\F06E";
871 display: block;
872 font-size: 1.75em;
873 font-weight: 400;
875 #anti-kibitzer-toggle button::after {
876 content: "\F007\2004\F164";
877 font-size: 0.875em;
878 font-weight: 900;
880 #anti-kibitzer-toggle.engaged button::before {
881 content: "\F070";
884 /************************/
885 /* TEXT SIZE ADJUSTMENT */
886 /************************/
888 #text-size-adjustment-ui {
889 position: absolute;
890 top: 30px;
891 right: -78px;
892 opacity: 0.4;
894 #text-size-adjustment-ui:hover {
895 opacity: 1.0;
898 /* This doesn't work in Mozilla browsers, so hide it */
899 @-moz-document url-prefix() {
900 #text-size-adjustment-ui {
901 display: none;
905 /*=---------=*/
906 /*= Buttons =*/
907 /*=---------=*/
909 #text-size-adjustment-ui button {
910 font-weight: 900;
911 font-family: "Font Awesome", "Font Awesome 5 Free";
912 font-size: 0.75rem;
913 width: 24px;
914 height: 24px;
915 padding: 0;
917 #text-size-adjustment-ui button.default {
918 font-family: inherit;
919 font-size: 1.125rem;
920 position: relative;
921 top: 1px;
923 #text-size-adjustment-ui button:disabled {
924 opacity: 0.5;
926 #text-size-adjustment-ui button:disabled:hover {
927 cursor: default;
930 /*=----------------=*/
931 /*= Hover tooltips =*/
932 /*=----------------=*/
934 #text-size-adjustment-ui::after {
935 content: "Adjust text size";
936 position: absolute;
937 display: block;
938 left: 0;
939 width: 100%;
940 text-align: center;
941 top: 32px;
942 visibility: hidden;
943 font-size: 0.9em;
945 #text-size-adjustment-ui:hover::after {
946 visibility: visible;
949 /*******************************/
950 /* COMMENTS VIEW MODE SELECTOR */
951 /*******************************/
953 #comments-view-mode-selector {
954 position: absolute;
955 bottom: 30px;
956 left: -40px;
957 opacity: 0.6;
959 #comments-view-mode-selector:hover {
960 opacity: 1.0;
963 /*=---------=*/
964 /*= Buttons =*/
965 /*=---------=*/
967 #comments-view-mode-selector a {
968 display: block;
969 font-family: "Font Awesome", "Font Awesome 5 Free";
970 font-size: 1.25rem;
971 text-align: center;
972 opacity: 0.4;
973 padding: 0.25em;
974 z-index: 1;
976 #comments-view-mode-selector a.threaded {
977 transform: scaleY(-1);
978 font-weight: 900;
980 #comments-view-mode-selector a.chrono {
981 font-weight: normal;
983 #comments-view-mode-selector a.selected,
984 #comments-view-mode-selector a:hover {
985 opacity: 1.0;
986 text-decoration: none;
988 #comments-view-mode-selector a.selected {
989 cursor: default;
992 /*****************/
993 /* KEYBOARD HELP */
994 /*****************/
996 #keyboard-help-overlay {
997 width: 100vw;
998 height: 100vh;
999 background-color: rgba(0,0,0,0.7);
1000 position: fixed;
1001 left: 0;
1002 top: 0;
1003 z-index: 5001;
1005 display: flex;
1006 justify-content: center;
1007 align-items: center;
1008 padding: 20px 30px 30px 20px;
1010 visibility: hidden;
1013 #keyboard-help-overlay .keyboard-help-container {
1014 background-color: #fff;
1015 filter: drop-shadow(4px 4px 2px #000);
1016 flex: 1 1 auto;
1017 max-width: 1500px;
1018 max-height: 100%;
1019 overflow-y: auto;
1020 position: relative;
1022 #keyboard-help-overlay .keyboard-help-container h1 {
1023 text-align: center;
1024 border-bottom: 1px solid #ddd;
1025 margin: 0;
1026 padding: 10px 20px;
1028 #keyboard-help-overlay .keyboard-help-container .note {
1029 margin: 0.5em auto;
1030 padding: 0 1em;
1031 width: fit-content;
1033 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1034 column-width: 21em;
1035 column-count: auto;
1036 column-gap: 1.5em;
1037 border-top: 1px solid #ddd;
1038 padding: 15px 20px;
1040 #keyboard-help-overlay .keyboard-help-container ul {
1041 list-style-type: none;
1042 margin: 0;
1043 padding: 0;
1044 break-inside: avoid;
1045 white-space: nowrap;
1047 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1048 margin: 20px 0 0 0;
1050 #keyboard-help-overlay .keyboard-help-container ul li.section {
1051 font-weight: bold;
1052 font-size: 1.125rem;
1053 break-after: avoid;
1055 #keyboard-help-overlay .keyboard-help-container .keys {
1056 margin: 0 0.5em 0 0;
1057 min-width: 4.5em;
1058 display: inline-block;
1060 #keyboard-help-overlay .keyboard-help-container .keys code {
1061 margin: 0 6px 0 0;
1063 #keyboard-help-overlay .keyboard-help-container code {
1064 display: inline-block;
1065 background-color: #eee;
1066 border: 1px solid #ccc;
1067 padding: 3px 8px 4px 8px;
1068 margin: 0 1px;
1070 #keyboard-help-overlay .keyboard-help-container code.ak {
1071 background-color: #ffeb83;
1072 border-color: #d4a500;
1074 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1075 content: "ak+";
1076 opacity: 0.3;
1079 #nav-item-about button.open-keyboard-help {
1080 display: none;
1082 @media only screen and (hover:hover) and (pointer:fine) {
1083 #nav-item-about {
1084 position: relative;
1085 padding-right: 0.25em;
1087 #nav-item-about button.open-keyboard-help {
1088 font-family: "Font Awesome", "Font Awesome 5 Free";
1089 font-weight: 900;
1090 position: absolute;
1091 top: 0;
1092 right: 0;
1093 height: 100%;
1094 padding: 8px;
1095 display: initial;
1096 line-height: 1;
1097 background-color: transparent;
1101 #keyboard-help-overlay button.close-keyboard-help {
1102 position: absolute;
1103 right: 0;
1104 top: 0;
1105 font-family: "Font Awesome", "Font Awesome 5 Free";
1106 font-size: 1.5rem;
1107 padding: 10px 12px;
1110 /************/
1111 /* ARCHIVES */
1112 /************/
1114 .archive-nav {
1115 margin: 1.25em 0.5em 0 0.5em;
1116 padding: 0.25em;
1118 .archive-nav > * {
1119 display: flex;
1121 .archive-nav *[class^='archive-nav-item'] {
1122 line-height: 1;
1123 flex: 1 1 5%;
1124 text-align: center;
1125 padding: 6px 4px 4px 4px;
1126 max-width: 8%;
1128 @-moz-document url-prefix() {
1129 .archive-nav *[class^='archive-nav-item'] {
1130 padding: 5px 4px;
1133 .archive-nav-days .archive-nav-item-day {
1134 font-size: 0.8em;
1135 padding: 7px 0 5px 0;
1136 max-width: 4%;
1138 .archive-nav-days .archive-nav-item-day:first-child {
1139 flex-basis: 10%;
1142 /************/
1143 /* ARCHIVES */
1144 /************/
1146 .archive-nav {
1147 margin: 1.25em 0.5em 0 0.5em;
1148 padding: 0.25em;
1150 .archive-nav > * {
1151 display: flex;
1153 .archive-nav *[class^='archive-nav-item'] {
1154 line-height: 1;
1155 flex: 1 1 5%;
1156 text-align: center;
1157 padding: 6px 4px 4px 4px;
1158 max-width: 8%;
1160 @-moz-document url-prefix() {
1161 .archive-nav *[class^='archive-nav-item'] {
1162 padding: 5px 4px;
1165 .archive-nav-days .archive-nav-item-day {
1166 font-size: 0.8em;
1167 padding: 7px 0 5px 0;
1168 max-width: 4%;
1170 .archive-nav-days .archive-nav-item-day:first-child {
1171 flex-basis: 10%;
1174 /************/
1175 /* LISTINGS */
1176 /************/
1178 h1.listing {
1179 font-size: 1.875rem;
1180 line-height: 1.15;
1181 max-height: 1.15em;
1182 position: relative;
1185 h1.listing a {
1186 position: relative;
1189 /* Links to link-posts (not the link-post links themselves; that's below) */
1190 h1.listing a[href^='http'] + a {
1191 margin-left: 0.25em;
1193 /* Link-post links */
1194 h1.listing a[href^="http"] {
1195 font-size: 0.8em;
1196 display: inline;
1197 vertical-align: top;
1198 position: relative;
1199 top: 4px;
1202 /*=----------------------=*/
1203 /*= Listing hover reveal =*/
1204 /*=----------------------=*/
1205 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1207 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1208 h1.listing a {
1209 max-width: 100%;
1210 display: inline-block;
1211 white-space: nowrap;
1212 text-overflow: ellipsis;
1213 overflow: hidden;
1214 border-bottom: 1px solid transparent;
1215 -webkit-hyphens: auto;
1216 -moz-hyphens: auto;
1217 -ms-hyphens: auto;
1218 hyphens: auto;
1219 z-index: 1;
1220 padding: 0 0 1px 1px;
1222 h1.listing a[href^='http'] + a {
1223 max-width: calc(100% - 33px);
1225 h1.listing a:hover,
1226 h1.listing a:focus {
1227 text-decoration: dotted underline;
1228 white-space: initial;
1229 overflow: visible;
1230 z-index: 2;
1232 h1.listing:focus-within::before {
1233 content: "\F105";
1234 font-family: "Font Awesome", "Font Awesome 5 Free";
1235 display: block;
1236 position: absolute;
1237 left: -0.75em;
1240 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1241 mouse movements) */
1243 h1.listing a:not(.edit-post-link):hover::before {
1244 content: "";
1245 position: absolute;
1246 top: -10px;
1247 right: -10px;
1248 bottom: -10px;
1249 left: -10px;
1250 z-index: -1;
1252 h1.listing a[href^="http"]:hover {
1253 text-decoration: none;
1257 /*=-----------------------=*/
1258 /*= In-listing edit links =*/
1259 /*=-----------------------=*/
1261 h1.listing .edit-post-link {
1262 position: absolute;
1263 margin: 0;
1266 /*=---------------------------------=*/
1267 /*= Error messages on listing pages =*/
1268 /*=---------------------------------=*/
1270 .listing-message {
1271 width: 100%;
1272 text-align: center;
1273 padding: 1.25em 0 1.25em 0;
1274 font-size: 1.375em;
1277 /*********************/
1278 /* LISTING POST-META */
1279 /*********************/
1281 h1.listing + .post-meta {
1282 position: relative;
1283 justify-content: flex-start;
1284 margin: 0 20px 0 21px;
1287 h1.listing + .post-meta > * {
1288 margin: 0 1em 0 0;
1291 h1.listing + .post-meta .post-section {
1292 width: 0;
1293 margin: 0;
1294 overflow: hidden;
1296 h1.listing + .post-meta .post-section::before {
1297 position: absolute;
1298 left: -36px;
1301 h1.listing + .post-meta .read-time {
1302 cursor: default;
1305 /*************/
1306 /* SEQUENCES */
1307 /*************/
1309 .sequence-text {
1310 font-size: 1.2rem;
1311 padding: 0 22px;
1314 section {
1315 margin-top: 2em;
1316 margin-bottom: 4em;
1319 h1.sequence-chapter {
1320 font-size: 2.3rem;
1323 article {
1324 max-width: 100%;
1327 /**************/
1328 /* USER PAGES */
1329 /**************/
1331 /*=------------=*/
1332 /*= Pagination =*/
1333 /*=------------=*/
1335 #content.user-page > #top-nav-bar {
1336 grid-row: 6;
1339 /*=---------------------=*/
1340 /*= User's display name =*/
1341 /*=---------------------=*/
1343 #content.user-page h1.page-main-heading {
1344 margin: 0.25em 0 0 0;
1345 line-height: 1.1;
1346 grid-row: 4;
1349 /*=--------------------=*/
1350 /*= User's karma total =*/
1351 /*=--------------------=*/
1353 #content.user-page .user-stats {
1354 grid-column: 3;
1355 grid-row: 4;
1356 text-align: right;
1357 align-self: end;
1360 #content.user-page .user-stats .karma-type {
1361 white-space: nowrap;
1364 /*=----------------------=*/
1365 /*= Expanded vs. compact =*/
1366 /*=----------------------=*/
1368 #content.user-page #comments-list-mode-selector {
1369 grid-row: 5 / span 2;
1371 #content.user-page #comments-list-mode-selector button {
1372 display: block;
1375 /*=----------------------------------------------------=*/
1376 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1377 /*=----------------------------------------------------=*/
1379 #content.user-page .sublevel-nav {
1380 margin-bottom: 0.5em;
1383 /*=--------------=*/
1384 /*= User's posts =*/
1385 /*=--------------=*/
1387 #content.user-page h1.listing {
1388 margin: 0.5em 0 0 0;
1391 /*****************/
1392 /* CONVERSATIONS */
1393 /*****************/
1395 /*=----------------------=*/
1396 /*= List of participants =*/
1397 /*=----------------------=*/
1399 #content.conversation-page .conversation-participants {
1400 grid-column: 2 / span 2;
1401 grid-row: 3;
1402 text-align: right;
1403 margin: 0.5em 0 0 0;
1406 .conversation-participants ul,
1407 .conversation-participants li {
1408 list-style-type: none;
1409 display: inline-block;
1410 margin: 0;
1411 padding: 0;
1413 .conversation-participants li {
1414 margin-left: 0.375em;
1416 .conversation-participants li:not(:last-of-type)::after {
1417 content: ",";
1420 /*=-------------------------=*/
1421 /*= Posting controls (form) =*/
1422 /*=-------------------------=*/
1424 #content.conversation-page .posting-controls {
1425 padding: 0 0 1em 0;
1427 #content.conversation-page .post-meta-fields {
1428 overflow: auto;
1429 display: flex;
1430 flex-flow: row wrap;
1432 #content.conversation-page textarea {
1433 margin-top: 0.375em;
1435 #conversation-form {
1436 padding: 0 1em 3em 1em;
1438 #conversation-form input[type='text'],
1439 #conversation-form label {
1440 margin: 0.25em 0;
1442 #conversation-form label {
1443 width: 4em;
1444 text-align: right;
1445 padding: 2px 6px;
1446 border: 1px solid transparent;
1448 #conversation-form input[type='text'] {
1449 width: calc(100% - 4em);
1450 padding: 0.25em;
1452 #conversation-form input[type='submit'] {
1453 float: right;
1455 #content.conversation-page #markdown-hints-checkbox ~ label {
1456 white-space: nowrap;
1458 #content.conversation-page #markdown-hints {
1459 top: calc(100% + 2em);
1462 /*=--------------------=*/
1463 /*= Conversation title =*/
1464 /*=--------------------=*/
1466 #content.conversation-page h1.page-main-heading {
1467 text-align: center;
1468 margin: 0.5em 0;
1469 line-height: 1.15;
1472 /*=----------=*/
1473 /*= Messages =*/
1474 /*=----------=*/
1476 #content.conversation-page > ul.comment-thread:last-of-type {
1477 margin-bottom: 2em;
1480 /******************/
1481 /* SEARCH RESULTS */
1482 /******************/
1484 #content.search-results-page h1.listing,
1485 #content.sequence-page h1.listing {
1486 font-size: 1.625em;
1489 /**************/
1490 /* LOGIN PAGE */
1491 /**************/
1493 .login-container {
1494 margin: 2em 0;
1495 padding: 1em;
1496 display: flex;
1497 flex-flow: row wrap;
1500 .login-container form {
1501 flex-basis: 50%;
1502 display: grid;
1503 grid-row-gap: 0.5em;
1504 align-content: start;
1506 .login-container form label {
1507 text-align: right;
1508 padding: 0.25em 0.5em;
1509 white-space: nowrap;
1510 grid-column: 1;
1512 .login-container form input {
1513 grid-column: 2;
1514 padding: 0.25em;
1516 .login-container form input[type='submit'],
1517 .login-container form a {
1518 grid-column: 2;
1519 justify-self: center;
1521 .login-container form input[type='submit'] {
1522 width: 10em;
1523 padding: 0.35em;
1524 line-height: 1;
1525 margin: 0.5em 0 0 0;
1527 .login-container form h1 {
1528 text-align: center;
1529 margin: 0;
1530 grid-column: 2;
1533 /* “Log in” form */
1535 #login-form {
1536 grid-template-columns: 5.5em 1fr;
1537 padding: 0.5em 2em 0.5em 0;
1540 /* “Create account” form */
1542 #signup-form {
1543 font-size: 0.9em;
1544 grid-template-columns: 8.5em 1fr;
1545 padding: 0.5em 1em 1em 1em;
1547 #signup-form h1 {
1548 font-size: 1.7em;
1550 #signup-form input[type='submit'] {
1551 padding: 0.4em 0.5em 0.5em 0.5em;
1554 /* Log in tip */
1556 .login-container .login-tip {
1557 padding: 0.5em 0.5em 0.5em 3em;
1558 margin: 2em 4em 0 4em;
1559 text-indent: -2em;
1560 line-height: 1.4;
1562 .login-container .login-tip span {
1563 font-weight: bold;
1566 /* Message box */
1568 #content.login-page .error-box {
1569 margin: 1.5em 0.875em -1.5em 0.875em;
1571 .error-box, .success-box {
1572 padding: 0.25em;
1573 text-align: center;
1576 /***********************/
1577 /* PASSWORD RESET PAGE */
1578 /***********************/
1580 .reset-password-container {
1581 margin-bottom: 2em;
1583 .reset-password-container input[type='submit'] {
1584 padding: 0.2em 0.5em;
1585 width: unset;
1587 .reset-password-container input {
1588 margin-left: 0.5em;
1589 width: 12em;
1591 .reset-password-container label {
1592 display: inline-block;
1593 width: 9em;
1595 .reset-password-container form > div {
1596 margin: 0.2em;
1598 .reset-password-container .action-container {
1599 padding-left: 11em;
1600 padding-top: 0.2em;
1602 .reset-password-container .error-box {
1603 margin: unset;
1606 /*********************/
1607 /* TABLE OF CONTENTS */
1608 /*********************/
1610 .contents {
1611 float: right;
1612 min-width: 6em;
1613 max-width: 40%;
1614 margin: 1.25em 0 0.75em 1.25em;
1615 padding: 7px 14px 10px 10px;
1616 position: relative;
1617 z-index: 1;
1620 .contents-head {
1621 text-align: center;
1622 margin-bottom: 0.25em;
1625 .post-body .contents ul {
1626 list-style-type: none;
1627 margin: 0 0 0 0.5em;
1628 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1629 padding-left: 1em;
1630 font-size: 0.75em;
1632 .post-body .contents li {
1633 margin: 0.15em 0 0.3em 1em;
1634 text-align: left;
1635 text-indent: -1em;
1636 line-height: 1.2;
1637 position: relative;
1639 .post-body .contents li::before {
1640 position: absolute;
1641 width: 3em;
1642 display: block;
1643 text-align: right;
1644 left: -4.5em;
1646 .contents .toc-item-1 {
1647 counter-increment: toc-item-1;
1648 counter-reset: toc-item-2 toc-item-3;
1650 .contents .toc-item-1::before {
1651 content: counter(toc-item-1);
1653 .contents .toc-item-1 ~ .toc-item-2 {
1654 margin-left: 2.9em;
1655 font-size: 0.95em;
1657 .contents .toc-item-2 {
1658 counter-increment: toc-item-2;
1659 counter-reset: toc-item-3;
1661 .contents .toc-item-1 ~ .toc-item-2::before {
1662 content: counter(toc-item-1) "." counter(toc-item-2);
1664 .contents .toc-item-2::before {
1665 content: counter(toc-item-2);
1667 .contents .toc-item-1 + .toc-item-3 {
1668 counter-increment: toc-item-2 toc-item-3;
1670 .contents .toc-item-2 ~ .toc-item-3,
1671 .contents .toc-item-1 ~ .toc-item-3 {
1672 margin-left: 2.9em;
1673 font-size: 0.95em;
1675 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1676 margin-left: 5.7em;
1677 font-size: 0.9em;
1679 .contents .toc-item-3 {
1680 counter-increment: toc-item-3;
1682 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1683 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1685 .contents .toc-item-1 ~ .toc-item-3::before {
1686 content: counter(toc-item-1) "." counter(toc-item-3);
1688 .contents .toc-item-2 ~ .toc-item-3::before {
1689 content: counter(toc-item-2) "." counter(toc-item-3);
1691 .contents .toc-item-3::before {
1692 content: counter(toc-item-3);
1694 .contents .toc-item-4,
1695 .contents .toc-item-5,
1696 .contents .toc-item-6 {
1697 display: none;
1700 /********************/
1701 /* POSTS & COMMENTS */
1702 /********************/
1704 .post-meta > *,
1705 .comment-meta > * {
1706 display: inline-block;
1707 margin-right: 1em;
1708 font-size: 1.0625em;
1709 white-space: nowrap;
1711 .body-text {
1712 overflow-wrap: break-word;
1713 text-align: justify;
1715 .body-text p {
1716 margin: 1em 0;
1718 .retracted .body-text {
1719 text-decoration: line-through;
1722 .bare-url {
1723 word-break: break-all;
1724 hyphens: auto;
1726 .body-text a:not([href]),
1727 .body-text a:not([href]):hover,
1728 .body-text a:not([href])::before,
1729 .body-text a:not([href])::after {
1730 text-decoration: none;
1731 text-shadow: unset;
1732 border: unset;
1733 color: unset;
1734 content: unset;
1736 /*************/
1737 /* POST-META */
1738 /*************/
1740 .post-meta {
1741 display: flex;
1742 flex-flow: row wrap;
1743 justify-content: center;
1745 .post-meta .lw2-link {
1746 opacity: 0.5;
1747 order: 1;
1749 .post-meta > *,
1750 .post-meta .post-section::before {
1751 margin: 0 0.5em;
1753 .post-meta .post-section {
1754 order: -1;
1755 margin: 0;
1756 visibility: hidden;
1758 .post-meta .post-section::before,
1759 .comment-meta .alignment-forum {
1760 visibility: visible;
1761 font-family: "Font Awesome", "Font Awesome 5 Free";
1762 font-weight: 900;
1764 .post-section.frontpage::before {
1765 content: "\F015";
1767 .post-section.featured::before {
1768 content: "\F005";
1770 .post-section.meta::before {
1771 content: "\F077";
1773 .post-section.personal::before {
1774 content: "\F007";
1776 .post-section.draft::before {
1777 content: "\F15B";
1779 .post-section.alignment-forum::before,
1780 .comment-meta .alignment-forum {
1781 content: "AF";
1782 font-family: Concourse, 'Changa One';
1785 /*= Karma controls hover tooltips =*/
1787 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1788 .post .karma,
1789 .comment-item .karma {
1790 position: relative;
1792 .post .karma.active-controls::after,
1793 .comment-item .karma.active-controls::after {
1794 content: "Double-click for strong vote";
1795 position: absolute;
1796 pointer-events: none;
1797 display: block;
1798 left: 6px;
1799 max-width: calc(100% - 12px);
1800 line-height: 1.15;
1801 white-space: normal;
1802 text-align: center;
1803 font-size: 0.875rem;
1804 opacity: 0;
1805 transition: opacity 0.2s ease;
1807 .post .karma.active-controls:hover::after,
1808 .comment-item .karma.active-controls:hover::after {
1809 opacity: 1.0;
1812 .post .karma .karma-value::after,
1813 .comment-item .karma .karma-value::after {
1814 content: attr(title);
1815 position: absolute;
1816 pointer-events: none;
1817 display: block;
1818 left: 50%;
1819 transform: translateX(-50%);
1820 white-space: nowrap;
1821 text-align: center;
1822 font-size: 0.875rem;
1823 color: #bbb;
1824 opacity: 0;
1825 transition: opacity 0.2s ease;
1827 .post .karma .karma-value:hover::after,
1828 .comment-item .karma .karma-value:hover::after {
1829 opacity: 1.0;
1831 .comment-item .karma .karma-value:hover::after {
1832 z-index: 5001;
1835 .author {
1836 position: relative;
1838 .author:not(.redacted)::before {
1839 content: attr(data-full-name);
1840 position: absolute;
1841 pointer-events: none;
1842 display: block;
1843 padding: 0 1em;
1844 left: 50%;
1845 bottom: 2em;
1846 transform: translateX(-50%);
1847 white-space: nowrap;
1848 text-align: center;
1849 font-size: 0.875rem;
1850 font-weight: normal;
1851 opacity: 0;
1852 transition: opacity 0.2s ease;
1853 z-index: 5001;
1855 .author:hover::before {
1856 opacity: 1.0;
1860 /*********/
1861 /* POSTS */
1862 /*********/
1864 .post {
1865 max-width: 100%;
1868 .post-body {
1869 min-height: 8em;
1870 padding: 0 30px;
1871 line-height: 1.5;
1872 font-size: 1.3rem;
1873 overflow: auto;
1874 margin: 0.5em 0 0 0;
1876 h1.post-title {
1877 margin: 1.1em 0 0.35em 0;
1878 padding: 0 30px;
1879 text-align: center;
1880 font-size: 2.5em;
1881 line-height: 1;
1883 .post .post-meta {
1884 text-align: center;
1885 position: relative;
1886 z-index: 2;
1888 .post .top-post-meta:last-child {
1889 margin-bottom: 40px;
1891 .post .bottom-post-meta {
1892 margin: 0;
1893 padding: 20px 0;
1895 .bottom-post-meta {
1896 border-style: solid;
1897 border-width: 1px 0;
1900 /*******************/
1901 /* POST NAVIGATION */
1902 /*******************/
1904 .post-nav-item {
1905 display: grid;
1906 grid-template: 100% / 32% 36% 32%;
1907 grid-template-areas:
1908 "prev seq next";
1910 .post-nav {
1911 display: flex;
1912 flex-flow: column;
1913 justify-content: flex-end;
1914 padding: 0.5em;
1917 .post-nav-title {
1918 font-size: 1.125em;
1919 line-height: 1.15;
1920 display: inline;
1921 border-top: 1px solid transparent;
1923 .post-nav.prev .post-nav-title,
1924 .post-nav.next .post-nav-title {
1925 border-bottom: 1px solid transparent;
1928 .sequence-title {
1929 align-items: center;
1930 text-align: center;
1931 grid-area: seq;
1933 .sequence-title .post-nav-title {
1934 font-size: 1.5em;
1937 .post-nav.prev {
1938 grid-area: prev;
1939 align-items: flex-start;
1941 .post-nav.prev .post-nav-title::before {
1942 content: "\F0D9\2005";
1944 .post-nav.next {
1945 grid-area: next;
1946 text-align: right;
1947 align-items: flex-end;
1949 .post-nav.prev .post-nav-label,
1950 .post-nav.next .post-nav-label {
1951 display: none;
1953 .post-nav.next .post-nav-title::after {
1954 content: "\2004\F0DA";
1956 .post-nav.prev .post-nav-title::before,
1957 .post-nav.next .post-nav-title::after {
1958 font-family: Font Awesome;
1959 font-weight: 900;
1960 vertical-align: text-bottom;
1961 opacity: 0.75;
1964 @media only screen and (max-width: 900px) {
1965 .post-nav-item {
1966 font-size: 0.875em;
1967 grid-template: auto auto / 50% 50%;
1968 grid-template-areas:
1969 "prev next"
1970 "seq seq";
1972 .post-nav.prev .post-nav-title,
1973 .post-nav.next .post-nav-title {
1974 border-bottom: none;
1976 .post-nav.prev {
1977 margin: 0 0 0 -1px;
1978 position: relative;
1979 left: 1px;
1981 .sequence-title {
1982 padding: 0.75em 0;
1985 @media only screen and (max-width: 520px) {
1986 .post-nav-links + .comments {
1987 padding: 1em 0 0 0;
1991 /**************/
1992 /* LINK POSTS */
1993 /**************/
1995 .post.link-post > .post-body > p:first-child {
1996 text-align: center;
1997 font-size: 1.125em;
1998 margin: 0.5em 0 0 0;
2000 .post.link-post > .post-body > p:only-child {
2001 font-size: 1.5em;
2002 margin: 1em 0;
2004 .post.link-post a.link-post-link::before {
2005 content: "\F0C1";
2006 font-family: "Font Awesome", "Font Awesome 5 Free";
2007 font-weight: 900;
2008 font-size: 0.75em;
2009 position: relative;
2010 top: -2px;
2011 margin-right: 0.25em;
2014 /************/
2015 /* COMMENTS */
2016 /************/
2018 .comments {
2019 max-width: 100%;
2020 padding: 0 0 1px 0;
2021 position: relative;
2023 .comments::before {
2024 content: "";
2025 position: absolute;
2026 display: block;
2027 top: 0;
2028 left: 0;
2029 width: 100%;
2030 height: 100%;
2031 pointer-events: none;
2033 ul.comment-thread {
2034 list-style-type: none;
2035 padding: 0;
2036 max-width: 100%;
2038 .comments .comment-thread > li {
2039 position: relative;
2041 #content > #top-nav-bar + .comment-thread .comment-item {
2042 margin-top: 0;
2045 .comment-item {
2046 margin: 2em 0 0 0;
2048 .comment-item .comment-item {
2049 margin: 1em 8px 8px 16px;
2051 .comment-item .comment-item + .comment-item {
2052 margin: 2em 8px 8px 16px;
2055 .comment-body {
2056 line-height: 1.45;
2057 font-size: 1.2rem;
2058 padding: 10px;
2060 .comment-body ul {
2061 list-style-type: circle;
2063 .comment-body > *:first-child {
2064 margin-top: 0;
2066 .comment-body > *:last-child {
2067 margin-bottom: 0;
2070 .comments-empty-message {
2071 width: 100%;
2072 text-align: center;
2073 padding: 0.75em 0 0.9em 0;
2074 font-size: 1.375em;
2077 /**********************************/
2078 /* DEEP COMMENT THREAD COLLAPSING */
2079 /**********************************/
2081 .comment-item input[id^="expand"] {
2082 display: none;
2084 .comment-item input[id^="expand"] + label {
2085 display: block;
2086 visibility: hidden;
2087 position: relative;
2088 margin: 8px 9px;
2090 .comment-item input[id^="expand"] + label::after {
2091 content: "(Expand " attr(data-child-count) " below)";
2092 visibility: visible;
2093 position: absolute;
2094 left: 0;
2095 white-space: nowrap;
2096 cursor: pointer;
2098 .comment-item input[id^="expand"]:checked + label::after {
2099 content: "(Collapse " attr(data-child-count) " below)";
2101 .comment-item input[id^="expand"] ~ .comment-thread {
2102 max-height: 34px;
2103 overflow: hidden;
2105 .comment-item input[id^="expand"] ~ .comment-thread > li:first-child {
2106 margin-top: 0;
2108 .comment-item input[id^="expand"]:checked ~ .comment-thread {
2109 max-height: 1000000px;
2112 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2113 margin: 0;
2115 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2116 display: none;
2119 /****************/
2120 /* COMMENT-META */
2121 /****************/
2123 .comment-meta {
2124 padding: 2px 24px 2px 10px;
2125 margin: 0 -1px;
2126 border: none;
2127 display: flex;
2128 flex-flow: row wrap;
2129 align-items: baseline;
2131 .user-page .comment-meta,
2132 .conversation-page .comment-meta {
2133 padding-right: 10px;
2135 .comment-meta .comment-post-title {
2136 flex-basis: 100%;
2137 overflow: hidden;
2138 text-overflow: ellipsis;
2139 line-height: 1.3;
2141 .conversation-page .comment-meta .comment-post-title {
2142 margin: 0;
2143 flex-basis: unset;
2144 flex: 1 0 auto;
2145 text-align: right;
2146 display: none; /* Not sure if we need to display this... */
2148 .comment-item .author:not(.redacted).original-poster::after {
2149 content: "\2004(OP)";
2150 font-size: 0.75em;
2153 /*****************************/
2154 /* COMMENT THREAD NAVIGATION */
2155 /*****************************/
2157 a.comment-parent-link:not(.inline-author),
2158 a.comment-parent-link.inline-author::before {
2159 opacity: 0.5;
2161 a.comment-parent-link:hover {
2162 opacity: 1.0;
2164 a.comment-parent-link::before {
2165 content: "\F062";
2166 font-family: "Font Awesome", "Font Awesome 5 Free";
2167 font-weight: 900;
2168 font-size: 0.75rem;
2169 line-height: 1;
2170 position: absolute;
2171 z-index: 1;
2172 display: block;
2173 padding: 3px 3px 0 3px;
2174 width: 16px;
2175 height: calc(100% + 2px);
2176 top: -1px;
2177 left: -17px;
2179 a.comment-parent-link::after {
2180 content: "";
2181 position: absolute;
2182 z-index: 0;
2183 display: block;
2184 width: calc(100% + 26px);
2185 height: calc(100% + 38px);
2186 top: -29px;
2187 left: -17px;
2188 pointer-events: none;
2189 overflow: hidden;
2190 visibility: hidden;
2192 a.comment-parent-link:hover::after {
2193 visibility: visible;
2196 .comment-child-links {
2197 flex-basis: 100%;
2199 .comment-child-link {
2200 margin: 0 0.25em;
2201 display: inline-block;
2203 .comment-child-link::before {
2204 content: ">";
2205 display: inline-block;
2206 margin: 0 2px 0 0;
2209 .comment-popup {
2210 position: fixed;
2211 top: 10%;
2212 right: 10%;
2213 max-width: 700px;
2214 z-index: 10001;
2215 font-size: 1rem;
2216 white-space: unset;
2217 pointer-events: none;
2219 .comment-popup .comment-parent-link {
2220 display: none;
2222 .comment-popup .comment-body {
2223 font-size: 1.0625rem;
2226 /**********************/
2227 /* COMMENT PERMALINKS */
2228 /**********************/
2229 /********************/
2230 /* COMMENT LW LINKS */
2231 /********************/
2233 .comment-meta .permalink::before,
2234 .comment-meta .lw2-link::before,
2235 .individual-thread-page a.comment-parent-link:empty::before {
2236 content: "";
2237 display: inline-block;
2238 width: 1rem;
2239 height: 1rem;
2240 border-radius: 3px;
2241 box-shadow:
2242 0 0 0 1px #fff,
2243 0 0 0 2px #00e,
2244 0 0 0 3px transparent;
2245 padding: 0 0 0 2px;
2246 background-size: 100%;
2247 position: relative;
2248 top: 2px;
2249 opacity: 0.5;
2251 .comment-meta .permalink::before {
2252 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');
2254 .comment-meta .lw2-link::before {
2255 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==');
2257 .individual-thread-page a.comment-parent-link:empty::before {
2258 left: unset;
2259 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==');
2261 .comment-meta .permalink:hover::before {
2262 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');
2264 .comment-meta .lw2-link:hover::before {
2265 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==');
2267 .individual-thread-page a.comment-parent-link:empty:hover::before {
2268 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=');
2270 .comment-meta .permalink:hover::before,
2271 .comment-meta .lw2-link:hover::before,
2272 .individual-thread-page a.comment-parent-link:empty:hover::before {
2273 box-shadow:
2274 0 0 0 2px #00e,
2275 0 0 0 3px transparent;
2276 opacity: 1.0;
2277 filter: unset;
2279 .comment-meta .permalink:active::before,
2280 .comment-meta .lw2-link:active::before,
2281 .individual-thread-page a.comment-parent-link:empty:active::before {
2282 transform: scale(0.9);
2285 .comment-meta .permalink,
2286 .comment-meta .lw2-link,
2287 .individual-thread-page .comment-parent-link:empty {
2288 position: relative;
2289 opacity: 1.0;
2291 .comment-meta .permalink::after,
2292 .comment-meta .lw2-link::after,
2293 .individual-thread-page .comment-parent-link:empty::after {
2294 content: "";
2295 width: 30px;
2296 height: 30px;
2297 display: block;
2298 position: absolute;
2299 top: -2px;
2300 left: -7px;
2301 box-shadow: none;
2302 pointer-events: auto;
2303 visibility: visible;
2306 /*************************/
2307 /* COMMENTS COMPACT VIEW */
2308 /*************************/
2310 #comments-list-mode-selector,
2311 #content.index-page #comments-list-mode-selector,
2312 #content.user-page #comments-list-mode-selector {
2313 padding-top: 6px;
2314 grid-column: 1;
2315 position: unset;
2316 z-index: 1;
2317 justify-self: start;
2318 align-self: start;
2320 #comments-list-mode-selector button {
2321 color: transparent;
2322 width: 32px;
2323 height: 32px;
2324 padding: 6px;
2325 margin: 1px;
2326 overflow: hidden;
2327 background-repeat: no-repeat;
2328 background-size: 100%;
2329 background-origin: content-box;
2331 #comments-list-mode-selector button:disabled {
2332 cursor: auto;
2334 #comments-list-mode-selector button.expanded {
2335 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2337 #comments-list-mode-selector button.compact {
2338 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2340 @media only screen and (max-resolution: 1dppx) {
2341 #comments-list-mode-selector button.expanded {
2342 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2344 #comments-list-mode-selector button.compact {
2345 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2349 #content > ul.comment-thread > li.comment-item,
2350 #content.compact > ul.comment-thread > li.comment-item {
2351 margin: 0;
2354 #content > .comment-thread {
2355 margin: 1em 0;
2357 #content.compact > .comment-thread {
2358 font-size: 0.9375rem;
2359 margin: 0.5em 0;
2361 #content.compact > .comment-thread:hover {
2362 z-index: 1;
2364 #content.compact > .comment-thread .comment-body {
2365 font-size: 1.0625rem;
2367 #content.compact > .comment-thread .comment-item,
2368 #content.index-page .comment-item.ignored,
2369 #content.inbox-user-page .comment-item.ignored {
2370 max-height: 61px;
2371 margin-top: 1em;
2372 overflow: hidden;
2373 position: relative;
2375 #content.compact > .comment-thread .comment-item {
2376 pointer-events: none;
2378 #content.compact > .comment-thread .comment-item::after {
2379 content: "…";
2380 position: absolute;
2381 right: 0;
2382 bottom: 0;
2383 font-size: 2rem;
2384 line-height: 1;
2385 padding: 0 16px 10px 64px;
2386 pointer-events: auto;
2388 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2389 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2390 #content.compact > .comment-thread .comment-item.expanded {
2391 overflow: visible;
2392 pointer-events: auto;
2393 z-index: 10;
2396 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2397 #content.compact > .comment-thread.expanded .comment-item {
2398 overflow: visible;
2399 pointer-events: auto;
2400 z-index: 10;
2403 #content.compact > .comment-thread .comment-item .comment-meta {
2404 white-space: nowrap;
2405 overflow: hidden;
2406 text-overflow: ellipsis;
2407 padding: 2px 10px;
2409 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2410 white-space: unset;
2412 #content.compact > .comment-thread .comment-item .comment-meta a {
2413 pointer-events: auto;
2415 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2416 display: inline;
2418 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2419 margin-left: 0.75em;
2421 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2422 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2423 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2424 max-height: unset;
2426 #content.compact > .comment-thread .comment-item:hover .comment,
2427 #content.compact > .comment-thread .comment-item.expanded .comment {
2428 position: relative;
2429 z-index: 1;
2430 margin-bottom: 2em;
2431 bottom: 0;
2433 #content.compact > .comment-thread .comment-item:hover .comment::before,
2434 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2435 content: "";
2436 position: absolute;
2437 display: block;
2438 width: calc(100% + 20px);
2439 height: calc(100% + 20px);
2440 z-index: -1;
2441 top: -10px;
2442 left: -10px;
2444 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2445 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2446 margin: 0;
2449 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2450 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2451 max-height: unset;
2453 #content.compact > .comment-thread.expanded .comment-item .comment {
2454 position: relative;
2455 z-index: 1;
2456 margin-bottom: 2em;
2457 bottom: 0;
2459 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2460 content: "";
2461 position: absolute;
2462 display: block;
2463 width: calc(100% + 14px);
2464 height: calc(100% + 20px);
2465 z-index: -1;
2466 top: -10px;
2467 left: -10px;
2469 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2470 margin: 0;
2472 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2473 content: "";
2474 display: block;
2475 position: fixed;
2476 top: 0;
2477 left: 0;
2478 width: 100%;
2479 height: 100%;
2480 z-index: -2;
2481 background-color: rgba(0,0,0,0.5);
2485 /*****************************/
2486 /* HIGHLIGHTING NEW COMMENTS */
2487 /*****************************/
2489 .new-comment::before {
2490 content: "";
2491 position: absolute;
2492 width: 100%;
2493 height: 100%;
2494 z-index: 5000;
2495 pointer-events: none;
2498 /***********************************/
2499 /* COMMENT THREAD MINIMIZE BUTTONS */
2500 /***********************************/
2502 .comment-minimize-button {
2503 font-family: "Font Awesome", "Font Awesome 5 Free";
2504 font-weight: 900;
2505 font-size: 1.25rem;
2506 line-height: 1;
2507 position: absolute;
2508 right: 1px;
2509 top: 1px;
2510 width: 18px;
2511 margin: 0;
2512 cursor: pointer;
2514 .comment-minimize-button:active {
2515 transform: scale(0.9);
2517 .comment-minimize-button::after {
2518 content: attr(data-child-count);
2519 font-weight: normal;
2520 font-size: 0.8125rem;
2521 position: absolute;
2522 left: 0;
2523 width: 100%;
2524 text-align: center;
2525 top: 21px;
2527 #content.individual-thread-page .comment-minimize-button {
2528 display: none;
2531 /*****************/
2532 /* IGNORE SYSTEM */
2533 /*****************/
2535 #content.comment-thread-page .comment-item.ignored {
2536 height: 38px;
2537 overflow: hidden;
2539 .comment-item.ignored > .comment > .comment-meta > .author {
2540 text-decoration: line-through;
2543 /***********************************/
2544 /* INDIVIDUAL COMMENT THREAD PAGES */
2545 /***********************************/
2547 .individual-thread-page > h1 {
2548 line-height: 1;
2549 margin: 0.75em 0 3px 0;
2551 .individual-thread-page .comments {
2552 border: none;
2555 /****************/
2556 /* VOTE BUTTONS */
2557 /****************/
2559 .vote {
2560 margin: 0;
2562 .vote {
2563 font-family: "Font Awesome", "Font Awesome 5 Free";
2564 font-weight: 900;
2565 border: none;
2567 .karma.waiting {
2568 opacity: 0.5;
2570 .karma.waiting button {
2571 pointer-events: none;
2574 /* Replicated karma controls at bottom of comments. */
2575 .comment-controls .karma {
2576 float: left;
2577 margin-left: -14px;
2578 font-size: 0.9375em;
2581 /*****************************/
2582 /* COMMENTING AND POSTING UI */
2583 /*****************************/
2585 .comment-controls {
2586 text-align: right;
2587 margin: 0 8px 8px 16px;
2588 position: relative;
2589 z-index: 9999;
2591 .comment-thread .comment-controls + .comment-thread > li:first-child {
2592 margin-top: 8px;
2594 .comments > .comment-controls {
2595 margin: 8px 0 0 0;
2597 .comments > .comment-controls:last-child {
2598 margin: 8px 0 16px 0;
2601 .posting-controls input[type='submit'] {
2602 margin: 6px;
2603 padding: 4px 10px;
2604 font-size: 1.125rem;
2607 .comment-controls .cancel-comment-button {
2608 position: absolute;
2609 right: 0;
2610 margin: 0;
2611 height: 27px;
2612 font-size: inherit;
2613 padding: 4px 8px 2px 4px;
2614 z-index: 1;
2616 .comment-controls .cancel-comment-button::before {
2617 font-family: "Font Awesome", "Font Awesome 5 Free";
2618 margin-right: 3px;
2619 content: '\F00D';
2620 font-weight: 900;
2621 font-size: 0.9em;
2622 opacity: 0.7;
2625 .comment + .comment-controls .action-button {
2626 font-weight: normal;
2627 font-size: 1.0625em;
2628 padding: 1px 6px;
2630 .comment-controls .action-button::before {
2631 font-family: "Font Awesome", "Font Awesome 5 Free";
2632 margin-right: 3px;
2634 .new-comment-button {
2635 font-size: 1.5rem;
2636 margin: 0 0.25em;
2638 .comment-controls .reply-button::before {
2639 content: '\F3E5';
2640 font-weight: 900;
2641 font-size: 0.9em;
2642 opacity: 0.6;
2645 .post-controls {
2646 text-align: right;
2647 margin: 0.75em 0 0 0;
2648 grid-row: 3;
2649 align-self: start;
2650 justify-self: end;
2652 .post {
2653 grid-row: 3;
2655 .edit-post-link {
2656 display: inline-block;
2657 margin-bottom: 0.25em;
2658 font-size: 1.125rem;
2660 .edit-post-link::before {
2661 margin-right: 0.3em;
2663 .comment-controls .edit-button::before,
2664 .edit-post-link::before {
2665 content: '\F303';
2666 font-family: "Font Awesome", "Font Awesome 5 Free";
2667 font-weight: 900;
2668 font-size: 0.75em;
2669 position: relative;
2670 top: -1px;
2673 .comment-controls .delete-button {
2674 margin-right: 0.25em;
2676 .comment-controls .edit-button,
2677 .comment-controls .retract-button,
2678 .comment-controls .unretract-button {
2679 margin-right: 1em;
2681 .comment-controls .retract-button::before {
2682 content: '\F4B3';
2683 opacity: 0.6;
2685 .comment-controls .unretract-button::before {
2686 content: '\F075';
2687 opacity: 0.9;
2689 .comment-controls .delete-button::before {
2690 content: '\F05E';
2691 opacity: 0.7;
2693 .comment-controls .retract-button::before,
2694 .comment-controls .unretract-button::before,
2695 .comment-controls .delete-button::before {
2696 font-weight: 900;
2697 font-size: 0.9em;
2700 .comment-controls form {
2701 position: relative;
2703 .textarea-container {
2704 position: relative;
2706 .posting-controls textarea {
2707 display: block;
2708 width: 100%;
2709 height: 15em;
2710 min-height: 15em;
2711 max-height: calc(100vh - 6em);
2712 margin: 2px 0 0 0;
2713 padding: 4px 5px;
2714 font-size: 1.2rem;
2715 border-style: solid;
2716 border-width: 29px 1px 1px 1px;
2717 resize: none;
2720 /* GUIEdit buttons */
2722 .guiedit-buttons-container {
2723 position: absolute;
2724 left: 1px;
2725 top: 1px;
2726 width: calc(100% - 2px);
2727 height: 28px;
2728 text-align: left;
2729 padding: 1px 4px 0 4px;
2730 overflow: hidden;
2732 .comment-thread-page .guiedit-buttons-container {
2733 padding-right: 60px;
2735 .guiedit-buttons-container button {
2736 height: 26px;
2737 padding: 0 7px;
2738 font-weight: 900;
2739 font-size: 0.875rem;
2740 line-height: 1;
2741 position: static;
2743 .guiedit-buttons-container button:active {
2744 transform: none;
2746 .guiedit-buttons-container button:active div {
2747 transform: scale(0.9);
2749 .guiedit-buttons-container button sup {
2750 font-weight: bold;
2752 .guiedit::after {
2753 content: attr(data-tooltip);
2754 position: absolute;
2755 font-weight: normal;
2756 font-size: 1rem;
2757 top: 2px;
2758 left: 464px;
2759 height: 25px;
2760 padding: 4px 0;
2761 white-space: nowrap;
2762 visibility: hidden;
2764 .guiedit:hover::after {
2765 visibility: visible;
2768 /* Markdown hints */
2770 .posting-controls .markdown-reference-link {
2771 float: left;
2772 padding: 1px 0 0 6px;
2774 .posting-controls .markdown-reference-link a {
2775 padding-right: 1.5em;
2776 margin-right: 0.15em;
2777 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');
2778 background-size: 1.25em;
2779 background-repeat: no-repeat;
2780 background-position: right center;
2783 #markdown-hints-checkbox + label {
2784 float: left;
2785 margin: 2px 0 0 1em;
2786 line-height: 1.3;
2787 cursor: pointer;
2789 #edit-post-form #markdown-hints-checkbox + label {
2790 padding: 0;
2792 #markdown-hints-checkbox {
2793 visibility: hidden;
2794 float: left;
2796 #markdown-hints-checkbox + label::after {
2797 content: "(Show Markdown help)";
2799 #markdown-hints-checkbox:checked + label::after {
2800 content: "(Hide Markdown help)";
2802 #markdown-hints-checkbox + label::before {
2803 content: '\F059';
2804 font-family: "Font Awesome", "Font Awesome 5 Free";
2805 font-weight: 900;
2806 margin-right: 3px;
2808 #markdown-hints-checkbox:checked + label::before {
2809 font-weight: normal;
2811 #markdown-hints {
2812 margin: 4px 0 0 4px;
2813 padding: 4px 8px;
2814 position: absolute;
2815 text-align: left;
2816 top: calc(100% - 1em);
2817 z-index: 1;
2818 display: none;
2820 .comment-controls #markdown-hints {
2821 top: calc(100% + 1.75em);
2823 #markdown-hints-checkbox:checked ~ #markdown-hints {
2824 display: table;
2826 .markdown-hints-row {
2827 display: table-row;
2829 #markdown-hints .markdown-hints-row span,
2830 #markdown-hints .markdown-hints-row code {
2831 float: none;
2832 display: table-cell;
2833 border: none;
2834 background-color: inherit;
2835 padding: 0 12px 0 0;
2838 /******************/
2839 /* EDIT POST FORM */
2840 /******************/
2842 #edit-post-form {
2843 padding: 1em 1em 4em 1em;
2845 #edit-post-form .post-meta-fields {
2846 display: grid;
2847 grid-template-columns: 5em auto auto auto 1fr auto;
2848 margin-bottom: 0.625em;
2851 #edit-post-form label[for='title'],
2852 #edit-post-form label[for='url'],
2853 #edit-post-form label[for='section'] {
2854 grid-column: 1;
2856 #edit-post-form input[type='text'] {
2857 padding: 0.25em;
2858 grid-column: 2 / span 4;
2859 margin-bottom: 0.5em;
2862 #edit-post-form .link-post-checkbox,
2863 #edit-post-form .link-post-checkbox + label {
2864 grid-row: 1;
2865 grid-column: 6;
2867 #edit-post-form .question-checkbox,
2868 #edit-post-form .question-checkbox + label {
2869 grid-row: 3;
2870 grid-column: 5;
2871 justify-self: start;
2872 margin-left: 1.5em;
2875 #edit-post-form .post-meta-fields input[type='checkbox'] {
2876 height: 0;
2877 opacity: 0;
2878 pointer-events: none;
2880 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
2881 white-space: nowrap;
2882 position: relative;
2883 cursor: pointer;
2884 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
2885 align-self: start;
2887 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
2888 content: "";
2889 font-family: "Font Awesome", "Font Awesome 5 Free";
2890 font-size: 1.375rem;
2891 line-height: 0.7;
2892 text-indent: 1px;
2893 font-weight: 900;
2894 position: absolute;
2895 width: 20px;
2896 height: 20px;
2897 left: 5px;
2899 #edit-post-form label[for='url'],
2900 #edit-post-form input[name='url'] {
2901 display: none;
2903 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2904 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2905 display: initial;
2907 #edit-post-form label {
2908 line-height: normal;
2909 border: 1px solid transparent;
2910 text-align: right;
2911 padding: 0.25em 0.5em;
2912 white-space: nowrap;
2914 #edit-post-form input[type='radio'] {
2915 width: 0;
2916 margin: 0;
2917 opacity: 0;
2918 pointer-events: none;
2920 #edit-post-form input[type='radio'] + label {
2921 padding: 4px 12px;
2922 text-align: center;
2923 border-style: solid;
2924 border-width: 1px 1px 1px 0;
2925 cursor: pointer;
2927 #edit-post-form input[type='radio']:checked + label {
2928 cursor: default;
2931 #edit-post-form label[for='section'] {
2932 grid-row: 3;
2934 #edit-post-form input[type='radio'] + label {
2935 grid-row: 3;
2937 @supports (width: -moz-fit-content) {
2938 #edit-post-form input[type='radio'] + label {
2939 width: -moz-fit-content;
2942 @supports (width: fit-content) {
2943 #edit-post-form input[type='radio'] + label {
2944 width: fit-content;
2948 #edit-post-form textarea {
2949 min-height: 24em;
2952 #edit-post-form input[type='submit'] {
2953 padding: 6px 12px;
2954 float: right;
2956 #edit-post-form #markdown-hints {
2957 top: calc(100% + 2em);
2960 #edit-post-form button.guiedit div {
2961 overflow: visible;
2963 .guiedit-mobile-auxiliary-button {
2964 display: none;
2967 /***********/
2968 /* BUTTONS */
2969 /***********/
2971 button,
2972 input[type='submit'] {
2973 font-family: inherit;
2974 font-size: inherit;
2975 background-color: inherit;
2976 cursor: pointer;
2977 border: none;
2978 border-radius: 0;
2981 /************/
2982 /* HEADINGS */
2983 /************/
2985 .body-text h1,
2986 .body-text h2,
2987 .body-text h3,
2988 .body-text h4,
2989 .body-text h5,
2990 .body-text h6 {
2991 line-height: 1.1;
2992 margin: 1em 0 0.75em 0;
2993 text-align: left;
2996 .post-body h5,
2997 .post-body h6 {
2998 font-size: 1em;
3000 .post-body h4 {
3001 font-size: 1.2em;
3003 .post-body h3 {
3004 font-size: 1.4em;
3006 .post-body h2 {
3007 font-size: 1.75em;
3009 .post-body h1 {
3010 font-size: 2.1em;
3013 .comment-body h5,
3014 .comment-body h6 {
3015 font-size: 1em;
3017 .comment-body h4 {
3018 font-size: 1.15em;
3020 .comment-body h3 {
3021 font-size: 1.3em;
3023 .comment-body h2 {
3024 font-size: 1.5em;
3026 .comment-body h1 {
3027 font-size: 1.75em;
3030 /**********/
3031 /* QUOTES */
3032 /**********/
3034 blockquote,
3035 .post-body .comment-box .comment-body {
3036 font-size: 0.9em;
3037 margin: 1em 0;
3038 padding-left: 0.5em;
3039 margin-left: 1px;
3040 padding-bottom: 3px;
3042 blockquote *:first-child {
3043 margin-top: 0;
3045 blockquote *:last-child {
3046 margin-bottom: 0;
3048 blockquote blockquote {
3049 font-size: 0.95em;
3052 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3054 .post-body .comment-box .user-name {
3055 font-style: italic;
3057 .post-body .comment-box .user-name::after {
3058 content: ":";
3060 .post-body .comment-box {
3061 zoom: 1.25;
3064 /**********/
3065 /* IMAGES */
3066 /**********/
3068 #content img {
3069 max-width: 100%;
3072 img.inline-latex {
3073 position: relative;
3074 top: 2.5px;
3075 margin: 0 2px;
3078 #content figure {
3079 text-align: center;
3080 margin: 1.5em auto;
3083 p.imgonly,
3084 div.imgonly {
3085 text-align: center;
3088 /**********/
3089 /* TABLES */
3090 /**********/
3092 .body-text table {
3093 border-collapse: collapse;
3094 font-family: Inconsolata, Menlo, monospace;
3095 font-size: 0.875em;
3097 .body-text table th,
3098 .body-text table td {
3099 text-align: left;
3100 padding: 4px 6px;
3101 line-height: 1.3;
3103 .body-text table td:nth-of-type(n+2) {
3104 text-align: right;
3106 .body-text table caption {
3107 margin: 0 0 0.25em 0;
3108 font-weight: bold;
3109 font-size: 1.125em;
3112 /********/
3113 /* MISC */
3114 /********/
3116 /*= Superscripts & subscripts =*/
3118 /* Make sure superscripts and subscripts do not affect line spacing. */
3119 sup, sub {
3120 vertical-align: baseline;
3121 position: relative;
3122 top: -0.5em;
3123 left: 0.05em;
3124 font-size: 0.8em;
3126 sub {
3127 top: 0.3em;
3130 /*= Code blocks & other "unstyled" text. =*/
3132 pre,
3133 code {
3134 font-family: Inconsolata, Menlo, monospace;
3136 pre {
3137 white-space: pre-wrap;
3139 .body-text pre {
3140 text-align: left;
3142 code {
3143 font-size: 0.95em;
3144 display: inline-block;
3145 padding: 0 4px 1px 5px;
3147 pre > code {
3148 display: block;
3149 border-radius: 0;
3150 padding: 3px 4px 5px 8px;
3153 /*= Fractions =*/
3155 .frac::after {
3156 content: "\200B";
3159 /*= Removing browser default styling of various elements =*/
3161 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3162 :focus {
3163 outline: none;
3166 /* Remove "embossed" appearance of horizontal rules. */
3167 hr {
3168 border: none;
3171 input,
3172 button,
3173 textarea {
3174 -webkit-appearance: none;
3175 -moz-appearance: none;
3176 appearance: none;
3179 input {
3180 font-family: inherit;
3181 font-size: inherit;
3182 font-weight: inherit;
3185 /*************/
3186 /* FOOTNOTES */
3187 /*************/
3189 ol {
3190 counter-reset: ordered-list;
3192 .footnote-definition {
3193 font-size: 0.9em;
3194 list-style-type: none;
3195 counter-increment: ordered-list;
3196 position: relative;
3198 .footnote-definition p {
3199 font-size: inherit !important;
3201 .footnote-definition::before {
3202 content: counter(ordered-list) ".";
3203 position: absolute;
3204 left: -2.5em;
3205 font-weight: bold;
3206 text-align: right;
3207 width: 2em;
3210 /*********/
3211 /* LISTS */
3212 /*********/
3214 li {
3215 margin-bottom: 0.5em;
3218 .body-text ol p,
3219 .body-text ul p {
3220 margin: 0.5em 0;
3223 .post-body ol {
3224 list-style: none;
3225 padding: 0;
3226 counter-reset: ol;
3228 .post-body ol > li {
3229 position: relative;
3230 counter-increment: ol;
3231 padding: 0 0 0 2.5em;
3232 margin: 0.25em 0 0 0;
3234 .post-body ol > li::before {
3235 content: counter(ol) ".";
3236 position: absolute;
3237 width: 2em;
3238 text-align: right;
3239 left: 0;
3241 .post-body ul {
3242 list-style: none;
3243 padding: 0;
3245 .post-body ul:not(.contents-list) > li {
3246 position: relative;
3247 padding: 0 0 0 1.75em;
3248 margin: 0.25em 0 0 0;
3250 .post-body ul:not(.contents-list) > li ul > li {
3251 padding: 0 0 0 2em;
3253 .post-body ul:not(.contents-list) > li::before {
3254 content: "•";
3255 position: absolute;
3256 width: 1.25em;
3257 text-align: right;
3258 left: 0;
3260 .post-body ul:not(.contents-list) > li ul > li::before {
3261 width: 1.5em;
3263 .post-body li > ul:first-child > li {
3264 padding-left: 0;
3266 .post-body li > ul:first-child > li::before {
3267 content: none;
3270 /**************/
3271 /* ERROR PAGE */
3272 /**************/
3274 .error-retry-form {
3275 margin: 0.5em 0;
3278 .error-retry-form input[type="submit"] {
3279 border: 1px solid #aaa;
3280 font-weight: bold;
3281 font-size: 1.125rem;
3282 padding: 0.5em 1.25em;
3285 /**************/
3286 /* ABOUT PAGE */
3287 /**************/
3289 #content.about-page .contents {
3290 margin-top: 0.25em;
3292 #content.about-page .accesskey-table {
3293 border-collapse: collapse;
3294 margin: auto;
3296 #content.about-page .accesskey-table th,
3297 #content.about-page .accesskey-table td {
3298 padding: 2px 6px;
3300 #content.about-page .accesskey-table td:first-child {
3301 padding-right: 1.5em;
3303 #content.about-page .accesskey-table td:last-child {
3304 text-align: center;
3305 font-family: Inconsolata, Menlo, monospace;
3307 #content.about-page h3:nth-of-type(n+2) {
3308 clear: both;
3311 /******************/
3312 /* IMAGES OVERLAY */
3313 /******************/
3315 #images-overlay + #content .post-body img {
3316 visibility: hidden;
3319 #images-overlay div {
3320 position: absolute;
3322 #images-overlay div::after {
3323 content: "Click to enlarge";
3324 display: block;
3325 position: absolute;
3326 margin: auto;
3327 left: 0;
3328 right: 0;
3329 bottom: 10px;
3330 padding: 6px 10px;
3331 font-size: 1.25rem;
3332 background-color: rgba(0,0,0,0.6);
3333 color: #fff;
3334 border-radius: 5px;
3335 opacity: 0.0;
3336 transition: opacity 0.15s ease;
3337 pointer-events: none;
3339 @supports (width: -moz-fit-content) {
3340 #images-overlay div::after {
3341 width: -moz-fit-content;
3344 @supports (width: fit-content) {
3345 #images-overlay div::after {
3346 width: fit-content;
3349 #images-overlay div:hover::after {
3350 opacity: 1.0;
3353 #images-overlay img {
3354 width: 100%;
3357 /***************/
3358 /* IMAGE FOCUS */
3359 /***************/
3361 /*=--------------=*/
3362 /*= Hover styles =*/
3363 /*=--------------=*/
3365 #content img:hover,
3366 #images-overlay img:hover {
3367 filter: drop-shadow(0 0 3px #777);
3368 cursor: zoom-in;
3370 #content img:active,
3371 #images-overlay img:active {
3372 transform: scale(0.975);
3375 /*=---------=*/
3376 /*= Overlay =*/
3377 /*=---------=*/
3379 #image-focus-overlay {
3380 position: fixed;
3381 top: 0;
3382 right: 0;
3383 bottom: 0;
3384 left: 0;
3385 z-index: 2;
3386 display: none;
3387 cursor: zoom-out;
3389 #image-focus-overlay::before {
3390 content: "";
3391 display: block;
3392 position: absolute;
3393 top: 0;
3394 right: 0;
3395 bottom: 0;
3396 left: 0;
3397 background-color: #000;
3398 opacity: 0.5;
3399 z-index: -1;
3401 #image-focus-overlay.engaged {
3402 display: initial;
3405 #image-focus-overlay img {
3406 margin: auto;
3407 position: absolute;
3408 left: 50%;
3409 top: 50%;
3410 transform: translateX(-50%) translateY(-50%);
3413 /*=-------------------=*/
3414 /*= Single-image mode =*/
3415 /*=-------------------=*/
3417 #image-focus-overlay:not(.slideshow) .image-number,
3418 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3419 visibility: hidden;
3422 /*=---------=*/
3423 /*= Caption =*/
3424 /*=---------=*/
3426 #image-focus-overlay .caption {
3427 position: absolute;
3428 bottom: 0.75em;
3429 background-color: rgba(0,0,0,0.7);
3430 left: 9em;
3431 right: 9em;
3432 margin: auto;
3433 max-width: calc(100% - 18em);
3434 text-align: center;
3435 font-size: 1.375em;
3436 border-radius: 8px;
3437 z-index: 1;
3438 transition:
3439 bottom 0.2s ease;
3441 @supports (width: -moz-fit-content) {
3442 #image-focus-overlay .caption {
3443 width: -moz-fit-content;
3446 @supports (width: fit-content) {
3447 #image-focus-overlay .caption {
3448 width: fit-content;
3451 #image-focus-overlay .caption.hidden {
3452 bottom: -5em;
3453 transition:
3454 bottom 0.5s ease;
3457 #image-focus-overlay .caption p {
3458 margin: 1em 1.25em;
3459 color: #fff;
3462 #image-focus-overlay .caption:not(:empty)::before {
3463 content: "";
3464 display: block;
3465 position: absolute;
3466 width: 100vw;
3467 height: calc(100% + 1.5em);
3468 z-index: -1;
3469 top: -0.75em;
3470 left: calc(-50vw + 50%);
3474 /*=--------------=*/
3475 /*= Help overlay =*/
3476 /*=--------------=*/
3478 #image-focus-overlay .help-overlay {
3479 position: absolute;
3480 display: flex;
3481 flex-flow: column;
3482 z-index: 2;
3483 font-size: 1.5rem;
3484 padding: 1em;
3485 border-radius: 10px;
3486 bottom: 1em;
3487 right: 1em;
3488 overflow: hidden;
3489 white-space: nowrap;
3490 color: transparent;
3491 cursor: default;
3492 visibility: hidden;
3493 transition:
3494 visibility 1s ease,
3495 color 1s ease,
3496 background-color 1s ease,
3497 bottom 0.3s ease;
3499 #image-focus-overlay .help-overlay:hover {
3500 max-width: 24em;
3501 max-height: 14em;
3502 background-color: rgba(0,0,0,0.85);
3503 color: #fff;
3504 visibility: visible;
3505 transition:
3506 visibility 0.2s ease 0.3s,
3507 color 0.2s ease 0.3s,
3508 background-color 0.2s ease 0.3s;
3511 #image-focus-overlay .help-overlay::after {
3512 content: "\F128";
3513 font-family: "Font Awesome", "Font Awesome 5 Free";
3514 font-weight: 900;
3515 font-size: 2rem;
3516 position: absolute;
3517 right: 0;
3518 bottom: 0;
3519 padding: 10px;
3520 color: #000;
3521 filter: drop-shadow(0 0 6px #fff);
3522 visibility: visible;
3523 opacity: 0.85;
3524 transition:
3525 visibility 1s ease;
3527 #image-focus-overlay .help-overlay:hover::after {
3528 visibility: hidden;
3529 transition:
3530 visibility 0.2s ease 0.3s;
3533 #image-focus-overlay .help-overlay p {
3534 margin: 0;
3535 text-indent: -2em;
3536 padding-left: 2em;
3537 max-width: 100%;
3538 overflow: hidden;
3540 #image-focus-overlay .help-overlay p + p {
3541 margin: 0.75em 0 0 0;
3543 #image-focus-overlay .help-overlay.hidden {
3544 bottom: -2em;
3547 /*=--------------=*/
3548 /*= Slide number =*/
3549 /*=--------------=*/
3551 #image-focus-overlay .image-number {
3552 position: absolute;
3553 z-index: 2;
3554 font-size: 1.75rem;
3555 left: 1em;
3556 bottom: 1em;
3557 font-weight: 600;
3558 text-shadow:
3559 0 0 3px #fff,
3560 0 0 5px #fff,
3561 0 0 8px #fff,
3562 0 0 13px #fff;
3563 width: 1.5em;
3564 text-align: right;
3565 white-space: nowrap;
3566 transition: bottom 0.3s ease;
3568 #image-focus-overlay .image-number::before {
3569 content: "#";
3570 opacity: 0.3;
3572 #image-focus-overlay .image-number::after {
3573 content: " of " attr(data-number-of-images);
3574 opacity: 0.3;
3576 #image-focus-overlay .image-number:hover::before,
3577 #image-focus-overlay .image-number:hover::after {
3578 opacity: 1.0;
3580 #image-focus-overlay .image-number.hidden {
3581 bottom: -1.25em;
3584 /*=-------------------=*/
3585 /*= Slideshow buttons =*/
3586 /*=-------------------=*/
3588 #image-focus-overlay .slideshow-buttons {
3589 position: absolute;
3590 top: 0;
3591 left: 0;
3592 width: 100%;
3593 height: 100%;
3594 z-index: 1;
3595 display: flex;
3596 justify-content: space-between;
3597 pointer-events: none;
3599 #image-focus-overlay .slideshow-buttons button {
3600 font-family: "Font Awesome", "Font Awesome 5 Free";
3601 font-weight: 900;
3602 font-size: 3rem;
3603 padding: 0.5em;
3604 color: #ddd;
3605 position: relative;
3606 left: 0;
3607 transition:
3608 left 0.3s ease;
3609 pointer-events: auto;
3611 #image-focus-overlay .slideshow-buttons button::selection {
3612 background-color: transparent;
3614 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3615 #image-focus-overlay .slideshow-buttons button:hover {
3616 background-color: rgba(0,0,0,0.1);
3617 color: #777;
3620 #image-focus-overlay .slideshow-buttons button:active {
3621 transform: none;
3622 color: #888;
3624 #image-focus-overlay .slideshow-buttons button:disabled {
3625 text-shadow: none;
3626 background-color: transparent;
3627 color: #ddd;
3628 cursor: default;
3629 opacity: 0.4;
3631 #image-focus-overlay .slideshow-button.previous.hidden {
3632 left: -1.75em;
3634 #image-focus-overlay .slideshow-button.next.hidden {
3635 left: 1.75em;
3638 /*=-----------------=*/
3639 /*= Background blur =*/
3640 /*=-----------------=*/
3642 .blurred {
3643 filter: blur(3px);
3646 /**************************/
3647 /* QUALIFIED HYPERLINKING */
3648 /**************************/
3650 #content.no-comments .comments,
3651 #content.no-comments .post-meta .comment-count,
3652 #content.no-comments .post-meta .karma,
3653 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3654 #content.no-comments + #ui-elements-container #hns-date-picker,
3655 #content.no-comments + #ui-elements-container #quick-nav-ui {
3656 display: none;
3659 #content.no-nav-bars #primary-bar,
3660 #content.no-nav-bars #secondary-bar {
3661 display: none;
3663 #content.no-nav-bars {
3664 margin: 8px auto;
3666 #content.no-nav-bars + #ui-elements-container > * {
3667 padding-top: 8px;
3670 #aux-about-link {
3671 position: fixed;
3672 top: 40px;
3673 left: calc((100% - 900px) / 2 - 69px);
3674 width: 1.5em;
3675 height: 1.5em;
3676 text-align: center;
3677 display: table;
3679 #aux-about-link a {
3680 display: table-cell;
3681 width: 100%;
3682 vertical-align: middle;
3683 font-family: "Font Awesome", "Font Awesome 5 Free";
3684 font-weight: 900;
3685 font-size: 1.25rem;
3686 opacity: 0.4;
3687 z-index: 1;
3690 .qualified-linking {
3691 margin: 0;
3692 position: relative;
3694 .qualified-linking input[type='checkbox'] {
3695 visibility: hidden;
3696 width: 0;
3697 height: 0;
3698 margin: 0;
3700 .qualified-linking label {
3701 font-family: "Font Awesome", "Font Awesome 5 Free";
3702 font-weight: 900;
3703 font-size: 1rem;
3704 padding: 0 0.5em;
3705 display: inline-block;
3706 margin-left: 0.25em;
3708 .qualified-linking label:hover {
3709 cursor: pointer;
3711 .qualified-linking label:active span {
3712 display: inline-block;
3713 transform: scale(0.9);
3715 .qualified-linking label::selection {
3716 background-color: transparent;
3719 .qualified-linking label::after {
3720 content: "";
3721 width: 100vw;
3722 height: 0;
3723 left: 0;
3724 top: 0;
3725 position: fixed;
3726 z-index: 1;
3727 cursor: default;
3729 .qualified-linking input[type='checkbox']:checked + label::after {
3730 height: 100vh;
3733 .qualified-linking-toolbar {
3734 position: absolute;
3735 right: 0.25em;
3736 top: 110%;
3737 z-index: 1;
3739 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3740 display: none;
3742 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3743 display: block;
3745 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3746 top: unset;
3747 bottom: 125%;
3750 .qualified-linking-toolbar a {
3751 display: block;
3752 padding: 0 6px;
3753 margin: 4px;
3755 .qualified-linking-toolbar a::selection {
3756 background-color: transparent;
3759 /********/
3760 /* MATH */
3761 /********/
3763 .mathjax-block-container {
3764 overflow-y: hidden;
3765 border-radius: 6px;
3766 margin: 1em 0 1.5em 0;
3768 .mathjax-inline-container {
3769 max-width: 100%;
3770 display: inline-block;
3771 overflow-x: auto;
3772 overflow-y: hidden;
3773 position: relative;
3774 vertical-align: text-top;
3775 padding: 0 1px;
3777 .post .mathjax-inline-container {
3778 line-height: 1.1;
3779 top: 2px;
3781 .comment .mathjax-inline-container {
3782 top: 3px;
3783 line-height: 1;
3785 .mathjax-inline-container .mjx-chtml {
3786 padding: 0;
3789 /************/
3790 /* SPOILERS */
3791 /************/
3793 .spoiler {
3794 color: #000;
3795 background-color: currentColor;
3796 transition: none;
3797 text-shadow: none;
3798 margin: 1em 0;
3799 box-shadow: 0 0 0 1px currentColor inset;
3800 overflow: auto;
3802 .spoiler:not(:last-child) {
3803 margin-bottom: 0;
3805 #content .spoiler * {
3806 color: inherit;
3807 border: none;
3809 .spoiler:hover {
3810 color: unset;
3811 background-color: unset;
3812 text-shadow: unset;
3813 transition:
3814 color 0.1s ease-out 0.1s,
3815 background-color 0.1s ease-out 0.1s,
3816 text-shadow 0.1s ease-out 0.1s;
3818 .spoiler::selection,
3819 .spoiler ::selection {
3820 color: #fff;
3821 background-color: #000;
3823 .spoiler:not(:hover)::selection,
3824 .spoiler:not(:hover) ::selection {
3825 background-color: transparent;
3828 /*= Fix for LessWrong being weird =*/
3830 .spoiler > p {
3831 padding: 0 7px;
3833 .spoiler > p:first-child {
3834 margin-top: 0.25em;
3836 .spoiler > p:last-child {
3837 margin-bottom: 0;
3838 padding-bottom: 0.25em;
3840 .spoiler > p:hover ~ p {
3841 background-color: currentColor;
3843 .spoiler > p + p {
3844 margin-top: -1em;
3846 .spoiler > p:not(:first-child) {
3847 padding-top: 0.5em;
3849 .spoiler > p:not(:last-child) {
3850 padding-bottom: 0.5em;
3853 /*******************/
3854 /* ALIGNMENT FORUM */
3855 /*******************/
3857 #content.alignment-forum-index-page::after {
3858 content: "Alignment Forum";
3859 grid-row: 3;
3860 font-size: 1.5rem;
3861 margin: 0.375em 0 0 -0.375em;
3864 /**********************/
3865 /* FOR NARROW SCREENS */
3866 /**********************/
3868 @media only screen and (max-width: 1440px) {
3869 #hns-date-picker {
3870 right: -81px;
3871 padding: 8px 10px 10px 10px;
3872 bottom: 62px;
3873 display: none;
3875 #hns-date-picker::before {
3876 content: "";
3877 position: absolute;
3878 display: block;
3879 z-index: -1;
3880 height: calc(100% + 2px);
3881 top: -1px;
3882 left: -1px;
3883 width: 50%;
3886 @media only screen and (max-width: 1160px) {
3887 #new-comment-nav-ui {
3888 bottom: 180px;
3889 right: -68px;
3891 #hns-date-picker {
3892 bottom: 200px;
3893 right: -36px;
3895 #hns-date-picker::before {
3896 width: calc(100% - 35px);
3898 #theme-selector button::before {
3899 right: unset;
3900 left: 100%;
3902 #theme-selector:hover::after {
3903 content: "";
3904 display: block;
3905 position: absolute;
3906 width: calc(6em - 7px);
3907 height: calc(100% + 2px);
3908 top: 0;
3909 left: calc(100% + 1px);
3911 #anti-kibitzer-toggle {
3912 bottom: 330px;
3915 @media only screen and (max-width: 1080px) {
3916 #width-selector {
3917 right: -30px;
3919 #width-selector button {
3920 display: block;
3922 #text-size-adjustment-ui {
3923 top: 90px;
3924 right: -30px;
3926 #text-size-adjustment-ui button {
3927 display: block;
3928 position: relative;
3930 #text-size-adjustment-ui button.increase {
3931 bottom: 48px;
3933 #text-size-adjustment-ui button.decrease {
3934 top: 50px;
3936 #theme-selector {
3937 top: 46px;
3938 left: -44px;
3940 #theme-tweaker-toggle {
3941 left: -44px;
3942 top: 2px;
3944 #theme-tweaker-toggle button {
3945 height: 2em;
3946 width: 2em;
3947 padding: 7px;
3949 #quick-nav-ui {
3950 right: -54px;
3952 #new-comment-nav-ui {
3953 right: -55px;
3955 #hns-date-picker {
3956 right: -23px;
3958 #hns-date-picker::before {
3959 width: calc(100% - 22px);
3961 #anti-kibitzer-toggle {
3962 right: -54px;
3965 @media only screen and (max-width: 1040px) {
3966 #quick-nav-ui {
3967 right: -49px;
3969 #new-comment-nav-ui {
3970 right: -50px;
3972 #hns-date-picker {
3973 right: -18px;
3975 #hns-date-picker::before {
3976 width: calc(100% - 17px);
3978 #anti-kibitzer-toggle {
3979 right: -50px;
3982 @media only screen and (max-width: 1020px) {
3983 #quick-nav-ui {
3984 right: -20px;
3986 #new-comment-nav-ui {
3987 right: -21px;
3989 #new-comment-nav-ui .new-comments-count::before {
3990 content: "";
3991 position: absolute;
3992 width: 100%;
3993 height: calc(100% + 45px);
3994 z-index: -1;
3995 left: 0;
3996 top: -22px;
3998 #hns-date-picker {
3999 right: 19px;
4001 #hns-date-picker::before {
4002 width: 100%;
4004 #anti-kibitzer-toggle {
4005 right: -20px;
4008 @media only screen and (max-width: 1000px) {
4009 #theme-selector {
4010 left: -17px;
4011 top: 120px;
4012 padding: 3px 0;
4013 max-width: 32px;
4015 #theme-selector button {
4016 margin: 1px 4px;
4018 #text-size-adjustment-ui {
4019 top: 100px;
4020 right: -12px;
4022 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
4023 #quick-nav-ui,
4024 #new-comment-nav-ui,
4025 #new-comment-nav-ui + #hns-date-picker,
4026 #anti-kibitzer-toggle {
4027 opacity: 0.4;
4029 #quick-nav-ui:hover,
4030 #new-comment-nav-ui:hover,
4031 #new-comment-nav-ui + #hns-date-picker:hover,
4032 #new-comment-nav-ui + #hns-date-picker:focus-within,
4033 #new-comment-nav-ui:hover + #hns-date-picker,
4034 #anti-kibitzer-toggle:hover {
4035 opacity: 1.0;
4038 #theme-tweaker-toggle {
4039 top: 70px;
4040 left: -21px;
4044 /**************/
4045 /* PRINT VIEW */
4046 /**************/
4048 @media only print {
4049 .nav-bar {
4050 visibility: hidden;
4051 max-height: 0;
4052 overflow: hidden;
4054 #ui-elements-container {
4055 display: none;
4057 #images-overlay {
4058 display: none;
4060 #images-overlay + #content .post-body img {
4061 visibility: visible;
4063 .comment-controls {
4064 display: none;
4066 #comments-sort-mode-selector {
4067 display: none;
4069 .comment-minimize-button {
4070 display: none;
4072 .post-meta .qualified-linking,
4073 .post-meta .lw2-link {
4074 display: none;
4076 .comment-meta .permalink,
4077 .comment-meta .lw2-link,
4078 .comment-meta .comment-parent-link {
4079 display: none;
4081 .new-comment::before {
4082 display: none;
4084 #content::before {
4085 box-shadow: none;
4089 /*****************/
4090 /* MOBILE LAYOUT */
4091 /*****************/
4093 /* Hide the mobile elements on desktop screens: */
4095 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
4096 #post-nav-ui-toggle,
4097 #appearance-adjust-ui-toggle,
4098 #theme-selector .theme-selector-close-button {
4099 display: none;
4103 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
4105 /*====================*/
4106 /* MOBILE UI ELEMENTS */
4107 /*====================*/
4109 #ui-elements-container {
4110 height: unset;
4111 position: unset;
4113 #ui-elements-container > * {
4114 position: fixed;
4115 visibility: hidden;
4116 opacity: 1.0;
4117 z-index: 10000;
4120 #ui-elements-container > div[id$='-ui-toggle'] {
4121 visibility: visible;
4122 display: inline-block;
4123 border-radius: 50%;
4124 z-index: 10000;
4126 #ui-elements-container > div[id$='-ui-toggle'] button,
4127 #theme-selector .theme-selector-close-button {
4128 font-family: Font Awesome;
4129 font-weight: 900;
4130 font-size: 32px;
4131 padding: 10px;
4132 opacity: 0.8;
4133 -webkit-tap-highlight-color: transparent;
4134 transition: transform 0.2s ease;
4136 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4137 #theme-selector .theme-selector-close-button::selection {
4138 background-color: transparent;
4140 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4141 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4142 border: none;
4144 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4145 transform: rotate(-90deg);
4146 opacity: 1.0;
4149 #appearance-adjust-ui-toggle {
4150 bottom: 10px;
4151 left: 10px;
4154 #post-nav-ui-toggle {
4155 bottom: 10px;
4156 right: 10px;
4159 #theme-selector.engaged,
4160 #quick-nav-ui.engaged,
4161 #new-comment-nav-ui.engaged,
4162 #hns-date-picker.engaged {
4163 visibility: visible;
4166 #image-focus-overlay.engaged {
4167 visibility: visible;
4169 #image-focus-overlay .help-overlay {
4170 display: none;
4173 /*=========*/
4174 /* GENERAL */
4175 /*=========*/
4177 @media only screen and (max-width: 900px) {
4178 #content,
4179 #images-overlay,
4180 #ui-elements-container {
4181 min-width: unset;
4182 width: unset;
4184 #content {
4185 padding: 0 4px;
4189 /*================*/
4190 /* THEME SELECTOR */
4191 /*================*/
4193 #theme-selector {
4194 display: flex;
4195 flex-flow: column;
4196 width: calc(100vw - 20px);
4197 max-width: 360px;
4198 padding: 0 0 3px 0;
4199 overflow: hidden;
4200 max-height: 0;
4201 transition:
4202 top 0.2s ease,
4203 max-height 0.2s ease,
4204 visibility 0.2s ease;
4205 top: calc(100% + 10px);
4206 left: 0;
4207 right: 0;
4208 margin: auto;
4210 #theme-selector.engaged {
4211 max-height: 1000px;
4212 top: 10px;
4213 z-index: 10001;
4215 #theme-selector::before {
4216 content: "Select theme";
4217 white-space: nowrap;
4218 display: block;
4219 font-weight: 600;
4220 font-size: 2rem;
4221 margin: 0.375em 1em 0.5em 1em;
4222 text-align: center;
4224 #theme-selector button {
4225 width: calc(100% - 0.5em);
4226 background-repeat: no-repeat;
4227 padding: 1em 0.875em;
4228 margin: 1px 4px;
4229 line-height: 1;
4230 height: unset;
4231 position: relative;
4233 #theme-selector button::after {
4234 content: attr(data-theme-description);
4235 white-space: nowrap;
4236 position: absolute;
4237 text-align: left;
4238 left: 2.5em;
4239 top: 1em;
4241 @media only screen and (max-height: 675px) {
4242 #theme-selector button {
4243 padding: 0.875em;
4245 #theme-selector button::after {
4246 top: 0.875em;
4249 #theme-selector .theme-selector-close-button {
4250 position: absolute;
4251 width: unset;
4252 background-color: transparent;
4253 top: 0;
4254 right: -3px;
4256 #theme-selector .theme-selector-close-button,
4257 #theme-selector .theme-selector-close-button:focus,
4258 #theme-selector .theme-selector-close-button:active,
4259 #theme-selector .theme-selector-close-button:hover {
4260 box-shadow: none;
4263 /*===============*/
4264 /* THEME TWEAKER */
4265 /*===============*/
4267 #theme-selector {
4268 padding: 0 0 64px 0;
4270 #theme-selector ~ #theme-tweaker-toggle {
4271 top: 100%;
4273 #theme-selector ~ #theme-tweaker-toggle::after {
4274 content: "Open theme tweaker";
4275 position: absolute;
4276 font-size: 0.625em;
4277 white-space: nowrap;
4278 left: -50%;
4279 top: 100%;
4281 #theme-selector.engaged ~ #theme-tweaker-toggle {
4282 visibility: visible;
4283 top: 530px;
4284 left: 0;
4285 right: 0;
4286 margin: auto;
4287 z-index: 11111;
4288 transition:
4289 top 0.2s ease,
4290 visibility 0.2s ease;
4292 @media only screen and (max-height: 675px) {
4293 #theme-selector.engaged ~ #theme-tweaker-toggle {
4294 top: 492px;
4297 @supports (width: -moz-fit-content) {
4298 #theme-selector.engaged ~ #theme-tweaker-toggle {
4299 width: -moz-fit-content;
4302 @supports (width: fit-content) {
4303 #theme-selector.engaged ~ #theme-tweaker-toggle {
4304 width: fit-content;
4307 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4308 opacity: 1.0;
4311 #theme-tweaker-ui {
4312 visibility: visible;
4315 /*======================*/
4316 /* ANTI-KIBITZER TOGGLE */
4317 /*======================*/
4319 #theme-selector ~ #anti-kibitzer-toggle {
4320 top: 100%;
4321 bottom: unset;
4322 left: 0;
4323 right: 0;
4324 margin: auto;
4325 box-shadow: none;
4326 width: calc(100vw - 44px);
4327 max-width: 330px;
4328 text-align: right;
4329 pointer-events: none;
4331 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4332 visibility: visible;
4333 z-index: 11110;
4334 top: 530px;
4335 transition:
4336 top 0.2s ease,
4337 visibility 0.2s ease;
4339 @media only screen and (max-height: 675px) {
4340 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4341 top: 492px;
4344 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4345 pointer-events: auto;
4346 display: inline-block;
4349 /*=================*/
4350 /* QUICKNAV WIDGET */
4351 /*=================*/
4353 #quick-nav-ui {
4354 max-width: 0px;
4355 transition:
4356 max-width 0.2s ease,
4357 visibility 0.2s ease;
4358 display: flex;
4359 right: 72px;
4360 bottom: 14px;
4362 #quick-nav-ui.engaged {
4363 max-width: 1000px;
4365 #quick-nav-ui a {
4366 position: relative;
4367 margin: 2px;
4369 #quick-nav-ui a + a {
4370 margin-left: 5px;
4372 #quick-nav-ui a::after {
4373 position: absolute;
4374 top: calc(100% + 2px);
4375 font-size: 0.375rem;
4376 left: 0;
4377 right: 0;
4378 margin: auto;
4379 line-height: 1;
4380 padding: 2px;
4381 text-transform: uppercase;
4382 z-index: -1;
4384 @supports (width: -moz-fit-content) {
4385 #quick-nav-ui a::after {
4386 width: -moz-fit-content;
4389 @supports (width: fit-content) {
4390 #quick-nav-ui a::after {
4391 width: fit-content;
4394 #quick-nav-ui a[href='#top']::after {
4395 content: "Top";
4396 left: -1px;
4398 #quick-nav-ui a[href='#comments']::after {
4399 content: "Comments";
4401 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4402 visibility: hidden;
4403 transition: visibility 0.2s ease;
4405 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4406 visibility: visible;
4408 #quick-nav-ui a[href='#bottom-bar']::after {
4409 content: "Bottom";
4412 /*======================*/
4413 /* NEW COMMENT QUICKNAV */
4414 /*======================*/
4416 #new-comment-nav-ui {
4417 max-width: 0px;
4418 max-height: 0px;
4419 transition:
4420 max-width 0.2s ease,
4421 max-height 0.2s ease,
4422 visibility 0.2s ease;
4423 display: flex;
4424 right: 78px;
4425 bottom: 70px;
4427 #new-comment-nav-ui::before {
4428 content: "New Comments";
4429 position: absolute;
4430 bottom: 100%;
4431 font-size: 0.5625rem;
4432 left: 0;
4433 right: 0;
4434 margin: auto;
4435 padding: 2px 3px;
4436 text-transform: uppercase;
4437 z-index: -1;
4439 @supports (width: -moz-fit-content) {
4440 #new-comment-nav-ui::before {
4441 width: -moz-fit-content;
4444 @supports (width: fit-content) {
4445 #new-comment-nav-ui::before {
4446 width: fit-content;
4449 #new-comment-nav-ui.engaged {
4450 max-width: 1000px;
4451 max-height: 1000px;
4453 #new-comment-nav-ui .new-comment-sequential-nav-button {
4454 top: unset;
4455 bottom: unset;
4456 padding: 2px 7px;
4458 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4459 padding: 2px 7px 3px 7px;
4461 #new-comment-nav-ui .new-comments-count {
4462 padding: 4px 0 5px 0;
4464 #new-comment-nav-ui .new-comments-count::before {
4465 display: none;
4467 #new-comment-nav-ui button::after {
4468 position: absolute;
4469 font-size: 0.375rem;
4470 left: 0;
4471 right: 0;
4472 margin: auto;
4473 line-height: 1;
4474 text-transform: uppercase;
4475 pointer-events: none;
4477 #new-comment-nav-ui button.new-comment-previous::after {
4478 content: "Previous";
4479 bottom: 5px;
4481 #new-comment-nav-ui button.new-comment-next::after {
4482 content: "Next";
4483 top: 7px;
4486 /*=================*/
4487 /* HNS DATE PICKER */
4488 /*=================*/
4490 #hns-date-picker {
4491 max-height: 0px;
4492 bottom: 132px;
4493 right: 62px;
4494 transition:
4495 max-height 0.2s ease,
4496 visibility 0.2s ease;
4498 #hns-date-picker.engaged {
4499 max-height: 1000px;
4501 #hns-date-picker::before {
4502 width: calc(100% + 2px);
4503 border-width: 1px !important;
4506 /*=========*/
4507 /* NAV BAR */
4508 /*=========*/
4510 #bottom-bar {
4511 padding: 0 4.5rem;
4513 #bottom-bar .nav-item {
4514 box-shadow: none;
4515 position: relative;
4517 #bottom-bar .nav-inner {
4518 font-size: 2rem;
4519 padding: 1rem 0 1.25rem 0;
4520 visibility: hidden;
4521 position: static;
4522 width: 0;
4524 #content #bottom-bar .nav-item .nav-inner::before {
4525 margin: 0;
4526 visibility: visible;
4527 position: absolute;
4528 width: 100%;
4529 height: 100%;
4530 left: 0;
4531 top: 0;
4532 padding: 1rem 0;
4534 #bottom-bar .nav-inner::after {
4535 display: block;
4536 visibility: visible;
4537 text-transform: uppercase;
4538 color: unset;
4539 font-size: 0.75rem;
4540 top: unset;
4541 left: 0;
4542 bottom: 1rem;
4543 width: 100%;
4545 #bottom-bar #nav-item-first .nav-inner::after {
4546 content: "First Page";
4548 #bottom-bar #nav-item-prev .nav-inner::after {
4549 content: "Prev. Page";
4551 #bottom-bar #nav-item-top .nav-inner::after {
4552 content: "Top";
4554 #bottom-bar #nav-item-next .nav-inner::after {
4555 content: "Next Page";
4557 #bottom-bar #nav-item-last .nav-inner::after {
4558 content: "Last Page";
4561 @media only screen and (max-width: 900px) {
4562 #primary-bar,
4563 #secondary-bar {
4564 font-size: 0.75rem;
4566 .nav-bar {
4567 width: calc(100% + 8px);
4568 margin: 0 -4px;
4570 .nav-bar .nav-inner::after {
4571 display: none;
4574 #primary-bar .nav-item {
4575 flex: 1 1 100%;
4577 #secondary-bar .nav-item:not(#nav-item-search) {
4578 flex: 1 1 60px;
4580 #primary-bar .nav-inner,
4581 #secondary-bar .nav-inner {
4582 text-transform: uppercase;
4583 padding: 6px;
4585 #primary-bar .nav-inner::before,
4586 #secondary-bar .nav-inner::before {
4587 display: block;
4588 font-family: "Font Awesome";
4589 font-size: 2em;
4590 font-weight: 900;
4593 #nav-item-home .nav-inner::before {
4594 content: "\F015";
4596 #nav-item-featured .nav-inner::before {
4597 content: "\F005";
4599 #nav-item-all .nav-inner::before {
4600 content: "\F069";
4602 #nav-item-meta .nav-inner::before {
4603 content: "\F077";
4605 #nav-item-recent-comments > * > span {
4606 display: none;
4608 #nav-item-recent-comments .nav-inner::before {
4609 content: "\F036";
4611 #nav-item-archive .nav-inner::before {
4612 content: "\F187";
4614 #nav-item-about .nav-inner::before {
4615 content: "\F129";
4617 #nav-item-search {
4618 font-size: 2em;
4619 padding: 10px;
4621 #nav-item-search .nav-inner::before {
4622 content: none;
4624 #nav-item-search .nav-inner {
4625 height: 100%;
4626 display: flex;
4628 #nav-item-search input {
4629 width: 100%;
4630 height: 100%;
4632 #nav-item-search button {
4633 height: 100%;
4634 padding: 5px 5px 5px 10px;
4635 width: 40px;
4636 overflow: visible;
4637 visibility: hidden;
4639 #nav-item-search button::before {
4640 content: "\F002";
4641 font-family: Font Awesome;
4642 font-weight: 900;
4643 visibility: visible;
4645 #nav-item-login {
4646 padding: 0;
4648 #nav-item-login .nav-inner::before {
4649 content: "\F007";
4652 @media only screen and (max-width: 520px) {
4653 #primary-bar,
4654 #secondary-bar {
4655 font-size: 0.5rem;
4658 #nav-item-search .nav-inner {
4659 padding: 0;
4661 #nav-item-search button {
4662 width: 31px;
4665 #bottom-bar #nav-item-first .nav-inner::after {
4666 content: "First";
4668 #bottom-bar #nav-item-prev .nav-inner::after {
4669 content: "Prev";
4671 #bottom-bar #nav-item-next .nav-inner::after {
4672 content: "Next";
4674 #bottom-bar #nav-item-last .nav-inner::after {
4675 content: "Last";
4679 /*=================*/
4680 /* INBOX INDICATOR */
4681 /*=================*/
4683 @media only screen and (max-width: 900px) {
4684 #inbox-indicator {
4685 width: 100%;
4686 top: 0;
4687 pointer-events: none;
4689 #inbox-indicator::before {
4690 width: 100%;
4691 font-size: 1rem;
4692 text-align: right;
4693 padding: 1px 6px;
4695 #inbox-indicator.new-messages {
4696 pointer-events: auto;
4698 #inbox-indicator.new-messages::before {
4699 box-shadow: 0 0 8px 1px #f00 inset;
4702 @media only screen and (max-width: 520px) {
4703 #inbox-indicator::before {
4704 font-size: 0.75rem;
4705 padding: 2px 5px;
4708 @media only screen and (max-width: 374px) {
4709 #inbox-indicator::before {
4710 font-size: 0.625rem;
4714 /*===================*/
4715 /* TOP PAGINATION UI */
4716 /*===================*/
4718 #top-nav-bar {
4719 font-size: 1.75rem;
4722 /*==============*/
4723 /* PAGE TOOLBAR */
4724 /*==============*/
4726 @media only screen and (max-width: 900px) {
4727 #content > .page-toolbar {
4728 font-size: 1rem;
4729 margin-right: 0;
4731 #content.user-page > .page-toolbar {
4732 grid-column: 2 / span 2;
4733 margin: 0 0 6px 0;
4736 @media only screen and (max-width: 520px) {
4737 #content:not(.user-page) .page-toolbar {
4738 display: flex;
4739 flex-direction: column-reverse;
4740 text-align: right;
4741 align-self: start;
4742 padding: 4px 0 0 0;
4744 #content.user-page .page-toolbar {
4745 display: flex;
4746 flex-flow: row;
4747 justify-content: flex-end;
4748 padding: 2px 0 0 0;
4750 #content.user-page .page-toolbar > form,
4751 #content.user-page .page-toolbar > .button {
4752 text-align: center;
4753 flex-basis: 25%;
4754 margin-left: 1.5em;
4756 #content.user-page .page-toolbar .button {
4757 text-transform: uppercase;
4758 font-size: 0.625rem;
4760 #content.user-page .page-toolbar .button::before {
4761 font-size: 1.375rem;
4762 display: block;
4763 padding: 0;
4765 #content.user-page .page-toolbar .rss {
4766 white-space: nowrap;
4767 margin: 0 0 0 1.5em;
4769 .page-toolbar > * {
4770 line-height: 1.15;
4771 padding: 6px 0;
4772 margin: 0;
4776 /*==============*/
4777 /* SUBLEVEL NAV */
4778 /*==============*/
4780 @media only screen and (max-width: 900px) {
4781 .sublevel-nav:not(.sort) {
4782 flex-wrap: wrap;
4783 width: calc(100vw - 200px);
4785 .sublevel-nav:not(.sort) .sublevel-item {
4786 margin: 1px;
4787 flex-basis: 7em;
4790 @media only screen and (max-width: 520px) {
4791 .sublevel-nav:not(.sort) .sublevel-item {
4792 font-size: 1rem;
4796 /*=====================*/
4797 /* SORT ORDER SELECTOR */
4798 /*=====================*/
4800 @media only screen and (max-width: 720px) {
4801 #content.index-page > .sublevel-nav.sort {
4802 flex-flow: column;
4803 margin-left: 4px;
4807 /*==========*/
4808 /* ARCHIVES */
4809 /*==========*/
4811 @media only screen and (max-width: 900px) {
4812 div[class^='archive-nav-'] {
4813 flex-wrap: wrap;
4814 justify-content: flex-start;
4816 .archive-nav *[class^='archive-nav-item'],
4817 .archive-nav *[class^='archive-nav-item']:first-child {
4818 padding: 10px;
4819 margin: 2px;
4820 max-width: unset;
4821 flex: 0 1 calc((100% / 8) - 4px);
4823 .archive-nav .archive-nav-item-day,
4824 .archive-nav .archive-nav-item-day:first-child {
4825 flex-basis: calc((100% / 16) - 4px);
4827 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4828 margin-top: 8px;
4829 position: relative;
4831 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4832 content: "";
4833 display: block;
4834 position: absolute;
4835 height: 1px;
4836 width: calc(100% + 8px);
4837 left: -4px;
4838 top: -4px;
4841 @media only screen and (max-width: 720px) {
4842 .archive-nav .archive-nav-item-day,
4843 .archive-nav .archive-nav-item-day:first-child {
4844 flex-basis: calc((100% / 12) - 4px);
4847 @media only screen and (max-width: 520px) {
4848 .archive-nav *[class^='archive-nav-item'],
4849 .archive-nav *[class^='archive-nav-item']:first-child {
4850 flex-basis: calc((100% / 5) - 4px);
4852 .archive-nav .archive-nav-item-day,
4853 .archive-nav .archive-nav-item-day:first-child {
4854 flex-basis: calc((100% / 8) - 4px);
4858 /*==========*/
4859 /* LISTINGS */
4860 /*==========*/
4862 h1.listing {
4863 max-height: unset;
4866 /*============*/
4867 /* USER PAGES */
4868 /*============*/
4870 #content.user-page h1.page-main-heading {
4871 align-self: end;
4873 @media only screen and (max-width: 520px) {
4874 #content.user-page h1.page-main-heading {
4875 padding-right: 100px;
4876 overflow: hidden;
4877 text-overflow: ellipsis;
4879 #content.user-page .user-stats {
4880 grid-column: 2 / span 2;
4882 #content.user-page .user-stats .karma-type {
4883 display: block;
4887 /*============*/
4888 /* LOGIN PAGE */
4889 /*============*/
4891 @media only screen and (max-width: 640px) {
4892 .login-container {
4893 flex-flow: column;
4894 margin: 0 auto 3em auto;
4895 max-width: 400px;
4897 .login-container #login-form,
4898 .login-container #signup-form {
4899 padding: 0 1em 1.25em 1em;
4900 grid-row-gap: 0;
4902 .login-container #signup-form {
4903 padding-top: 1em;
4905 .login-container #login-form > *,
4906 .login-container #signup-form > * {
4907 grid-column: 1 / span 2;
4909 .login-container form label {
4910 text-align: left;
4911 padding: 0;
4912 line-height: 1;
4914 .login-container form input {
4915 margin: 0.25em 0 0.75em 0;
4916 padding: 0.5em;
4918 .login-container form h1 {
4919 grid-column: 1 / span 2;
4920 margin: 0 0 0.25em 0;
4922 .login-container form a {
4923 margin: 0.75em 0 0 0;
4925 .login-container .login-tip {
4926 margin: 1.5em 1em 0 1em;
4930 /*==================*/
4931 /* POSTS & COMMENTS */
4932 /*==================*/
4934 /*===========*/
4935 /* POST-META */
4936 /*===========*/
4938 .post-meta {
4939 line-height: 1.9;
4941 @media only screen and (max-width: 720px) {
4942 .post-meta .lw2-link span,
4943 .post-meta .karma-value span,
4944 .post-meta .comment-count span {
4945 display: none;
4947 .post-meta .comment-count::before {
4948 content: "\F086";
4949 font-family: Font Awesome;
4950 font-size: 0.875em;
4951 margin: 0 0.25em 0 0;
4952 font-weight: 400;
4956 /*=======*/
4957 /* POSTS */
4958 /*=======*/
4960 @media only screen and (max-width: 900px) {
4961 .post-body,
4962 h1.post-title {
4963 padding: 0 6px;
4966 @media only screen and (max-width: 520px) {
4967 .post-body {
4968 font-size: 1.2rem;
4969 line-height: 1.45;
4971 h1.post-title {
4972 font-size: 2em;
4976 /*==========*/
4977 /* COMMENTS */
4978 /*==========*/
4980 @media only screen and (max-width: 900px) {
4981 .comment-body ul {
4982 padding-left: 30px;
4984 .comment-body ol {
4985 padding-left: 30px;
4989 /*==============*/
4990 /* COMMENT-META */
4991 /*==============*/
4993 a.comment-parent-link::after {
4994 display: none;
4996 @media only screen and (max-width: 900px) {
4997 .comment-meta {
4998 padding: 2px 40px 2px 10px;
5001 @media only screen and (max-width: 720px) {
5002 .comment-meta .karma-value span {
5003 display: none;
5005 .comment-meta .comment-parent-link {
5006 opacity: 1.0;
5009 @media only screen and (max-width: 520px) {
5010 .comment-meta {
5011 padding: 2px 10px;
5012 position: relative;
5014 .comment-meta .author {
5015 flex-basis: 100%;
5017 .comment-post-title2 {
5018 display: block;
5019 text-overflow: ellipsis;
5020 overflow: hidden;
5022 .comment-meta .lw2-link {
5023 display: none;
5027 /*=======================*/
5028 /* COMMENTS COMPACT VIEW */
5029 /*=======================*/
5031 /*===========================*/
5032 /* COMMENT THREAD NAVIGATION */
5033 /*===========================*/
5035 @media only screen and (max-width: 900px) {
5036 a.comment-parent-link {
5037 width: 0;
5038 visibility: hidden;
5039 position: relative;
5041 a.comment-parent-link::before {
5042 padding: 0;
5043 font-size: 1em;
5044 left: 0;
5045 top: 0;
5046 line-height: inherit;
5047 visibility: visible;
5048 content: "\F3BF";
5049 transform: scaleX(-1);
5050 width: 2em;
5051 text-align: center;
5054 @media only screen and (max-width: 520px) {
5055 a.comment-parent-link {
5056 position: static;
5058 a.comment-parent-link::before {
5059 padding: 6px;
5060 left: unset;
5061 right: 0;
5062 top: unset;
5063 bottom: 0;
5064 height: 2em;
5068 /*=================================*/
5069 /* COMMENT THREAD MINIMIZE BUTTONS */
5070 /*=================================*/
5072 @media only screen and (max-width: 520px) {
5073 .comment-minimize-button{
5074 right: 2px;
5078 /*===========================*/
5079 /* COMMENTING AND POSTING UI */
5080 /*===========================*/
5082 @media only screen and (max-width: 900px) {
5083 .comment-controls .cancel-comment-button {
5084 max-width: 1.3em;
5085 overflow: hidden;
5086 margin-right: 0.125em;
5088 .comment-controls .edit-button::before {
5089 font-size: 0.9375em;
5091 .comments > .comment-controls .cancel-comment-button {
5092 right: 8px;
5094 .comment-controls .cancel-comment-button::before {
5095 font-size: 1.25rem;
5098 @media only screen and (max-width: 520px) {
5099 .comment-controls {
5100 position: static;
5102 .comment-controls:focus-within {
5103 z-index: 10001;
5105 .comment-controls .cancel-comment-button {
5106 right: 10px;
5108 .textarea-container:focus-within textarea {
5109 position: fixed;
5110 top: 0;
5111 left: 2px;
5112 width: calc(100vw - 4px);
5113 height: calc(100% - 100px);
5114 min-height: unset;
5115 max-height: unset;
5116 border-width: 1px;
5117 z-index: 11001;
5119 #content.conversation-page .textarea-container:focus-within textarea {
5120 height: calc(100% - 54px);
5122 #content.conversation-page .textarea-container:focus-within::after {
5123 content: "";
5124 display: block;
5125 width: 100%;
5126 height: 50px;
5127 position: fixed;
5128 left: 0;
5129 bottom: 0;
5130 z-index: 11000;
5132 .textarea-container:focus-within .guiedit-buttons-container {
5133 position: fixed;
5134 z-index: 11002;
5135 left: 0;
5136 width: 100vw;
5137 height: auto;
5138 background-image: none;
5139 padding: 3px 4px 4px 4px;
5140 margin: 0;
5141 text-align: center;
5142 top: auto;
5143 bottom: 0;
5145 .textarea-container:focus-within button.guiedit {
5146 font-size: 0.9375rem;
5147 line-height: 1.5;
5148 height: auto;
5149 width: calc((100% / 10) - 2px);
5150 padding: 10px 1px 8px 0;
5151 position: relative;
5152 margin: 1px;
5154 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5155 z-index: 11011;
5156 position: fixed;
5157 bottom: 7px;
5158 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5159 font-size: 1.25rem;
5160 padding: 5px 5px 6px 5px;
5161 display: block;
5163 .textarea-container:focus-within button.guiedit sup {
5164 position: absolute;
5165 left: calc(50% + 0.65em);
5166 top: calc(50% - 1.3em);
5168 .textarea-container:focus-within .guiedit-mobile-help-button {
5169 left: 8px;
5171 .textarea-container:focus-within .guiedit-mobile-exit-button {
5172 right: 8px;
5174 .guiedit::after {
5175 display: none;
5178 #markdown-hints,
5179 #edit-post-form #markdown-hints {
5180 z-index: 11111;
5181 position: fixed;
5182 top: 40px;
5183 left: 0;
5184 right: 0;
5185 margin: auto;
5186 padding: 4px 0 4px 8px;
5187 width: 310px;
5188 border-width: 3px;
5189 border-style: double;
5190 pointer-events: none;
5192 #markdown-hints::after {
5193 content: "(Type to hide this help box.)";
5194 color: #090;
5195 display: block;
5196 margin: 12px 18px 13px 10px;
5197 padding: 5px;
5198 font-size: 0.9em;
5199 text-align: center;
5203 /*================*/
5204 /* EDIT POST FORM */
5205 /*================*/
5207 @media only screen and (max-width: 520px) {
5208 #edit-post-form {
5209 padding-bottom: 0;
5211 #edit-post-form .post-meta-fields {
5212 grid-template-columns: 4.5em auto auto auto 1fr auto;
5214 #edit-post-form label[for='url'],
5215 #edit-post-form label[for='section'],
5216 #edit-post-form label[for='title'] {
5217 padding-left: 0;
5219 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
5220 white-space: normal;
5221 line-height: 0.9;
5222 top: -1px;
5223 font-family: Font Awesome;
5224 font-weight: 900;
5225 justify-self: start;
5227 #edit-post-form .post-meta-fields .question-checkbox,
5228 #edit-post-form .post-meta-fields .question-checkbox + label {
5229 grid-column: 6;
5230 margin-left: unset;
5232 #edit-post-form .post-meta-fields input[type='radio'] + label {
5233 align-self: start;
5235 #edit-post-form .textarea-container:focus-within textarea {
5236 height: calc(100% - 101px);
5237 min-height: unset;
5240 #markdown-hints-checkbox,
5241 #markdown-hints-checkbox + label {
5242 display: none;
5245 #edit-post-form div:last-child {
5246 clear: both;
5247 overflow: auto;
5249 #edit-post-form input[type='submit'] {
5250 float: none;
5251 display: block;
5252 font-size: 1.5rem;
5253 margin: 1rem auto 1.5rem auto;
5254 padding: 6px 12px 8px 12px;
5258 /*===================*/
5259 /* TABLE OF CONTENTS */
5260 /*===================*/
5262 @media only screen and (max-width: 900px) {
5263 .contents {
5264 float: none;
5265 display: table;
5266 max-width: none;
5267 margin-left: auto;
5268 margin-right: auto;
5271 @media only screen and (max-width: 520px) {
5272 .contents {
5273 max-width: 100%;
5274 margin: 1em auto 0 auto;
5275 display: table;
5277 .contents-head {
5278 font-size: 1.2em;
5280 div.post-body .contents ul {
5281 font-size: unset;
5285 /*========================*/
5286 /* QUALIFIED HYPERLINKING */
5287 /*========================*/
5289 @media only screen and (max-width: 520px) {
5290 .qualified-linking-toolbar {
5291 right: -5em;
5295 } /* END MOBILE LAYOUT */
5298 /*****************/
5299 /* DEFAULT THEME */
5300 /*****************/
5302 body {
5303 color: #000;
5304 background-color: #d8d8d8;
5305 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
5306 font-feature-settings: 'ss07';
5308 #content {
5309 line-height: 1.55;
5311 #content::before {
5312 background-color: #fff;
5313 box-shadow: 0px 0px 10px #555;
5316 /*=========*/
5317 /* NAV BAR */
5318 /*=========*/
5320 .nav-inner {
5321 font-size: 1.375em;
5322 font-weight: 600;
5324 #secondary-bar .nav-inner {
5325 font-size: 1em;
5328 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5329 #bottom-bar a:hover,
5330 #nav-item-search:not(.nav-current):focus-within {
5331 background-color: #ddd;
5333 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
5334 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
5335 background-color: #d8d8d8;
5338 .nav-bar a:visited {
5339 color: #00e;
5341 .nav-bar a:hover,
5342 .nav-bar a:focus {
5343 text-decoration: none;
5344 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5347 #bottom-bar.decorative::before,
5348 #bottom-bar.decorative::after {
5349 content: "GW";
5350 display: block;
5351 text-align: center;
5352 padding: 0.25em 0 1em 0;
5354 #bottom-bar.decorative::before {
5355 width: 100%;
5356 color: transparent;
5357 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5358 background-repeat: repeat-x;
5359 background-position: center 35%;
5360 margin: 0 30px;
5362 #bottom-bar.decorative::after {
5363 color: #d8d8d8;
5364 position: absolute;
5365 left: 0;
5366 right: 0;
5367 margin: auto;
5368 background-color: #fff;
5369 padding-right: 4px;
5370 padding-left: 4px;
5372 @supports (width: -moz-fit-content) {
5373 #bottom-bar.decorative::after {
5374 width: -moz-fit-content;
5377 @supports (width: fit-content) {
5378 #bottom-bar.decorative::after {
5379 width: fit-content;
5383 /* Accesskey hints */
5385 .nav-inner::after {
5386 display: block;
5387 position: absolute;
5388 left: 5px;
5389 top: -2px;
5390 font-weight: 400;
5391 font-size: 0.7em;
5392 color: #d8d8d8;
5394 .inactive-bar .nav-inner::after {
5395 color: #ccc;
5397 .nav-inner:hover::after {
5398 color: #bbb;
5401 /* This makes the navbar items look like tabs: */
5403 .nav-inactive {
5404 box-shadow:
5405 0 -1px #d8d8d8 inset,
5406 1px 0 #fff inset;
5408 .nav-inactive:first-child {
5409 box-shadow: 0 -1px #d8d8d8 inset;
5411 .inactive-bar .nav-inactive {
5412 background-color: #e4e4e4;
5414 .active-bar .nav-inactive {
5415 background-color: #eee;
5417 .active-bar {
5418 position: relative;
5421 /* For Webkit: */
5422 .active-bar {
5423 box-shadow: 0 -3px 8px -2px #ccc;
5425 .active-bar .nav-inactive {
5426 box-shadow:
5427 0 -4px 8px -4px #bbb inset,
5428 1px 0 #fff inset;
5430 .active-bar .nav-inactive:first-child {
5431 box-shadow:
5432 0 -4px 8px -4px #bbb inset;
5434 .active-bar .nav-current + .nav-inactive {
5435 box-shadow:
5436 5px -4px 8px -4px #bbb inset;
5438 .active-bar .nav-item-last-before-current {
5439 box-shadow:
5440 -5px -4px 8px -4px #bbb inset,
5441 1px 0 #fff inset;
5443 .active-bar .nav-item-last-before-current:first-child {
5444 box-shadow:
5445 -5px -4px 8px -4px #bbb inset;
5447 /* And for Gecko: */
5448 @-moz-document url-prefix() {
5449 .active-bar {
5450 box-shadow: 0 -3px 4px -2px #ccc;
5453 .active-bar .nav-inactive {
5454 box-shadow:
5455 0 -4px 4px -4px #bbb inset,
5456 1px 0 #fff inset;
5458 .active-bar .nav-inactive:first-child {
5459 box-shadow:
5460 0 -4px 4px -4px #bbb inset;
5462 .active-bar .nav-current + .nav-inactive {
5463 box-shadow:
5464 5px -4px 4px -4px #bbb inset;
5466 .active-bar .nav-item-last-before-current {
5467 box-shadow:
5468 -5px -4px 4px -4px #bbb inset,
5469 1px 0 #fff inset;
5471 .active-bar .nav-item-last-before-current:first-child {
5472 box-shadow:
5473 -5px -4px 4px -4px #bbb inset;
5477 /* Search tab */
5479 #nav-item-search button {
5480 border: none;
5481 font-weight: inherit;
5483 #nav-item-search input::placeholder {
5484 color: #d00;
5485 font-weight: normal;
5488 /*= Top pagination UI hover tooltips =*/
5490 #top-nav-bar a::after,
5491 #bottom-bar a::after {
5492 color: #000;
5495 /*==============*/
5496 /* PAGE TOOLBAR */
5497 /*==============*/
5499 .button.new-post:not(:hover),
5500 .button.new-private-message:not(:hover),
5501 .button.unignore-button:not(:hover){
5502 color: #090;
5504 .button.logout-button, .button.ignore-button {
5505 color: #d33;
5508 /*==============*/
5509 /* SUBLEVEL NAV */
5510 /*==============*/
5512 .sublevel-nav .sublevel-item {
5513 color: #777;
5514 background-color: #fff;
5516 .sublevel-nav .sublevel-item:not(.selected):hover {
5517 background-color: #ddd;
5518 color: #000;
5519 text-decoration: none;
5520 text-shadow: none;
5522 .sublevel-nav .sublevel-item:not(.selected):active,
5523 .sublevel-nav .sublevel-item.selected {
5524 background-color: #ddd;
5525 color: #000;
5526 text-shadow:
5527 0 -1px 0 #fff,
5528 0 0.5px 0.5px #000;
5531 .sublevel-nav:not(.sort) .sublevel-item {
5532 border-style: solid;
5533 border-color: #ddd;
5534 border-width: 1px 0 1px 1px;
5536 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5537 border-radius: 8px 0 0 8px;
5539 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5540 border-width: 1px;
5541 border-radius: 0 8px 8px 0;
5544 /*=====================*/
5545 /* SORT ORDER SELECTOR */
5546 /*=====================*/
5548 .sublevel-nav.sort .sublevel-item {
5549 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
5550 letter-spacing: 0.5px;
5551 padding: 7px 7px 5px 7px;
5552 text-transform: uppercase;
5553 pointer-events: auto;
5554 box-shadow: 1px 1px 0 0 #aaa inset;
5556 .sublevel-nav.sort {
5557 border: 2px solid transparent;
5558 padding: 18px 0 0 0;
5559 border-radius: 8px;
5560 pointer-events: none;
5561 background-color: #bbb;
5563 .sublevel-nav.sort::before {
5564 text-transform: uppercase;
5565 font-weight: 600;
5566 color: #444;
5567 text-shadow: 0.5px 0.5px 0 #fff;
5568 z-index: 1;
5570 .sublevel-nav.sort::after {
5571 content: "";
5572 position: absolute;
5573 display: block;
5574 top: 0;
5575 left: 0;
5576 width: 100%;
5577 height: 100%;
5578 border-radius: 6px;
5579 box-shadow:
5580 0 18px 0 0 #bbb inset,
5581 0 0 0 1px #aaa inset,
5582 0 18px 0 1px #aaa inset,
5583 0 0 0 2px #bbb;
5586 /*================*/
5587 /* WIDTH SELECTOR */
5588 /*================*/
5589 /* THEME SELECTOR */
5590 /*================*/
5592 #width-selector button,
5593 #theme-selector button {
5594 box-shadow:
5595 0 0 0 4px #d8d8d8 inset,
5596 0 0 0 5px #bbb inset;
5598 #width-selector button:hover,
5599 #width-selector button.selected,
5600 #theme-selector button:hover,
5601 #theme-selector button.selected {
5602 box-shadow:
5603 0 0 0 5px #bbb inset;
5606 #theme-selector button::before {
5607 color: #999;
5608 background-color: #d8d8d8;
5610 #theme-selector button:hover::before,
5611 #theme-selector button.selected::before {
5612 color: #666;
5614 #width-selector button::after {
5615 color: #999;
5618 /*======================*/
5619 /* THEME TWEAKER TOGGLE */
5620 /*======================*/
5622 #theme-tweaker-toggle button {
5623 color: #777;
5626 /*=================*/
5627 /* QUICKNAV WIDGET */
5628 /*=================*/
5630 #quick-nav-ui a {
5631 color: #999;
5632 background-color: #e4e4e4;
5633 border-radius: 4px;
5634 text-decoration: none;
5636 #quick-nav-ui a[href='#bottom-bar'] {
5637 line-height: 1.8;
5639 #quick-nav-ui a:active {
5640 transform: scale(0.9);
5642 #quick-nav-ui a[href='#comments'].no-comments {
5643 opacity: 0.4;
5644 color: #bbb;
5646 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5647 #quick-nav-ui a:hover {
5648 color: #000;
5649 background-color: #eee;
5651 #quick-nav-ui a:focus:not(:hover) {
5652 transform: none;
5653 text-shadow: none;
5657 /*======================*/
5658 /* NEW COMMENT QUICKNAV */
5659 /*======================*/
5661 #new-comment-nav-ui .new-comments-count {
5662 font-weight: 600;
5663 color: #666;
5664 text-shadow: 0.5px 0.5px 0 #fff;
5666 #new-comment-nav-ui .new-comments-count::after {
5667 font-weight: 600;
5668 color: #777;
5670 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5671 color: #bbb;
5672 text-shadow: none;
5674 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5675 #new-comment-nav-ui .new-comments-count:hover {
5676 text-shadow:
5677 0 0 1px #fff,
5678 0 0 3px #fff,
5679 0 0 5px #fff,
5680 0 0 8px #fff,
5681 0.5px 0.5px 0 #fff;
5683 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5684 color: #d00;
5685 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5689 /*=================*/
5690 /* HNS DATE PICKER */
5691 /*=================*/
5693 #hns-date-picker span {
5694 color: #777;
5695 text-shadow: 0.5px 0.5px 0 #fff;
5696 font-weight: 600;
5698 #hns-date-picker input {
5699 border: 1px solid #777;
5700 background-color: transparent;
5701 color: #666;
5702 box-shadow: 0 0 0 1px transparent;
5704 #hns-date-picker input:focus {
5705 color: #000;
5708 /*======================*/
5709 /* ANTI-KIBITZER TOGGLE */
5710 /*======================*/
5712 #anti-kibitzer-toggle button::before,
5713 #anti-kibitzer-toggle button::after {
5714 background-color: #888;
5715 -webkit-background-clip: text;
5716 color: transparent;
5717 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5719 #anti-kibitzer-toggle button:hover::before,
5720 #anti-kibitzer-toggle button:hover::after {
5721 background-color: #444;
5724 /*======================*/
5725 /* TEXT SIZE ADJUSTMENT */
5726 /*======================*/
5728 #text-size-adjustment-ui button {
5729 color: #777;
5731 #text-size-adjustment-ui button.default {
5732 font-weight: 600;
5734 #text-size-adjustment-ui button:disabled:hover {
5735 text-shadow: none;
5737 #text-size-adjustment-ui::after {
5738 color: #999;
5741 /*=============================*/
5742 /* COMMENTS VIEW MODE SELECTOR */
5743 /*=============================*/
5745 #comments-view-mode-selector a {
5746 color: #777;
5749 /*==========*/
5750 /* ARCHIVES */
5751 /*==========*/
5753 .archive-nav {
5754 border: 1px solid #aaa;
5756 .archive-nav *[class^='archive-nav-item'] {
5757 border-style: solid;
5758 border-color: #ddd;
5759 border-width: 1px 0 1px 1px;
5760 background-color: #eee;
5762 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5763 border-top-width: 0;
5764 border-bottom-width: 0;
5766 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5767 border-bottom-width: 1px;
5769 .archive-nav *[class^='archive-nav-item']:last-child {
5770 border-right-width: 1px;
5772 .archive-nav span[class^='archive-nav-item'] {
5773 font-weight: bold;
5774 background-color: #ddd;
5777 .archive-nav a:link,
5778 .archive-nav a:visited {
5779 color: rgba(0, 0, 238, 0.7);
5781 .archive-nav a:hover {
5782 text-decoration: none;
5783 color: #c00;
5784 background-color: #e0e0e0;
5785 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5787 .archive-nav a:active {
5788 transform: scale(0.9);
5790 .archive-nav a:focus:not(:hover) {
5791 transform: none;
5793 .archive-nav a.archive-nav-item-day:hover {
5794 background-color: #ddd;
5797 /*==========*/
5798 /* LISTINGS */
5799 /*==========*/
5801 h1.listing {
5802 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif, 'Font Awesome', 'Font Awesome 5 Free';
5803 font-weight: 700;
5804 margin: 0.7em 20px 0 20px;
5805 max-width: calc(100% - 40px);
5806 top: 0; ;
5809 h1.listing a[href^='/'] {
5810 color: #000;
5812 h1.listing a[href^="http"] {
5813 color: #00c;
5816 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5817 h1.listing a:hover,
5818 h1.listing a:focus {
5819 color: #777;
5820 background-color: rgba(255,255,255,0.85);
5822 h1.listing:focus-within::before {
5823 color: #00f;
5824 left: -0.625em;
5826 h1.listing a[href^="http"]:hover {
5827 color: #4879ec;
5828 text-shadow:
5829 0.5px 0.5px 0 #fff,
5830 -0.5px -0.5px 0 #fff,
5831 0 0 2px #fff,
5832 0 0 3px #00c;
5836 h1.listing .edit-post-link {
5837 padding: 5px 3px 12px 0.5em;
5838 top: 0;
5839 right: 0;
5841 h1.listing .edit-post-link:hover {
5842 text-decoration: none;
5844 #content.user-page h1.listing .edit-post-link {
5845 background-color: #eee;
5848 /*======*/
5849 /* SPAM */
5850 /*======*/
5852 h1.listing.spam {
5853 opacity: 0.15;
5855 h1.listing.spam + .post-meta {
5856 opacity: 0.4;
5858 h1.listing.spam:hover,
5859 h1.listing.spam + .post-meta:hover,
5860 h1.listing.spam:hover + .post-meta {
5861 opacity: 1.0;
5864 /*===================*/
5865 /* LISTING POST-META */
5866 /*===================*/
5868 h1.listing + .post-meta {
5869 padding-right: 330px;
5871 h1.listing + .post-meta .karma-value,
5872 h1.listing + .post-meta .comment-count,
5873 h1.listing + .post-meta .lw2-link,
5874 h1.listing + .post-meta .read-time {
5875 border-radius: 4px;
5876 padding: 0 4px 0 2px;
5877 text-shadow: 0.5px 0.5px 0.5px #999;
5878 margin: 0 0.25em 0 0.5em;
5879 position: absolute;
5880 line-height: 1.15;
5881 bottom: -6px;
5883 h1.listing + .post-meta .karma-value span,
5884 h1.listing + .post-meta .comment-count span,
5885 h1.listing + .post-meta .lw2-link span,
5886 h1.listing + .post-meta .read-time span {
5887 display: none;
5889 h1.listing + .post-meta .karma-value::before,
5890 h1.listing + .post-meta .comment-count::before,
5891 h1.listing + .post-meta .lw2-link::before,
5892 h1.listing + .post-meta .read-time::before {
5893 color: #fff;
5894 font-family: 'Font Awesome', 'Font Awesome 5 Free';
5895 font-weight: 900;
5896 margin: 0 8px 0 0;
5897 box-shadow: 0 0 0 2px #ddd;
5899 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
5900 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
5901 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
5902 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
5903 text-shadow: 0 0 3px #999;
5906 h1.listing + .post-meta .karma {
5907 margin: 0;
5909 h1.listing + .post-meta .karma-value {
5910 box-shadow:
5911 22px 0 0 0 #ddd inset,
5912 0 0 0 3px #ddd;
5913 cursor: default;
5914 color: #c00;
5915 right: 264px;
5917 h1.listing + .post-meta .karma-value::before {
5918 content: "\F139";
5919 text-shadow: none;
5920 font-size: 0.9375em;
5921 line-height: 1.3;
5924 h1.listing + .post-meta .comment-count::before {
5925 content: "\F086";
5927 h1.listing + .post-meta .comment-count {
5928 box-shadow:
5929 25px 0 0 0 #ddd inset,
5930 0 0 0 3px #ddd;
5931 color: #009100;
5932 right: 176px;
5934 h1.listing + .post-meta .comment-count:hover {
5935 text-decoration: none;
5936 color: #fff;
5937 background-color: #009100;
5939 h1.listing + .post-meta .comment-count:hover::before {
5940 color: #009100;
5942 h1.listing + .post-meta .comment-count.new-comments::before {
5943 color: #009100;
5944 text-shadow: 0.5px 0.5px 0.5px #fff;
5946 h1.listing + .post-meta .comment-count.new-comments:hover::before {
5947 text-shadow: 0.5px 0.5px 0.5px #999;
5951 h1.listing + .post-meta .lw2-link {
5952 box-shadow:
5953 23px 0 0 0 #ddd inset,
5954 0 0 0 3px #ddd;
5955 right: 0;
5957 h1.listing + .post-meta .lw2-link::before {
5958 content: "\F0C1";
5960 h1.listing + .post-meta .lw2-link:hover {
5961 text-decoration: none;
5962 color: #fff;
5963 background-color: #00f;
5965 h1.listing + .post-meta .lw2-link:hover::before {
5966 color: #00f;
5969 h1.listing + .post-meta .read-time {
5970 box-shadow:
5971 21px 0 0 0 #ddd inset,
5972 0 0 0 3px #ddd;
5973 right: 80px;
5975 h1.listing + .post-meta .read-time::before {
5976 content: "\F2F2";
5977 cursor: pointer;
5979 h1.listing + .post-meta .read-time::after {
5980 content: " min";
5982 h1.listing + .post-meta .read-time:hover::before {
5983 color: #777;
5986 h1.listing + .post-meta .word-count {
5987 box-shadow:
5988 22px 0 0 0 #ddd inset,
5989 0 0 0 3px #ddd;
5990 padding: 0 4px 0 4px;
5992 h1.listing + .post-meta .word-count::before {
5993 content: "\F15C";
5994 margin: 0 10px 0 0;
5996 h1.listing + .post-meta .read-time.word-count::after {
5997 content: none;
6000 h1.listing + .post-meta .link-post-domain {
6001 margin: 0 0 0 0.5em;
6004 h1.listing + .post-meta::after {
6005 content: "";
6006 display: block;
6007 height: 1px;
6008 width: 100%;
6009 background-color: #ddd;
6010 position: absolute;
6011 bottom: -14px;
6014 /*============*/
6015 /* USER PAGES */
6016 /*============*/
6018 #content.user-page h1.page-main-heading {
6019 border-bottom: 1px solid #ccc;
6022 #content.user-page h1.listing,
6023 #content.user-page h1.listing + .post-meta {
6024 background-color: #eee;
6025 border-style: solid;
6026 border-color: #ccc;
6028 #content.user-page h1.listing {
6029 padding: 0 6px;
6030 padding-top: 0.125em;
6031 border-width: 1px 1px 0 1px;
6032 margin: 1rem 0 0 0;
6033 max-width: 100%;
6035 #content.own-user-page h1.listing,
6036 h1.listing.own-post-listing {
6037 padding-right: 36px;
6039 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6040 #content.user-page h1.listing a:hover,
6041 #content.user-page h1.listing a:focus {
6042 background-color: #eee;
6044 #content.user-page h1.listing:focus-within::before {
6045 left: -0.625em;
6048 #content.user-page h1.listing + .post-meta {
6049 padding: 0.125em 6px 1em 36px;
6050 border-width: 0 1px 1px 1px;
6051 margin: 0 0 1rem 0;
6053 #content.user-page h1.listing + .post-meta::after {
6054 display: none;
6056 @media only screen and (min-width: 521px) {
6057 #content.user-page h1.listing + .post-meta .karma-value,
6058 #content.user-page h1.listing + .post-meta .comment-count,
6059 #content.user-page h1.listing + .post-meta .lw2-link,
6060 #content.user-page h1.listing + .post-meta .read-time {
6061 bottom: 10px;
6064 #content.user-page h1.listing + .post-meta .post-section::before {
6065 left: -1px;
6068 #content.conversations-user-page h1.listing {
6069 padding: 4px 6px;
6070 font-size: 1.75rem;
6072 #content.conversations-user-page h1.listing + .post-meta {
6073 padding: 6px 4px;
6074 margin: 0 0 0.25rem 0;
6077 .user-stats .karma-total {
6078 font-weight: bold;
6081 /*===============*/
6082 /* CONVERSATIONS */
6083 /*===============*/
6085 /*============*/
6086 /* LOGIN PAGE */
6087 /*============*/
6089 .login-container form input[type='submit'] {
6090 font-weight: bold;
6091 background-color: #eee;
6092 border: 1px solid #ccc;
6094 .login-container form input[type='submit']:hover,
6095 .login-container form input[type='submit']:focus {
6096 background-color: #ddd;
6097 border: 1px solid #aaa;
6100 /* “Create account” form */
6102 #signup-form {
6103 background-color: #f3f3f3;
6104 border: 1px solid #ddd;
6106 #signup-form input[type='submit'] {
6107 background-color: #e4e4e4;
6108 border: 1px solid #ccc;
6110 #signup-form input[type='submit']:hover {
6111 background-color: #d8d8d8;
6112 border: 1px solid #aaa;
6115 /* Log in tip */
6117 .login-container .login-tip {
6118 border: 1px solid #eee;
6121 /* Message box */
6123 .error-box {
6124 border: 1px solid red;
6125 background-color: #faa;
6127 .success-box {
6128 border: 1px solid green;
6129 background-color: #afa;
6132 /*=====================*/
6133 /* PASSWORD RESET PAGE */
6134 /*=====================*/
6136 .reset-password-container input[type='submit'] {
6137 background-color: #e4e4e4;
6138 border: 1px solid #ccc;
6139 font-weight: bold;
6142 /*===================*/
6143 /* TABLE OF CONTENTS */
6144 /*===================*/
6146 .contents {
6147 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6148 border: 1px solid #ddd;
6149 background-color: #eee;
6151 .contents-head {
6152 font-weight: bold;
6154 .post-body .contents li::before {
6155 color: #999;
6156 font-feature-settings: "tnum";
6158 .post-body .contents a,
6159 .post-body .contents a:hover {
6160 border: none;
6162 .post-body .contents a:hover {
6163 text-decoration: underline;
6166 /*==================*/
6167 /* POSTS & COMMENTS */
6168 /*==================*/
6170 .body-text {
6171 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6174 .body-text a {
6175 border-bottom: 1px dotted #bbb;
6177 .body-text a:hover {
6178 text-decoration: none;
6179 border-bottom: 1px solid currentColor;
6182 /*=======*/
6183 /* POSTS */
6184 /*=======*/
6186 h1.post-title {
6187 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6188 font-weight: 700;
6191 /*=================*/
6192 /* POST NAVIGATION */
6193 /*=================*/
6195 .post-nav-links a,
6196 .post-nav-links a:visited {
6197 color: #000;
6199 .post-nav-links a:hover {
6200 text-decoration: none;
6202 .post-nav-title {
6203 font-weight: 600;
6206 .post-nav-label {
6207 color: #777;
6209 .post-nav-links a:hover .post-nav-label {
6210 font-weight: 600;
6211 color: #888;
6213 .post-nav-links a:hover .post-nav-title {
6214 color: #777;
6217 @media only screen and (max-width: 900px) {
6218 .sequence-title {
6219 border-top: 1px dotted #777;
6221 .post-nav.prev {
6222 border-right: 1px dotted #777;
6224 .post-nav.next {
6225 border-left: 1px dotted #777;
6229 /*===========*/
6230 /* POST-META */
6231 /*===========*/
6233 .post-meta .post-section::before,
6234 .comment-meta .alignment-forum {
6235 color: #fff;
6236 text-shadow:
6237 1px 1px 0 #090,
6238 0 1px 0 #090,
6239 0 0 5px #090;
6241 a.post-section:hover {
6242 text-decoration: none;
6244 a.post-section:hover::before {
6245 color: #97ff7c;
6247 .post-meta .post-section.alignment-forum::before,
6248 .comment-meta .alignment-forum {
6249 text-shadow:
6250 1px 1px 0 #626dd7,
6251 0 1px 0 #626dd7,
6252 0 0 5px #626dd7;
6254 a.post-section.alignment-forum:hover::before {
6255 color: #e6e5ff;
6257 .post-meta .date {
6258 color: #888;
6260 .post-meta .author {
6261 color: #090;
6263 .bottom-post-meta {
6264 border-color: #ddd;
6267 /*============*/
6268 /* LINK POSTS */
6269 /*============*/
6271 .post.link-post a.link-post-link {
6272 text-decoration: none;
6273 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6274 font-weight: 600;
6276 .post.link-post a.link-post-link:hover {
6277 color: #c00;
6279 .post.link-post a.link-post-link:hover::before {
6280 color: #4879ec;
6281 text-shadow:
6282 0.5px 0.5px 0 #fff,
6283 -0.5px -0.5px 0 #fff,
6284 0 0 2px #fff,
6285 0 0 3px #00c;
6287 .post.link-post a.link-post-link:focus {
6288 color: #777;
6289 border-bottom: 2px dotted #777;
6292 /*==========*/
6293 /* COMMENTS */
6294 /*==========*/
6296 #comments::before {
6297 border-top: 1px solid #000;
6298 box-shadow: 0 3px 4px -4px #000 inset;
6300 @-moz-document url-prefix() {
6301 #comments::before {
6302 box-shadow: 0 3px 3px -4px #000 inset;
6305 #content > .comment-thread .comment-meta a.date:focus,
6306 #content > .comment-thread .comment-meta a.permalink:focus {
6307 color: #888;
6308 outline: 2px dotted #999;
6309 position: relative;
6310 background-color: #fff;
6312 #content > .comment-thread .comment-meta a.date:focus {
6313 padding: 0 4px;
6314 left: -4px;
6316 #content > .comment-thread .comment-meta a.date:focus + * {
6317 margin-left: -8px;
6319 #content > .comment-thread .comment-meta a.permalink:focus {
6320 padding: 0 5px;
6321 left: -5px;
6323 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6324 margin-left: -10px;
6326 .comment-item {
6327 border: 1px solid #ccc;
6331 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6332 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6333 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6334 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6335 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6336 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6337 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6338 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6339 .comment-item .comment-item .comment-item .comment-item .comment-item,
6340 .comment-item .comment-item .comment-item,
6341 .comment-item {
6342 background-color: #eee;
6344 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6345 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6346 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6347 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6348 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6349 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6350 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6351 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6352 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6353 .comment-item .comment-item .comment-item a.comment-parent-link::after,
6354 .comment-item a.comment-parent-link::after {
6355 box-shadow:
6356 0 28px 16px -16px #fff inset,
6357 4px 16px 0 12px #ffd inset,
6358 4px 4px 0 12px #ffd inset;
6361 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6362 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6363 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6364 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6365 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6366 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6367 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6368 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6369 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6370 .comment-item .comment-item .comment-item .comment-item,
6371 .comment-item .comment-item {
6372 background-color: #fff;
6374 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6375 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6376 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6377 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6378 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6379 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6380 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6381 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6382 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6383 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6384 .comment-item .comment-item a.comment-parent-link::after {
6385 box-shadow:
6386 0 28px 16px -16px #eee inset,
6387 4px 16px 0 12px #ffd inset,
6388 4px 4px 0 12px #ffd inset;
6391 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6392 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6393 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6394 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6395 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6396 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6397 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6398 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6399 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6400 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6401 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6402 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6403 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6404 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6405 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6406 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6407 .comment-item .comment-item .comment-item .comment-item:target,
6408 .comment-item .comment-item .comment-item:target,
6409 .comment-item .comment-item:target,
6410 .comment-item:target {
6411 background-color: #ffd;
6413 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
6414 box-shadow:
6415 0 28px 16px -16px #ffd inset,
6416 4px 16px 0 12px #ffd inset,
6417 4px 4px 0 12px #ffd inset !important;
6420 /*================================*/
6421 /* DEEP COMMENT THREAD COLLAPSING */
6422 /*================================*/
6424 .comment-item input[id^="expand"] + label::after {
6425 color: #00e;
6426 font-weight: 600;
6428 .comment-item input[id^="expand"] + label:hover::after {
6429 color: #c00;
6431 .comment-item input[id^="expand"] + label:active::after,
6432 .comment-item input[id^="expand"] + label:focus::after{
6433 color: #c00;
6435 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6436 border-width: 1px 0 0 0;
6439 /*==============*/
6440 /* COMMENT-META */
6441 /*==============*/
6443 .comment-meta .author {
6444 font-weight: bold;
6445 font-size: 1.25em;
6446 color: #000;
6448 .comment-meta .author:hover {
6449 text-decoration: none;
6450 color: #090;
6452 .comment-item .author:not(.redacted).original-poster::after {
6453 opacity: 0.5;
6456 .comment-item .karma.active-controls::after,
6457 .comment-item .karma .karma-value::after,
6458 .post .karma.active-controls::after,
6459 .post .karma .karma-value::after,
6460 .author::before {
6461 background-color: #fff;
6462 color: #999;
6463 border-radius: 4px;
6464 box-shadow: 0 0 0 1px #ddd inset;
6466 .comment-item .karma.active-controls::after,
6467 .post .karma.active-controls::after {
6468 padding: 6px 4px 4px 4px;
6469 bottom: -44px;
6471 .comment-item .karma .karma-value::after,
6472 .post .karma .karma-value::after {
6473 padding: 2px 8px 1px 8px;
6474 top: -25px;
6475 min-width: 56px;
6478 /*====================*/
6479 /* ANTI-KIBITZER MODE */
6480 /*====================*/
6482 .author.redacted,
6483 .inline-author.redacted {
6484 opacity: 0.6;
6485 font-weight: 400;
6488 .karma-value.redacted {
6489 opacity: 0.4;
6492 .link-post-domain.redacted {
6493 opacity: 0.4;
6496 /*===========================*/
6497 /* COMMENT THREAD NAVIGATION */
6498 /*===========================*/
6500 div.comment-parent-link {
6501 font-weight: 600;
6503 a.comment-parent-link {
6504 font-weight: 400;
6506 a.comment-parent-link::before {
6507 color: #bbb;
6509 a.comment-parent-link:hover::before {
6510 background-color: #ffd;
6511 color: #999;
6514 div.comment-child-links {
6515 font-weight: 600;
6517 div.comment-child-links a {
6518 font-weight: 400;
6520 .comment-child-link::before {
6521 color: #aaa;
6524 .comment-item-highlight {
6525 box-shadow:
6526 0 0 2px #e7b200,
6527 0 0 3px #e7b200,
6528 0 0 5px #e7b200,
6529 0 0 7px #e7b200,
6530 0 0 10px #e7b200;
6531 border: 1px solid #e7b200;
6533 .comment-item-highlight-faint {
6534 box-shadow:
6535 0 0 2px #f8e7b5,
6536 0 0 3px #f8e7b5,
6537 0 0 5px #f8e7b5,
6538 0 0 7px #f8e7b5,
6539 0 0 10px #f8e7b5;
6540 border: 1px solid #f8e7b5;
6543 .comment-popup {
6544 background-color: #fff;
6547 /*=======================*/
6548 /* COMMENTS COMPACT VIEW */
6549 /*=======================*/
6551 #comments-list-mode-selector button {
6552 box-shadow:
6553 0 0 0 4px #fff inset,
6554 0 0 0 5px #bbb inset;
6556 #comments-list-mode-selector button:hover,
6557 #comments-list-mode-selector button.selected {
6558 box-shadow:
6559 0 0 0 5px #bbb inset;
6561 #content.compact > .comment-thread .comment-item::after {
6562 color: #00e;
6563 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6566 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6567 #content.compact > .comment-thread .comment-item:hover .comment,
6568 #content.compact > .comment-thread .comment-item.expanded .comment {
6569 background-color: #fff;
6570 outline: 3px solid #00c;
6572 #content.compact > .comment-thread .comment-item:hover .comment::before,
6573 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6574 background-color: #fff;
6575 box-shadow:
6576 0 0 3px #fff,
6577 0 0 5px #fff,
6578 0 0 7px #fff,
6579 0 0 10px #fff,
6580 0 0 20px #fff,
6581 0 0 30px #fff,
6582 0 0 40px #fff;
6585 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6586 #content.compact > .comment-thread.expanded .comment-item .comment {
6587 background-color: #fff;
6588 outline: 3px solid #00c;
6590 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6591 background-color: #fff;
6592 box-shadow:
6593 0 0 3px #fff,
6594 0 0 5px #fff,
6595 0 0 7px #fff,
6596 0 0 10px #fff,
6597 0 0 20px #fff,
6598 0 0 30px #fff,
6599 0 0 40px #fff;
6603 #content.user-page.compact > h1.listing {
6604 margin-top: 0.5rem;
6606 #content.user-page.compact > h1.listing + .post-meta {
6607 margin-bottom: 0.5rem;
6610 /*===========================*/
6611 /* HIGHLIGHTING NEW COMMENTS */
6612 /*===========================*/
6614 .new-comment::before {
6615 outline: 2px solid #5a5;
6616 box-shadow:
6617 0 0 6px -2px #5a5 inset,
6618 0 0 4px #5a5,
6619 0 0 6px #5a5;
6622 /*=================================*/
6623 /* COMMENT THREAD MINIMIZE BUTTONS */
6624 /*=================================*/
6626 .comment-minimize-button {
6627 color: #ccc;
6629 .comment-minimize-button:hover {
6630 color: #aaa;
6631 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6633 .comment-minimize-button::after {
6634 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6635 color: #777;
6637 .comment-minimize-button.maximized::after {
6638 color: #ccc;
6641 /*==============*/
6642 /* VOTE BUTTONS */
6643 /*==============*/
6645 .vote::before {
6646 content: "";
6647 border-radius: 50%;
6648 background-size: 17px 17px;
6649 width: 17px;
6650 height: 17px;
6651 display: inline-block;
6652 position: relative;
6653 top: 2.5px;
6655 .vote:active {
6656 transform: none;
6658 .vote:hover::before,
6659 .vote.selected::before,
6660 .vote.clicked-once::before,
6661 .vote.clicked-twice::before {
6662 filter: drop-shadow(0 0 1px #fff);
6665 .upvote::before,
6666 .waiting .upvote.big-vote.clicked-twice::before {
6667 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
6668 filter: grayscale(100%) brightness(128%);
6670 .downvote::before,
6671 .waiting .downvote.big-vote.clicked-twice::before {
6672 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
6673 filter: grayscale(100%) brightness(188%);
6676 .vote.clicked-once::before,
6677 .vote.big-vote.clicked-once::before {
6678 box-shadow:
6679 0 0 0 1px #fff,
6680 0 0 0 4px #c8c8c8,
6681 0 0 0 5px transparent;
6684 .vote.big-vote.clicked-twice::before,
6685 .waiting .vote.big-vote:not(.clicked-twice)::before,
6686 .waiting .vote:not(.big-vote).clicked-once::before {
6687 box-shadow: none;
6690 .upvote.clicked-twice::before,
6691 .upvote.big-vote::before {
6692 box-shadow:
6693 0 0 0 1px #fff,
6694 0 0 0 4px #00d800,
6695 0 0 0 5px transparent;
6698 .downvote.clicked-twice::before,
6699 .downvote.big-vote::before {
6700 box-shadow:
6701 0 0 0 1px #fff,
6702 0 0 0 4px #eb4c2a,
6703 0 0 0 5px transparent;
6706 /*===========================*/
6707 /* COMMENTING AND POSTING UI */
6708 /*===========================*/
6710 .posting-controls input[type='submit'] {
6711 background-color: #fff;
6712 border: 1px solid #aaa;
6713 font-weight: bold;
6715 .posting-controls input[type='submit']:hover,
6716 .posting-controls input[type='submit']:focus {
6717 background-color: #ddd;
6718 border: 1px solid #999;
6721 .comment-controls .cancel-comment-button {
6722 font-weight: 600;
6723 color: #c00;
6724 text-shadow:
6725 0 0 1px #fff,
6726 0 0 2px #fff;
6728 .comment-controls .cancel-comment-button:hover {
6729 color: #f00;
6730 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6733 .new-comment-button {
6734 font-weight: 600;
6737 .comment-controls .delete-button,
6738 .comment-controls .retract-button {
6739 color: #a00;
6740 opacity: 0.85;
6742 .comment-controls .edit-button,
6743 .comment-controls .unretract-button {
6744 color: #090;
6746 .comment-controls .action-button:hover {
6747 color: #f00;
6748 opacity: 1.0;
6751 .button.edit-post-link:not(:hover) {
6752 color: #090;
6755 .posting-controls textarea {
6756 font-family: 'Charter', 'PT Serif', 'Georgia', serif;
6757 color: #000;
6758 background-color: #fff;
6759 border-color: #aaa;
6760 box-shadow:
6761 0 0 0 1px #eee inset;
6763 .posting-controls textarea:focus {
6764 background-color: #ffd;
6765 border-color: #00e;
6766 box-shadow:
6767 0 0 0 1px #ddf inset,
6768 0 0 0 1px #fff,
6769 0 0 0 2px #00e;
6771 .posting-controls.edit-existing-post textarea:focus,
6772 .posting-controls form.edit-existing-comment textarea:focus {
6773 border-color: #090;
6774 box-shadow:
6775 0 0 0 1px #81ff7f inset,
6776 0 0 0 1px #fff,
6777 0 0 0 2px #090;
6780 /*= Scroll bars =*/
6782 .posting-controls textarea::-webkit-scrollbar {
6783 width: 16px;
6784 background-color: transparent;
6786 .posting-controls textarea::-webkit-scrollbar-track {
6787 background-color: #eee;
6788 border-left: 1px solid #aaa;
6789 border-top: 1px solid #eee;
6791 .posting-controls textarea:focus::-webkit-scrollbar-track {
6792 border-left: 1px solid #00e;
6793 border-top: 1px solid #ddf;
6795 .posting-controls textarea::-webkit-scrollbar-thumb {
6796 background-color: #aaa;
6797 box-shadow: 0 0 0 1px #eee inset;
6798 border-left: 1px solid #aaa;
6800 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
6801 border-left: 1px solid #00e;
6802 background-color: #0040ff;
6803 box-shadow:
6804 0 1px 0 0 #ddf inset,
6805 0 0 0 1px #eee inset;
6808 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
6809 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
6810 border-left: 1px solid #090;
6812 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
6813 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
6814 border-left: 1px solid #090;
6815 background-color: #28a708;
6818 /* GUIEdit buttons */
6820 .guiedit-buttons-container {
6821 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6824 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6825 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6826 color: #050;
6828 .guiedit-buttons-container button {
6829 font-family: 'Font Awesome', 'Font Awesome 5 Free', 'Charter', 'PT Serif', 'Georgia', serif;
6832 .guiedit::after {
6833 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6834 color: #777;
6835 text-shadow: none;
6838 /* Markdown hints */
6840 #markdown-hints-checkbox + label {
6841 color: #00e;
6843 #markdown-hints-checkbox + label:hover {
6844 color: #e00;
6845 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6847 #markdown-hints {
6848 border: 1px solid #c00;
6849 background-color: #ffa;
6852 /*================*/
6853 /* EDIT POST FORM */
6854 /*================*/
6856 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
6857 top: -1px;
6859 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6860 border-radius: 3px;
6861 border: 1px solid #ddd;
6862 color: #777;
6864 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6865 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6866 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6867 text-shadow:
6868 0 0 1px #fff,
6869 0 0 2px #fff,
6870 0 0 2.5px #aaa;
6872 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6873 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6874 border-color: #aaa;
6877 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6878 content: "\F00C";
6880 #edit-post-form input[type='radio'] + label {
6881 color: #777;
6882 border-color: #ddd;
6883 padding: 4px 12px 5px 12px;
6885 #edit-post-form input[type='radio'][value='all'] + label {
6886 border-radius: 8px 0 0 8px;
6887 border-width: 1px;
6889 #edit-post-form input[type='radio'][value='drafts'] + label {
6890 border-radius: 0 8px 8px 0;
6892 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6893 #edit-post-form input[type='radio'] + label:hover,
6894 #edit-post-form input[type='radio']:focus + label {
6895 background-color: #ddd;
6896 color: #000;
6899 #edit-post-form input[type='radio']:focus + label {
6900 color: #000;
6901 box-shadow:
6902 0 0 0 1px #aaa;
6904 #edit-post-form input[type='radio']:checked + label {
6905 background-color: #ddd;
6906 border-color: #ddd;
6907 color: #000;
6908 text-shadow:
6909 0 -1px 0 #fff,
6910 0 0.5px 0.5px #000;
6913 /*=======*/
6914 /* LINKS */
6915 /*=======*/
6918 text-decoration: none;
6919 color: #00e;
6921 a:visited {
6922 color: #551a8b;
6924 a:hover {
6925 text-decoration: underline;
6928 /*=========*/
6929 /* BUTTONS */
6930 /*=========*/
6932 button,
6933 input[type='submit'] {
6934 color: #00e;
6937 button:active,
6938 input[type='submit']:active {
6939 color: #f00;
6940 transform: scale(0.9);
6942 .button:visited {
6943 color: #00e;
6945 .button:active {
6946 transform: scale(0.9);
6948 @-moz-document url-prefix() {
6949 .button:active {
6950 transform: none;
6954 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6955 button:hover,
6956 input[type='submit']:hover,
6957 button:focus,
6958 input[type='submit']:focus {
6959 color: #f00;
6960 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6963 .button:hover {
6964 color: #f00;
6965 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6966 text-decoration: none;
6968 .button:focus:not(:hover) {
6969 transform: none;
6973 /*==========*/
6974 /* HEADINGS */
6975 /*==========*/
6977 .body-text h1,
6978 .body-text h2,
6979 .body-text h4 {
6980 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
6982 .body-text h3,
6983 .body-text h5,
6984 .body-text h6 {
6985 font-weight: 600;
6986 font-family: 'Concourse Smallcaps', 'a_Avante', 'Assistant', Arial, sans-serif;
6988 .body-text h6 {
6989 color: #555;
6991 .body-text h1 {
6992 border-bottom: 1px solid #aaa;
6995 /*========*/
6996 /* QUOTES */
6997 /*========*/
6999 blockquote {
7000 border-left: 5px solid #ccc;
7003 /*========*/
7004 /* IMAGES */
7005 /*========*/
7007 #content img,
7008 #content figure.image img {
7009 border: 1px solid #ccc;
7011 #content figure img {
7012 border: 1px solid #000;
7014 #content img[src$='.svg'],
7015 #content figure img[src$='.svg'] {
7016 border: none;
7018 #content img[style^='float'] {
7019 border: 1px solid transparent;
7022 /*========*/
7023 /* TABLES */
7024 /*========*/
7026 .body-text table,
7027 .body-text table th,
7028 .body-text table td {
7029 border: 1px solid #ccc;
7032 /*======*/
7033 /* MISC */
7034 /*======*/
7036 hr {
7037 border-bottom: 1px solid #999;
7040 code {
7041 background-color: #f6f6ff;
7042 border: 1px solid #ddf;
7043 border-radius: 4px;
7046 input[type='text'],
7047 input[type='search'],
7048 input[type='password'] {
7049 background-color: #fff;
7050 border: 1px solid #ddd;
7051 color: #000;
7053 input[type='text']:focus,
7054 input[type='search']:focus,
7055 input[type='password']:focus {
7056 background-color: #ffd;
7057 border: 1px solid #bbb;
7058 box-shadow: 0 0 1px #bbb;
7061 select {
7062 color: #000;
7066 /*============*/
7067 /* ABOUT PAGE */
7068 /*============*/
7070 .about-page mark {
7071 background-color: #e6e6e6;
7072 text-decoration: none;
7073 box-shadow:
7074 0 -1px 0 0 #000 inset,
7075 0 -3px 1px -2px #000 inset;
7076 padding: 0 1px;
7079 #content.about-page .accesskey-table {
7080 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7081 border-color: #ddd;
7084 #content.about-page img {
7085 border: 1px solid #000;
7088 /*========================*/
7089 /* QUALIFIED HYPERLINKING */
7090 /*========================*/
7092 #aux-about-link a {
7093 color: #777;
7095 #aux-about-link a:hover {
7096 opacity: 1.0;
7097 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7100 .qualified-linking label {
7101 color: #00e;
7103 .qualified-linking label:hover {
7104 text-shadow:
7105 0 0 1px #fff,
7106 0 0 3px #fff,
7107 0 0 5px #00e;
7110 .qualified-linking-toolbar {
7111 border: 1px solid #000;
7112 background-color: #fff;
7114 .qualified-linking-toolbar a {
7115 background-color: #eee;
7116 border: 1px solid #ccc;
7117 border-radius: 4px;
7119 .qualified-linking-toolbar a:visited {
7120 color: #00e;
7122 .qualified-linking-toolbar a:hover {
7123 text-decoration: none;
7124 background-color: #ddd;
7125 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7127 .qualified-linking label::after {
7128 background-color: #d8d8d8;
7129 opacity: 0.8;
7132 /*======*/
7133 /* MATH */
7134 /*======*/
7136 .mathjax-block-container::-webkit-scrollbar {
7137 height: 12px;
7138 background-color: #f6f6ff;
7139 border-radius: 6px;
7140 border: 1px solid #ddf;
7142 .mathjax-block-container::-webkit-scrollbar-thumb {
7143 background-color: #dde;
7144 border-radius: 6px;
7145 border: 1px solid #cce;
7147 .mathjax-inline-container::-webkit-scrollbar {
7148 height: 8px;
7149 background-color: #f6f6ff;
7150 border-radius: 4px;
7151 border: 1px solid #ddf;
7153 .mathjax-inline-container::-webkit-scrollbar-thumb {
7154 background-color: #dde;
7155 border-radius: 4px;
7156 border: 1px solid #cce;
7159 /*=================*/
7160 /* ALIGNMENT FORUM */
7161 /*=================*/
7163 #content.alignment-forum-index-page::before {
7164 background-color: #eef0ff;
7166 #content.alignment-forum-index-page::after {
7167 font-family: "Concourse SmallCaps";
7168 font-weight: bold;
7169 background-color: #626dd7;
7170 -webkit-background-clip: text;
7171 color: transparent;
7172 text-shadow:
7173 rgba(255,255,255,0.5) 0px 3px 3px;;
7175 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
7176 #content.alignment-forum-index-page h1.listing a:hover,
7177 #content.alignment-forum-index-page h1.listing a:focus {
7178 background-color: rgba(238,240,255,0.85);
7182 /*====================*/
7183 /* FOR NARROW SCREENS */
7184 /*====================*/
7186 @media only screen and (max-width: 1440px) {
7187 #hns-date-picker {
7188 background-color: #d8d8d8;
7189 opacity: 1.0;
7191 #hns-date-picker::before {
7192 border: 1px solid #999;
7193 border-width: 1px 0 1px 1px;
7196 @media only screen and (max-width: 1160px) {
7197 #theme-selector:hover::after {
7198 background-color: #999;
7201 @media only screen and (max-width: 1080px) {
7202 #text-size-adjustment-ui button {
7203 border: 1px solid #999;
7204 padding: 0 0 0 1px;
7205 border-radius: 50%;
7206 box-shadow:
7207 0 0 6px #999 inset,
7208 0 0 0 1px transparent;
7210 #theme-tweaker-toggle button {
7211 border: 1px solid #999;
7212 box-shadow:
7213 0 0 10px #999 inset,
7214 0 0 0 1px transparent;
7215 border-radius: 50%;
7216 transform: scale(0.8);
7219 @media only screen and (max-width: 1020px) {
7220 #quick-nav-ui a {
7221 box-shadow:
7222 0 0 0 1px #999,
7223 0 0 0 2px transparent;
7225 #new-comment-nav-ui .new-comments-count::before {
7226 background-color: #d8d8d8;
7227 box-shadow:
7228 0 0 0 1px #999,
7229 0 0 0 2px transparent;
7230 border-radius: 8px;
7232 #anti-kibitzer-toggle {
7233 box-shadow:
7234 0 0 0 1px #999,
7235 0 0 0 2px transparent;
7236 background-color: #d8d8d8;
7237 border-radius: 6px;
7238 overflow: hidden;
7241 @media only screen and (max-width: 1000px) {
7242 #theme-selector {
7243 background-color: #d8d8d8;
7244 box-shadow:
7245 0 0 0 1px #999,
7246 0 0 0 2px transparent;
7248 #theme-selector:hover::after {
7249 width: calc(6em - 3px);
7250 height: calc(100% - 5px);
7251 top: 3px;
7252 left: 100%;
7254 #text-size-adjustment-ui button {
7255 background-color: #ddd;
7257 #text-size-adjustment-ui button:hover {
7258 background-color: #eee;
7260 #theme-tweaker-toggle button {
7261 background-color: #ddd;
7265 /*========*/
7266 /* MOBILE */
7267 /*========*/
7269 /**************************************************************************/
7270 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
7271 /**************************************************************************/
7272 #ui-elements-container > div[id$='-ui-toggle'] button {
7273 color: #888;
7274 text-shadow:
7275 0 0 1px #fff,
7276 0 0 3px #fff,
7277 0 0 5px #fff,
7278 0 0 10px #fff,
7279 0 0 20px #fff,
7280 0 0 30px #fff;
7283 #theme-selector {
7284 background-color: #d8d8d8;
7285 box-shadow:
7286 0 0 0 1px #999,
7287 0 0 1px 3px #fff,
7288 0 0 3px 3px #fff,
7289 0 0 5px 3px #fff,
7290 0 0 10px 3px #fff,
7291 0 0 20px 3px #fff;
7292 border-radius: 12px;
7294 #theme-selector::before,
7295 #theme-selector .theme-selector-close-button {
7296 color: #666;
7297 text-shadow: 0.5px 0.5px 0 #fff;
7299 #theme-selector button {
7300 background-color: #e6e6e6;
7301 border-radius: 10px;
7303 #theme-selector button::after {
7304 color: #000;
7305 padding-bottom: 2px;
7306 max-width: calc(100% - 3.25em);
7307 overflow: hidden;
7308 text-overflow: ellipsis;
7310 #theme-selector button.selected::after {
7311 text-shadow:
7312 0 -1px 0 #fff,
7313 0 0.5px 0.5px #000;
7316 #quick-nav-ui {
7317 background-color: #fff;
7319 #quick-nav-ui,
7320 #new-comment-nav-ui,
7321 #hns-date-picker {
7322 box-shadow:
7323 0 0 1px 3px #fff,
7324 0 0 3px 3px #fff,
7325 0 0 5px 3px #fff,
7326 0 0 10px 3px #fff,
7327 0 0 20px 3px #fff;
7329 #quick-nav-ui a::after,
7330 #new-comment-nav-ui::before {
7331 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7332 font-weight: 600;
7333 box-shadow:
7334 0 0 1px 0 #fff,
7335 0 0 3px 0 #fff,
7336 0 0 5px 0 #fff;
7337 background-color: #fff;
7338 border-radius: 4px;
7340 #quick-nav-ui,
7341 #new-comment-nav-ui {
7342 border-radius: 8px;
7344 #new-comment-nav-ui {
7345 background-color: #d8d8d8;
7346 border: 1px solid #999;
7348 #new-comment-nav-ui::before {
7349 color: #777;
7351 #new-comment-nav-ui .new-comment-sequential-nav-button {
7352 box-shadow: 0 0 0 1px #999;
7353 color: #777;
7355 #new-comment-nav-ui .new-comments-count {
7356 background-color: inherit;
7357 box-shadow: 0 -1px 0 0 #999;
7359 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7360 color: #bbb;
7362 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7363 border-radius: 7px 0 0 7px;
7365 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7366 border-radius: 0 7px 7px 0;
7368 #new-comment-nav-ui button::after {
7369 font-family: 'Concourse', 'a_Avante', 'Assistant', Arial, sans-serif;
7372 /*****************************************/
7373 @media only screen and (max-width: 900px) {
7374 /*****************************************/
7375 h1.listing {
7376 font-size: 1.75rem;
7377 line-height: 1;
7379 h1.listing a[href^='http'] {
7380 top: 2px;
7382 h1.listing + .post-meta .karma-value,
7383 h1.listing + .post-meta .comment-count,
7384 h1.listing + .post-meta .lw2-link,
7385 h1.listing + .post-meta .read-time {
7386 bottom: 0;
7388 h1.listing + .post-meta .post-section::before {
7389 position: unset;
7391 h1.listing + .post-meta .post-section {
7392 overflow: visible;
7393 order: 1;
7395 h1.listing + .post-meta .link-post-domain {
7396 order: 2;
7397 line-height: 1;
7398 flex-basis: 100%;
7400 h1.listing + .post-meta::after {
7401 bottom: -10px;
7403 #content.user-page h1.listing + .post-meta {
7404 margin-bottom: 1em;
7406 #content.user-page h1.link-post-listing::after {
7407 height: calc(100% + 2em);
7410 #nav-item-search button::before {
7411 color: #00e;
7414 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7415 background-color: #aaa;
7418 .comment-item .comment-item {
7419 margin: 0.75em 2px 4px 6px;
7420 box-shadow:
7421 0 0 2px #ccc,
7422 0 0 4px #ccc,
7423 0 0 7px #ccc;
7425 .comment-item .comment-item + .comment-item {
7426 margin: 1.5em 2px 4px 6px;
7428 .comment-body {
7429 font-size: 1.125rem;
7432 a.comment-parent-link:hover::before {
7433 background-color: unset;
7436 .sublevel-nav:not(.sort) .sublevel-item,
7437 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7438 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7439 border-radius: 8px;
7440 border-width: 1px;
7441 margin: 2px;
7443 /*******************************************/
7444 } @media only screen and (max-width: 720px) {
7445 /*******************************************/
7446 h1.listing {
7447 margin: 10px 6px 6px 6px;
7448 max-width: calc(100% - 12px);
7449 font-size: 1.5rem;
7450 padding-right: 35px;
7452 #content.conversations-user-page h1.listing {
7453 font-size: 1.5rem;
7455 h1.listing + .post-meta {
7456 margin: 0 6px 0 7px;
7457 clear: both;
7459 h1.listing + .post-meta {
7460 padding: .25em 254px 0 0;
7462 h1.listing + .post-meta::after {
7463 bottom: -2px;
7465 h1.listing + .post-meta > * {
7466 line-height: 1;
7467 display: block;
7469 #content.conversations-user-page h1.listing + .post-meta > * {
7470 line-height: 1.5;
7472 h1.listing + .post-meta .date,
7473 h1.listing + .post-meta .author {
7474 line-height: 1.3;
7476 h1.listing + .post-meta .karma-value,
7477 h1.listing + .post-meta .comment-count,
7478 h1.listing + .post-meta .lw2-link,
7479 h1.listing + .post-meta .read-time {
7480 top: unset;
7481 font-size: 1rem;
7482 box-shadow: none;
7484 h1.listing + .post-meta .karma-value::before,
7485 h1.listing + .post-meta .comment-count::before,
7486 h1.listing + .post-meta .lw2-link::before,
7487 h1.listing + .post-meta .read-time::before {
7488 box-shadow: none;
7490 h1.listing + .post-meta .karma-value,
7491 h1.listing + .post-meta .comment-count,
7492 h1.listing + .post-meta .read-time,
7493 h1.listing + .post-meta .lw2-link {
7494 bottom: 4px;
7497 h1.listing + .post-meta .karma-value {
7498 right: 192px;
7500 h1.listing + .post-meta .karma-value::before {
7501 text-shadow: 0.5px 0.5px 0.5px #999;
7503 h1.listing + .post-meta .comment-count {
7504 right: 132px;
7506 h1.listing + .post-meta .read-time {
7507 right: 56px;
7509 h1.listing + .post-meta .lw2-link {
7510 opacity: 1;
7511 right: 0;
7513 h1.listing + .post-meta .link-post-domain {
7514 margin: 0;
7515 line-height: 1.3;
7516 overflow: hidden;
7517 text-overflow: ellipsis;
7519 h1.listing + .post-meta .post-section::before {
7520 position: absolute;
7521 left: unset;
7522 right: 0;
7523 bottom: 30px;
7524 top: unset;
7526 h1.listing a {
7527 display: inline;
7529 /*******************************************/
7530 } @media only screen and (max-width: 520px) {
7531 /*******************************************/
7532 h1.listing + .post-meta {
7533 padding: .25em 144px 0 0;
7534 flex-flow: column;
7536 #content.conversations-user-page h1.listing + .post-meta {
7537 flex-flow: row wrap;
7539 h1.listing + .post-meta .date {
7540 margin: 0.375em 0 0.25em 0;
7541 line-height: 1;
7543 #content.user-page h1.listing::after {
7544 height: calc(100% + 2.125em);
7546 #content.user-page h1.link-post-listing::after {
7547 height: calc(100% + 3.125em);
7549 #content.user-page h1.listing + .post-meta {
7550 padding: 0.25em 144px 0.5em 36px;
7552 #content.conversations-user-page h1.listing + .post-meta .date {
7553 margin: 0 0 0 1em;
7556 h1.listing + .post-meta .karma-value {
7557 bottom: 28px;
7558 right: 0;
7560 h1.listing + .post-meta .comment-count {
7561 bottom: 28px;
7562 right: 56px;
7564 h1.listing + .post-meta .read-time {
7565 right: 56px;
7566 bottom: 4px;
7568 h1.listing + .post-meta .lw2-link {
7569 right: 0;
7570 bottom: 4px;
7572 h1.listing + .post-meta .link-post-domain {
7573 max-width: 100%;
7575 h1.listing + .post-meta .post-section::before {
7576 right: 120px;
7579 #content.compact > .comment-thread .comment-item {
7580 max-height: 110px;
7583 .textarea-container:focus-within button:active {
7584 background-color: #ccc;
7586 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7587 background-color: #eee;
7588 border: 1px solid #ddd;
7589 border-radius: 6px;
7591 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7592 border-color: #c00;
7593 box-shadow:
7594 0 0 0 1px #fff,
7595 0 0 0 2px #c00;
7596 color: #c00;
7597 font-weight: 600;
7599 #content.conversation-page .textarea-container:focus-within::after {
7600 background-color: #fff;
7602 .textarea-container:focus-within .guiedit-buttons-container {
7603 background-color: white;
7604 border-top: 1px solid #ddf;
7606 .textarea-container:focus-within button.guiedit {
7607 background-color: #eee;
7608 border: 1px solid #ddd;
7609 border-radius: 6px;
7611 #markdown-hints::after {
7612 color: #090;
7615 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7616 top: 2px;
7618 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7619 top: 1px;
7621 /*******************************************/
7622 } @media only screen and (max-width: 320px) {
7623 /*******************************************/
7624 h1.listing {
7625 font-size: 1.25rem;
7627 #content.user-page h1.listing::after {
7628 height: calc(100% + 2.625em);
7630 #content.user-page h1.link-post-listing::after {
7631 height: calc(100% + 3.75em);
7637 /*************/
7638 /* ACCORDIUS */
7639 /*************/
7641 /*======*/
7642 /* TAGS */
7643 /*======*/
7645 #tags {
7646 order: 12;
7647 display: flex;
7648 flex-basis: 100%;
7649 justify-content: center;
7650 margin: 0;
7651 flex-flow: row wrap;
7652 align-items: flex-start;
7655 /*===============*/
7656 /* DEFAULT THEME */
7657 /*===============*/
7659 /*++++++*/
7660 /* TAGS */
7661 /*++++++*/
7663 #tags {
7664 padding: 0.5em;
7666 #tags::before {
7667 content: "Tags:";
7668 margin: 0 0.25em 0 0;
7669 opacity: 0.5;
7670 line-height: 1;
7671 align-self: center;
7673 #tags a {
7674 border-radius: 8px;
7675 background-color: #f0f5fa;
7676 border: 1px solid #c5d6e9;
7677 padding: 4px 8px 5px 8px;
7678 line-height: 1;
7679 margin: 0.25em;
7680 font-size: 0.9375em;
7682 #tags a:hover {
7683 text-decoration: none;
7684 background-color: #d5e7fa;
7686 #tags a:active {
7687 color: #d00;