Styling for post-nav-links, part X: brutalist theme
[lw2-viewer.git] / www / css / style-classic.linux.css
blob7055a0dbf6f331b1fb4e4d1cd1fc31d715f756aa
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;
1100 #keyboard-help-overlay button.close-keyboard-help {
1101 position: absolute;
1102 right: 0;
1103 top: 0;
1104 font-family: "Font Awesome", "Font Awesome 5 Free";
1105 font-size: 1.5rem;
1106 padding: 10px 12px;
1109 /************/
1110 /* ARCHIVES */
1111 /************/
1113 .archive-nav {
1114 margin: 1.25em 0.5em 0 0.5em;
1115 padding: 0.25em;
1117 .archive-nav > * {
1118 display: flex;
1120 .archive-nav *[class^='archive-nav-item'] {
1121 line-height: 1;
1122 flex: 1 1 5%;
1123 text-align: center;
1124 padding: 6px 4px 4px 4px;
1125 max-width: 8%;
1127 @-moz-document url-prefix() {
1128 .archive-nav *[class^='archive-nav-item'] {
1129 padding: 5px 4px;
1132 .archive-nav-days .archive-nav-item-day {
1133 font-size: 0.8em;
1134 padding: 7px 0 5px 0;
1135 max-width: 4%;
1137 .archive-nav-days .archive-nav-item-day:first-child {
1138 flex-basis: 10%;
1141 /************/
1142 /* ARCHIVES */
1143 /************/
1145 .archive-nav {
1146 margin: 1.25em 0.5em 0 0.5em;
1147 padding: 0.25em;
1149 .archive-nav > * {
1150 display: flex;
1152 .archive-nav *[class^='archive-nav-item'] {
1153 line-height: 1;
1154 flex: 1 1 5%;
1155 text-align: center;
1156 padding: 6px 4px 4px 4px;
1157 max-width: 8%;
1159 @-moz-document url-prefix() {
1160 .archive-nav *[class^='archive-nav-item'] {
1161 padding: 5px 4px;
1164 .archive-nav-days .archive-nav-item-day {
1165 font-size: 0.8em;
1166 padding: 7px 0 5px 0;
1167 max-width: 4%;
1169 .archive-nav-days .archive-nav-item-day:first-child {
1170 flex-basis: 10%;
1173 /************/
1174 /* LISTINGS */
1175 /************/
1177 h1.listing {
1178 font-size: 1.875rem;
1179 line-height: 1.15;
1180 max-height: 1.15em;
1181 position: relative;
1184 h1.listing a {
1185 position: relative;
1188 /* Links to link-posts (not the link-post links themselves; that's below) */
1189 h1.listing a[href^='http'] + a {
1190 margin-left: 0.25em;
1192 /* Link-post links */
1193 h1.listing a[href^="http"] {
1194 font-size: 0.8em;
1195 display: inline;
1196 vertical-align: top;
1197 position: relative;
1198 top: 4px;
1201 /*=----------------------=*/
1202 /*= Listing hover reveal =*/
1203 /*=----------------------=*/
1204 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1206 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1207 h1.listing a {
1208 max-width: 100%;
1209 display: inline-block;
1210 white-space: nowrap;
1211 text-overflow: ellipsis;
1212 overflow: hidden;
1213 border-bottom: 1px solid transparent;
1214 -webkit-hyphens: auto;
1215 -moz-hyphens: auto;
1216 -ms-hyphens: auto;
1217 hyphens: auto;
1218 z-index: 1;
1219 padding: 0 0 1px 1px;
1221 h1.listing a[href^='http'] + a {
1222 max-width: calc(100% - 33px);
1224 h1.listing a:hover,
1225 h1.listing a:focus {
1226 text-decoration: dotted underline;
1227 white-space: initial;
1228 overflow: visible;
1229 z-index: 2;
1231 h1.listing:focus-within::before {
1232 content: "\F105";
1233 font-family: "Font Awesome", "Font Awesome 5 Free";
1234 display: block;
1235 position: absolute;
1236 left: -0.75em;
1239 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1240 mouse movements) */
1242 h1.listing a:not(.edit-post-link):hover::before {
1243 content: "";
1244 position: absolute;
1245 top: -10px;
1246 right: -10px;
1247 bottom: -10px;
1248 left: -10px;
1249 z-index: -1;
1251 h1.listing a[href^="http"]:hover {
1252 text-decoration: none;
1256 /*=-----------------------=*/
1257 /*= In-listing edit links =*/
1258 /*=-----------------------=*/
1260 h1.listing .edit-post-link {
1261 position: absolute;
1262 margin: 0;
1265 /*=---------------------------------=*/
1266 /*= Error messages on listing pages =*/
1267 /*=---------------------------------=*/
1269 .listing-message {
1270 width: 100%;
1271 text-align: center;
1272 padding: 1.25em 0 1.25em 0;
1273 font-size: 1.375em;
1276 /*********************/
1277 /* LISTING POST-META */
1278 /*********************/
1280 h1.listing + .post-meta {
1281 position: relative;
1282 justify-content: flex-start;
1283 margin: 0 20px 0 21px;
1286 h1.listing + .post-meta > * {
1287 margin: 0 1em 0 0;
1290 h1.listing + .post-meta .post-section {
1291 width: 0;
1292 margin: 0;
1293 overflow: hidden;
1295 h1.listing + .post-meta .post-section::before {
1296 position: absolute;
1297 left: -36px;
1300 h1.listing + .post-meta .read-time {
1301 cursor: default;
1304 /*************/
1305 /* SEQUENCES */
1306 /*************/
1308 .sequence-text {
1309 font-size: 1.2rem;
1310 padding: 0 22px;
1313 section {
1314 margin-top: 2em;
1315 margin-bottom: 4em;
1318 h1.sequence-chapter {
1319 font-size: 2.3rem;
1322 article {
1323 max-width: 100%;
1326 /**************/
1327 /* USER PAGES */
1328 /**************/
1330 /*=------------=*/
1331 /*= Pagination =*/
1332 /*=------------=*/
1334 #content.user-page > #top-nav-bar {
1335 grid-row: 6;
1338 /*=---------------------=*/
1339 /*= User's display name =*/
1340 /*=---------------------=*/
1342 #content.user-page h1.page-main-heading {
1343 margin: 0.25em 0 0 0;
1344 line-height: 1.1;
1345 grid-row: 4;
1348 /*=--------------------=*/
1349 /*= User's karma total =*/
1350 /*=--------------------=*/
1352 #content.user-page .user-stats {
1353 grid-column: 3;
1354 grid-row: 4;
1355 text-align: right;
1356 align-self: end;
1359 #content.user-page .user-stats .karma-type {
1360 white-space: nowrap;
1363 /*=----------------------=*/
1364 /*= Expanded vs. compact =*/
1365 /*=----------------------=*/
1367 #content.user-page #comments-list-mode-selector {
1368 grid-row: 5 / span 2;
1370 #content.user-page #comments-list-mode-selector button {
1371 display: block;
1374 /*=----------------------------------------------------=*/
1375 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1376 /*=----------------------------------------------------=*/
1378 #content.user-page .sublevel-nav {
1379 margin-bottom: 0.5em;
1382 /*=--------------=*/
1383 /*= User's posts =*/
1384 /*=--------------=*/
1386 #content.user-page h1.listing {
1387 margin: 0.5em 0 0 0;
1390 /*****************/
1391 /* CONVERSATIONS */
1392 /*****************/
1394 /*=----------------------=*/
1395 /*= List of participants =*/
1396 /*=----------------------=*/
1398 #content.conversation-page .conversation-participants {
1399 grid-column: 2 / span 2;
1400 grid-row: 3;
1401 text-align: right;
1402 margin: 0.5em 0 0 0;
1405 .conversation-participants ul,
1406 .conversation-participants li {
1407 list-style-type: none;
1408 display: inline-block;
1409 margin: 0;
1410 padding: 0;
1412 .conversation-participants li {
1413 margin-left: 0.375em;
1415 .conversation-participants li:not(:last-of-type)::after {
1416 content: ",";
1419 /*=-------------------------=*/
1420 /*= Posting controls (form) =*/
1421 /*=-------------------------=*/
1423 #content.conversation-page .posting-controls {
1424 padding: 0 0 1em 0;
1426 #content.conversation-page .post-meta-fields {
1427 overflow: auto;
1428 display: flex;
1429 flex-flow: row wrap;
1431 #content.conversation-page textarea {
1432 margin-top: 0.375em;
1434 #conversation-form {
1435 padding: 0 1em 3em 1em;
1437 #conversation-form input[type='text'],
1438 #conversation-form label {
1439 margin: 0.25em 0;
1441 #conversation-form label {
1442 width: 4em;
1443 text-align: right;
1444 padding: 2px 6px;
1445 border: 1px solid transparent;
1447 #conversation-form input[type='text'] {
1448 width: calc(100% - 4em);
1449 padding: 0.25em;
1451 #conversation-form input[type='submit'] {
1452 float: right;
1454 #content.conversation-page #markdown-hints-checkbox ~ label {
1455 white-space: nowrap;
1457 #content.conversation-page #markdown-hints {
1458 top: calc(100% + 2em);
1461 /*=--------------------=*/
1462 /*= Conversation title =*/
1463 /*=--------------------=*/
1465 #content.conversation-page h1.page-main-heading {
1466 text-align: center;
1467 margin: 0.5em 0;
1468 line-height: 1.15;
1471 /*=----------=*/
1472 /*= Messages =*/
1473 /*=----------=*/
1475 #content.conversation-page > ul.comment-thread:last-of-type {
1476 margin-bottom: 2em;
1479 /******************/
1480 /* SEARCH RESULTS */
1481 /******************/
1483 #content.search-results-page h1.listing,
1484 #content.sequence-page h1.listing {
1485 font-size: 1.625em;
1488 /**************/
1489 /* LOGIN PAGE */
1490 /**************/
1492 .login-container {
1493 margin: 2em 0;
1494 padding: 1em;
1495 display: flex;
1496 flex-flow: row wrap;
1499 .login-container form {
1500 flex-basis: 50%;
1501 display: grid;
1502 grid-row-gap: 0.5em;
1503 align-content: start;
1505 .login-container form label {
1506 text-align: right;
1507 padding: 0.25em 0.5em;
1508 white-space: nowrap;
1509 grid-column: 1;
1511 .login-container form input {
1512 grid-column: 2;
1513 padding: 0.25em;
1515 .login-container form input[type='submit'],
1516 .login-container form a {
1517 grid-column: 2;
1518 justify-self: center;
1520 .login-container form input[type='submit'] {
1521 width: 10em;
1522 padding: 0.35em;
1523 line-height: 1;
1524 margin: 0.5em 0 0 0;
1526 .login-container form h1 {
1527 text-align: center;
1528 margin: 0;
1529 grid-column: 2;
1532 /* “Log in” form */
1534 #login-form {
1535 grid-template-columns: 5.5em 1fr;
1536 padding: 0.5em 2em 0.5em 0;
1539 /* “Create account” form */
1541 #signup-form {
1542 font-size: 0.9em;
1543 grid-template-columns: 8.5em 1fr;
1544 padding: 0.5em 1em 1em 1em;
1546 #signup-form h1 {
1547 font-size: 1.7em;
1549 #signup-form input[type='submit'] {
1550 padding: 0.4em 0.5em 0.5em 0.5em;
1553 /* Log in tip */
1555 .login-container .login-tip {
1556 padding: 0.5em 0.5em 0.5em 3em;
1557 margin: 2em 4em 0 4em;
1558 text-indent: -2em;
1559 line-height: 1.4;
1561 .login-container .login-tip span {
1562 font-weight: bold;
1565 /* Message box */
1567 #content.login-page .error-box {
1568 margin: 1.5em 0.875em -1.5em 0.875em;
1570 .error-box, .success-box {
1571 padding: 0.25em;
1572 text-align: center;
1575 /***********************/
1576 /* PASSWORD RESET PAGE */
1577 /***********************/
1579 .reset-password-container {
1580 margin-bottom: 2em;
1582 .reset-password-container input[type='submit'] {
1583 padding: 0.2em 0.5em;
1584 width: unset;
1586 .reset-password-container input {
1587 margin-left: 0.5em;
1588 width: 12em;
1590 .reset-password-container label {
1591 display: inline-block;
1592 width: 9em;
1594 .reset-password-container form > div {
1595 margin: 0.2em;
1597 .reset-password-container .action-container {
1598 padding-left: 11em;
1599 padding-top: 0.2em;
1601 .reset-password-container .error-box {
1602 margin: unset;
1605 /*********************/
1606 /* TABLE OF CONTENTS */
1607 /*********************/
1609 .contents {
1610 float: right;
1611 min-width: 6em;
1612 max-width: 40%;
1613 margin: 1.25em 0 0.75em 1.25em;
1614 padding: 7px 14px 10px 10px;
1615 position: relative;
1616 z-index: 1;
1619 .contents-head {
1620 text-align: center;
1621 margin-bottom: 0.25em;
1624 .post-body .contents ul {
1625 list-style-type: none;
1626 margin: 0 0 0 0.5em;
1627 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1628 padding-left: 1em;
1629 font-size: 0.75em;
1631 .post-body .contents li {
1632 margin: 0.15em 0 0.3em 1em;
1633 text-align: left;
1634 text-indent: -1em;
1635 line-height: 1.2;
1636 position: relative;
1638 .post-body .contents li::before {
1639 position: absolute;
1640 width: 3em;
1641 display: block;
1642 text-align: right;
1643 left: -4.5em;
1645 .contents .toc-item-1 {
1646 counter-increment: toc-item-1;
1647 counter-reset: toc-item-2 toc-item-3;
1649 .contents .toc-item-1::before {
1650 content: counter(toc-item-1);
1652 .contents .toc-item-1 ~ .toc-item-2 {
1653 margin-left: 2.9em;
1654 font-size: 0.95em;
1656 .contents .toc-item-2 {
1657 counter-increment: toc-item-2;
1658 counter-reset: toc-item-3;
1660 .contents .toc-item-1 ~ .toc-item-2::before {
1661 content: counter(toc-item-1) "." counter(toc-item-2);
1663 .contents .toc-item-2::before {
1664 content: counter(toc-item-2);
1666 .contents .toc-item-1 + .toc-item-3 {
1667 counter-increment: toc-item-2 toc-item-3;
1669 .contents .toc-item-2 ~ .toc-item-3,
1670 .contents .toc-item-1 ~ .toc-item-3 {
1671 margin-left: 2.9em;
1672 font-size: 0.95em;
1674 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1675 margin-left: 5.7em;
1676 font-size: 0.9em;
1678 .contents .toc-item-3 {
1679 counter-increment: toc-item-3;
1681 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1682 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1684 .contents .toc-item-1 ~ .toc-item-3::before {
1685 content: counter(toc-item-1) "." counter(toc-item-3);
1687 .contents .toc-item-2 ~ .toc-item-3::before {
1688 content: counter(toc-item-2) "." counter(toc-item-3);
1690 .contents .toc-item-3::before {
1691 content: counter(toc-item-3);
1693 .contents .toc-item-4,
1694 .contents .toc-item-5,
1695 .contents .toc-item-6 {
1696 display: none;
1699 /********************/
1700 /* POSTS & COMMENTS */
1701 /********************/
1703 .post-meta > *,
1704 .comment-meta > * {
1705 display: inline-block;
1706 margin-right: 1em;
1707 font-size: 1.0625em;
1708 white-space: nowrap;
1710 .body-text {
1711 overflow-wrap: break-word;
1712 text-align: justify;
1714 .body-text p {
1715 margin: 1em 0;
1717 .retracted .body-text {
1718 text-decoration: line-through;
1721 .bare-url {
1722 word-break: break-all;
1723 hyphens: auto;
1725 .body-text a:not([href]),
1726 .body-text a:not([href]):hover,
1727 .body-text a:not([href])::before,
1728 .body-text a:not([href])::after {
1729 text-decoration: none;
1730 text-shadow: unset;
1731 border: unset;
1732 color: unset;
1733 content: unset;
1735 /*************/
1736 /* POST-META */
1737 /*************/
1739 .post-meta {
1740 display: flex;
1741 flex-flow: row wrap;
1742 justify-content: center;
1744 .post-meta .lw2-link {
1745 opacity: 0.5;
1746 order: 1;
1748 .post-meta > *,
1749 .post-meta .post-section::before {
1750 margin: 0 0.5em;
1752 .post-meta .post-section {
1753 order: -1;
1754 margin: 0;
1755 visibility: hidden;
1757 .post-meta .post-section::before,
1758 .comment-meta .alignment-forum {
1759 visibility: visible;
1760 font-family: "Font Awesome", "Font Awesome 5 Free";
1761 font-weight: 900;
1763 .post-section.frontpage::before {
1764 content: "\F015";
1766 .post-section.featured::before {
1767 content: "\F005";
1769 .post-section.meta::before {
1770 content: "\F077";
1772 .post-section.personal::before {
1773 content: "\F007";
1775 .post-section.draft::before {
1776 content: "\F15B";
1778 .post-section.alignment-forum::before,
1779 .comment-meta .alignment-forum {
1780 content: "AF";
1781 font-family: Concourse, 'Changa One';
1784 /*= Karma controls hover tooltips =*/
1786 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1787 .post .karma,
1788 .comment-item .karma {
1789 position: relative;
1791 .post .karma.active-controls::after,
1792 .comment-item .karma.active-controls::after {
1793 content: "Double-click for strong vote";
1794 position: absolute;
1795 pointer-events: none;
1796 display: block;
1797 left: 6px;
1798 max-width: calc(100% - 12px);
1799 line-height: 1.15;
1800 white-space: normal;
1801 text-align: center;
1802 font-size: 0.875rem;
1803 opacity: 0;
1804 transition: opacity 0.2s ease;
1806 .post .karma.active-controls:hover::after,
1807 .comment-item .karma.active-controls:hover::after {
1808 opacity: 1.0;
1811 .post .karma .karma-value::after,
1812 .comment-item .karma .karma-value::after {
1813 content: attr(title);
1814 position: absolute;
1815 pointer-events: none;
1816 display: block;
1817 left: 50%;
1818 transform: translateX(-50%);
1819 white-space: nowrap;
1820 text-align: center;
1821 font-size: 0.875rem;
1822 color: #bbb;
1823 opacity: 0;
1824 transition: opacity 0.2s ease;
1826 .post .karma .karma-value:hover::after,
1827 .comment-item .karma .karma-value:hover::after {
1828 opacity: 1.0;
1830 .comment-item .karma .karma-value:hover::after {
1831 z-index: 5001;
1834 .author {
1835 position: relative;
1837 .author:not(.redacted)::before {
1838 content: attr(data-full-name);
1839 position: absolute;
1840 pointer-events: none;
1841 display: block;
1842 padding: 0 1em;
1843 left: 50%;
1844 bottom: 2em;
1845 transform: translateX(-50%);
1846 white-space: nowrap;
1847 text-align: center;
1848 font-size: 0.875rem;
1849 font-weight: normal;
1850 opacity: 0;
1851 transition: opacity 0.2s ease;
1852 z-index: 5001;
1854 .author:hover::before {
1855 opacity: 1.0;
1859 /*********/
1860 /* POSTS */
1861 /*********/
1863 .post {
1864 max-width: 100%;
1867 .post-body {
1868 min-height: 8em;
1869 padding: 0 30px;
1870 line-height: 1.5;
1871 font-size: 1.3rem;
1872 overflow: auto;
1873 margin: 0.5em 0 0 0;
1875 h1.post-title {
1876 margin: 1.1em 0 0.35em 0;
1877 padding: 0 30px;
1878 text-align: center;
1879 font-size: 2.5em;
1880 line-height: 1;
1882 .post .post-meta {
1883 text-align: center;
1884 position: relative;
1885 z-index: 2;
1887 .post .top-post-meta:last-child {
1888 margin-bottom: 40px;
1890 .post .bottom-post-meta {
1891 margin: 0;
1892 padding: 20px 0;
1894 .bottom-post-meta {
1895 border-style: solid;
1896 border-width: 1px 0;
1899 /*******************/
1900 /* POST NAVIGATION */
1901 /*******************/
1903 .post-nav-item {
1904 margin: 1em 0;
1905 display: flex;
1907 .post-nav-item > * {
1908 display: flex;
1909 flex-flow: column;
1910 justify-content: flex-start;
1913 .post-nav-title {
1914 font-size: 1.125em;
1915 line-height: 1.15;
1916 display: inline;
1917 border-bottom: 1px dotted transparent;
1920 .sequence-title {
1921 flex: 1 1 36%;
1922 align-items: center;
1923 text-align: center;
1925 .sequence-title .post-nav-title {
1926 font-size: 1.5em;
1929 .post-nav {
1930 flex: 1 1 32%;
1931 display: flex;
1932 flex-flow: column;
1933 justify-content: flex-end;
1935 .post-nav .post-nav-label {
1936 display: none;
1939 .post-nav.prev {
1940 order: -1;
1941 margin: 0 1.5em 0 0;
1942 align-items: flex-start;
1944 .post-nav.prev .post-nav-title::before {
1945 content: "\F0D9\2005";
1947 .post-nav.next {
1948 margin: 0 0 0 1.5em;
1949 text-align: right;
1950 align-items: flex-end;
1952 .post-nav.next .post-nav-title::after {
1953 content: "\2004\F0DA";
1955 .post-nav.prev .post-nav-title::before,
1956 .post-nav.next .post-nav-title::after {
1957 font-family: Font Awesome;
1958 font-weight: 900;
1959 vertical-align: text-bottom;
1960 opacity: 0.75;
1963 @media only screen and (max-width: 900px) {
1964 .post-nav-item {
1965 flex-flow: row wrap;
1966 font-size: 0.875em;
1967 margin: 0;
1969 .post-nav.prev,
1970 .post-nav.next {
1971 flex-basis: 50%;
1972 padding: 0.5em;
1974 .post-nav.next {
1975 margin: 0;
1977 .post-nav.prev {
1978 margin: 0 0 0 -1px;
1979 position: relative;
1980 left: 1px;
1982 .sequence-title {
1983 flex-basis: 100%;
1984 order: 2;
1985 padding: 0.75em 0;
1989 /**************/
1990 /* LINK POSTS */
1991 /**************/
1993 .post.link-post > .post-body > p:first-child {
1994 text-align: center;
1995 font-size: 1.125em;
1996 margin: 0.5em 0 0 0;
1998 .post.link-post > .post-body > p:only-child {
1999 font-size: 1.5em;
2000 margin: 1em 0;
2002 .post.link-post a.link-post-link::before {
2003 content: "\F0C1";
2004 font-family: "Font Awesome", "Font Awesome 5 Free";
2005 font-weight: 900;
2006 font-size: 0.75em;
2007 position: relative;
2008 top: -2px;
2009 margin-right: 0.25em;
2012 /************/
2013 /* COMMENTS */
2014 /************/
2016 .comments {
2017 max-width: 100%;
2018 padding: 0 0 1px 0;
2019 position: relative;
2021 .comments::before {
2022 content: "";
2023 position: absolute;
2024 display: block;
2025 top: 0;
2026 left: 0;
2027 width: 100%;
2028 height: 100%;
2029 pointer-events: none;
2031 ul.comment-thread {
2032 list-style-type: none;
2033 padding: 0;
2034 max-width: 100%;
2036 .comments .comment-thread > li {
2037 position: relative;
2039 #content > #top-nav-bar + .comment-thread .comment-item {
2040 margin-top: 0;
2043 .comment-item {
2044 margin: 2em 0 0 0;
2046 .comment-item .comment-item {
2047 margin: 1em 8px 8px 16px;
2049 .comment-item .comment-item + .comment-item {
2050 margin: 2em 8px 8px 16px;
2053 .comment-body {
2054 line-height: 1.45;
2055 font-size: 1.2rem;
2056 padding: 10px;
2058 .comment-body ul {
2059 list-style-type: circle;
2061 .comment-body > *:first-child {
2062 margin-top: 0;
2064 .comment-body > *:last-child {
2065 margin-bottom: 0;
2068 .comments-empty-message {
2069 width: 100%;
2070 text-align: center;
2071 padding: 0.75em 0 0.9em 0;
2072 font-size: 1.375em;
2075 /**********************************/
2076 /* DEEP COMMENT THREAD COLLAPSING */
2077 /**********************************/
2079 .comment-item input[id^="expand"] {
2080 display: none;
2082 .comment-item input[id^="expand"] + label {
2083 display: block;
2084 visibility: hidden;
2085 position: relative;
2086 margin: 8px 9px;
2088 .comment-item input[id^="expand"] + label::after {
2089 content: "(Expand " attr(data-child-count) " below)";
2090 visibility: visible;
2091 position: absolute;
2092 left: 0;
2093 white-space: nowrap;
2094 cursor: pointer;
2096 .comment-item input[id^="expand"]:checked + label::after {
2097 content: "(Collapse " attr(data-child-count) " below)";
2099 .comment-item input[id^="expand"] ~ .comment-thread {
2100 max-height: 34px;
2101 overflow: hidden;
2103 .comment-item input[id^="expand"] ~ .comment-thread > li:first-child {
2104 margin-top: 0;
2106 .comment-item input[id^="expand"]:checked ~ .comment-thread {
2107 max-height: 1000000px;
2110 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
2111 margin: 0;
2113 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
2114 display: none;
2117 /****************/
2118 /* COMMENT-META */
2119 /****************/
2121 .comment-meta {
2122 padding: 2px 24px 2px 10px;
2123 margin: 0 -1px;
2124 border: none;
2125 display: flex;
2126 flex-flow: row wrap;
2127 align-items: baseline;
2129 .user-page .comment-meta,
2130 .conversation-page .comment-meta {
2131 padding-right: 10px;
2133 .comment-meta .comment-post-title {
2134 flex-basis: 100%;
2135 overflow: hidden;
2136 text-overflow: ellipsis;
2137 line-height: 1.3;
2139 .conversation-page .comment-meta .comment-post-title {
2140 margin: 0;
2141 flex-basis: unset;
2142 flex: 1 0 auto;
2143 text-align: right;
2144 display: none; /* Not sure if we need to display this... */
2146 .comment-item .author:not(.redacted).original-poster::after {
2147 content: "\2004(OP)";
2148 font-size: 0.75em;
2151 /*****************************/
2152 /* COMMENT THREAD NAVIGATION */
2153 /*****************************/
2155 a.comment-parent-link:not(.inline-author),
2156 a.comment-parent-link.inline-author::before {
2157 opacity: 0.5;
2159 a.comment-parent-link:hover {
2160 opacity: 1.0;
2162 a.comment-parent-link::before {
2163 content: "\F062";
2164 font-family: "Font Awesome", "Font Awesome 5 Free";
2165 font-weight: 900;
2166 font-size: 0.75rem;
2167 line-height: 1;
2168 position: absolute;
2169 z-index: 1;
2170 display: block;
2171 padding: 3px 3px 0 3px;
2172 width: 16px;
2173 height: calc(100% + 2px);
2174 top: -1px;
2175 left: -17px;
2177 a.comment-parent-link::after {
2178 content: "";
2179 position: absolute;
2180 z-index: 0;
2181 display: block;
2182 width: calc(100% + 26px);
2183 height: calc(100% + 38px);
2184 top: -29px;
2185 left: -17px;
2186 pointer-events: none;
2187 overflow: hidden;
2188 visibility: hidden;
2190 a.comment-parent-link:hover::after {
2191 visibility: visible;
2194 .comment-child-links {
2195 flex-basis: 100%;
2197 .comment-child-link {
2198 margin: 0 0.25em;
2199 display: inline-block;
2201 .comment-child-link::before {
2202 content: ">";
2203 display: inline-block;
2204 margin: 0 2px 0 0;
2207 .comment-popup {
2208 position: fixed;
2209 top: 10%;
2210 right: 10%;
2211 max-width: 700px;
2212 z-index: 10001;
2213 font-size: 1rem;
2214 white-space: unset;
2215 pointer-events: none;
2217 .comment-popup .comment-parent-link {
2218 display: none;
2220 .comment-popup .comment-body {
2221 font-size: 1.0625rem;
2224 /**********************/
2225 /* COMMENT PERMALINKS */
2226 /**********************/
2227 /********************/
2228 /* COMMENT LW LINKS */
2229 /********************/
2231 .comment-meta .permalink::before,
2232 .comment-meta .lw2-link::before,
2233 .individual-thread-page a.comment-parent-link:empty::before {
2234 content: "";
2235 display: inline-block;
2236 width: 1rem;
2237 height: 1rem;
2238 border-radius: 3px;
2239 box-shadow:
2240 0 0 0 1px #fff,
2241 0 0 0 2px #00e,
2242 0 0 0 3px transparent;
2243 padding: 0 0 0 2px;
2244 background-size: 100%;
2245 position: relative;
2246 top: 2px;
2247 opacity: 0.5;
2249 .comment-meta .permalink::before {
2250 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');
2252 .comment-meta .lw2-link::before {
2253 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==');
2255 .individual-thread-page a.comment-parent-link:empty::before {
2256 left: unset;
2257 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==');
2259 .comment-meta .permalink:hover::before {
2260 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');
2262 .comment-meta .lw2-link:hover::before {
2263 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==');
2265 .individual-thread-page a.comment-parent-link:empty:hover::before {
2266 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=');
2268 .comment-meta .permalink:hover::before,
2269 .comment-meta .lw2-link:hover::before,
2270 .individual-thread-page a.comment-parent-link:empty:hover::before {
2271 box-shadow:
2272 0 0 0 2px #00e,
2273 0 0 0 3px transparent;
2274 opacity: 1.0;
2275 filter: unset;
2277 .comment-meta .permalink:active::before,
2278 .comment-meta .lw2-link:active::before,
2279 .individual-thread-page a.comment-parent-link:empty:active::before {
2280 transform: scale(0.9);
2283 .comment-meta .permalink,
2284 .comment-meta .lw2-link,
2285 .individual-thread-page .comment-parent-link:empty {
2286 position: relative;
2287 opacity: 1.0;
2289 .comment-meta .permalink::after,
2290 .comment-meta .lw2-link::after,
2291 .individual-thread-page .comment-parent-link:empty::after {
2292 content: "";
2293 width: 30px;
2294 height: 30px;
2295 display: block;
2296 position: absolute;
2297 top: -2px;
2298 left: -7px;
2299 box-shadow: none;
2300 pointer-events: auto;
2301 visibility: visible;
2304 /*************************/
2305 /* COMMENTS COMPACT VIEW */
2306 /*************************/
2308 #comments-list-mode-selector,
2309 #content.index-page #comments-list-mode-selector,
2310 #content.user-page #comments-list-mode-selector {
2311 padding-top: 6px;
2312 grid-column: 1;
2313 position: unset;
2314 z-index: 1;
2315 justify-self: start;
2316 align-self: start;
2318 #comments-list-mode-selector button {
2319 color: transparent;
2320 width: 32px;
2321 height: 32px;
2322 padding: 6px;
2323 margin: 1px;
2324 overflow: hidden;
2325 background-repeat: no-repeat;
2326 background-size: 100%;
2327 background-origin: content-box;
2329 #comments-list-mode-selector button:disabled {
2330 cursor: auto;
2332 #comments-list-mode-selector button.expanded {
2333 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2335 #comments-list-mode-selector button.compact {
2336 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2338 @media only screen and (max-resolution: 1dppx) {
2339 #comments-list-mode-selector button.expanded {
2340 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2342 #comments-list-mode-selector button.compact {
2343 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2347 #content > ul.comment-thread > li.comment-item,
2348 #content.compact > ul.comment-thread > li.comment-item {
2349 margin: 0;
2352 #content > .comment-thread {
2353 margin: 1em 0;
2355 #content.compact > .comment-thread {
2356 font-size: 0.9375rem;
2357 margin: 0.5em 0;
2359 #content.compact > .comment-thread:hover {
2360 z-index: 1;
2362 #content.compact > .comment-thread .comment-body {
2363 font-size: 1.0625rem;
2365 #content.compact > .comment-thread .comment-item,
2366 #content.index-page .comment-item.ignored,
2367 #content.inbox-user-page .comment-item.ignored {
2368 max-height: 61px;
2369 margin-top: 1em;
2370 overflow: hidden;
2371 position: relative;
2373 #content.compact > .comment-thread .comment-item {
2374 pointer-events: none;
2376 #content.compact > .comment-thread .comment-item::after {
2377 content: "…";
2378 position: absolute;
2379 right: 0;
2380 bottom: 0;
2381 font-size: 2rem;
2382 line-height: 1;
2383 padding: 0 16px 10px 64px;
2384 pointer-events: auto;
2386 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2387 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2388 #content.compact > .comment-thread .comment-item.expanded {
2389 overflow: visible;
2390 pointer-events: auto;
2391 z-index: 10;
2394 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2395 #content.compact > .comment-thread.expanded .comment-item {
2396 overflow: visible;
2397 pointer-events: auto;
2398 z-index: 10;
2401 #content.compact > .comment-thread .comment-item .comment-meta {
2402 white-space: nowrap;
2403 overflow: hidden;
2404 text-overflow: ellipsis;
2405 padding: 2px 10px;
2407 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2408 white-space: unset;
2410 #content.compact > .comment-thread .comment-item .comment-meta a {
2411 pointer-events: auto;
2413 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2414 display: inline;
2416 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2417 margin-left: 0.75em;
2419 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2420 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2421 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2422 max-height: unset;
2424 #content.compact > .comment-thread .comment-item:hover .comment,
2425 #content.compact > .comment-thread .comment-item.expanded .comment {
2426 position: relative;
2427 z-index: 1;
2428 margin-bottom: 2em;
2429 bottom: 0;
2431 #content.compact > .comment-thread .comment-item:hover .comment::before,
2432 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2433 content: "";
2434 position: absolute;
2435 display: block;
2436 width: calc(100% + 20px);
2437 height: calc(100% + 20px);
2438 z-index: -1;
2439 top: -10px;
2440 left: -10px;
2442 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2443 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2444 margin: 0;
2447 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2448 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2449 max-height: unset;
2451 #content.compact > .comment-thread.expanded .comment-item .comment {
2452 position: relative;
2453 z-index: 1;
2454 margin-bottom: 2em;
2455 bottom: 0;
2457 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2458 content: "";
2459 position: absolute;
2460 display: block;
2461 width: calc(100% + 14px);
2462 height: calc(100% + 20px);
2463 z-index: -1;
2464 top: -10px;
2465 left: -10px;
2467 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2468 margin: 0;
2470 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2471 content: "";
2472 display: block;
2473 position: fixed;
2474 top: 0;
2475 left: 0;
2476 width: 100%;
2477 height: 100%;
2478 z-index: -2;
2479 background-color: rgba(0,0,0,0.5);
2483 /*****************************/
2484 /* HIGHLIGHTING NEW COMMENTS */
2485 /*****************************/
2487 .new-comment::before {
2488 content: "";
2489 position: absolute;
2490 width: 100%;
2491 height: 100%;
2492 z-index: 5000;
2493 pointer-events: none;
2496 /***********************************/
2497 /* COMMENT THREAD MINIMIZE BUTTONS */
2498 /***********************************/
2500 .comment-minimize-button {
2501 font-family: "Font Awesome", "Font Awesome 5 Free";
2502 font-weight: 900;
2503 font-size: 1.25rem;
2504 line-height: 1;
2505 position: absolute;
2506 right: 1px;
2507 top: 1px;
2508 width: 18px;
2509 margin: 0;
2510 cursor: pointer;
2512 .comment-minimize-button:active {
2513 transform: scale(0.9);
2515 .comment-minimize-button::after {
2516 content: attr(data-child-count);
2517 font-weight: normal;
2518 font-size: 0.8125rem;
2519 position: absolute;
2520 left: 0;
2521 width: 100%;
2522 text-align: center;
2523 top: 21px;
2525 #content.individual-thread-page .comment-minimize-button {
2526 display: none;
2529 /*****************/
2530 /* IGNORE SYSTEM */
2531 /*****************/
2533 #content.comment-thread-page .comment-item.ignored {
2534 height: 38px;
2535 overflow: hidden;
2537 .comment-item.ignored > .comment > .comment-meta > .author {
2538 text-decoration: line-through;
2541 /***********************************/
2542 /* INDIVIDUAL COMMENT THREAD PAGES */
2543 /***********************************/
2545 .individual-thread-page > h1 {
2546 line-height: 1;
2547 margin: 0.75em 0 3px 0;
2549 .individual-thread-page .comments {
2550 border: none;
2553 /****************/
2554 /* VOTE BUTTONS */
2555 /****************/
2557 .vote {
2558 margin: 0;
2560 .vote {
2561 font-family: "Font Awesome", "Font Awesome 5 Free";
2562 font-weight: 900;
2563 border: none;
2565 .karma.waiting {
2566 opacity: 0.5;
2568 .karma.waiting button {
2569 pointer-events: none;
2572 /* Replicated karma controls at bottom of comments. */
2573 .comment-controls .karma {
2574 float: left;
2575 margin-left: -14px;
2576 font-size: 0.9375em;
2579 /*****************************/
2580 /* COMMENTING AND POSTING UI */
2581 /*****************************/
2583 .comment-controls {
2584 text-align: right;
2585 margin: 0 8px 8px 16px;
2586 position: relative;
2587 z-index: 9999;
2589 .comment-thread .comment-controls + .comment-thread > li:first-child {
2590 margin-top: 8px;
2592 .comments > .comment-controls {
2593 margin: 8px 0 0 0;
2595 .comments > .comment-controls:last-child {
2596 margin: 8px 0 16px 0;
2599 .posting-controls input[type='submit'] {
2600 margin: 6px;
2601 padding: 4px 10px;
2602 font-size: 1.125rem;
2605 .comment-controls .cancel-comment-button {
2606 position: absolute;
2607 right: 0;
2608 margin: 0;
2609 height: 27px;
2610 font-size: inherit;
2611 padding: 4px 8px 2px 4px;
2612 z-index: 1;
2614 .comment-controls .cancel-comment-button::before {
2615 font-family: "Font Awesome", "Font Awesome 5 Free";
2616 margin-right: 3px;
2617 content: '\F00D';
2618 font-weight: 900;
2619 font-size: 0.9em;
2620 opacity: 0.7;
2623 .comment + .comment-controls .action-button {
2624 font-weight: normal;
2625 font-size: 1.0625em;
2626 padding: 1px 6px;
2628 .comment-controls .action-button::before {
2629 font-family: "Font Awesome", "Font Awesome 5 Free";
2630 margin-right: 3px;
2632 .new-comment-button {
2633 font-size: 1.5rem;
2634 margin: 0 0.25em;
2636 .comment-controls .reply-button::before {
2637 content: '\F3E5';
2638 font-weight: 900;
2639 font-size: 0.9em;
2640 opacity: 0.6;
2643 .post-controls {
2644 text-align: right;
2645 margin: 0.75em 0 0 0;
2646 grid-row: 3;
2647 align-self: start;
2648 justify-self: end;
2650 .post {
2651 grid-row: 3;
2653 .edit-post-link {
2654 display: inline-block;
2655 margin-bottom: 0.25em;
2656 font-size: 1.125rem;
2658 .edit-post-link::before {
2659 margin-right: 0.3em;
2661 .comment-controls .edit-button::before,
2662 .edit-post-link::before {
2663 content: '\F303';
2664 font-family: "Font Awesome", "Font Awesome 5 Free";
2665 font-weight: 900;
2666 font-size: 0.75em;
2667 position: relative;
2668 top: -1px;
2671 .comment-controls .delete-button {
2672 margin-right: 0.25em;
2674 .comment-controls .edit-button,
2675 .comment-controls .retract-button,
2676 .comment-controls .unretract-button {
2677 margin-right: 1em;
2679 .comment-controls .retract-button::before {
2680 content: '\F4B3';
2681 opacity: 0.6;
2683 .comment-controls .unretract-button::before {
2684 content: '\F075';
2685 opacity: 0.9;
2687 .comment-controls .delete-button::before {
2688 content: '\F05E';
2689 opacity: 0.7;
2691 .comment-controls .retract-button::before,
2692 .comment-controls .unretract-button::before,
2693 .comment-controls .delete-button::before {
2694 font-weight: 900;
2695 font-size: 0.9em;
2698 .comment-controls form {
2699 position: relative;
2701 .textarea-container {
2702 position: relative;
2704 .posting-controls textarea {
2705 display: block;
2706 width: 100%;
2707 height: 15em;
2708 min-height: 15em;
2709 max-height: calc(100vh - 6em);
2710 margin: 2px 0 0 0;
2711 padding: 4px 5px;
2712 font-size: 1.2rem;
2713 border-style: solid;
2714 border-width: 29px 1px 1px 1px;
2715 resize: none;
2718 /* GUIEdit buttons */
2720 .guiedit-buttons-container {
2721 position: absolute;
2722 left: 1px;
2723 top: 1px;
2724 width: calc(100% - 2px);
2725 height: 28px;
2726 text-align: left;
2727 padding: 1px 4px 0 4px;
2728 overflow: hidden;
2730 .comment-thread-page .guiedit-buttons-container {
2731 padding-right: 60px;
2733 .guiedit-buttons-container button {
2734 height: 26px;
2735 padding: 0 7px;
2736 font-weight: 900;
2737 font-size: 0.875rem;
2738 line-height: 1;
2739 position: static;
2741 .guiedit-buttons-container button:active {
2742 transform: none;
2744 .guiedit-buttons-container button:active div {
2745 transform: scale(0.9);
2747 .guiedit-buttons-container button sup {
2748 font-weight: bold;
2750 .guiedit::after {
2751 content: attr(data-tooltip);
2752 position: absolute;
2753 font-weight: normal;
2754 font-size: 1rem;
2755 top: 2px;
2756 left: 464px;
2757 height: 25px;
2758 padding: 4px 0;
2759 white-space: nowrap;
2760 visibility: hidden;
2762 .guiedit:hover::after {
2763 visibility: visible;
2766 /* Markdown hints */
2768 .posting-controls .markdown-reference-link {
2769 float: left;
2770 padding: 1px 0 0 6px;
2772 .posting-controls .markdown-reference-link a {
2773 padding-right: 1.5em;
2774 margin-right: 0.15em;
2775 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');
2776 background-size: 1.25em;
2777 background-repeat: no-repeat;
2778 background-position: right center;
2781 #markdown-hints-checkbox + label {
2782 float: left;
2783 margin: 2px 0 0 1em;
2784 line-height: 1.3;
2785 cursor: pointer;
2787 #edit-post-form #markdown-hints-checkbox + label {
2788 padding: 0;
2790 #markdown-hints-checkbox {
2791 visibility: hidden;
2792 float: left;
2794 #markdown-hints-checkbox + label::after {
2795 content: "(Show Markdown help)";
2797 #markdown-hints-checkbox:checked + label::after {
2798 content: "(Hide Markdown help)";
2800 #markdown-hints-checkbox + label::before {
2801 content: '\F059';
2802 font-family: "Font Awesome", "Font Awesome 5 Free";
2803 font-weight: 900;
2804 margin-right: 3px;
2806 #markdown-hints-checkbox:checked + label::before {
2807 font-weight: normal;
2809 #markdown-hints {
2810 margin: 4px 0 0 4px;
2811 padding: 4px 8px;
2812 position: absolute;
2813 text-align: left;
2814 top: calc(100% - 1em);
2815 z-index: 1;
2816 display: none;
2818 .comment-controls #markdown-hints {
2819 top: calc(100% + 1.75em);
2821 #markdown-hints-checkbox:checked ~ #markdown-hints {
2822 display: table;
2824 .markdown-hints-row {
2825 display: table-row;
2827 #markdown-hints .markdown-hints-row span,
2828 #markdown-hints .markdown-hints-row code {
2829 float: none;
2830 display: table-cell;
2831 border: none;
2832 background-color: inherit;
2833 padding: 0 12px 0 0;
2836 /******************/
2837 /* EDIT POST FORM */
2838 /******************/
2840 #edit-post-form {
2841 padding: 1em 1em 4em 1em;
2843 #edit-post-form .post-meta-fields {
2844 display: grid;
2845 grid-template-columns: 5em auto auto auto 1fr auto;
2846 margin-bottom: 0.625em;
2849 #edit-post-form label[for='title'],
2850 #edit-post-form label[for='url'],
2851 #edit-post-form label[for='section'] {
2852 grid-column: 1;
2854 #edit-post-form input[type='text'] {
2855 padding: 0.25em;
2856 grid-column: 2 / span 4;
2857 margin-bottom: 0.5em;
2860 #edit-post-form .link-post-checkbox,
2861 #edit-post-form .link-post-checkbox + label {
2862 grid-row: 1;
2863 grid-column: 6;
2865 #edit-post-form .question-checkbox,
2866 #edit-post-form .question-checkbox + label {
2867 grid-row: 3;
2868 grid-column: 5;
2869 justify-self: start;
2870 margin-left: 1.5em;
2873 #edit-post-form .post-meta-fields input[type='checkbox'] {
2874 height: 0;
2875 opacity: 0;
2876 pointer-events: none;
2878 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
2879 white-space: nowrap;
2880 position: relative;
2881 cursor: pointer;
2882 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
2883 align-self: start;
2885 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
2886 content: "";
2887 font-family: "Font Awesome", "Font Awesome 5 Free";
2888 font-size: 1.375rem;
2889 line-height: 0.7;
2890 text-indent: 1px;
2891 font-weight: 900;
2892 position: absolute;
2893 width: 20px;
2894 height: 20px;
2895 left: 5px;
2897 #edit-post-form label[for='url'],
2898 #edit-post-form input[name='url'] {
2899 display: none;
2901 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2902 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2903 display: initial;
2905 #edit-post-form label {
2906 line-height: normal;
2907 border: 1px solid transparent;
2908 text-align: right;
2909 padding: 0.25em 0.5em;
2910 white-space: nowrap;
2912 #edit-post-form input[type='radio'] {
2913 width: 0;
2914 margin: 0;
2915 opacity: 0;
2916 pointer-events: none;
2918 #edit-post-form input[type='radio'] + label {
2919 padding: 4px 12px;
2920 text-align: center;
2921 border-style: solid;
2922 border-width: 1px 1px 1px 0;
2923 cursor: pointer;
2925 #edit-post-form input[type='radio']:checked + label {
2926 cursor: default;
2929 #edit-post-form label[for='section'] {
2930 grid-row: 3;
2932 #edit-post-form input[type='radio'] + label {
2933 grid-row: 3;
2935 @supports (width: -moz-fit-content) {
2936 #edit-post-form input[type='radio'] + label {
2937 width: -moz-fit-content;
2940 @supports (width: fit-content) {
2941 #edit-post-form input[type='radio'] + label {
2942 width: fit-content;
2946 #edit-post-form textarea {
2947 min-height: 24em;
2950 #edit-post-form input[type='submit'] {
2951 padding: 6px 12px;
2952 float: right;
2954 #edit-post-form #markdown-hints {
2955 top: calc(100% + 2em);
2958 #edit-post-form button.guiedit div {
2959 overflow: visible;
2961 .guiedit-mobile-auxiliary-button {
2962 display: none;
2965 /***********/
2966 /* BUTTONS */
2967 /***********/
2969 button,
2970 input[type='submit'] {
2971 font-family: inherit;
2972 font-size: inherit;
2973 background-color: inherit;
2974 cursor: pointer;
2975 border: none;
2976 border-radius: 0;
2979 /************/
2980 /* HEADINGS */
2981 /************/
2983 .body-text h1,
2984 .body-text h2,
2985 .body-text h3,
2986 .body-text h4,
2987 .body-text h5,
2988 .body-text h6 {
2989 line-height: 1.1;
2990 margin: 1em 0 0.75em 0;
2991 text-align: left;
2994 .post-body h5,
2995 .post-body h6 {
2996 font-size: 1em;
2998 .post-body h4 {
2999 font-size: 1.2em;
3001 .post-body h3 {
3002 font-size: 1.4em;
3004 .post-body h2 {
3005 font-size: 1.75em;
3007 .post-body h1 {
3008 font-size: 2.1em;
3011 .comment-body h5,
3012 .comment-body h6 {
3013 font-size: 1em;
3015 .comment-body h4 {
3016 font-size: 1.15em;
3018 .comment-body h3 {
3019 font-size: 1.3em;
3021 .comment-body h2 {
3022 font-size: 1.5em;
3024 .comment-body h1 {
3025 font-size: 1.75em;
3028 /**********/
3029 /* QUOTES */
3030 /**********/
3032 blockquote,
3033 .post-body .comment-box .comment-body {
3034 font-size: 0.9em;
3035 margin: 1em 0;
3036 padding-left: 0.5em;
3037 margin-left: 1px;
3038 padding-bottom: 3px;
3040 blockquote *:first-child {
3041 margin-top: 0;
3043 blockquote *:last-child {
3044 margin-bottom: 0;
3046 blockquote blockquote {
3047 font-size: 0.95em;
3050 /* Pseudo-blockquotes that LW sometimes uses for some reason */
3052 .post-body .comment-box .user-name {
3053 font-style: italic;
3055 .post-body .comment-box .user-name::after {
3056 content: ":";
3058 .post-body .comment-box {
3059 zoom: 1.25;
3062 /**********/
3063 /* IMAGES */
3064 /**********/
3066 #content img {
3067 max-width: 100%;
3070 img.inline-latex {
3071 position: relative;
3072 top: 2.5px;
3073 margin: 0 2px;
3076 #content figure {
3077 text-align: center;
3078 margin: 1.5em auto;
3081 p.imgonly,
3082 div.imgonly {
3083 text-align: center;
3086 /**********/
3087 /* TABLES */
3088 /**********/
3090 .body-text table {
3091 border-collapse: collapse;
3092 font-family: Inconsolata, Menlo, monospace;
3093 font-size: 0.875em;
3095 .body-text table th,
3096 .body-text table td {
3097 text-align: left;
3098 padding: 4px 6px;
3099 line-height: 1.3;
3101 .body-text table td:nth-of-type(n+2) {
3102 text-align: right;
3104 .body-text table caption {
3105 margin: 0 0 0.25em 0;
3106 font-weight: bold;
3107 font-size: 1.125em;
3110 /********/
3111 /* MISC */
3112 /********/
3114 /*= Superscripts & subscripts =*/
3116 /* Make sure superscripts and subscripts do not affect line spacing. */
3117 sup, sub {
3118 vertical-align: baseline;
3119 position: relative;
3120 top: -0.5em;
3121 left: 0.05em;
3122 font-size: 0.8em;
3124 sub {
3125 top: 0.3em;
3128 /*= Code blocks & other "unstyled" text. =*/
3130 pre,
3131 code {
3132 font-family: Inconsolata, Menlo, monospace;
3134 pre {
3135 white-space: pre-wrap;
3137 .body-text pre {
3138 text-align: left;
3140 code {
3141 font-size: 0.95em;
3142 display: inline-block;
3143 padding: 0 4px 1px 5px;
3145 pre > code {
3146 display: block;
3147 border-radius: 0;
3148 padding: 3px 4px 5px 8px;
3151 /*= Fractions =*/
3153 .frac::after {
3154 content: "\200B";
3157 /*= Removing browser default styling of various elements =*/
3159 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
3160 :focus {
3161 outline: none;
3164 /* Remove "embossed" appearance of horizontal rules. */
3165 hr {
3166 border: none;
3169 input,
3170 button,
3171 textarea {
3172 -webkit-appearance: none;
3173 -moz-appearance: none;
3174 appearance: none;
3177 input {
3178 font-family: inherit;
3179 font-size: inherit;
3180 font-weight: inherit;
3183 /*************/
3184 /* FOOTNOTES */
3185 /*************/
3187 ol {
3188 counter-reset: ordered-list;
3190 .footnote-definition {
3191 font-size: 0.9em;
3192 list-style-type: none;
3193 counter-increment: ordered-list;
3194 position: relative;
3196 .footnote-definition p {
3197 font-size: inherit !important;
3199 .footnote-definition::before {
3200 content: counter(ordered-list) ".";
3201 position: absolute;
3202 left: -2.5em;
3203 font-weight: bold;
3204 text-align: right;
3205 width: 2em;
3208 /*********/
3209 /* LISTS */
3210 /*********/
3212 li {
3213 margin-bottom: 0.5em;
3216 .body-text ol p,
3217 .body-text ul p {
3218 margin: 0.5em 0;
3221 .post-body ol {
3222 list-style: none;
3223 padding: 0;
3224 counter-reset: ol;
3226 .post-body ol > li {
3227 position: relative;
3228 counter-increment: ol;
3229 padding: 0 0 0 2.5em;
3230 margin: 0.25em 0 0 0;
3232 .post-body ol > li::before {
3233 content: counter(ol) ".";
3234 position: absolute;
3235 width: 2em;
3236 text-align: right;
3237 left: 0;
3239 .post-body ul {
3240 list-style: none;
3241 padding: 0;
3243 .post-body ul:not(.contents-list) > li {
3244 position: relative;
3245 padding: 0 0 0 1.75em;
3246 margin: 0.25em 0 0 0;
3248 .post-body ul:not(.contents-list) > li ul > li {
3249 padding: 0 0 0 2em;
3251 .post-body ul:not(.contents-list) > li::before {
3252 content: "•";
3253 position: absolute;
3254 width: 1.25em;
3255 text-align: right;
3256 left: 0;
3258 .post-body ul:not(.contents-list) > li ul > li::before {
3259 width: 1.5em;
3261 .post-body li > ul:first-child > li {
3262 padding-left: 0;
3264 .post-body li > ul:first-child > li::before {
3265 content: none;
3268 /**************/
3269 /* ERROR PAGE */
3270 /**************/
3272 .error-retry-form {
3273 margin: 0.5em 0;
3276 .error-retry-form input[type="submit"] {
3277 border: 1px solid #aaa;
3278 font-weight: bold;
3279 font-size: 1.125rem;
3280 padding: 0.5em 1.25em;
3283 /**************/
3284 /* ABOUT PAGE */
3285 /**************/
3287 #content.about-page .contents {
3288 margin-top: 0.25em;
3290 #content.about-page .accesskey-table {
3291 border-collapse: collapse;
3292 margin: auto;
3294 #content.about-page .accesskey-table th,
3295 #content.about-page .accesskey-table td {
3296 padding: 2px 6px;
3298 #content.about-page .accesskey-table td:first-child {
3299 padding-right: 1.5em;
3301 #content.about-page .accesskey-table td:last-child {
3302 text-align: center;
3303 font-family: Inconsolata, Menlo, monospace;
3305 #content.about-page h3:nth-of-type(n+2) {
3306 clear: both;
3309 /******************/
3310 /* IMAGES OVERLAY */
3311 /******************/
3313 #images-overlay + #content .post-body img {
3314 visibility: hidden;
3317 #images-overlay div {
3318 position: absolute;
3320 #images-overlay div::after {
3321 content: "Click to enlarge";
3322 display: block;
3323 position: absolute;
3324 margin: auto;
3325 left: 0;
3326 right: 0;
3327 bottom: 10px;
3328 padding: 6px 10px;
3329 font-size: 1.25rem;
3330 background-color: rgba(0,0,0,0.6);
3331 color: #fff;
3332 border-radius: 5px;
3333 opacity: 0.0;
3334 transition: opacity 0.15s ease;
3335 pointer-events: none;
3337 @supports (width: -moz-fit-content) {
3338 #images-overlay div::after {
3339 width: -moz-fit-content;
3342 @supports (width: fit-content) {
3343 #images-overlay div::after {
3344 width: fit-content;
3347 #images-overlay div:hover::after {
3348 opacity: 1.0;
3351 #images-overlay img {
3352 width: 100%;
3355 /***************/
3356 /* IMAGE FOCUS */
3357 /***************/
3359 /*=--------------=*/
3360 /*= Hover styles =*/
3361 /*=--------------=*/
3363 #content img:hover,
3364 #images-overlay img:hover {
3365 filter: drop-shadow(0 0 3px #777);
3366 cursor: zoom-in;
3368 #content img:active,
3369 #images-overlay img:active {
3370 transform: scale(0.975);
3373 /*=---------=*/
3374 /*= Overlay =*/
3375 /*=---------=*/
3377 #image-focus-overlay {
3378 position: fixed;
3379 top: 0;
3380 right: 0;
3381 bottom: 0;
3382 left: 0;
3383 z-index: 2;
3384 display: none;
3385 cursor: zoom-out;
3387 #image-focus-overlay::before {
3388 content: "";
3389 display: block;
3390 position: absolute;
3391 top: 0;
3392 right: 0;
3393 bottom: 0;
3394 left: 0;
3395 background-color: #000;
3396 opacity: 0.5;
3397 z-index: -1;
3399 #image-focus-overlay.engaged {
3400 display: initial;
3403 #image-focus-overlay img {
3404 margin: auto;
3405 position: absolute;
3406 left: 50%;
3407 top: 50%;
3408 transform: translateX(-50%) translateY(-50%);
3411 /*=-------------------=*/
3412 /*= Single-image mode =*/
3413 /*=-------------------=*/
3415 #image-focus-overlay:not(.slideshow) .image-number,
3416 #image-focus-overlay:not(.slideshow) .slideshow-buttons {
3417 visibility: hidden;
3420 /*=---------=*/
3421 /*= Caption =*/
3422 /*=---------=*/
3424 #image-focus-overlay .caption {
3425 position: absolute;
3426 bottom: 0.75em;
3427 background-color: rgba(0,0,0,0.7);
3428 left: 9em;
3429 right: 9em;
3430 margin: auto;
3431 max-width: calc(100% - 18em);
3432 text-align: center;
3433 font-size: 1.375em;
3434 border-radius: 8px;
3435 z-index: 1;
3436 transition:
3437 bottom 0.2s ease;
3439 @supports (width: -moz-fit-content) {
3440 #image-focus-overlay .caption {
3441 width: -moz-fit-content;
3444 @supports (width: fit-content) {
3445 #image-focus-overlay .caption {
3446 width: fit-content;
3449 #image-focus-overlay .caption.hidden {
3450 bottom: -5em;
3451 transition:
3452 bottom 0.5s ease;
3455 #image-focus-overlay .caption p {
3456 margin: 1em 1.25em;
3457 color: #fff;
3460 #image-focus-overlay .caption:not(:empty)::before {
3461 content: "";
3462 display: block;
3463 position: absolute;
3464 width: 100vw;
3465 height: calc(100% + 1.5em);
3466 z-index: -1;
3467 top: -0.75em;
3468 left: calc(-50vw + 50%);
3472 /*=--------------=*/
3473 /*= Help overlay =*/
3474 /*=--------------=*/
3476 #image-focus-overlay .help-overlay {
3477 position: absolute;
3478 display: flex;
3479 flex-flow: column;
3480 z-index: 2;
3481 font-size: 1.5rem;
3482 padding: 1em;
3483 border-radius: 10px;
3484 bottom: 1em;
3485 right: 1em;
3486 overflow: hidden;
3487 white-space: nowrap;
3488 color: transparent;
3489 cursor: default;
3490 visibility: hidden;
3491 transition:
3492 visibility 1s ease,
3493 color 1s ease,
3494 background-color 1s ease,
3495 bottom 0.3s ease;
3497 #image-focus-overlay .help-overlay:hover {
3498 max-width: 24em;
3499 max-height: 14em;
3500 background-color: rgba(0,0,0,0.85);
3501 color: #fff;
3502 visibility: visible;
3503 transition:
3504 visibility 0.2s ease 0.3s,
3505 color 0.2s ease 0.3s,
3506 background-color 0.2s ease 0.3s;
3509 #image-focus-overlay .help-overlay::after {
3510 content: "\F128";
3511 font-family: "Font Awesome", "Font Awesome 5 Free";
3512 font-weight: 900;
3513 font-size: 2rem;
3514 position: absolute;
3515 right: 0;
3516 bottom: 0;
3517 padding: 10px;
3518 color: #000;
3519 filter: drop-shadow(0 0 6px #fff);
3520 visibility: visible;
3521 opacity: 0.85;
3522 transition:
3523 visibility 1s ease;
3525 #image-focus-overlay .help-overlay:hover::after {
3526 visibility: hidden;
3527 transition:
3528 visibility 0.2s ease 0.3s;
3531 #image-focus-overlay .help-overlay p {
3532 margin: 0;
3533 text-indent: -2em;
3534 padding-left: 2em;
3535 max-width: 100%;
3536 overflow: hidden;
3538 #image-focus-overlay .help-overlay p + p {
3539 margin: 0.75em 0 0 0;
3541 #image-focus-overlay .help-overlay.hidden {
3542 bottom: -2em;
3545 /*=--------------=*/
3546 /*= Slide number =*/
3547 /*=--------------=*/
3549 #image-focus-overlay .image-number {
3550 position: absolute;
3551 z-index: 2;
3552 font-size: 1.75rem;
3553 left: 1em;
3554 bottom: 1em;
3555 font-weight: 600;
3556 text-shadow:
3557 0 0 3px #fff,
3558 0 0 5px #fff,
3559 0 0 8px #fff,
3560 0 0 13px #fff;
3561 width: 1.5em;
3562 text-align: right;
3563 white-space: nowrap;
3564 transition: bottom 0.3s ease;
3566 #image-focus-overlay .image-number::before {
3567 content: "#";
3568 opacity: 0.3;
3570 #image-focus-overlay .image-number::after {
3571 content: " of " attr(data-number-of-images);
3572 opacity: 0.3;
3574 #image-focus-overlay .image-number:hover::before,
3575 #image-focus-overlay .image-number:hover::after {
3576 opacity: 1.0;
3578 #image-focus-overlay .image-number.hidden {
3579 bottom: -1.25em;
3582 /*=-------------------=*/
3583 /*= Slideshow buttons =*/
3584 /*=-------------------=*/
3586 #image-focus-overlay .slideshow-buttons {
3587 position: absolute;
3588 top: 0;
3589 left: 0;
3590 width: 100%;
3591 height: 100%;
3592 z-index: 1;
3593 display: flex;
3594 justify-content: space-between;
3595 pointer-events: none;
3597 #image-focus-overlay .slideshow-buttons button {
3598 font-family: "Font Awesome", "Font Awesome 5 Free";
3599 font-weight: 900;
3600 font-size: 3rem;
3601 padding: 0.5em;
3602 color: #ddd;
3603 position: relative;
3604 left: 0;
3605 transition:
3606 left 0.3s ease;
3607 pointer-events: auto;
3609 #image-focus-overlay .slideshow-buttons button::selection {
3610 background-color: transparent;
3612 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3613 #image-focus-overlay .slideshow-buttons button:hover {
3614 background-color: rgba(0,0,0,0.1);
3615 color: #777;
3618 #image-focus-overlay .slideshow-buttons button:active {
3619 transform: none;
3620 color: #888;
3622 #image-focus-overlay .slideshow-buttons button:disabled {
3623 text-shadow: none;
3624 background-color: transparent;
3625 color: #ddd;
3626 cursor: default;
3627 opacity: 0.4;
3629 #image-focus-overlay .slideshow-button.previous.hidden {
3630 left: -1.75em;
3632 #image-focus-overlay .slideshow-button.next.hidden {
3633 left: 1.75em;
3636 /*=-----------------=*/
3637 /*= Background blur =*/
3638 /*=-----------------=*/
3640 .blurred {
3641 filter: blur(3px);
3644 /**************************/
3645 /* QUALIFIED HYPERLINKING */
3646 /**************************/
3648 #content.no-comments .comments,
3649 #content.no-comments .post-meta .comment-count,
3650 #content.no-comments .post-meta .karma,
3651 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3652 #content.no-comments + #ui-elements-container #hns-date-picker,
3653 #content.no-comments + #ui-elements-container #quick-nav-ui {
3654 display: none;
3657 #content.no-nav-bars #primary-bar,
3658 #content.no-nav-bars #secondary-bar {
3659 display: none;
3661 #content.no-nav-bars {
3662 margin: 8px auto;
3664 #content.no-nav-bars + #ui-elements-container > * {
3665 padding-top: 8px;
3668 #aux-about-link {
3669 position: fixed;
3670 top: 40px;
3671 left: calc((100% - 900px) / 2 - 69px);
3672 width: 1.5em;
3673 height: 1.5em;
3674 text-align: center;
3675 display: table;
3677 #aux-about-link a {
3678 display: table-cell;
3679 width: 100%;
3680 vertical-align: middle;
3681 font-family: "Font Awesome", "Font Awesome 5 Free";
3682 font-weight: 900;
3683 font-size: 1.25rem;
3684 opacity: 0.4;
3685 z-index: 1;
3688 .qualified-linking {
3689 margin: 0;
3690 position: relative;
3692 .qualified-linking input[type='checkbox'] {
3693 visibility: hidden;
3694 width: 0;
3695 height: 0;
3696 margin: 0;
3698 .qualified-linking label {
3699 font-family: "Font Awesome", "Font Awesome 5 Free";
3700 font-weight: 900;
3701 font-size: 1rem;
3702 padding: 0 0.5em;
3703 display: inline-block;
3704 margin-left: 0.25em;
3706 .qualified-linking label:hover {
3707 cursor: pointer;
3709 .qualified-linking label:active span {
3710 display: inline-block;
3711 transform: scale(0.9);
3713 .qualified-linking label::selection {
3714 background-color: transparent;
3717 .qualified-linking label::after {
3718 content: "";
3719 width: 100vw;
3720 height: 0;
3721 left: 0;
3722 top: 0;
3723 position: fixed;
3724 z-index: 1;
3725 cursor: default;
3727 .qualified-linking input[type='checkbox']:checked + label::after {
3728 height: 100vh;
3731 .qualified-linking-toolbar {
3732 position: absolute;
3733 right: 0.25em;
3734 top: 110%;
3735 z-index: 1;
3737 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3738 display: none;
3740 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3741 display: block;
3743 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3744 top: unset;
3745 bottom: 125%;
3748 .qualified-linking-toolbar a {
3749 display: block;
3750 padding: 0 6px;
3751 margin: 4px;
3753 .qualified-linking-toolbar a::selection {
3754 background-color: transparent;
3757 /********/
3758 /* MATH */
3759 /********/
3761 .mathjax-block-container {
3762 overflow-y: hidden;
3763 border-radius: 6px;
3764 margin: 1em 0 1.5em 0;
3766 .mathjax-inline-container {
3767 max-width: 100%;
3768 display: inline-block;
3769 overflow-x: auto;
3770 overflow-y: hidden;
3771 position: relative;
3772 vertical-align: text-top;
3773 padding: 0 1px;
3775 .post .mathjax-inline-container {
3776 line-height: 1.1;
3777 top: 2px;
3779 .comment .mathjax-inline-container {
3780 top: 3px;
3781 line-height: 1;
3783 .mathjax-inline-container .mjx-chtml {
3784 padding: 0;
3787 /************/
3788 /* SPOILERS */
3789 /************/
3791 .spoiler {
3792 color: #000;
3793 background-color: currentColor;
3794 transition: none;
3795 text-shadow: none;
3796 margin: 1em 0;
3797 box-shadow: 0 0 0 1px currentColor inset;
3798 overflow: auto;
3800 .spoiler:not(:last-child) {
3801 margin-bottom: 0;
3803 #content .spoiler * {
3804 color: inherit;
3805 border: none;
3807 .spoiler:hover {
3808 color: unset;
3809 background-color: unset;
3810 text-shadow: unset;
3811 transition:
3812 color 0.1s ease-out 0.1s,
3813 background-color 0.1s ease-out 0.1s,
3814 text-shadow 0.1s ease-out 0.1s;
3816 .spoiler::selection,
3817 .spoiler ::selection {
3818 color: #fff;
3819 background-color: #000;
3821 .spoiler:not(:hover)::selection,
3822 .spoiler:not(:hover) ::selection {
3823 background-color: transparent;
3826 /*= Fix for LessWrong being weird =*/
3828 .spoiler > p {
3829 padding: 0 7px;
3831 .spoiler > p:first-child {
3832 margin-top: 0.25em;
3834 .spoiler > p:last-child {
3835 margin-bottom: 0;
3836 padding-bottom: 0.25em;
3838 .spoiler > p:hover ~ p {
3839 background-color: currentColor;
3841 .spoiler > p + p {
3842 margin-top: -1em;
3844 .spoiler > p:not(:first-child) {
3845 padding-top: 0.5em;
3847 .spoiler > p:not(:last-child) {
3848 padding-bottom: 0.5em;
3851 /*******************/
3852 /* ALIGNMENT FORUM */
3853 /*******************/
3855 #content.alignment-forum-index-page::after {
3856 content: "Alignment Forum";
3857 grid-row: 3;
3858 font-size: 1.5rem;
3859 margin: 0.375em 0 0 -0.375em;
3862 /**********************/
3863 /* FOR NARROW SCREENS */
3864 /**********************/
3866 @media only screen and (max-width: 1440px) {
3867 #hns-date-picker {
3868 right: -81px;
3869 padding: 8px 10px 10px 10px;
3870 bottom: 62px;
3871 display: none;
3873 #hns-date-picker::before {
3874 content: "";
3875 position: absolute;
3876 display: block;
3877 z-index: -1;
3878 height: calc(100% + 2px);
3879 top: -1px;
3880 left: -1px;
3881 width: 50%;
3884 @media only screen and (max-width: 1160px) {
3885 #new-comment-nav-ui {
3886 bottom: 180px;
3887 right: -68px;
3889 #hns-date-picker {
3890 bottom: 200px;
3891 right: -36px;
3893 #hns-date-picker::before {
3894 width: calc(100% - 35px);
3896 #theme-selector button::before {
3897 right: unset;
3898 left: 100%;
3900 #theme-selector:hover::after {
3901 content: "";
3902 display: block;
3903 position: absolute;
3904 width: calc(6em - 7px);
3905 height: calc(100% + 2px);
3906 top: 0;
3907 left: calc(100% + 1px);
3909 #anti-kibitzer-toggle {
3910 bottom: 330px;
3913 @media only screen and (max-width: 1080px) {
3914 #width-selector {
3915 right: -30px;
3917 #width-selector button {
3918 display: block;
3920 #text-size-adjustment-ui {
3921 top: 90px;
3922 right: -30px;
3924 #text-size-adjustment-ui button {
3925 display: block;
3926 position: relative;
3928 #text-size-adjustment-ui button.increase {
3929 bottom: 48px;
3931 #text-size-adjustment-ui button.decrease {
3932 top: 50px;
3934 #theme-selector {
3935 top: 46px;
3936 left: -44px;
3938 #theme-tweaker-toggle {
3939 left: -44px;
3940 top: 2px;
3942 #theme-tweaker-toggle button {
3943 height: 2em;
3944 width: 2em;
3945 padding: 7px;
3947 #quick-nav-ui {
3948 right: -54px;
3950 #new-comment-nav-ui {
3951 right: -55px;
3953 #hns-date-picker {
3954 right: -23px;
3956 #hns-date-picker::before {
3957 width: calc(100% - 22px);
3959 #anti-kibitzer-toggle {
3960 right: -54px;
3963 @media only screen and (max-width: 1040px) {
3964 #quick-nav-ui {
3965 right: -49px;
3967 #new-comment-nav-ui {
3968 right: -50px;
3970 #hns-date-picker {
3971 right: -18px;
3973 #hns-date-picker::before {
3974 width: calc(100% - 17px);
3976 #anti-kibitzer-toggle {
3977 right: -50px;
3980 @media only screen and (max-width: 1020px) {
3981 #quick-nav-ui {
3982 right: -20px;
3984 #new-comment-nav-ui {
3985 right: -21px;
3987 #new-comment-nav-ui .new-comments-count::before {
3988 content: "";
3989 position: absolute;
3990 width: 100%;
3991 height: calc(100% + 45px);
3992 z-index: -1;
3993 left: 0;
3994 top: -22px;
3996 #hns-date-picker {
3997 right: 19px;
3999 #hns-date-picker::before {
4000 width: 100%;
4002 #anti-kibitzer-toggle {
4003 right: -20px;
4006 @media only screen and (max-width: 1000px) {
4007 #theme-selector {
4008 left: -17px;
4009 top: 120px;
4010 padding: 3px 0;
4011 max-width: 32px;
4013 #theme-selector button {
4014 margin: 1px 4px;
4016 #text-size-adjustment-ui {
4017 top: 100px;
4018 right: -12px;
4020 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
4021 #quick-nav-ui,
4022 #new-comment-nav-ui,
4023 #new-comment-nav-ui + #hns-date-picker,
4024 #anti-kibitzer-toggle {
4025 opacity: 0.4;
4027 #quick-nav-ui:hover,
4028 #new-comment-nav-ui:hover,
4029 #new-comment-nav-ui + #hns-date-picker:hover,
4030 #new-comment-nav-ui + #hns-date-picker:focus-within,
4031 #new-comment-nav-ui:hover + #hns-date-picker,
4032 #anti-kibitzer-toggle:hover {
4033 opacity: 1.0;
4036 #theme-tweaker-toggle {
4037 top: 70px;
4038 left: -21px;
4042 /**************/
4043 /* PRINT VIEW */
4044 /**************/
4046 @media only print {
4047 .nav-bar {
4048 visibility: hidden;
4049 max-height: 0;
4050 overflow: hidden;
4052 #ui-elements-container {
4053 display: none;
4055 #images-overlay {
4056 display: none;
4058 #images-overlay + #content .post-body img {
4059 visibility: visible;
4061 .comment-controls {
4062 display: none;
4064 #comments-sort-mode-selector {
4065 display: none;
4067 .comment-minimize-button {
4068 display: none;
4070 .post-meta .qualified-linking,
4071 .post-meta .lw2-link {
4072 display: none;
4074 .comment-meta .permalink,
4075 .comment-meta .lw2-link,
4076 .comment-meta .comment-parent-link {
4077 display: none;
4079 .new-comment::before {
4080 display: none;
4082 #content::before {
4083 box-shadow: none;
4087 /*****************/
4088 /* MOBILE LAYOUT */
4089 /*****************/
4091 /* Hide the mobile elements on desktop screens: */
4093 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
4094 #post-nav-ui-toggle,
4095 #appearance-adjust-ui-toggle,
4096 #theme-selector .theme-selector-close-button {
4097 display: none;
4101 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
4103 /*====================*/
4104 /* MOBILE UI ELEMENTS */
4105 /*====================*/
4107 #ui-elements-container {
4108 height: unset;
4109 position: unset;
4111 #ui-elements-container > * {
4112 position: fixed;
4113 visibility: hidden;
4114 opacity: 1.0;
4115 z-index: 10000;
4118 #ui-elements-container > div[id$='-ui-toggle'] {
4119 visibility: visible;
4120 display: inline-block;
4121 border-radius: 50%;
4122 z-index: 10000;
4124 #ui-elements-container > div[id$='-ui-toggle'] button,
4125 #theme-selector .theme-selector-close-button {
4126 font-family: Font Awesome;
4127 font-weight: 900;
4128 font-size: 32px;
4129 padding: 10px;
4130 opacity: 0.8;
4131 -webkit-tap-highlight-color: transparent;
4132 transition: transform 0.2s ease;
4134 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
4135 #theme-selector .theme-selector-close-button::selection {
4136 background-color: transparent;
4138 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
4139 #theme-selector .theme-selector-close-button::-moz-focus-inner {
4140 border: none;
4142 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
4143 transform: rotate(-90deg);
4144 opacity: 1.0;
4147 #appearance-adjust-ui-toggle {
4148 bottom: 10px;
4149 left: 10px;
4152 #post-nav-ui-toggle {
4153 bottom: 10px;
4154 right: 10px;
4157 #theme-selector.engaged,
4158 #quick-nav-ui.engaged,
4159 #new-comment-nav-ui.engaged,
4160 #hns-date-picker.engaged {
4161 visibility: visible;
4164 #image-focus-overlay.engaged {
4165 visibility: visible;
4167 #image-focus-overlay .help-overlay {
4168 display: none;
4171 /*=========*/
4172 /* GENERAL */
4173 /*=========*/
4175 @media only screen and (max-width: 900px) {
4176 #content,
4177 #images-overlay,
4178 #ui-elements-container {
4179 min-width: unset;
4180 width: unset;
4182 #content {
4183 padding: 0 4px;
4187 /*================*/
4188 /* THEME SELECTOR */
4189 /*================*/
4191 #theme-selector {
4192 display: flex;
4193 flex-flow: column;
4194 width: calc(100vw - 20px);
4195 max-width: 360px;
4196 padding: 0 0 3px 0;
4197 overflow: hidden;
4198 max-height: 0;
4199 transition:
4200 top 0.2s ease,
4201 max-height 0.2s ease,
4202 visibility 0.2s ease;
4203 top: calc(100% + 10px);
4204 left: 0;
4205 right: 0;
4206 margin: auto;
4208 #theme-selector.engaged {
4209 max-height: 1000px;
4210 top: 10px;
4211 z-index: 10001;
4213 #theme-selector::before {
4214 content: "Select theme";
4215 white-space: nowrap;
4216 display: block;
4217 font-weight: 600;
4218 font-size: 2rem;
4219 margin: 0.375em 1em 0.5em 1em;
4220 text-align: center;
4222 #theme-selector button {
4223 width: calc(100% - 0.5em);
4224 background-repeat: no-repeat;
4225 padding: 1em 0.875em;
4226 margin: 1px 4px;
4227 line-height: 1;
4228 height: unset;
4229 position: relative;
4231 #theme-selector button::after {
4232 content: attr(data-theme-description);
4233 white-space: nowrap;
4234 position: absolute;
4235 text-align: left;
4236 left: 2.5em;
4237 top: 1em;
4239 @media only screen and (max-height: 675px) {
4240 #theme-selector button {
4241 padding: 0.875em;
4243 #theme-selector button::after {
4244 top: 0.875em;
4247 #theme-selector .theme-selector-close-button {
4248 position: absolute;
4249 width: unset;
4250 background-color: transparent;
4251 top: 0;
4252 right: -3px;
4254 #theme-selector .theme-selector-close-button,
4255 #theme-selector .theme-selector-close-button:focus,
4256 #theme-selector .theme-selector-close-button:active,
4257 #theme-selector .theme-selector-close-button:hover {
4258 box-shadow: none;
4261 /*===============*/
4262 /* THEME TWEAKER */
4263 /*===============*/
4265 #theme-selector {
4266 padding: 0 0 64px 0;
4268 #theme-selector ~ #theme-tweaker-toggle {
4269 top: 100%;
4271 #theme-selector ~ #theme-tweaker-toggle::after {
4272 content: "Open theme tweaker";
4273 position: absolute;
4274 font-size: 0.625em;
4275 white-space: nowrap;
4276 left: -50%;
4277 top: 100%;
4279 #theme-selector.engaged ~ #theme-tweaker-toggle {
4280 visibility: visible;
4281 top: 530px;
4282 left: 0;
4283 right: 0;
4284 margin: auto;
4285 z-index: 11111;
4286 transition:
4287 top 0.2s ease,
4288 visibility 0.2s ease;
4290 @media only screen and (max-height: 675px) {
4291 #theme-selector.engaged ~ #theme-tweaker-toggle {
4292 top: 492px;
4295 @supports (width: -moz-fit-content) {
4296 #theme-selector.engaged ~ #theme-tweaker-toggle {
4297 width: -moz-fit-content;
4300 @supports (width: fit-content) {
4301 #theme-selector.engaged ~ #theme-tweaker-toggle {
4302 width: fit-content;
4305 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4306 opacity: 1.0;
4309 #theme-tweaker-ui {
4310 visibility: visible;
4313 /*======================*/
4314 /* ANTI-KIBITZER TOGGLE */
4315 /*======================*/
4317 #theme-selector ~ #anti-kibitzer-toggle {
4318 top: 100%;
4319 bottom: unset;
4320 left: 0;
4321 right: 0;
4322 margin: auto;
4323 box-shadow: none;
4324 width: calc(100vw - 44px);
4325 max-width: 330px;
4326 text-align: right;
4327 pointer-events: none;
4329 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4330 visibility: visible;
4331 z-index: 11110;
4332 top: 530px;
4333 transition:
4334 top 0.2s ease,
4335 visibility 0.2s ease;
4337 @media only screen and (max-height: 675px) {
4338 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4339 top: 492px;
4342 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4343 pointer-events: auto;
4344 display: inline-block;
4347 /*=================*/
4348 /* QUICKNAV WIDGET */
4349 /*=================*/
4351 #quick-nav-ui {
4352 max-width: 0px;
4353 transition:
4354 max-width 0.2s ease,
4355 visibility 0.2s ease;
4356 display: flex;
4357 right: 72px;
4358 bottom: 14px;
4360 #quick-nav-ui.engaged {
4361 max-width: 1000px;
4363 #quick-nav-ui a {
4364 position: relative;
4365 margin: 2px;
4367 #quick-nav-ui a + a {
4368 margin-left: 5px;
4370 #quick-nav-ui a::after {
4371 position: absolute;
4372 top: calc(100% + 2px);
4373 font-size: 0.375rem;
4374 left: 0;
4375 right: 0;
4376 margin: auto;
4377 line-height: 1;
4378 padding: 2px;
4379 text-transform: uppercase;
4380 z-index: -1;
4382 @supports (width: -moz-fit-content) {
4383 #quick-nav-ui a::after {
4384 width: -moz-fit-content;
4387 @supports (width: fit-content) {
4388 #quick-nav-ui a::after {
4389 width: fit-content;
4392 #quick-nav-ui a[href='#top']::after {
4393 content: "Top";
4394 left: -1px;
4396 #quick-nav-ui a[href='#comments']::after {
4397 content: "Comments";
4399 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4400 visibility: hidden;
4401 transition: visibility 0.2s ease;
4403 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4404 visibility: visible;
4406 #quick-nav-ui a[href='#bottom-bar']::after {
4407 content: "Bottom";
4410 /*======================*/
4411 /* NEW COMMENT QUICKNAV */
4412 /*======================*/
4414 #new-comment-nav-ui {
4415 max-width: 0px;
4416 max-height: 0px;
4417 transition:
4418 max-width 0.2s ease,
4419 max-height 0.2s ease,
4420 visibility 0.2s ease;
4421 display: flex;
4422 right: 78px;
4423 bottom: 70px;
4425 #new-comment-nav-ui::before {
4426 content: "New Comments";
4427 position: absolute;
4428 bottom: 100%;
4429 font-size: 0.5625rem;
4430 left: 0;
4431 right: 0;
4432 margin: auto;
4433 padding: 2px 3px;
4434 text-transform: uppercase;
4435 z-index: -1;
4437 @supports (width: -moz-fit-content) {
4438 #new-comment-nav-ui::before {
4439 width: -moz-fit-content;
4442 @supports (width: fit-content) {
4443 #new-comment-nav-ui::before {
4444 width: fit-content;
4447 #new-comment-nav-ui.engaged {
4448 max-width: 1000px;
4449 max-height: 1000px;
4451 #new-comment-nav-ui .new-comment-sequential-nav-button {
4452 top: unset;
4453 bottom: unset;
4454 padding: 2px 7px;
4456 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4457 padding: 2px 7px 3px 7px;
4459 #new-comment-nav-ui .new-comments-count {
4460 padding: 4px 0 5px 0;
4462 #new-comment-nav-ui .new-comments-count::before {
4463 display: none;
4465 #new-comment-nav-ui button::after {
4466 position: absolute;
4467 font-size: 0.375rem;
4468 left: 0;
4469 right: 0;
4470 margin: auto;
4471 line-height: 1;
4472 text-transform: uppercase;
4473 pointer-events: none;
4475 #new-comment-nav-ui button.new-comment-previous::after {
4476 content: "Previous";
4477 bottom: 5px;
4479 #new-comment-nav-ui button.new-comment-next::after {
4480 content: "Next";
4481 top: 7px;
4484 /*=================*/
4485 /* HNS DATE PICKER */
4486 /*=================*/
4488 #hns-date-picker {
4489 max-height: 0px;
4490 bottom: 132px;
4491 right: 62px;
4492 transition:
4493 max-height 0.2s ease,
4494 visibility 0.2s ease;
4496 #hns-date-picker.engaged {
4497 max-height: 1000px;
4499 #hns-date-picker::before {
4500 width: calc(100% + 2px);
4501 border-width: 1px !important;
4504 /*=========*/
4505 /* NAV BAR */
4506 /*=========*/
4508 #bottom-bar {
4509 padding: 0 4.5rem;
4511 #bottom-bar .nav-item {
4512 box-shadow: none;
4513 position: relative;
4515 #bottom-bar .nav-inner {
4516 font-size: 2rem;
4517 padding: 1rem 0 1.25rem 0;
4518 visibility: hidden;
4519 position: static;
4520 width: 0;
4522 #content #bottom-bar .nav-item .nav-inner::before {
4523 margin: 0;
4524 visibility: visible;
4525 position: absolute;
4526 width: 100%;
4527 height: 100%;
4528 left: 0;
4529 top: 0;
4530 padding: 1rem 0;
4532 #bottom-bar .nav-inner::after {
4533 display: block;
4534 visibility: visible;
4535 text-transform: uppercase;
4536 color: unset;
4537 font-size: 0.75rem;
4538 top: unset;
4539 left: 0;
4540 bottom: 1rem;
4541 width: 100%;
4543 #bottom-bar #nav-item-first .nav-inner::after {
4544 content: "First Page";
4546 #bottom-bar #nav-item-prev .nav-inner::after {
4547 content: "Prev. Page";
4549 #bottom-bar #nav-item-top .nav-inner::after {
4550 content: "Top";
4552 #bottom-bar #nav-item-next .nav-inner::after {
4553 content: "Next Page";
4555 #bottom-bar #nav-item-last .nav-inner::after {
4556 content: "Last Page";
4559 @media only screen and (max-width: 900px) {
4560 #primary-bar,
4561 #secondary-bar {
4562 font-size: 0.75rem;
4564 .nav-bar {
4565 width: calc(100% + 8px);
4566 margin: 0 -4px;
4568 .nav-bar .nav-inner::after {
4569 display: none;
4572 #primary-bar .nav-item {
4573 flex: 1 1 100%;
4575 #secondary-bar .nav-item:not(#nav-item-search) {
4576 flex: 1 1 60px;
4578 #primary-bar .nav-inner,
4579 #secondary-bar .nav-inner {
4580 text-transform: uppercase;
4581 padding: 6px;
4583 #primary-bar .nav-inner::before,
4584 #secondary-bar .nav-inner::before {
4585 display: block;
4586 font-family: "Font Awesome";
4587 font-size: 2em;
4588 font-weight: 900;
4591 #nav-item-home .nav-inner::before {
4592 content: "\F015";
4594 #nav-item-featured .nav-inner::before {
4595 content: "\F005";
4597 #nav-item-all .nav-inner::before {
4598 content: "\F069";
4600 #nav-item-meta .nav-inner::before {
4601 content: "\F077";
4603 #nav-item-recent-comments > * > span {
4604 display: none;
4606 #nav-item-recent-comments .nav-inner::before {
4607 content: "\F036";
4609 #nav-item-archive .nav-inner::before {
4610 content: "\F187";
4612 #nav-item-about .nav-inner::before {
4613 content: "\F129";
4615 #nav-item-search {
4616 font-size: 2em;
4617 padding: 10px;
4619 #nav-item-search .nav-inner::before {
4620 content: none;
4622 #nav-item-search .nav-inner {
4623 height: 100%;
4624 display: flex;
4626 #nav-item-search input {
4627 width: 100%;
4628 height: 100%;
4630 #nav-item-search button {
4631 height: 100%;
4632 padding: 5px 5px 5px 10px;
4633 width: 40px;
4634 overflow: visible;
4635 visibility: hidden;
4637 #nav-item-search button::before {
4638 content: "\F002";
4639 font-family: Font Awesome;
4640 font-weight: 900;
4641 visibility: visible;
4643 #nav-item-login {
4644 padding: 0;
4646 #nav-item-login .nav-inner::before {
4647 content: "\F007";
4650 @media only screen and (max-width: 520px) {
4651 #primary-bar,
4652 #secondary-bar {
4653 font-size: 0.5rem;
4656 #nav-item-search .nav-inner {
4657 padding: 0;
4659 #nav-item-search button {
4660 width: 31px;
4663 #bottom-bar #nav-item-first .nav-inner::after {
4664 content: "First";
4666 #bottom-bar #nav-item-prev .nav-inner::after {
4667 content: "Prev";
4669 #bottom-bar #nav-item-next .nav-inner::after {
4670 content: "Next";
4672 #bottom-bar #nav-item-last .nav-inner::after {
4673 content: "Last";
4677 /*=================*/
4678 /* INBOX INDICATOR */
4679 /*=================*/
4681 @media only screen and (max-width: 900px) {
4682 #inbox-indicator {
4683 width: 100%;
4684 top: 0;
4685 pointer-events: none;
4687 #inbox-indicator::before {
4688 width: 100%;
4689 font-size: 1rem;
4690 text-align: right;
4691 padding: 1px 6px;
4693 #inbox-indicator.new-messages {
4694 pointer-events: auto;
4696 #inbox-indicator.new-messages::before {
4697 box-shadow: 0 0 8px 1px #f00 inset;
4700 @media only screen and (max-width: 520px) {
4701 #inbox-indicator::before {
4702 font-size: 0.75rem;
4703 padding: 2px 5px;
4706 @media only screen and (max-width: 374px) {
4707 #inbox-indicator::before {
4708 font-size: 0.625rem;
4712 /*===================*/
4713 /* TOP PAGINATION UI */
4714 /*===================*/
4716 #top-nav-bar {
4717 font-size: 1.75rem;
4720 /*==============*/
4721 /* PAGE TOOLBAR */
4722 /*==============*/
4724 @media only screen and (max-width: 900px) {
4725 #content > .page-toolbar {
4726 font-size: 1rem;
4727 margin-right: 0;
4729 #content.user-page > .page-toolbar {
4730 grid-column: 2 / span 2;
4731 margin: 0 0 6px 0;
4734 @media only screen and (max-width: 520px) {
4735 #content:not(.user-page) .page-toolbar {
4736 display: flex;
4737 flex-direction: column-reverse;
4738 text-align: right;
4739 align-self: start;
4740 padding: 4px 0 0 0;
4742 #content.user-page .page-toolbar {
4743 display: flex;
4744 flex-flow: row;
4745 justify-content: flex-end;
4746 padding: 2px 0 0 0;
4748 #content.user-page .page-toolbar > form,
4749 #content.user-page .page-toolbar > .button {
4750 text-align: center;
4751 flex-basis: 25%;
4752 margin-left: 1.5em;
4754 #content.user-page .page-toolbar .button {
4755 text-transform: uppercase;
4756 font-size: 0.625rem;
4758 #content.user-page .page-toolbar .button::before {
4759 font-size: 1.375rem;
4760 display: block;
4761 padding: 0;
4763 #content.user-page .page-toolbar .rss {
4764 white-space: nowrap;
4765 margin: 0 0 0 1.5em;
4767 .page-toolbar > * {
4768 line-height: 1.15;
4769 padding: 6px 0;
4770 margin: 0;
4774 /*==============*/
4775 /* SUBLEVEL NAV */
4776 /*==============*/
4778 @media only screen and (max-width: 900px) {
4779 .sublevel-nav:not(.sort) {
4780 flex-wrap: wrap;
4781 width: calc(100vw - 200px);
4783 .sublevel-nav:not(.sort) .sublevel-item {
4784 margin: 1px;
4785 flex-basis: 7em;
4788 @media only screen and (max-width: 520px) {
4789 .sublevel-nav:not(.sort) .sublevel-item {
4790 font-size: 1rem;
4794 /*=====================*/
4795 /* SORT ORDER SELECTOR */
4796 /*=====================*/
4798 @media only screen and (max-width: 720px) {
4799 #content.index-page > .sublevel-nav.sort {
4800 flex-flow: column;
4801 margin-left: 4px;
4805 /*==========*/
4806 /* ARCHIVES */
4807 /*==========*/
4809 @media only screen and (max-width: 900px) {
4810 div[class^='archive-nav-'] {
4811 flex-wrap: wrap;
4812 justify-content: flex-start;
4814 .archive-nav *[class^='archive-nav-item'],
4815 .archive-nav *[class^='archive-nav-item']:first-child {
4816 padding: 10px;
4817 margin: 2px;
4818 max-width: unset;
4819 flex: 0 1 calc((100% / 8) - 4px);
4821 .archive-nav .archive-nav-item-day,
4822 .archive-nav .archive-nav-item-day:first-child {
4823 flex-basis: calc((100% / 16) - 4px);
4825 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4826 margin-top: 8px;
4827 position: relative;
4829 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4830 content: "";
4831 display: block;
4832 position: absolute;
4833 height: 1px;
4834 width: calc(100% + 8px);
4835 left: -4px;
4836 top: -4px;
4839 @media only screen and (max-width: 720px) {
4840 .archive-nav .archive-nav-item-day,
4841 .archive-nav .archive-nav-item-day:first-child {
4842 flex-basis: calc((100% / 12) - 4px);
4845 @media only screen and (max-width: 520px) {
4846 .archive-nav *[class^='archive-nav-item'],
4847 .archive-nav *[class^='archive-nav-item']:first-child {
4848 flex-basis: calc((100% / 5) - 4px);
4850 .archive-nav .archive-nav-item-day,
4851 .archive-nav .archive-nav-item-day:first-child {
4852 flex-basis: calc((100% / 8) - 4px);
4856 /*==========*/
4857 /* LISTINGS */
4858 /*==========*/
4860 h1.listing {
4861 max-height: unset;
4864 /*============*/
4865 /* USER PAGES */
4866 /*============*/
4868 #content.user-page h1.page-main-heading {
4869 align-self: end;
4871 @media only screen and (max-width: 520px) {
4872 #content.user-page h1.page-main-heading {
4873 padding-right: 100px;
4874 overflow: hidden;
4875 text-overflow: ellipsis;
4877 #content.user-page .user-stats {
4878 grid-column: 2 / span 2;
4880 #content.user-page .user-stats .karma-type {
4881 display: block;
4885 /*============*/
4886 /* LOGIN PAGE */
4887 /*============*/
4889 @media only screen and (max-width: 640px) {
4890 .login-container {
4891 flex-flow: column;
4892 margin: 0 auto 3em auto;
4893 max-width: 400px;
4895 .login-container #login-form,
4896 .login-container #signup-form {
4897 padding: 0 1em 1.25em 1em;
4898 grid-row-gap: 0;
4900 .login-container #signup-form {
4901 padding-top: 1em;
4903 .login-container #login-form > *,
4904 .login-container #signup-form > * {
4905 grid-column: 1 / span 2;
4907 .login-container form label {
4908 text-align: left;
4909 padding: 0;
4910 line-height: 1;
4912 .login-container form input {
4913 margin: 0.25em 0 0.75em 0;
4914 padding: 0.5em;
4916 .login-container form h1 {
4917 grid-column: 1 / span 2;
4918 margin: 0 0 0.25em 0;
4920 .login-container form a {
4921 margin: 0.75em 0 0 0;
4923 .login-container .login-tip {
4924 margin: 1.5em 1em 0 1em;
4928 /*==================*/
4929 /* POSTS & COMMENTS */
4930 /*==================*/
4932 /*===========*/
4933 /* POST-META */
4934 /*===========*/
4936 .post-meta {
4937 line-height: 1.9;
4939 @media only screen and (max-width: 720px) {
4940 .post-meta .lw2-link span,
4941 .post-meta .karma-value span,
4942 .post-meta .comment-count span {
4943 display: none;
4945 .post-meta .comment-count::before {
4946 content: "\F086";
4947 font-family: Font Awesome;
4948 font-size: 0.875em;
4949 margin: 0 0.25em 0 0;
4950 font-weight: 400;
4954 /*=======*/
4955 /* POSTS */
4956 /*=======*/
4958 @media only screen and (max-width: 900px) {
4959 .post-body,
4960 h1.post-title {
4961 padding: 0 6px;
4964 @media only screen and (max-width: 520px) {
4965 .post-body {
4966 font-size: 1.2rem;
4967 line-height: 1.45;
4969 h1.post-title {
4970 font-size: 2em;
4974 /*==========*/
4975 /* COMMENTS */
4976 /*==========*/
4978 @media only screen and (max-width: 900px) {
4979 .comment-body ul {
4980 padding-left: 30px;
4982 .comment-body ol {
4983 padding-left: 30px;
4987 /*==============*/
4988 /* COMMENT-META */
4989 /*==============*/
4991 a.comment-parent-link::after {
4992 display: none;
4994 @media only screen and (max-width: 900px) {
4995 .comment-meta {
4996 padding: 2px 40px 2px 10px;
4999 @media only screen and (max-width: 720px) {
5000 .comment-meta .karma-value span {
5001 display: none;
5003 .comment-meta .comment-parent-link {
5004 opacity: 1.0;
5007 @media only screen and (max-width: 520px) {
5008 .comment-meta {
5009 padding: 2px 10px;
5010 position: relative;
5012 .comment-meta .author {
5013 flex-basis: 100%;
5015 .comment-post-title2 {
5016 display: block;
5017 text-overflow: ellipsis;
5018 overflow: hidden;
5020 .comment-meta .lw2-link {
5021 display: none;
5025 /*=======================*/
5026 /* COMMENTS COMPACT VIEW */
5027 /*=======================*/
5029 /*===========================*/
5030 /* COMMENT THREAD NAVIGATION */
5031 /*===========================*/
5033 @media only screen and (max-width: 900px) {
5034 a.comment-parent-link {
5035 width: 0;
5036 visibility: hidden;
5037 position: relative;
5039 a.comment-parent-link::before {
5040 padding: 0;
5041 font-size: 1em;
5042 left: 0;
5043 top: 0;
5044 line-height: inherit;
5045 visibility: visible;
5046 content: "\F3BF";
5047 transform: scaleX(-1);
5048 width: 2em;
5049 text-align: center;
5052 @media only screen and (max-width: 520px) {
5053 a.comment-parent-link {
5054 position: static;
5056 a.comment-parent-link::before {
5057 padding: 6px;
5058 left: unset;
5059 right: 0;
5060 top: unset;
5061 bottom: 0;
5062 height: 2em;
5066 /*=================================*/
5067 /* COMMENT THREAD MINIMIZE BUTTONS */
5068 /*=================================*/
5070 @media only screen and (max-width: 520px) {
5071 .comment-minimize-button{
5072 right: 2px;
5076 /*===========================*/
5077 /* COMMENTING AND POSTING UI */
5078 /*===========================*/
5080 @media only screen and (max-width: 900px) {
5081 .comment-controls .cancel-comment-button {
5082 max-width: 1.3em;
5083 overflow: hidden;
5084 margin-right: 0.125em;
5086 .comment-controls .edit-button::before {
5087 font-size: 0.9375em;
5089 .comments > .comment-controls .cancel-comment-button {
5090 right: 8px;
5092 .comment-controls .cancel-comment-button::before {
5093 font-size: 1.25rem;
5096 @media only screen and (max-width: 520px) {
5097 .comment-controls {
5098 position: static;
5100 .comment-controls:focus-within {
5101 z-index: 10001;
5103 .comment-controls .cancel-comment-button {
5104 right: 10px;
5106 .textarea-container:focus-within textarea {
5107 position: fixed;
5108 top: 0;
5109 left: 2px;
5110 width: calc(100vw - 4px);
5111 height: calc(100% - 100px);
5112 min-height: unset;
5113 max-height: unset;
5114 border-width: 1px;
5115 z-index: 11001;
5117 #content.conversation-page .textarea-container:focus-within textarea {
5118 height: calc(100% - 54px);
5120 #content.conversation-page .textarea-container:focus-within::after {
5121 content: "";
5122 display: block;
5123 width: 100%;
5124 height: 50px;
5125 position: fixed;
5126 left: 0;
5127 bottom: 0;
5128 z-index: 11000;
5130 .textarea-container:focus-within .guiedit-buttons-container {
5131 position: fixed;
5132 z-index: 11002;
5133 left: 0;
5134 width: 100vw;
5135 height: auto;
5136 background-image: none;
5137 padding: 3px 4px 4px 4px;
5138 margin: 0;
5139 text-align: center;
5140 top: auto;
5141 bottom: 0;
5143 .textarea-container:focus-within button.guiedit {
5144 font-size: 0.9375rem;
5145 line-height: 1.5;
5146 height: auto;
5147 width: calc((100% / 10) - 2px);
5148 padding: 10px 1px 8px 0;
5149 position: relative;
5150 margin: 1px;
5152 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
5153 z-index: 11011;
5154 position: fixed;
5155 bottom: 7px;
5156 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
5157 font-size: 1.25rem;
5158 padding: 5px 5px 6px 5px;
5159 display: block;
5161 .textarea-container:focus-within button.guiedit sup {
5162 position: absolute;
5163 left: calc(50% + 0.65em);
5164 top: calc(50% - 1.3em);
5166 .textarea-container:focus-within .guiedit-mobile-help-button {
5167 left: 8px;
5169 .textarea-container:focus-within .guiedit-mobile-exit-button {
5170 right: 8px;
5172 .guiedit::after {
5173 display: none;
5176 #markdown-hints,
5177 #edit-post-form #markdown-hints {
5178 z-index: 11111;
5179 position: fixed;
5180 top: 40px;
5181 left: 0;
5182 right: 0;
5183 margin: auto;
5184 padding: 4px 0 4px 8px;
5185 width: 310px;
5186 border-width: 3px;
5187 border-style: double;
5188 pointer-events: none;
5190 #markdown-hints::after {
5191 content: "(Type to hide this help box.)";
5192 color: #090;
5193 display: block;
5194 margin: 12px 18px 13px 10px;
5195 padding: 5px;
5196 font-size: 0.9em;
5197 text-align: center;
5201 /*================*/
5202 /* EDIT POST FORM */
5203 /*================*/
5205 @media only screen and (max-width: 520px) {
5206 #edit-post-form {
5207 padding-bottom: 0;
5209 #edit-post-form .post-meta-fields {
5210 grid-template-columns: 4.5em auto auto auto 1fr auto;
5212 #edit-post-form label[for='url'],
5213 #edit-post-form label[for='section'],
5214 #edit-post-form label[for='title'] {
5215 padding-left: 0;
5217 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
5218 white-space: normal;
5219 line-height: 0.9;
5220 top: -1px;
5221 font-family: Font Awesome;
5222 font-weight: 900;
5223 justify-self: start;
5225 #edit-post-form .post-meta-fields .question-checkbox,
5226 #edit-post-form .post-meta-fields .question-checkbox + label {
5227 grid-column: 6;
5228 margin-left: unset;
5230 #edit-post-form .post-meta-fields input[type='radio'] + label {
5231 align-self: start;
5233 #edit-post-form .textarea-container:focus-within textarea {
5234 height: calc(100% - 101px);
5235 min-height: unset;
5238 #markdown-hints-checkbox,
5239 #markdown-hints-checkbox + label {
5240 display: none;
5243 #edit-post-form div:last-child {
5244 clear: both;
5245 overflow: auto;
5247 #edit-post-form input[type='submit'] {
5248 float: none;
5249 display: block;
5250 font-size: 1.5rem;
5251 margin: 1rem auto 1.5rem auto;
5252 padding: 6px 12px 8px 12px;
5256 /*===================*/
5257 /* TABLE OF CONTENTS */
5258 /*===================*/
5260 @media only screen and (max-width: 900px) {
5261 .contents {
5262 float: none;
5263 display: table;
5264 max-width: none;
5265 margin-left: auto;
5266 margin-right: auto;
5269 @media only screen and (max-width: 520px) {
5270 .contents {
5271 max-width: 100%;
5272 margin: 1em auto 0 auto;
5273 display: table;
5275 .contents-head {
5276 font-size: 1.2em;
5278 div.post-body .contents ul {
5279 font-size: unset;
5283 /*========================*/
5284 /* QUALIFIED HYPERLINKING */
5285 /*========================*/
5287 @media only screen and (max-width: 520px) {
5288 .qualified-linking-toolbar {
5289 right: -5em;
5293 } /* END MOBILE LAYOUT */
5296 /*****************/
5297 /* CLASSIC THEME */
5298 /*****************/
5300 body {
5301 color: #000;
5302 background-color: #d8d8d8;
5303 font-family: 'Arial', sans-serif;
5305 #content {
5306 line-height: 1.5;
5308 #content::before {
5309 background-color: #fff;
5310 box-shadow: 0px 0px 10px #555;
5313 /*=========*/
5314 /* NAV BAR */
5315 /*=========*/
5317 .nav-inner {
5318 font-size: 1.125em;
5319 font-weight: bold;
5321 .nav-inner,
5322 #primary-bar.inactive-bar .nav-inner {
5323 padding: 13px 30px 11px 30px;
5325 #secondary-bar .nav-inner {
5326 font-size: 0.875em;
5328 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
5329 padding: 6px 0 4px 0;
5331 @media only screen and (min-width: 901px) {
5332 #secondary-bar #nav-item-sequences .nav-inner {
5333 line-height: 1.1;
5337 #bottom-bar.decorative {
5338 background-color: #fff;
5340 #bottom-bar.decorative::before,
5341 #bottom-bar.decorative::after {
5342 content: "GW";
5343 font-weight: 200;
5344 display: block;
5345 text-align: center;
5346 padding: 0.5em 0 0.75em 0;
5348 #bottom-bar.decorative::before {
5349 width: 100%;
5350 color: transparent;
5351 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5352 background-repeat: repeat-x;
5353 background-position: center 44%;
5354 margin: 0 30px;
5355 filter: opacity(0.7);
5357 #bottom-bar.decorative::after {
5358 color: #eee;
5359 position: absolute;
5360 left: 0;
5361 right: 0;
5362 margin: auto;
5363 background-color: #fff;
5364 padding-right: 4px;
5365 padding-left: 4px;
5367 @supports (width: -moz-fit-content) {
5368 #bottom-bar.decorative::after {
5369 width: -moz-fit-content;
5372 @supports (width: fit-content) {
5373 #bottom-bar.decorative::after {
5374 width: fit-content;
5378 /* Accesskey hints */
5380 .nav-inner::after {
5381 display: block;
5382 position: absolute;
5383 left: 5px;
5384 top: 0;
5385 font-weight: normal;
5386 font-size: 0.7em;
5387 color: #ddd;
5389 .nav-inner:hover::after {
5390 color: #bbb;
5393 /* This makes the navbar items look like tabs: */
5395 .active-bar {
5396 position: relative;
5398 .nav-bar {
5399 background-color: #f5f5f5;
5401 .nav-bar {
5402 border-bottom: 1px solid #d6d5d6;
5404 .nav-bar a,
5405 .nav-bar a:visited {
5406 color: #999;
5408 .nav-bar a:hover {
5409 color: #777;
5410 text-decoration: none;
5412 .nav-bar .nav-current {
5413 color: #666;
5415 .nav-item:nth-of-type(n+2) {
5416 box-shadow: -9px 0 0 -8px #d6d5d6;
5419 /* Search tab */
5421 #nav-item-search form::before {
5422 position: relative;
5423 top: 2px;
5424 opacity: 0.3;
5426 #nav-item-search button {
5427 border: none;
5428 font-weight: inherit;
5430 #nav-item-search input::placeholder {
5431 color: #d00;
5432 font-weight: normal;
5435 /*= User/login tab =*/
5437 #inbox-indicator::before {
5438 top: 1px;
5439 color: #ccc;
5442 /*= Pagination UI =*/
5444 #bottom-bar #nav-item-next a::before {
5445 margin-left: -2.2em;
5446 left: 4.0em;
5448 #bottom-bar #nav-item-last a::before {
5449 margin-left: -2.3em;
5450 left: 3.9em;
5453 /*= Top pagination UI hover tooltips =*/
5455 #top-nav-bar a::after,
5456 #bottom-bar a::after {
5457 color: #000;
5460 /*==============*/
5461 /* PAGE TOOLBAR */
5462 /*==============*/
5464 .new-post,
5465 .new-post:visited,
5466 .new-private-message,
5467 .new-private-message:visited {
5468 color: #090;
5470 .logout-button {
5471 color: #d33;
5474 /*==============*/
5475 /* SUBLEVEL NAV */
5476 /*==============*/
5478 .sublevel-nav .sublevel-item {
5479 color: #777;
5480 background-color: #fff;
5482 .sublevel-nav .sublevel-item:not(.selected):hover {
5483 background-color: #ddd;
5484 color: #000;
5485 text-decoration: none;
5486 text-shadow: none;
5488 .sublevel-nav .sublevel-item:not(.selected):active,
5489 .sublevel-nav .sublevel-item.selected {
5490 background-color: #ddd;
5491 color: #000;
5492 text-shadow:
5493 0 -1px 0 #fff,
5494 0 0.5px 0.5px #000;
5497 .sublevel-nav:not(.sort) .sublevel-item {
5498 border-style: solid;
5499 border-color: #ddd;
5500 border-width: 1px 0 1px 1px;
5502 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5503 border-radius: 8px 0 0 8px;
5505 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5506 border-width: 1px;
5507 border-radius: 0 8px 8px 0;
5510 /*=====================*/
5511 /* SORT ORDER SELECTOR */
5512 /*=====================*/
5514 .sublevel-nav.sort .sublevel-item {
5515 letter-spacing: 0.5px;
5516 padding: 7px 7px 6px 8px;
5517 text-transform: uppercase;
5518 pointer-events: auto;
5519 box-shadow: 1px 1px 0 0 #aaa inset;
5521 .sublevel-nav.sort {
5522 border: 2px solid transparent;
5523 padding: 18px 0 0 0;
5524 border-radius: 8px;
5525 pointer-events: none;
5526 background-color: #bbb;
5528 .sublevel-nav.sort::before {
5529 text-transform: uppercase;
5530 font-weight: 600;
5531 color: #444;
5532 text-shadow: 0.5px 0.5px 0 #fff;
5533 z-index: 1;
5535 .sublevel-nav.sort::after {
5536 content: "";
5537 position: absolute;
5538 display: block;
5539 top: 0;
5540 left: 0;
5541 width: 100%;
5542 height: 100%;
5543 border-radius: 6px;
5544 box-shadow:
5545 0 18px 0 0 #bbb inset,
5546 0 0 0 1px #aaa inset,
5547 0 18px 0 1px #aaa inset,
5548 0 0 0 2px #bbb;
5551 /*================*/
5552 /* WIDTH SELECTOR */
5553 /*================*/
5554 /* THEME SELECTOR */
5555 /*================*/
5557 #width-selector button,
5558 #theme-selector button {
5559 box-shadow:
5560 0 0 0 4px #d8d8d8 inset,
5561 0 0 0 5px #bbb inset;
5563 #width-selector button:hover,
5564 #width-selector button.selected,
5565 #theme-selector button:hover,
5566 #theme-selector button.selected {
5567 box-shadow:
5568 0 0 0 5px #bbb inset;
5571 #theme-selector button::before {
5572 font-size: 0.9375em;
5573 padding: 5px 6px 7px 6px;
5574 color: #999;
5575 background-color: #d8d8d8;
5577 #theme-selector button:hover::before,
5578 #theme-selector button.selected::before {
5579 color: #222;
5581 #width-selector button::after {
5582 color: #999;
5583 font-size: 0.9em;
5586 /*======================*/
5587 /* THEME TWEAKER TOGGLE */
5588 /*======================*/
5590 #theme-tweaker-toggle button {
5591 color: #777;
5594 /*=================*/
5595 /* QUICKNAV WIDGET */
5596 /*=================*/
5598 #quick-nav-ui a {
5599 color: #999;
5600 background-color: #e4e4e4;
5601 border-radius: 4px;
5603 #quick-nav-ui a[href='#bottom-bar'] {
5604 line-height: 1.8;
5606 #quick-nav-ui a:active {
5607 transform: scale(0.9);
5609 #quick-nav-ui a[href='#comments'].no-comments {
5610 opacity: 0.4;
5611 color: #bbb;
5613 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5614 #quick-nav-ui a:hover {
5615 color: #000;
5616 background-color: #eee;
5618 #quick-nav-ui a:focus:not(:hover) {
5619 transform: none;
5620 text-shadow: none;
5624 /*======================*/
5625 /* NEW COMMENT QUICKNAV */
5626 /*======================*/
5628 #new-comment-nav-ui .new-comments-count {
5629 font-weight: 600;
5630 color: #666;
5631 text-shadow: 0.5px 0.5px 0 #fff;
5633 #new-comment-nav-ui .new-comments-count::after {
5634 font-weight: 600;
5635 color: #777;
5637 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5638 color: #bbb;
5639 text-shadow: none;
5641 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5642 #new-comment-nav-ui .new-comments-count:hover {
5643 text-shadow:
5644 0 0 1px #fff,
5645 0 0 3px #fff,
5646 0 0 5px #fff,
5647 0 0 8px #fff,
5648 0.5px 0.5px 0 #fff;
5650 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5651 color: #d00;
5655 /*=================*/
5656 /* HNS DATE PICKER */
5657 /*=================*/
5659 #hns-date-picker span {
5660 color: #777;
5661 text-shadow: 0.5px 0.5px 0 #fff;
5662 font-weight: 600;
5664 #hns-date-picker input {
5665 border: 1px solid #777;
5666 background-color: transparent;
5667 color: #666;
5669 #hns-date-picker input:focus {
5670 color: #000;
5673 /*======================*/
5674 /* ANTI-KIBITZER TOGGLE */
5675 /*======================*/
5677 #anti-kibitzer-toggle button::before,
5678 #anti-kibitzer-toggle button::after {
5679 background-color: #888;
5680 -webkit-background-clip: text;
5681 color: transparent;
5682 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5684 #anti-kibitzer-toggle button:hover::before,
5685 #anti-kibitzer-toggle button:hover::after {
5686 background-color: #444;
5689 /*======================*/
5690 /* TEXT SIZE ADJUSTMENT */
5691 /*======================*/
5693 #text-size-adjustment-ui button {
5694 color: #777;
5696 #text-size-adjustment-ui button:hover {
5697 color: #222;
5699 #text-size-adjustment-ui button.default {
5700 font-weight: 600;
5702 #text-size-adjustment-ui button:disabled:hover {
5703 text-shadow: none;
5705 #text-size-adjustment-ui::after {
5706 color: #999;
5709 /*=============================*/
5710 /* COMMENTS VIEW MODE SELECTOR */
5711 /*=============================*/
5713 #comments-view-mode-selector a {
5714 color: #777;
5717 /*===============*/
5718 /* KEYBOARD HELP */
5719 /*===============*/
5721 #keyboard-help-overlay .keyboard-help-container .keys {
5722 margin: 0;
5725 /*==========*/
5726 /* ARCHIVES */
5727 /*==========*/
5729 .archive-nav {
5730 border: 1px solid #aaa;
5732 .archive-nav *[class^='archive-nav-item'] {
5733 border-style: solid;
5734 border-color: #ddd;
5735 border-width: 1px 0 1px 1px;
5736 background-color: #eee;
5738 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5739 border-top-width: 0;
5740 border-bottom-width: 0;
5742 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5743 border-bottom-width: 1px;
5745 .archive-nav *[class^='archive-nav-item']:last-child {
5746 border-right-width: 1px;
5748 .archive-nav span[class^='archive-nav-item'] {
5749 font-weight: bold;
5750 background-color: #ddd;
5753 .archive-nav a:link,
5754 .archive-nav a:visited {
5755 color: rgba(0, 0, 238, 0.7);
5757 .archive-nav a:hover {
5758 text-decoration: none;
5759 color: #c00;
5760 background-color: #e0e0e0;
5762 .archive-nav a:active {
5763 transform: scale(0.9);
5765 .archive-nav a:focus:not(:hover) {
5766 transform: none;
5768 .archive-nav a.archive-nav-item-day:hover {
5769 background-color: #ddd;
5772 /*==========*/
5773 /* LISTINGS */
5774 /*==========*/
5776 h1.listing {
5777 margin: 1.125em 20px 0.25em 20px;
5778 max-width: calc(100% - 40px);
5779 font-family: 'Arial', sans-serif, 'Font Awesome';
5780 font-size: 1.125rem;
5781 padding-left: 30px;
5782 max-height: unset;
5785 h1.listing a[href^='/posts'] {
5786 color: #538d4d;
5787 white-space: unset;
5788 display: inline;
5790 h1.listing a[href^='/posts']:visited {
5791 color: #5a5a5b;
5793 h1.listing a[href^="http"] {
5794 top: 2px;
5797 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5798 h1.listing a:hover,
5799 h1.listing a:focus {
5800 color: #3d3d3e;
5801 text-decoration: none;
5803 h1.listing a:focus {
5804 border-bottom: 1px dotted #999;
5806 h1.listing:focus-within::before {
5807 display: none;
5809 h1.listing:focus-within + .post-meta .karma-value {
5810 box-shadow:
5811 0 0 0 3px #fff,
5812 0 0 0 6px #3d3d3e;
5814 h1.listing a[href^="http"]:hover,
5815 h1.listing a[href^="http"]:focus {
5816 color: #4879ec;
5817 text-shadow:
5818 0.5px 0.5px 0 #fff,
5819 -0.5px -0.5px 0 #fff,
5820 0 0 2px #fff,
5821 0 0 3px #00c;
5822 border: none;
5826 h1.listing .edit-post-link {
5827 padding: 5px 3px 12px 0.5em;
5828 top: 0;
5829 right: 0;
5831 h1.listing .edit-post-link:hover {
5832 text-decoration: none;
5834 #content.user-page h1.listing .edit-post-link {
5835 background-color: #f7f7f8;
5838 /*======*/
5839 /* SPAM */
5840 /*======*/
5842 h1.listing.spam {
5843 opacity: 0.15;
5845 h1.listing.spam + .post-meta {
5846 opacity: 0.2;
5848 h1.listing.spam:hover,
5849 h1.listing.spam + .post-meta:hover,
5850 h1.listing.spam:hover + .post-meta {
5851 opacity: 1.0;
5854 /*===================*/
5855 /* LISTING POST-META */
5856 /*===================*/
5858 h1.listing + .post-meta {
5859 font-size: 0.8125rem;
5860 padding-left: 30px;
5861 display: flex;
5862 justify-content: flex-end;
5865 h1.listing + .post-meta .author {
5866 font-weight: bold;
5867 color: #6a8a6b;
5868 text-decoration: none;
5869 margin: 0 0 0 1.5em;
5870 order: 0;
5872 h1.listing + .post-meta .author:hover {
5873 color: #3d3d3e;
5875 h1.listing + .post-meta .date,
5876 h1.listing + .post-meta .read-time {
5877 color: #999;
5878 font-style: italic;
5880 h1.listing + .post-meta a {
5881 color: #8a8a8b;
5882 text-decoration: underline;
5884 h1.listing + .post-meta a:hover {
5885 color: #3d3d3e;
5888 h1.listing + .post-meta .karma-value {
5889 background-color: #538d4d;
5890 color: #fff;
5891 font-weight: bold;
5892 font-size: 0.8125rem;
5893 border-radius: 1.0625em;
5894 padding: 2px 6px 1px 6px;
5895 text-align: center;
5896 display: block;
5897 min-width: 2.125em;
5898 position: absolute;
5899 right: calc(100% - 1.75em);
5900 top: -2.1em;
5902 h1.listing + .post-meta .karma-value span,
5903 h1.listing + .post-meta .lw2-link span,
5904 h1.listing + .post-meta .comment-count span {
5905 display: none;
5908 h1.listing + .post-meta > * {
5909 text-align: right;
5910 margin: 0 0 0 0.5em;
5912 h1.listing + .post-meta .read-time {
5913 width: 6.5em;
5914 order: 2;
5916 h1.listing + .post-meta .comment-count {
5917 order: -1;
5919 h1.listing + .post-meta .comment-count::before {
5920 content: "Comments ("
5922 h1.listing + .post-meta .comment-count::after {
5923 content: ")"
5925 h1.listing + .post-meta .date {
5926 width: 11em;
5927 order: 1;
5929 h1.listing + .post-meta .lw2-link {
5930 margin: 0 0 0 1em;
5931 order: 3;
5933 h1.listing + .post-meta .post-section {
5934 margin: 0;
5935 text-decoration: none;
5937 h1.listing + .post-meta .post-section::before {
5938 left: unset;
5939 right: calc(100% + 1.15em);
5940 top: -1.95em;
5942 h1.listing + .post-meta .link-post-domain {
5943 order: -2;
5944 margin: 0 1em 0 0;
5947 /*============*/
5948 /* USER PAGES */
5949 /*============*/
5951 #content.user-page h1.page-main-heading {
5952 border-bottom: 1px solid #ccc;
5955 #content.user-page h1.listing,
5956 #content.user-page h1.listing + .post-meta {
5957 background-color: #f7f7f8;
5958 border-style: solid;
5959 border-color: #bbbcbf;
5962 #content.user-page h1.listing {
5963 padding: 0.5em 6px 0 48px;
5964 border-width: 1px 1px 0 1px;
5965 margin: 1rem 0 0 0;
5966 max-width: 100%;
5968 #content.own-user-page h1.listing,
5969 h1.listing.own-post-listing {
5970 padding-right: 36px;
5972 #content.user-page h1.listing a:hover {
5973 background-color: #f7f7f8;
5976 #content.user-page h1.listing + .post-meta {
5977 padding: 0.25em 10px 0.5em 32px;
5978 border-width: 0 1px 1px 1px;
5979 margin: 0 0 1rem 0;
5981 #content.user-page h1.listing + .post-meta .karma-value {
5982 right: calc(100% - 3.25em);
5983 top: -1.8em;
5985 #content.user-page h1.listing + .post-meta .post-section::before {
5986 right: calc(100% - 5.1em);
5987 top: 4px;
5990 #content.conversations-user-page h1.listing {
5991 padding: 8px 6px 8px 10px;
5992 font-size: 1.25rem;
5994 #content.conversations-user-page h1.listing + .post-meta {
5995 padding: 0 10px 6px 4px;
5996 margin: 0;
5999 .user-stats .karma-total {
6000 font-weight: bold;
6003 /*================*/
6004 /* SEARCH RESULTS */
6005 /*================*/
6007 #content.search-results-page h1.listing {
6008 font-size: 1.125rem;
6011 /*===============*/
6012 /* CONVERSATIONS */
6013 /*===============*/
6015 #content.conversation-page h1.page-main-heading {
6016 font-size: 1.375em;
6017 text-align: left;
6020 /*============*/
6021 /* LOGIN PAGE */
6022 /*============*/
6024 .login-container form input[type='submit'] {
6025 font-weight: bold;
6026 background-color: #eee;
6027 border: 1px solid #ccc;
6029 .login-container form input[type='submit']:hover,
6030 .login-container form input[type='submit']:focus {
6031 background-color: #ddd;
6032 border: 1px solid #aaa;
6035 /* “Create account” form */
6037 #signup-form {
6038 background-color: #f3f3f3;
6039 border: 1px solid #ddd;
6041 #signup-form input[type='submit'] {
6042 background-color: #e4e4e4;
6043 border: 1px solid #ccc;
6045 #signup-form input[type='submit']:hover {
6046 background-color: #d8d8d8;
6047 border: 1px solid #aaa;
6050 /* Log in tip */
6052 .login-container .login-tip {
6053 border: 1px solid #eee;
6056 /* Message box */
6058 .error-box {
6059 border: 1px solid red;
6060 background-color: #faa;
6062 .success-box {
6063 border: 1px solid green;
6064 background-color: #afa;
6067 /*=====================*/
6068 /* PASSWORD RESET PAGE */
6069 /*=====================*/
6071 .reset-password-container input[type='submit'] {
6072 background-color: #e4e4e4;
6073 border: 1px solid #ccc;
6074 font-weight: bold;
6077 /*===================*/
6078 /* TABLE OF CONTENTS */
6079 /*===================*/
6081 .contents {
6082 font-family: 'Arial', sans-serif;
6083 border: 1px solid #ddd;
6084 background-color: #eee;
6085 padding: 0.75em 0.5em 0.5em 0.5em;
6087 .contents-head {
6088 font-weight: bold;
6089 font-size: 1.25em;
6091 .post-body .contents ul {
6092 font-size: 1em;
6094 .post-body .contents li::before {
6095 color: #999;
6096 font-feature-settings: "tnum";
6099 /*==================*/
6100 /* POSTS & COMMENTS */
6101 /*==================*/
6103 .body-text {
6104 font-family: 'Arial', sans-serif;
6105 font-size: 1rem;
6107 .body-text a {
6108 text-decoration: underline;
6110 .post-meta > *,
6111 .comment-meta > * {
6112 white-space: unset;
6115 /*===========*/
6116 /* POST-META */
6117 /*===========*/
6119 .post-meta {
6120 line-height: 1.9;
6122 .post-meta .post-section::before,
6123 .comment-meta .alignment-forum {
6124 color: #fff;
6125 text-shadow:
6126 1px 1px 0 #090,
6127 0 1px 0 #090,
6128 0 0 5px #090;
6130 a.post-section:hover::before {
6131 color: #97ff7c;
6133 .post-meta .post-section.alignment-forum::before {
6134 text-shadow:
6135 1px 1px 0 #626dd7,
6136 0 1px 0 #626dd7,
6137 0 0 5px #626dd7;
6139 a.post-section.alignment-forum:hover::before {
6140 color: #e6e5ff;
6143 .bottom-post-meta {
6144 border-color: #ddd;
6147 .post .post-meta {
6148 position: relative;
6149 font-size: 0.875rem;
6150 justify-content: flex-start;
6151 padding-left: 30px;
6153 .post .post-meta .author {
6154 font-weight: bold;
6155 color: #6a8a6b;
6156 text-decoration: none;
6158 .post .post-meta .author:hover {
6159 color: #3d3d3e;
6161 .post .post-meta .date{
6162 color: #999;
6163 font-style: italic;
6165 .post .post-meta a {
6166 color: #8a8a8b;
6167 text-decoration: underline;
6169 .post .post-meta a:hover {
6170 color: #3d3d3e;
6173 .post .post-meta .karma {
6174 order: -1;
6176 .post .post-meta .karma-value {
6177 background-color: #538d4d;
6178 color: #fff;
6179 font-weight: bold;
6180 font-size: 0.8125rem;
6181 border-radius: 1.125em;
6182 padding: 2px 6px 1px 6px;
6183 text-align: center;
6184 min-width: 2.125em;
6185 display: block;
6186 float: left;
6187 margin: 0 0.5em 0 0;
6189 .post .post-meta .karma-value span,
6190 .post .post-meta .lw2-link span,
6191 .post .post-meta .comment-count span {
6192 display: none;
6195 .post .post-meta .comment-count::before {
6196 content: "Comments ("
6198 .post .post-meta .comment-count::after {
6199 content: ")"
6202 .post .post-meta .post-section::before {
6203 position: absolute;
6204 top: 1px;
6205 left: 0;
6207 .post .bottom-post-meta .post-section::before {
6208 top: 21px;
6211 /*============*/
6212 /* LINK POSTS */
6213 /*============*/
6215 .post.link-post > .post-body > p:first-child {
6216 margin: 0;
6218 .post.link-post a.link-post-link {
6219 text-decoration: none;
6220 font-family: 'Arial', sans-serif;
6221 font-weight: 600;
6223 .post.link-post a.link-post-link:hover {
6224 color: #c00;
6226 .post.link-post a.link-post-link:hover::before {
6227 color: #4879ec;
6228 text-shadow:
6229 0.5px 0.5px 0 #fff,
6230 -0.5px -0.5px 0 #fff,
6231 0 0 2px #fff,
6232 0 0 3px #00c;
6234 .post.link-post a.link-post-link:focus {
6235 color: #aaa;
6236 border-bottom: 2px dotted #aaa;
6239 /*=======*/
6240 /* POSTS */
6241 /*=======*/
6243 h1.post-title {
6244 font-size: 1.375rem;
6245 text-align: left;
6246 margin: 2em 0 0.5em 0;
6247 line-height: 1.2;
6250 /*==========*/
6251 /* COMMENTS */
6252 /*==========*/
6254 #comments::before {
6255 border-top: 1px solid #000;
6256 box-shadow: 0 3px 4px -4px #000 inset;
6258 @-moz-document url-prefix() {
6259 #comments::before {
6260 box-shadow: 0 3px 3px -4px #000 inset;
6263 #content > .comment-thread .comment-meta a.date:focus,
6264 #content > .comment-thread .comment-meta a.permalink:focus {
6265 color: #444;
6266 outline: 2px dotted #444;
6267 position: relative;
6268 background-color: #fff;
6269 padding: 0 5px;
6270 left: -5px;
6272 #content > .comment-thread .comment-meta a.date:focus + *,
6273 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6274 margin-left: -10px;
6276 .comment-item {
6277 border: 1px solid #bbbcbf;
6279 .comment-item .comment-item {
6280 margin: 1em -1px 8px 16px;
6282 .comment-item .comment-item + .comment-item {
6283 margin: 2em -1px 8px 16px;
6287 .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,
6288 .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,
6289 .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,
6290 .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,
6291 .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,
6292 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6293 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6294 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6295 .comment-item .comment-item .comment-item .comment-item .comment-item,
6296 .comment-item .comment-item .comment-item,
6297 .comment-item {
6298 background-color: #f7f7f8;
6300 .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,
6301 .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,
6302 .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,
6303 .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,
6304 .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,
6305 .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,
6306 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6307 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6308 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6309 .comment-item .comment-item .comment-item a.comment-parent-link::after,
6310 .comment-item a.comment-parent-link::after {
6311 box-shadow:
6312 0 28px 16px -16px #fff inset,
6313 4px 16px 0 12px #ffd inset,
6314 4px 4px 0 12px #ffd inset;
6317 .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,
6318 .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,
6319 .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,
6320 .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,
6321 .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,
6322 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6323 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6324 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6325 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6326 .comment-item .comment-item .comment-item .comment-item,
6327 .comment-item .comment-item {
6328 background-color: #fff;
6330 .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,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
6336 .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,
6337 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6338 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6339 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6340 .comment-item .comment-item a.comment-parent-link::after {
6341 box-shadow:
6342 0 28px 16px -16px #eee inset,
6343 4px 16px 0 12px #ffd inset,
6344 4px 4px 0 12px #ffd inset;
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 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
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 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6349 .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,
6350 .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,
6351 .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,
6352 .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,
6353 .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,
6354 .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,
6355 .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,
6356 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6357 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6358 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6359 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6360 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6361 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6362 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6363 .comment-item .comment-item .comment-item .comment-item:target,
6364 .comment-item .comment-item .comment-item:target,
6365 .comment-item .comment-item:target,
6366 .comment-item:target {
6367 background-color: #ffd;
6369 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
6370 box-shadow:
6371 0 28px 16px -16px #ffd inset,
6372 4px 16px 0 12px #ffd inset,
6373 4px 4px 0 12px #ffd inset !important;
6376 a.comment-parent-link::after {
6377 display: none;
6380 /*================================*/
6381 /* DEEP COMMENT THREAD COLLAPSING */
6382 /*================================*/
6384 .comment-item input[id^="expand"] + label::after {
6385 color: #6a8a6b;
6386 font-weight: 600;
6388 .comment-item input[id^="expand"] + label:hover::after {
6389 color: #c00;
6391 .comment-item input[id^="expand"] + label:active::after,
6392 .comment-item input[id^="expand"] + label:focus::after{
6393 color: #c00;
6395 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6396 border-width: 1px 0 0 0;
6399 /*==============*/
6400 /* COMMENT-META */
6401 /*==============*/
6403 .comment-meta > * {
6404 font-size: 0.9375rem;
6405 padding-top: 2px;
6407 .comment-meta .author {
6408 font-weight: bold;
6409 color: #538d4d;
6411 .comment-meta .date {
6412 color: #999;
6413 font-style: italic;
6415 .comment-meta .date:hover {
6416 color: #777;
6418 .comment-meta .karma-value,
6419 .comment-controls .karma .karma-value {
6420 color: #666;
6421 float: left;
6422 margin-right: 0.5em;
6424 .comment-meta .karma-value:only-child {
6425 float: none;
6427 .comment-item .author:not(.redacted).original-poster::after {
6428 opacity: 0.8;
6431 .comment-item .karma.active-controls::after,
6432 .comment-item .karma .karma-value::after,
6433 .post .karma.active-controls::after,
6434 .post .karma .karma-value::after,
6435 .author::before {
6436 background-color: #fff;
6437 color: #888;
6438 box-shadow: 0 0 0 1px #ccc inset;
6439 border-radius: 4px;
6441 .comment-item .karma.active-controls::after,
6442 .post .karma.active-controls::after {
6443 padding: 6px;
6444 max-width: unset;
6445 bottom: -46px;
6446 width: 110px;
6448 .comment-item .karma .karma-value::after,
6449 .post .karma .karma-value::after {
6450 padding: 2px 8px;
6451 top: -36px;
6452 min-width: 64px;
6453 font-weight: normal;
6456 /*====================*/
6457 /* COMMENT PERMALINKS */
6458 /*====================*/
6460 .comment-meta .permalink,
6461 .comment-meta .lw2-link,
6462 .individual-thread-page .comment-parent-link:empty {
6463 top: 1px;
6464 filter: grayscale(50%);
6466 .comment-meta .permalink,
6467 .comment-meta .lw2-link,
6468 .individual-thread-page .comment-parent-link:empty {
6469 filter: unset;
6472 /*====================*/
6473 /* ANTI-KIBITZER MODE */
6474 /*====================*/
6476 .author.redacted,
6477 .inline-author.redacted {
6478 opacity: 0.8;
6479 font-weight: 400;
6482 .karma-value.redacted {
6483 opacity: 0.5;
6486 .link-post-domain.redacted {
6487 opacity: 0.5;
6490 /*===========================*/
6491 /* COMMENT THREAD NAVIGATION */
6492 /*===========================*/
6494 div.comment-parent-link {
6495 font-weight: bold;
6497 a.comment-parent-link {
6498 font-weight: normal;
6500 a.comment-parent-link::before {
6501 color: #bbb;
6503 a.comment-parent-link:hover::before {
6504 background-color: #ffd;
6505 color: #999;
6508 div.comment-child-links {
6509 font-weight: bold;
6511 div.comment-child-links a {
6512 font-weight: normal;
6514 .comment-child-link::before {
6515 color: #bbb;
6518 .comment-item-highlight {
6519 box-shadow:
6520 0 0 2px #e7b200,
6521 0 0 3px #e7b200,
6522 0 0 5px #e7b200,
6523 0 0 7px #e7b200,
6524 0 0 10px #e7b200;
6525 border: 1px solid #e7b200;
6527 .comment-item-highlight-faint {
6528 box-shadow:
6529 0 0 2px #f8e7b5,
6530 0 0 3px #f8e7b5,
6531 0 0 5px #f8e7b5,
6532 0 0 7px #f8e7b5,
6533 0 0 10px #f8e7b5;
6534 border: 1px solid #f8e7b5;
6537 .comment-popup {
6538 background-color: #fff;
6541 /*=======================*/
6542 /* COMMENTS COMPACT VIEW */
6543 /*=======================*/
6545 #comments-list-mode-selector button {
6546 box-shadow:
6547 0 0 0 4px #fff inset,
6548 0 0 0 5px #bbb inset;
6550 #comments-list-mode-selector button:hover,
6551 #comments-list-mode-selector button.selected {
6552 box-shadow:
6553 0 0 0 5px #bbb inset;
6555 #content.compact > .comment-thread .comment-item {
6556 max-height: 57px;
6558 #content.compact > .comment-thread .comment-item::after {
6559 color: #6a8a6b;
6560 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6563 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6564 #content.compact > .comment-thread .comment-item:hover .comment,
6565 #content.compact > .comment-thread .comment-item.expanded .comment {
6566 background-color: #fff;
6567 outline: 3px solid #6a8a6b;
6569 #content.compact > .comment-thread .comment-item:hover .comment::before,
6570 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6571 background-color: #fff;
6572 box-shadow:
6573 0 0 3px #fff,
6574 0 0 5px #fff,
6575 0 0 7px #fff,
6576 0 0 10px #fff,
6577 0 0 20px #fff,
6578 0 0 30px #fff,
6579 0 0 40px #fff;
6582 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6583 #content.compact > .comment-thread.expanded .comment-item .comment {
6584 background-color: #fff;
6585 outline: 3px solid #6a8a6b;
6587 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6588 background-color: #fff;
6589 box-shadow:
6590 0 0 3px #fff,
6591 0 0 5px #fff,
6592 0 0 7px #fff,
6593 0 0 10px #fff,
6594 0 0 20px #fff,
6595 0 0 30px #fff,
6596 0 0 40px #fff;
6600 #content.user-page.compact > h1.listing {
6601 margin-top: 0.5rem;
6603 #content.user-page.compact > h1.listing + .post-meta {
6604 margin-bottom: 0.5rem;
6607 /*===========================*/
6608 /* HIGHLIGHTING NEW COMMENTS */
6609 /*===========================*/
6611 .new-comment::before {
6612 outline: 2px solid #5a5;
6613 box-shadow:
6614 0 0 6px -2px #5a5 inset,
6615 0 0 4px #5a5,
6616 0 0 6px #5a5;
6619 /*=================================*/
6620 /* COMMENT THREAD MINIMIZE BUTTONS */
6621 /*=================================*/
6623 .comment-meta .comment-minimize-button {
6624 font-size: 1.25rem;
6625 top: -1px;
6627 .comment-meta .comment-minimize-button::after {
6628 top: 23px;
6630 .comment-minimize-button {
6631 color: #ccc;
6633 .comment-minimize-button:hover {
6634 color: #aaa;
6636 .comment-minimize-button::after {
6637 font-family: 'Arial', sans-serif;
6638 color: #777;
6640 .comment-minimize-button.maximized::after {
6641 color: #ccc;
6644 /*==============*/
6645 /* VOTE BUTTONS */
6646 /*==============*/
6648 .upvote,
6649 .downvote {
6650 color: #c8c8c8;
6651 padding: 0 5px;
6652 position: relative;
6654 .vote::before {
6655 position: relative;
6657 .upvote::before {
6658 content: '\F164';
6660 .downvote::before {
6661 content: '\F165';
6662 top: 2px;
6665 .vote {
6666 text-shadow:
6667 1px 1px 0 #aaa,
6668 -1px 1px 0 #aaa,
6669 1px -1px 0 #aaa,
6670 -1px -1px 0 #aaa;
6672 .upvote.selected,
6673 .upvote:hover {
6674 text-shadow:
6675 1px 1px 0 #080,
6676 -1px 1px 0 #080,
6677 1px -1px 0 #080,
6678 -1px -1px 0 #080;
6681 .downvote.selected,
6682 .downvote:hover {
6683 text-shadow:
6684 1px 1px 0 #b00,
6685 -1px 1px 0 #a00,
6686 1px -1px 0 #b00,
6687 -1px -1px 0 #b00;
6689 @media only screen and (min-resolution: 192dpi) {
6690 .vote {
6691 text-shadow:
6692 0.5px 0.5px 0 #aaa,
6693 -0.5px 0.5px 0 #aaa,
6694 0.5px -0.5px 0 #aaa,
6695 -0.5px -0.5px 0 #aaa;
6697 .upvote.selected,
6698 .upvote:hover {
6699 text-shadow:
6700 0.5px 0.5px 0 #060,
6701 -0.5px 0.5px 0 #060,
6702 0.5px -0.5px 0 #060,
6703 -0.5px -0.5px 0 #060;
6706 .downvote.selected,
6707 .downvote:hover {
6708 text-shadow:
6709 0.5px 0.5px 0 #900,
6710 -0.5px 0.5px 0 #900,
6711 0.5px -0.5px 0 #900,
6712 -0.5px -0.5px 0 #900;
6716 .vote::before {
6717 z-index: 1;
6720 .vote::after {
6721 position: absolute;
6722 color: #fff;
6723 visibility: hidden;
6725 .vote:hover::after,
6726 .vote.big-vote::after,
6727 .vote:not(.big-vote).clicked-twice::after {
6728 visibility: visible;
6730 .vote.big-vote::after,
6731 .vote:not(.big-vote).clicked-twice::after {
6732 color: inherit;
6734 .karma:not(.waiting) .vote.clicked-once::after {
6735 color: #c8c8c8;
6738 .upvote::after {
6739 content: "\F164";
6740 left: -1px;
6741 top: -3px;
6744 .downvote::after {
6745 content: "\F165";
6746 left: -1px;
6747 top: 5px;
6750 .comment-controls .karma {
6751 margin-left: -6px;
6754 /*===========================*/
6755 /* COMMENTING AND POSTING UI */
6756 /*===========================*/
6758 .posting-controls input[type='submit'] {
6759 background-color: #fff;
6760 border: 1px solid #aaa;
6761 font-weight: bold;
6763 .posting-controls input[type='submit']:hover,
6764 .posting-controls input[type='submit']:focus {
6765 background-color: #ddd;
6766 border: 1px solid #999;
6769 .comment-controls .cancel-comment-button {
6770 font-weight: 600;
6771 color: #c00;
6772 text-shadow:
6773 0 0 1px #fff,
6774 0 0 2px #fff;
6775 max-width: 1.2em;
6776 overflow: hidden;
6777 margin-right: 0.375em;
6779 .comment-controls .cancel-comment-button::before {
6780 font-size: 1.25em;
6782 .comment-controls .cancel-comment-button:hover {
6783 color: #f00;
6786 .new-comment-button {
6787 font-weight: 600;
6790 .comment-controls .action-button::before {
6791 font-size: 1em;
6793 .comment-controls .action-button::after {
6794 content: attr(data-label);
6795 display: block;
6796 position: absolute;
6797 font-size: 0.5em;
6798 text-transform: uppercase;
6799 visibility: hidden;
6800 text-shadow: none;
6802 .comment-controls .action-button:hover::after {
6803 visibility: visible;
6805 .comment-controls .delete-button::before,
6806 .comment-controls .retract-button::before {
6807 color: #ca3232;
6809 .comment-controls .delete-button::after {
6810 transform: translateX(-8px);
6812 .comment-controls .retract-button::after {
6813 transform: translateX(-8px);
6815 .comment-controls .unretract-button::after {
6816 transform: translateX(-18px);
6818 .comment-controls .reply-button::before {
6819 content: "\F086";
6820 font-weight: 400;
6821 font-size: 1.125rem;
6822 color: #6a8a6b;
6824 .comment-controls .reply-button::after {
6825 transform: translateX(-4px);
6827 .comment-controls .edit-button::before {
6828 font-size: 0.9375em;
6829 color: #0b0;
6831 .comment-controls .unretract-button::before {
6832 font-size: 1.125rem;
6833 color: #0b0;
6835 .comment-controls .edit-button::after {
6836 transform: translateX(-1px);
6838 .comment-item .comment-controls .action-button:hover::before {
6839 color: #f00;
6840 text-shadow:
6841 0.5px 0.5px 0.5px #f77;
6844 h1.listing .edit-post-link,
6845 h1.listing .edit-post-link:visited,
6846 .post-controls .edit-post-link,
6847 .post-controls .edit-post-link:visited {
6848 color: #090;
6850 h1.listing .edit-post-link:hover,
6851 .post-controls .edit-post-link:hover {
6852 color: #d00;
6855 .posting-controls textarea {
6856 font-family: 'Arial', sans-serif;
6857 font-size: 1rem;
6858 color: #000;
6859 background-color: #fff;
6860 border-color: #aaa;
6861 box-shadow:
6862 0 0 0 1px #eee inset;
6864 .posting-controls textarea:focus {
6865 background-color: #ffd;
6866 border-color: #6a8a6b;
6867 box-shadow:
6868 0 0 0 1px #ddf inset,
6869 0 0 0 1px #fff,
6870 0 0 0 2px #6a8a6b;
6872 .posting-controls.edit-existing-post textarea:focus,
6873 .posting-controls form.edit-existing-comment textarea:focus {
6874 border-color: #090;
6875 box-shadow:
6876 0 0 0 1px #81ff7f inset,
6877 0 0 0 1px #fff,
6878 0 0 0 2px #090;
6881 /* GUIEdit buttons */
6883 .guiedit-buttons-container {
6884 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6887 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6888 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6889 color: #050;
6891 .guiedit-buttons-container button {
6892 font-family: Font Awesome, 'Arial', sans-serif;
6895 .guiedit::after {
6896 font-family: 'Arial', sans-serif;
6897 color: #777;
6898 text-shadow: none;
6899 top: 4px;
6902 /* Markdown hints */
6904 #markdown-hints-checkbox + label {
6905 color: #6a8a6b;
6907 #markdown-hints-checkbox + label:hover {
6908 color: #e00;
6910 #markdown-hints {
6911 border: 1px solid #c00;
6912 background-color: #ffa;
6915 /*================*/
6916 /* EDIT POST FORM */
6917 /*================*/
6919 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6920 border-radius: 3px;
6921 border: 1px solid #ddd;
6922 color: #777;
6923 top: 2px;
6925 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6926 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6927 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6928 text-shadow:
6929 0 0 1px #fff,
6930 0 0 2px #fff,
6931 0 0 2.5px #aaa;
6933 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6934 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6935 border-color: #aaa;
6938 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6939 content: "\F00C";
6941 #edit-post-form input[type='radio'] + label {
6942 color: #777;
6943 border-color: #ddd;
6945 #edit-post-form input[type='radio'][value='all'] + label {
6946 border-radius: 8px 0 0 8px;
6947 border-width: 1px;
6949 #edit-post-form input[type='radio'][value='drafts'] + label {
6950 border-radius: 0 8px 8px 0;
6952 #edit-post-form input[type='radio'] + label:hover,
6953 #edit-post-form input[type='radio']:focus + label {
6954 background-color: #ddd;
6955 color: #000;
6957 #edit-post-form input[type='radio']:focus + label {
6958 color: #000;
6959 box-shadow:
6960 0 0 0 1px #aaa;
6962 #edit-post-form input[type='radio']:checked + label {
6963 background-color: #ddd;
6964 border-color: #ddd;
6965 color: #000;
6966 text-shadow:
6967 0 -1px 0 #fff,
6968 0 0.5px 0.5px #000;
6970 #edit-post-form #markdown-hints-checkbox + label {
6971 padding: 3px 0 0 14px;
6974 /*=======*/
6975 /* LINKS */
6976 /*=======*/
6979 text-decoration: none;
6980 color: #6a8a6b;
6982 a:visited {
6983 color: #8a8a8b;
6985 a:hover {
6986 color: #3d3d3e;
6989 /*=========*/
6990 /* BUTTONS */
6991 /*=========*/
6993 button,
6994 input[type='submit'] {
6995 color: #6a8a6b;
6998 button:hover,
6999 input[type='submit']:hover,
7000 button:focus,
7001 input[type='submit']:focus {
7002 color: #d00;
7004 button:active,
7005 input[type='submit']:active {
7006 color: #f00;
7007 transform: scale(0.9);
7009 .button:visited {
7010 color: #6a8a6b;
7012 .button:hover {
7013 color: #f00;
7014 text-decoration: none;
7016 .button:active {
7017 transform: scale(0.9);
7019 .button:focus:not(:hover) {
7020 transform: none;
7022 @-moz-document url-prefix() {
7023 .button:active {
7024 transform: none;
7028 /*==========*/
7029 /* HEADINGS */
7030 /*==========*/
7032 .body-text h1,
7033 .body-text h2,
7034 .body-text h4 {
7035 font-family: 'Arial', sans-serif;
7037 .body-text h3,
7038 .body-text h5,
7039 .body-text h6 {
7040 font-weight: 600;
7042 .body-text h6 {
7043 color: #555;
7045 .body-text h1 {
7046 border-bottom: 1px solid #aaa;
7049 /*========*/
7050 /* QUOTES */
7051 /*========*/
7053 blockquote {
7054 border-left: 5px solid #ccc;
7057 /*========*/
7058 /* IMAGES */
7059 /*========*/
7061 #content img,
7062 #content figure.image img {
7063 border: 1px solid #ccc;
7065 #content figure img {
7066 border: 1px solid #000;
7068 #content img[src$='.svg'],
7069 #content figure img[src$='.svg'] {
7070 border: none;
7072 #content img[style^='float'] {
7073 border: 1px solid transparent;
7076 /*========*/
7077 /* TABLES */
7078 /*========*/
7080 .body-text table,
7081 .body-text table th,
7082 .body-text table td {
7083 border: 1px solid #bbb;
7086 /*======*/
7087 /* MISC */
7088 /*======*/
7090 hr {
7091 border-bottom: 1px solid #999;
7094 code {
7095 background-color: #f6f6ff;
7096 border: 1px solid #ddf;
7097 border-radius: 4px;
7100 input[type='text'],
7101 input[type='search'],
7102 input[type='password'] {
7103 background-color: #fff;
7104 border: 1px solid #ddd;
7105 color: #000;
7107 input[type='text']:focus,
7108 input[type='search']:focus,
7109 input[type='password']:focus {
7110 background-color: #ffd;
7111 border: 1px solid #bbb;
7112 box-shadow: 0 0 1px #bbb;
7115 select {
7116 color: #000;
7119 /*============*/
7120 /* ABOUT PAGE */
7121 /*============*/
7123 .about-page mark {
7124 background-color: #e6e6e6;
7125 text-decoration: none;
7126 box-shadow:
7127 0 -1px 0 0 #000 inset,
7128 0 -3px 1px -2px #000 inset;
7129 padding: 0 1px;
7132 #content.about-page .accesskey-table {
7133 font-family: 'Arial', sans-serif;
7134 border-color: #ddd;
7137 #content.about-page img {
7138 border: 1px solid #000;
7141 /*========================*/
7142 /* QUALIFIED HYPERLINKING */
7143 /*========================*/
7145 #aux-about-link a {
7146 color: #777;
7148 #aux-about-link a:hover {
7149 opacity: 1.0;
7152 .qualified-linking label {
7153 color: #6a8a6b;
7155 .qualified-linking label:hover {
7156 text-shadow:
7157 0 0 1px #fff,
7158 0 0 3px #fff,
7159 0 0 5px #00e;
7162 .qualified-linking-toolbar {
7163 border: 1px solid #000;
7164 background-color: #fff;
7166 .qualified-linking-toolbar a {
7167 background-color: #eee;
7168 border: 1px solid #ccc;
7169 border-radius: 4px;
7170 padding: 2px 12px;
7171 white-space: nowrap;
7173 .qualified-linking-toolbar a:visited {
7174 color: #6a8a6b;
7176 .qualified-linking-toolbar a:hover {
7177 text-decoration: none;
7178 background-color: #ddd;
7180 .qualified-linking label::after {
7181 background-color: #d8d8d8;
7182 opacity: 0.8;
7185 /*======*/
7186 /* MATH */
7187 /*======*/
7189 .mathjax-block-container::-webkit-scrollbar {
7190 height: 12px;
7191 background-color: #f6f6ff;
7192 border-radius: 6px;
7193 border: 1px solid #ddf;
7195 .mathjax-block-container::-webkit-scrollbar-thumb {
7196 background-color: #dde;
7197 border-radius: 6px;
7198 border: 1px solid #cce;
7200 .mathjax-inline-container::-webkit-scrollbar {
7201 height: 8px;
7202 background-color: #f6f6ff;
7203 border-radius: 4px;
7204 border: 1px solid #ddf;
7206 .mathjax-inline-container::-webkit-scrollbar-thumb {
7207 background-color: #dde;
7208 border-radius: 4px;
7209 border: 1px solid #cce;
7212 /*=================*/
7213 /* ALIGNMENT FORUM */
7214 /*=================*/
7216 #content.alignment-forum-index-page::before {
7217 background-color: #f4f5ff;
7219 #content.alignment-forum-index-page::after {
7220 font-family: "Concourse SmallCaps";
7221 font-weight: 600;
7222 background-color: #7f85b2;
7223 color: transparent;
7224 -webkit-background-clip: text;
7225 text-shadow:
7226 rgba(255,255,255,0.5) 0px 3px 3px;
7228 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
7229 #content.alignment-forum-index-page h1.listing a:hover,
7230 #content.alignment-forum-index-page h1.listing a:focus {
7231 background-color: rgba(244,245,255,0.85);
7235 /*====================*/
7236 /* FOR NARROW SCREENS */
7237 /*====================*/
7239 @media only screen and (max-width: 1440px) {
7240 #hns-date-picker {
7241 background-color: #d8d8d8;
7242 opacity: 1.0;
7244 #hns-date-picker::before {
7245 border: 1px solid #999;
7246 border-width: 1px 0 1px 1px;
7249 @media only screen and (max-width: 1160px) {
7250 #theme-selector:hover::after {
7251 background-color: #999;
7252 width: calc(6em - 13px);
7255 @media only screen and (max-width: 1080px) {
7256 #text-size-adjustment-ui button {
7257 border: 1px solid #999;
7258 padding: 0 0 0 1px;
7259 border-radius: 50%;
7260 box-shadow:
7261 0 0 6px #999 inset,
7262 0 0 0 1px transparent;
7264 #theme-tweaker-toggle button {
7265 border: 1px solid #999;
7266 box-shadow:
7267 0 0 10px #999 inset,
7268 0 0 0 1px transparent;
7269 border-radius: 50%;
7270 transform: scale(0.8);
7273 @media only screen and (max-width: 1020px) {
7274 #quick-nav-ui a {
7275 box-shadow:
7276 0 0 0 1px #999,
7277 0 0 0 2px transparent;
7279 #new-comment-nav-ui .new-comments-count::before {
7280 background-color: #d8d8d8;
7281 box-shadow:
7282 0 0 0 1px #999,
7283 0 0 0 2px transparent;
7284 border-radius: 8px;
7286 #anti-kibitzer-toggle {
7287 background-color: #d8d8d8;
7288 box-shadow:
7289 0 0 0 1px #999,
7290 0 0 0 2px transparent;
7291 border-radius: 6px;
7292 overflow: hidden;
7295 @media only screen and (max-width: 1000px) {
7296 #theme-selector {
7297 background-color: #d8d8d8;
7298 box-shadow:
7299 0 0 0 1px #999,
7300 0 0 0 2px transparent;
7302 #theme-selector:hover::after {
7303 width: calc(6em - 9px);
7304 height: calc(100% - 5px);
7305 top: 3px;
7306 left: 100%;
7308 #text-size-adjustment-ui button {
7309 background-color: #ddd;
7311 #text-size-adjustment-ui button:hover {
7312 background-color: #eee;
7314 #theme-tweaker-toggle button {
7315 background-color: #ddd;
7319 /*========*/
7320 /* MOBILE */
7321 /*========*/
7323 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
7324 #ui-elements-container > div[id$='-ui-toggle'] button {
7325 color: #aaa;
7326 text-shadow:
7327 0 0 1px #fff,
7328 0 0 3px #fff,
7329 0 0 5px #fff,
7330 0 0 10px #fff,
7331 0 0 20px #fff,
7332 0 0 30px #fff;
7335 #theme-selector {
7336 background-color: #d8d8d8;
7337 box-shadow:
7338 0 0 0 1px #999,
7339 0 0 1px 3px #fff,
7340 0 0 3px 3px #fff,
7341 0 0 5px 3px #fff,
7342 0 0 10px 3px #fff,
7343 0 0 20px 3px #fff;
7344 border-radius: 12px;
7346 #theme-selector::before,
7347 #theme-selector .theme-selector-close-button {
7348 color: #000;
7349 font-weight: normal;
7351 #theme-selector button {
7352 background-color: #e6e6e6;
7353 border-radius: 10px;
7355 #theme-selector button::after {
7356 color: #444;
7357 max-width: calc(100% - 3.5em);
7358 overflow: hidden;
7359 text-overflow: ellipsis;
7360 padding-bottom: 1px;
7362 #theme-selector button.selected::after {
7363 color: #000;
7364 text-shadow:
7365 0 -1px 0 #fff,
7366 0 0.5px 0.5px #000;
7369 #quick-nav-ui {
7370 background-color: #fff;
7372 #quick-nav-ui,
7373 #new-comment-nav-ui,
7374 #hns-date-picker {
7375 box-shadow:
7376 0 0 1px 3px #fff,
7377 0 0 3px 3px #fff,
7378 0 0 5px 3px #fff,
7379 0 0 10px 3px #fff,
7380 0 0 20px 3px #fff;
7382 #quick-nav-ui a::after,
7383 #new-comment-nav-ui::before {
7384 font-family: 'Arial', sans-serif;
7385 font-weight: bold;
7386 box-shadow:
7387 0 0 1px 0 #fff,
7388 0 0 3px 0 #fff,
7389 0 0 5px 0 #fff;
7390 background-color: #fff;
7391 border-radius: 4px;
7393 #quick-nav-ui,
7394 #new-comment-nav-ui {
7395 border-radius: 8px;
7397 #new-comment-nav-ui {
7398 background-color: #e4e4e4;
7399 border: 1px solid #999;
7401 #new-comment-nav-ui::before {
7402 color: #777;
7403 font-weight: bold;
7405 #new-comment-nav-ui .new-comment-sequential-nav-button {
7406 box-shadow: 0 0 0 1px #999;
7407 color: #538d4d;
7409 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7410 color: #bbb;
7412 #new-comment-nav-ui .new-comments-count {
7413 background-color: inherit;
7414 box-shadow: 0 -1px 0 0 #999;
7416 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7417 border-radius: 7px 0 0 7px;
7419 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7420 border-radius: 0 7px 7px 0;
7422 #new-comment-nav-ui button::after {
7423 font-family: 'Arial', sans-serif;
7425 #hns-date-picker {
7426 background-color: #e4e4e4;
7427 border: 1px solid #999;
7430 /*****************************************/
7431 @media only screen and (max-width: 900px) {
7432 /*****************************************/
7433 h1.listing + .post-meta .post-section {
7434 overflow: visible;
7435 order: -2;
7436 width: unset;
7438 h1.listing + .post-meta .post-section::before {
7439 position: unset;
7442 #primary-bar .nav-inner {
7443 font-size: 1.25em;
7445 #secondary-bar .nav-inner {
7446 font-size: 1.125em;
7448 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
7449 padding: 6px 10px;
7452 .archive-nav *[class^='archive-nav-item-'] {
7453 border-width: 1px !important;
7455 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7456 background-color: #aaa;
7459 .comment-item .comment-item {
7460 margin: 0.75em 0 3px 6px;
7462 .comment-item .comment-item + .comment-item {
7463 margin: 1.5em 0 3px 6px;
7466 .sublevel-nav:not(.sort) .sublevel-item,
7467 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7468 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7469 border-radius: 8px;
7470 border-width: 1px;
7471 margin: 2px;
7473 /*******************************************/
7474 } @media only screen and (max-width: 720px) {
7475 /*******************************************/
7476 .post-meta .comment-count::before {
7477 font-family: inherit;
7478 font-size: inherit;
7479 margin: 0;
7481 /*******************************************/
7482 } @media only screen and (max-width: 520px) {
7483 /*******************************************/
7484 #primary-bar.inactive-bar .nav-inner {
7485 padding: 6px 10px;
7486 font-size: 1.375em;
7489 h1.listing {
7490 margin: 18px 6px 4px 6px;
7491 max-width: calc(100% - 12px);
7492 padding: 0;
7494 h1.listing a[href^='http'] {
7495 top: 2px;
7497 h1.listing + .post-meta {
7498 margin: 4px 6px;
7500 h1.listing + .post-meta > *:not(.karma) {
7501 line-height: 1.5;
7502 width: unset;
7504 h1.listing + .post-meta .karma-value {
7505 top: 0;
7506 right: calc(100% - 2.25em);
7509 #content.compact > .comment-thread .comment-item {
7510 max-height: 104px;
7513 .textarea-container:focus-within textarea {
7514 background-color: #fff;
7516 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7517 padding: 6px;
7518 font-weight: bold;
7520 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7521 box-shadow:
7522 0 0 0 2px #c00;
7523 color: #c00;
7525 .textarea-container:focus-within .guiedit-buttons-container {
7526 background-color: #fff;
7527 border-top: 1px solid #ddf;
7529 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
7530 box-shadow: none;
7532 #content.conversation-page .textarea-container:focus-within::after {
7533 background-color: #fff;
7535 .textarea-container:focus-within button.guiedit {
7536 border: 1px solid #6a8a6b;
7537 border-radius: 6px;
7540 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7541 top: 1px;
7543 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7544 top: 1px;
7547 #edit-post-form textarea {
7548 min-height: calc(100vh - 345px);
7553 /*************/
7554 /* ACCORDIUS */
7555 /*************/
7557 /*======*/
7558 /* TAGS */
7559 /*======*/
7561 #tags {
7562 order: 12;
7563 display: flex;
7564 flex-basis: 100%;
7565 justify-content: center;
7566 margin: 0;
7567 flex-flow: row wrap;
7568 align-items: flex-start;
7571 /*===============*/
7572 /* CLASSIC THEME */
7573 /*===============*/
7575 /*++++++*/
7576 /* TAGS */
7577 /*++++++*/
7579 #tags {
7580 padding: 0.25em 0.5em;
7581 line-height: 1;
7582 justify-content: flex-start;
7583 margin: 0.5em 0 0 0;
7585 #tags::before {
7586 content: "Tags:";
7587 margin: 0 0.25em 0 0;
7588 padding: 3px 0;
7589 color: #999;
7591 #tags a {
7592 border-radius: 6px;
7593 background-color: #fffec2;
7594 border: 1px solid #d9b600;
7595 padding: 3px 6px;
7596 line-height: 1;
7597 margin: 0.25em;
7598 font-size: 0.9375em;
7599 text-decoration: none;
7600 color: #537254;
7602 #tags a:hover {
7603 text-decoration: none;
7604 background-color: #ecc700;
7605 color: #000;
7607 #tags a:active {
7608 color: #d00;