Reorganization of files & paths; support for named additions
[lw2-viewer.git] / www / css / style-zero.windows.css
blob4d6deaba8eba044c204b4a1647c1b843c844b8f7
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 /*=----------------------------=*/
30 /*= Immediate children of body =*/
31 /*=----------------------------=*/
33 body > * {
34 width: calc(100% - 300px);
35 min-width: 900px;
36 max-width: 900px;
38 #content {
39 margin: 0 auto;
40 padding: 0 30px;
41 position: relative;
42 overflow: visible;
43 display: grid;
44 grid-template-columns: repeat(3, 1fr);
45 grid-auto-flow: dense;
47 #content::before {
48 content: "";
49 display: block;
50 position: absolute;
51 top: 0;
52 left: 0;
53 width: 100%;
54 height: 100%;
55 z-index: -1;
56 pointer-events: none;
59 /*=---------=*/
60 /*= Content =*/
61 /*=---------=*/
63 #content > * {
64 grid-column: 1 / span 3;
67 /*=----------------------=*/
68 /*= Floating UI elements =*/
69 /*=----------------------=*/
71 #ui-elements-container {
72 position: fixed;
73 height: 100vh;
74 top: 0;
75 left: 0;
76 right: 0;
77 margin: auto;
78 z-index: 10000;
79 pointer-events: none;
81 #ui-elements-container > * {
82 pointer-events: auto;
85 /*=----------------=*/
86 /*= Images overlay =*/
87 /*=----------------=*/
88 /* (To exclude images in posts from theme tweaks) */
90 #images-overlay {
91 position: absolute;
92 z-index: 1;
93 left: 0;
94 right: 0;
95 margin: auto;
98 /***********/
99 /* NAV BAR */
100 /***********/
102 .nav-bar {
103 margin: 0 -30px;
105 .nav-bar {
106 display: flex;
109 /*=---------------=*/
110 /*= Nav bar items =*/
111 /*=---------------=*/
113 .nav-item {
114 flex: 1 1 auto;
116 .nav-item * {
117 text-overflow: ellipsis;
118 white-space: nowrap;
119 overflow: hidden;
121 .nav-inner {
122 padding: 12px 30px;
123 text-align: center;
124 display: block;
125 position: relative;
127 #secondary-bar .nav-inner {
128 padding: 4px 0;
131 /*=------------=*/
132 /*= Bottom bar =*/
133 /*=------------=*/
135 h1.listing ~ #bottom-bar {
136 margin-top: 1.25em;
138 #bottom-bar .nav-item {
139 flex: 1 1 0;
142 /*=-----------------=*/
143 /*= Accesskey hints =*/
144 /*=-----------------=*/
146 .nav-inner::after {
147 content: attr(accesskey);
148 display: none;
151 /*=---------------=*/
152 /*= Pagination UI =*/
153 /*=---------------=*/
155 #bottom-bar .nav-item a::before,
156 #top-nav-bar a::before {
157 font-family: Font Awesome;
158 font-weight: 900;
159 font-size: 0.8em;
160 position: relative;
161 bottom: 1px;
162 margin-right: 0.5em;
164 #bottom-bar #nav-item-first a::before,
165 #top-nav-bar a.nav-item-first::before {
166 content: "\F33e";
168 #bottom-bar #nav-item-top a::before {
169 content: "\F062";
171 #bottom-bar #nav-item-prev a::before,
172 #top-nav-bar a.nav-item-prev::before {
173 content: "\F060";
175 #bottom-bar #nav-item-next a::before,
176 #top-nav-bar a.nav-item-next::before {
177 content: "\F061";
179 #bottom-bar #nav-item-last a::before,
180 #top-nav-bar a.nav-item-last::before {
181 content: "\F340";
183 #bottom-bar #nav-item-next a::before {
184 margin-left: -2em;
185 margin-right: 0;
186 left: 3.8em;
188 #bottom-bar #nav-item-last a::before {
189 margin-left: -1.8em;
190 margin-right: 0;
191 left: 3.4em;
194 /*= Hover tooltips =*/
196 #top-nav-bar a {
197 position: relative;
199 #top-nav-bar a::after {
200 bottom: calc(100% - 3px);
201 content: attr(data-target-page);
203 #bottom-bar a:not([href='#top'])::after {
204 content: "Page " attr(data-target-page);
205 top: unset;
206 left: 0;
207 bottom: 4px;
209 #top-nav-bar a::after,
210 #bottom-bar a:not([href='#top'])::after {
211 display: block;
212 position: absolute;
213 font-size: 0.75rem;
214 width: 100%;
215 line-height: 1;
216 visibility: hidden;
218 #top-nav-bar a:hover::after,
219 #bottom-bar a:hover::after {
220 visibility: visible;
223 /*=-----------------------=*/
224 /*= Decorative bottom bar =*/
225 /*=-----------------------=*/
226 /* (On short pages with no pagination) */
228 #bottom-bar.decorative {
229 position: relative;
231 #bottom-bar.decorative .nav-item {
232 display: none;
235 /*=------------=*/
236 /*= Search tab =*/
237 /*=------------=*/
239 #nav-item-search {
240 flex: 4 1 auto;
242 #nav-item-search form::before {
243 content: "\F002";
244 font-family: Font Awesome;
245 font-weight: 900;
246 display: inline-block;
247 vertical-align: top;
248 height: 23px;
249 width: 23px;
251 #nav-item-search input {
252 height: 23px;
253 width: calc(95% - 80px);
254 padding: 1px 4px;
256 #nav-item-search button {
257 height: 21px;
260 /*=-----------=*/
261 /*= Login tab =*/
262 /*=-----------=*/
264 #nav-item-login {
265 position: relative;
266 padding-right: 0.5em;
269 /*******************/
270 /* INBOX INDICATOR */
271 /*******************/
273 #inbox-indicator {
274 position: absolute;
275 top: 1px;
276 right: 0;
277 height: 100%;
278 visibility: hidden;
280 #inbox-indicator::before {
281 content: "\F0E0";
282 font-family: "Font Awesome";
283 color: #bbb;
284 font-size: 1.1875rem;
285 position: absolute;
286 height: 100%;
287 right: 0;
288 top: 0;
289 padding: 0 0.45em;
290 visibility: visible;
291 font-weight: 900;
293 #inbox-indicator.new-messages::before {
294 color: #f00;
295 text-shadow:
296 0 0 1px #777,
297 0.5px 0.5px 1px #777;
299 a#inbox-indicator:hover::before {
300 color: #fff;
301 text-shadow:
302 0 0 1px #000,
303 0 0 2px #000,
304 0 0 4px #000,
305 0 0 1px #777,
306 0.5px 0.5px 1px #777;
308 a#inbox-indicator.new-messages:hover::before {
309 text-shadow:
310 0 0 1px #f00,
311 0 0 2px #f00,
312 0 0 4px #f00,
313 0 0 1px #777,
314 0.5px 0.5px 1px #777;
317 /****************/
318 /* PAGE TOOLBAR */
319 /****************/
321 .page-toolbar {
322 font-size: 0.9em;
323 line-height: 1.8;
324 text-align: right;
325 margin-right: -20px;
327 #content > .page-toolbar {
328 grid-column: 3;
330 #content.user-page > .page-toolbar {
331 grid-column: 2 / span 2;
334 /*=--------------------------=*/
335 /*= Page toolbar items (all) =*/
336 /*=--------------------------=*/
338 .page-toolbar > * {
339 display: inline-block;
340 margin-left: 1.5em;
342 .page-toolbar .button::before {
343 font-family: "Font Awesome";
344 font-size: 0.9em;
345 padding-right: 0.3em;
348 /*=-------------------------------=*/
349 /*= Page toolbar items (specific) =*/
350 /*=-------------------------------=*/
352 .new-post::before {
353 content: '\F067';
354 font-weight: 900;
356 .new-private-message::before {
357 content: '\F075';
358 font-weight: 400;
360 .logout-button::before {
361 content: '\F2F5';
362 font-weight: 900;
364 .rss::before {
365 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
366 display: inline-block;
367 width: 1em;
368 padding-right: 0.2em;
369 position: relative;
370 top: 1px;
373 /*********************/
374 /* TOP PAGINATION UI */
375 /*********************/
377 #top-nav-bar {
378 grid-column: 2;
379 margin: 0.25em 0 0 0;
380 padding: 0.75em 0 0 0;
381 text-align: center;
382 font-size: 1.25em;
383 display: flex;
384 justify-content: center;
386 #top-nav-bar a {
387 line-height: 1;
389 #top-nav-bar a.disabled {
390 pointer-events: none;
391 visibility: hidden;
393 #top-nav-bar .page-number {
394 position: relative;
395 display: inline-block;
396 width: 1.5em;
398 #top-nav-bar .page-number-label {
399 position: absolute;
400 font-size: 0.5em;
401 text-transform: uppercase;
402 width: 100%;
403 bottom: 90%;
404 left: 0;
406 #top-nav-bar a::before {
407 margin: 0.5em;
408 display: inline-block;
411 /****************/
412 /* SUBLEVEL NAV */
413 /****************/
415 .sublevel-nav {
416 text-align: center;
417 display: flex;
418 justify-content: center;
419 margin: 1em 0 0 0;
421 #content > .sublevel-nav:not(.sort) {
422 grid-row: 5;
423 grid-column: 2;
424 align-self: start;
426 .sublevel-nav .sublevel-item {
427 flex: 0 0 6em;
428 padding: 0.125em 0.5em;
429 font-size: 1.125rem;
431 .sublevel-nav .sublevel-item:active {
432 transform: none;
434 .sublevel-nav .sublevel-item.selected {
435 cursor: default;
438 /***********************/
439 /* SORT ORDER SELECTOR */
440 /***********************/
442 .sublevel-nav.sort {
443 position: relative;
444 margin-top: 8px;
445 font-size: 0.75em;
447 #content > .sublevel-nav.sort {
448 grid-column: 3;
449 grid-row: 5 / span 2;
450 justify-self: end;
451 align-self: start;
452 flex-flow: column;
454 #content.index-page > .sublevel-nav.sort {
455 grid-column: 1;
456 grid-row: 3 / span 1;
457 justify-self: start;
458 flex-flow: row;
461 .sublevel-nav.sort::before {
462 content: "Sort";
463 font-size: 0.75rem;
464 position: absolute;
465 top: 0;
466 left: 0;
467 width: 100%;
469 .sublevel-nav.sort .sublevel-item {
470 line-height: 1;
471 font-size: 0.875rem;
472 flex-basis: unset;
475 /*******************************/
476 /* COMMENTS SORT MODE SELECTOR */
477 /*******************************/
479 .comments > .sublevel-nav.sort {
480 margin: 1em auto 0 auto;
482 @supports (width: -moz-fit-content) {
483 .comments > .sublevel-nav.sort {
484 width: -moz-fit-content;
487 @supports (width: fit-content) {
488 .comments > .sublevel-nav.sort {
489 width: fit-content;
493 /******************/
494 /* WIDTH SELECTOR */
495 /******************/
497 #width-selector {
498 position: absolute;
499 top: 4px;
500 right: -78px;
502 #width-selector button {
503 width: 22px;
504 height: 22px;
505 padding: 6px;
506 margin: 1px;
507 overflow: hidden;
508 background-repeat: no-repeat;
509 background-size: 100%;
510 background-origin: content-box;
512 #width-selector button,
513 #width-selector button:active,
514 #width-selector button:focus {
515 text-shadow: none;
516 color: transparent;
518 #width-selector button:disabled {
519 cursor: auto;
521 #width-selector button.select-width-normal {
522 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
524 #width-selector button.select-width-wide {
525 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
527 #width-selector button.select-width-fluid {
528 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
531 /*=----------------=*/
532 /*= Hover tooltips =*/
533 /*=----------------=*/
535 #width-selector button::after {
536 content: attr(data-name);
537 position: absolute;
538 display: block;
539 left: 0;
540 width: 100%;
541 text-align: center;
542 top: 56px;
543 visibility: hidden;
545 #width-selector button.selected::after {
546 content: attr(data-name) " (selected)";
548 #width-selector button:hover:not(:active)::after {
549 visibility: visible;
552 head.content-width-normal + body > * {
553 max-width: 900px;
555 head.content-width-wide + body > * {
556 max-width: 1150px;
558 head.content-width-fluid + body > * {
559 max-width: calc(100% - 300px);
562 /******************/
563 /* THEME SELECTOR */
564 /******************/
566 #theme-selector {
567 position: absolute;
568 top: 3px;
569 left: -41px;
570 opacity: 0.4;
571 display: table;
572 max-width: 40px;
574 #theme-selector:hover {
575 opacity: 1.0;
578 /*=----------------------=*/
579 /*= Theme select buttons =*/
580 /*=----------------------=*/
582 .theme-selector button {
583 display: table-cell;
584 width: 26px;
585 height: 26px;
586 padding: 5px;
587 margin: 1px 7px 0 7px;
588 color: transparent;
589 background-size: 16px 16px;
590 background-origin: content-box;
592 .theme-selector button,
593 .theme-selector button:hover,
594 .theme-selector button:active,
595 .theme-selector button:focus {
596 text-shadow: none;
597 color: transparent;
599 .theme-selector button:disabled {
600 cursor: auto;
603 /*=----------------------------=*/
604 /*= Pre-rendered button images =*/
605 /*=----------------------------=*/
606 /* (Each is just a capital letter A through whatever) */
608 .theme-selector button:nth-of-type(1) {
609 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
611 .theme-selector button:nth-of-type(2) {
612 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
614 .theme-selector button:nth-of-type(3) {
615 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=');
617 .theme-selector button:nth-of-type(4) {
618 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
620 .theme-selector button:nth-of-type(5) {
621 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
623 .theme-selector button:nth-of-type(6) {
624 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
626 .theme-selector button:nth-of-type(7) {
627 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
629 .theme-selector button:nth-of-type(8) {
630 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
632 .theme-selector button:nth-of-type(9) {
633 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
636 /*=------------------------------=*/
637 /*= Theme select button tooltips =*/
638 /*=------------------------------=*/
639 /* (with the name & description of the theme that each button selects) */
641 #theme-selector button {
642 position: relative;
643 z-index: 1;
645 #theme-selector button::before {
646 content: attr(data-theme-name);
647 position: absolute;
648 top: 0;
649 right: 100%;
650 padding: 5px 6px 6px 6px;
651 line-height: 1;
652 width: 6em;
653 text-align: right;
654 z-index: 1;
655 visibility: hidden;
657 #theme-selector:hover button::before {
658 visibility: visible;
660 #theme-selector:hover ~ #theme-tweaker-toggle,
661 #theme-selector:active ~ #theme-tweaker-toggle {
662 z-index: -1;
665 /************************/
666 /* THEME TWEAKER TOGGLE */
667 /************************/
669 #theme-tweaker-toggle {
670 position: absolute;
671 top: 7px;
672 left: -75px;
674 #theme-tweaker-toggle button {
675 font-family: Font Awesome;
676 font-weight: 900;
677 font-size: 1.25rem;
678 opacity: 0.4;
679 z-index: 1;
681 #theme-tweaker-toggle button:hover {
682 opacity: 1.0;
685 /*******************/
686 /* QUICKNAV WIDGET */
687 /*******************/
689 #quick-nav-ui {
690 position: absolute;
691 right: -67px;
692 bottom: 20px;
694 #quick-nav-ui a {
695 font-family: 'Font Awesome';
696 font-weight: 900;
697 font-size: 1.5rem;
698 line-height: 1.7;
699 text-align: center;
700 display: block;
701 width: 40px;
702 height: 40px;
703 margin: 10px 0 0 0;
705 #quick-nav-ui a[href='#comments'].no-comments {
706 pointer-events: none;
708 #quick-nav-ui a {
709 visibility: hidden;
711 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
712 visibility: visible;
715 /************************/
716 /* NEW COMMENT QUICKNAV */
717 /************************/
719 #new-comment-nav-ui {
720 position: absolute;
721 right: -112px;
722 bottom: 42px;
724 #new-comment-nav-ui > * {
725 display: block;
726 position: relative;
728 #new-comment-nav-ui.no-comments {
729 display: none;
732 /*=--------------------=*/
733 /*= New comments count =*/
734 /*=--------------------=*/
736 #new-comment-nav-ui .new-comments-count {
737 width: 2em;
738 font-size: 1.25rem;
739 line-height: 1.1;
740 text-align: center;
741 left: 1px;
742 cursor: pointer;
744 #new-comment-nav-ui .new-comments-count::selection {
745 background-color: transparent;
747 #new-comment-nav-ui .new-comments-count::after {
748 content: "NEW";
749 display: block;
750 font-size: 0.625rem;
753 /*=-----------------------------------=*/
754 /*= Next/previous new comment buttons =*/
755 /*=-----------------------------------=*/
757 #new-comment-nav-ui .new-comment-sequential-nav-button {
758 font-size: 1.75rem;
759 font-family: 'Font Awesome';
760 font-weight: 900;
761 width: 1.5em;
762 z-index: 5001;
764 #new-comment-nav-ui .new-comment-previous {
765 top: 8px;
767 #new-comment-nav-ui .new-comment-next {
768 bottom: 6px;
770 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
771 cursor: auto;
772 pointer-events: none;
775 /*******************/
776 /* HNS DATE PICKER */
777 /*******************/
779 #hns-date-picker {
780 position: absolute;
781 bottom: 72px;
782 right: -253px;
783 opacity: 0.6;
785 #hns-date-picker:hover,
786 #hns-date-picker:focus-within {
787 opacity: 1.0;
789 #hns-date-picker.no-comments {
790 display: none;
793 /*=---------------=*/
794 /*= "Since" label =*/
795 /*=---------------=*/
797 #hns-date-picker span {
798 display: block;
799 font-size: 0.75rem;
800 text-transform: uppercase;
803 /*=--------------------=*/
804 /*= "Since" text field =*/
805 /*=--------------------=*/
807 #hns-date-picker input {
808 margin-top: 1px;
809 padding: 1px 3px;
810 width: 140px;
811 text-align: center;
812 box-shadow: 0 0 0 1px transparent;
815 /************************/
816 /* ANTI-KIBITZER TOGGLE */
817 /************************/
819 #anti-kibitzer-toggle {
820 position: absolute;
821 right: -67px;
822 bottom: 225px;
824 #anti-kibitzer-toggle button {
825 display: block;
826 width: 40px;
827 height: 54px;
828 padding: 0;
830 #anti-kibitzer-toggle button::before,
831 #anti-kibitzer-toggle button::after {
832 font-family: Font Awesome;
834 #anti-kibitzer-toggle button::before {
835 content: "\F06E";
836 display: block;
837 font-size: 1.75em;
838 font-weight: 400;
840 #anti-kibitzer-toggle button::after {
841 content: "\F007\2004\F164";
842 font-size: 0.875em;
843 font-weight: 900;
845 #anti-kibitzer-toggle.engaged button::before {
846 content: "\F070";
849 /************************/
850 /* TEXT SIZE ADJUSTMENT */
851 /************************/
853 #text-size-adjustment-ui {
854 position: absolute;
855 top: 30px;
856 right: -78px;
857 opacity: 0.4;
859 #text-size-adjustment-ui:hover {
860 opacity: 1.0;
863 /* This doesn't work in Mozilla browsers, so hide it */
864 @-moz-document url-prefix() {
865 #text-size-adjustment-ui {
866 display: none;
870 /*=---------=*/
871 /*= Buttons =*/
872 /*=---------=*/
874 #text-size-adjustment-ui button {
875 font-weight: 900;
876 font-family: Font Awesome;
877 font-size: 0.75rem;
878 width: 24px;
879 height: 24px;
880 padding: 0;
882 #text-size-adjustment-ui button.default {
883 font-family: inherit;
884 font-size: 1.125rem;
885 position: relative;
886 top: 1px;
888 #text-size-adjustment-ui button:disabled {
889 opacity: 0.5;
891 #text-size-adjustment-ui button:disabled:hover {
892 cursor: default;
895 /*=----------------=*/
896 /*= Hover tooltips =*/
897 /*=----------------=*/
899 #text-size-adjustment-ui::after {
900 content: "Adjust text size";
901 position: absolute;
902 display: block;
903 left: 0;
904 width: 100%;
905 text-align: center;
906 top: 32px;
907 visibility: hidden;
908 font-size: 0.9em;
910 #text-size-adjustment-ui:hover::after {
911 visibility: visible;
914 /*******************************/
915 /* COMMENTS VIEW MODE SELECTOR */
916 /*******************************/
918 #comments-view-mode-selector {
919 position: absolute;
920 bottom: 30px;
921 left: -40px;
922 opacity: 0.6;
924 #comments-view-mode-selector:hover {
925 opacity: 1.0;
928 /*=---------=*/
929 /*= Buttons =*/
930 /*=---------=*/
932 #comments-view-mode-selector a {
933 display: block;
934 font-family: Font Awesome;
935 font-size: 1.25rem;
936 text-align: center;
937 opacity: 0.4;
938 padding: 0.25em;
939 z-index: 1;
941 #comments-view-mode-selector a.threaded {
942 transform: scaleY(-1);
943 font-weight: 900;
945 #comments-view-mode-selector a.chrono {
946 font-weight: normal;
948 #comments-view-mode-selector a.selected,
949 #comments-view-mode-selector a:hover {
950 opacity: 1.0;
951 text-decoration: none;
953 #comments-view-mode-selector a.selected {
954 cursor: default;
957 /************/
958 /* ARCHIVES */
959 /************/
961 .archive-nav {
962 margin: 1.25em 0.5em 0 0.5em;
963 padding: 0.25em;
965 .archive-nav > * {
966 display: flex;
968 .archive-nav *[class^='archive-nav-item'] {
969 line-height: 1;
970 flex: 1 1 5%;
971 text-align: center;
972 padding: 6px 4px 4px 4px;
973 max-width: 8%;
975 @-moz-document url-prefix() {
976 .archive-nav *[class^='archive-nav-item'] {
977 padding: 5px 4px;
980 .archive-nav-days .archive-nav-item-day {
981 font-size: 0.8em;
982 padding: 7px 0 5px 0;
983 max-width: 4%;
985 .archive-nav-days .archive-nav-item-day:first-child {
986 flex-basis: 10%;
989 /************/
990 /* LISTINGS */
991 /************/
993 h1.listing {
994 font-size: 1.875rem;
995 line-height: 1.15;
996 max-height: 1.15em;
997 position: relative;
1000 h1.listing a {
1001 position: relative;
1004 /* Links to link-posts (not the link-post links themselves; that's below) */
1005 h1.listing a[href^='http'] + a {
1006 margin-left: 0.25em;
1008 /* Link-post links */
1009 h1.listing a[href^="http"] {
1010 font-size: 0.8em;
1011 display: inline;
1012 vertical-align: top;
1013 position: relative;
1014 top: 4px;
1017 /*=----------------------=*/
1018 /*= Listing hover reveal =*/
1019 /*=----------------------=*/
1020 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1022 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1023 h1.listing a {
1024 max-width: 100%;
1025 display: inline-block;
1026 white-space: nowrap;
1027 text-overflow: ellipsis;
1028 overflow: hidden;
1029 border-bottom: 1px solid transparent;
1030 -webkit-hyphens: auto;
1031 -moz-hyphens: auto;
1032 -ms-hyphens: auto;
1033 hyphens: auto;
1034 z-index: 1;
1035 padding: 0 0 1px 1px;
1037 h1.listing a[href^='http'] + a {
1038 max-width: calc(100% - 33px);
1040 h1.listing a:hover,
1041 h1.listing a:focus {
1042 text-decoration: dotted underline;
1043 white-space: initial;
1044 overflow: visible;
1045 z-index: 2;
1047 h1.listing:focus-within::before {
1048 content: "\F105";
1049 font-family: Font Awesome;
1050 display: block;
1051 position: absolute;
1052 left: -0.75em;
1055 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1056 mouse movements) */
1058 h1.listing a:not(.edit-post-link):hover::before {
1059 content: "";
1060 position: absolute;
1061 top: -10px;
1062 right: -10px;
1063 bottom: -10px;
1064 left: -10px;
1065 z-index: -1;
1067 h1.listing a[href^="http"]:hover {
1068 text-decoration: none;
1072 /*=-----------------------=*/
1073 /*= In-listing edit links =*/
1074 /*=-----------------------=*/
1076 h1.listing .edit-post-link {
1077 position: absolute;
1078 margin: 0;
1081 /*=---------------------------------=*/
1082 /*= Error messages on listing pages =*/
1083 /*=---------------------------------=*/
1085 .listing-message {
1086 width: 100%;
1087 text-align: center;
1088 padding: 1.25em 0 1.25em 0;
1089 font-size: 1.375em;
1092 /*********************/
1093 /* LISTING POST-META */
1094 /*********************/
1096 h1.listing + .post-meta {
1097 position: relative;
1098 justify-content: flex-start;
1099 margin: 0 20px 0 21px;
1102 h1.listing + .post-meta > * {
1103 margin: 0 1em 0 0;
1106 h1.listing + .post-meta .post-section {
1107 width: 0;
1108 margin: 0;
1109 overflow: hidden;
1111 h1.listing + .post-meta .post-section::before {
1112 position: absolute;
1113 left: -36px;
1116 h1.listing + .post-meta .read-time {
1117 cursor: default;
1120 /**************/
1121 /* USER PAGES */
1122 /**************/
1124 /*=------------=*/
1125 /*= Pagination =*/
1126 /*=------------=*/
1128 #content.user-page > #top-nav-bar {
1129 grid-row: 6;
1132 /*=---------------------=*/
1133 /*= User's display name =*/
1134 /*=---------------------=*/
1136 #content.user-page h1.page-main-heading {
1137 margin: 0.25em 0 0 0;
1138 line-height: 1.1;
1139 grid-row: 4;
1142 /*=--------------------=*/
1143 /*= User's karma total =*/
1144 /*=--------------------=*/
1146 #content.user-page .user-stats {
1147 grid-column: 3;
1148 grid-row: 4;
1149 text-align: right;
1150 align-self: end;
1153 /*=----------------------=*/
1154 /*= Expanded vs. compact =*/
1155 /*=----------------------=*/
1157 #content.user-page #comments-list-mode-selector {
1158 grid-row: 5 / span 2;
1160 #content.user-page #comments-list-mode-selector button {
1161 display: block;
1164 /*=----------------------------------------------------=*/
1165 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1166 /*=----------------------------------------------------=*/
1168 #content.user-page .sublevel-nav {
1169 margin-bottom: 0.5em;
1172 /*=--------------=*/
1173 /*= User's posts =*/
1174 /*=--------------=*/
1176 #content.user-page h1.listing {
1177 margin: 0.5em 0 0 0;
1180 /*****************/
1181 /* CONVERSATIONS */
1182 /*****************/
1184 /*=----------------------=*/
1185 /*= List of participants =*/
1186 /*=----------------------=*/
1188 #content.conversation-page .conversation-participants {
1189 grid-column: 2 / span 2;
1190 grid-row: 3;
1191 text-align: right;
1192 margin: 0.5em 0 0 0;
1195 .conversation-participants ul,
1196 .conversation-participants li {
1197 list-style-type: none;
1198 display: inline-block;
1199 margin: 0;
1200 padding: 0;
1202 .conversation-participants li {
1203 margin-left: 0.375em;
1205 .conversation-participants li:not(:last-of-type)::after {
1206 content: ",";
1209 /*=-------------------------=*/
1210 /*= Posting controls (form) =*/
1211 /*=-------------------------=*/
1213 #content.conversation-page .posting-controls {
1214 padding: 0 0 1em 0;
1216 #content.conversation-page .post-meta-fields {
1217 overflow: auto;
1218 display: flex;
1219 flex-flow: row wrap;
1221 #content.conversation-page textarea {
1222 margin-top: 0.375em;
1224 #conversation-form {
1225 padding: 0 1em 3em 1em;
1227 #conversation-form input[type='text'],
1228 #conversation-form label {
1229 margin: 0.25em 0;
1231 #conversation-form label {
1232 width: 4em;
1233 text-align: right;
1234 padding: 2px 6px;
1235 border: 1px solid transparent;
1237 #conversation-form input[type='text'] {
1238 width: calc(100% - 4em);
1239 padding: 0.25em;
1241 #conversation-form input[type='submit'] {
1242 float: right;
1244 #content.conversation-page #markdown-hints-checkbox ~ label {
1245 white-space: nowrap;
1247 #content.conversation-page #markdown-hints {
1248 top: calc(100% + 2em);
1251 /*=--------------------=*/
1252 /*= Conversation title =*/
1253 /*=--------------------=*/
1255 #content.conversation-page h1.page-main-heading {
1256 text-align: center;
1257 margin: 0.5em 0;
1258 line-height: 1.15;
1261 /*=----------=*/
1262 /*= Messages =*/
1263 /*=----------=*/
1265 #content.conversation-page > ul.comment-thread:last-of-type {
1266 margin-bottom: 2em;
1269 /******************/
1270 /* SEARCH RESULTS */
1271 /******************/
1273 #content.search-results-page h1.listing {
1274 font-size: 1.625em;
1277 /**************/
1278 /* LOGIN PAGE */
1279 /**************/
1281 .login-container {
1282 margin: 2em 0;
1283 padding: 1em;
1284 display: flex;
1285 flex-flow: row wrap;
1288 .login-container form {
1289 flex-basis: 50%;
1290 display: grid;
1291 grid-row-gap: 0.5em;
1292 align-content: start;
1294 .login-container form label {
1295 text-align: right;
1296 padding: 0.25em 0.5em;
1297 white-space: nowrap;
1298 grid-column: 1;
1300 .login-container form input {
1301 grid-column: 2;
1302 padding: 0.25em;
1304 .login-container form input[type='submit'],
1305 .login-container form a {
1306 grid-column: 2;
1307 justify-self: center;
1309 .login-container form input[type='submit'] {
1310 width: 10em;
1311 padding: 0.35em;
1312 line-height: 1;
1313 margin: 0.5em 0 0 0;
1315 .login-container form h1 {
1316 text-align: center;
1317 margin: 0;
1318 grid-column: 2;
1321 /* “Log in” form */
1323 #login-form {
1324 grid-template-columns: 5.5em 1fr;
1325 padding: 0.5em 2em 0.5em 0;
1328 /* “Create account” form */
1330 #signup-form {
1331 font-size: 0.9em;
1332 grid-template-columns: 8.5em 1fr;
1333 padding: 0.5em 1em 1em 1em;
1335 #signup-form h1 {
1336 font-size: 1.7em;
1338 #signup-form input[type='submit'] {
1339 padding: 0.4em 0.5em 0.5em 0.5em;
1342 /* Log in tip */
1344 .login-container .login-tip {
1345 padding: 0.5em 0.5em 0.5em 3em;
1346 margin: 2em 4em 0 4em;
1347 text-indent: -2em;
1348 line-height: 1.4;
1350 .login-container .login-tip span {
1351 font-weight: bold;
1354 /* Message box */
1356 #content.login-page .error-box {
1357 margin: 1.5em 0.875em -1.5em 0.875em;
1359 .error-box, .success-box {
1360 padding: 0.25em;
1361 text-align: center;
1364 /***********************/
1365 /* PASSWORD RESET PAGE */
1366 /***********************/
1368 .reset-password-container {
1369 margin-bottom: 2em;
1371 .reset-password-container input[type='submit'] {
1372 padding: 0.2em 0.5em;
1373 width: unset;
1375 .reset-password-container input {
1376 margin-left: 0.5em;
1377 width: 12em;
1379 .reset-password-container label {
1380 display: inline-block;
1381 width: 9em;
1383 .reset-password-container form > div {
1384 margin: 0.2em;
1386 .reset-password-container .action-container {
1387 padding-left: 11em;
1388 padding-top: 0.2em;
1390 .reset-password-container .error-box {
1391 margin: unset;
1394 /*********************/
1395 /* TABLE OF CONTENTS */
1396 /*********************/
1398 .contents {
1399 float: right;
1400 min-width: 6em;
1401 max-width: 40%;
1402 margin: 1.25em 0 0.75em 1.25em;
1403 padding: 7px 14px 10px 10px;
1404 position: relative;
1405 z-index: 1;
1408 .contents-head {
1409 text-align: center;
1410 margin-bottom: 0.25em;
1413 .post-body .contents ul {
1414 list-style-type: none;
1415 margin: 0 0 0 0.5em;
1416 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1417 padding-left: 1em;
1418 font-size: 0.75em;
1420 .post-body .contents li {
1421 margin: 0.15em 0 0.3em 1em;
1422 text-align: left;
1423 text-indent: -1em;
1424 line-height: 1.2;
1425 position: relative;
1427 .post-body .contents li::before {
1428 position: absolute;
1429 width: 3em;
1430 display: block;
1431 text-align: right;
1432 left: -4.5em;
1434 .contents .toc-item-1 {
1435 counter-increment: toc-item-1;
1436 counter-reset: toc-item-2 toc-item-3;
1438 .contents .toc-item-1::before {
1439 content: counter(toc-item-1);
1441 .contents .toc-item-1 ~ .toc-item-2 {
1442 margin-left: 2.9em;
1443 font-size: 0.95em;
1445 .contents .toc-item-2 {
1446 counter-increment: toc-item-2;
1447 counter-reset: toc-item-3;
1449 .contents .toc-item-1 ~ .toc-item-2::before {
1450 content: counter(toc-item-1) "." counter(toc-item-2);
1452 .contents .toc-item-2::before {
1453 content: counter(toc-item-2);
1455 .contents .toc-item-1 + .toc-item-3 {
1456 counter-increment: toc-item-2 toc-item-3;
1458 .contents .toc-item-2 ~ .toc-item-3,
1459 .contents .toc-item-1 ~ .toc-item-3 {
1460 margin-left: 2.9em;
1461 font-size: 0.95em;
1463 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1464 margin-left: 5.7em;
1465 font-size: 0.9em;
1467 .contents .toc-item-3 {
1468 counter-increment: toc-item-3;
1470 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1471 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1473 .contents .toc-item-1 ~ .toc-item-3::before {
1474 content: counter(toc-item-1) "." counter(toc-item-3);
1476 .contents .toc-item-2 ~ .toc-item-3::before {
1477 content: counter(toc-item-2) "." counter(toc-item-3);
1479 .contents .toc-item-3::before {
1480 content: counter(toc-item-3);
1482 .contents .toc-item-4,
1483 .contents .toc-item-5,
1484 .contents .toc-item-6 {
1485 display: none;
1488 /********************/
1489 /* POSTS & COMMENTS */
1490 /********************/
1492 .post-meta > *,
1493 .comment-meta > * {
1494 display: inline-block;
1495 margin-right: 1em;
1496 font-size: 1.0625em;
1497 white-space: nowrap;
1499 .post-body,
1500 .comment-body {
1501 overflow-wrap: break-word;
1502 text-align: justify;
1504 .post-body p,
1505 .comment-body p {
1506 margin: 1em 0;
1508 .retracted .post-body,
1509 .retracted .comment-body {
1510 text-decoration: line-through;
1513 /*************/
1514 /* POST-META */
1515 /*************/
1517 .post-meta {
1518 display: flex;
1519 flex-flow: row wrap;
1520 justify-content: center;
1522 .post-meta .lw2-link {
1523 opacity: 0.5;
1524 order: 1;
1526 .post-meta > *,
1527 .post-meta .post-section::before {
1528 margin: 0 0.5em;
1530 .post-meta .post-section {
1531 order: -1;
1532 margin: 0;
1533 visibility: hidden;
1535 .post-meta .post-section::before {
1536 visibility: visible;
1537 font-family: "Font Awesome";
1538 font-weight: 900;
1540 .post-section.frontpage::before {
1541 content: "\F015";
1543 .post-section.featured::before {
1544 content: "\F005";
1546 .post-section.meta::before {
1547 content: "\F077";
1549 .post-section.personal::before {
1550 content: "\F007";
1552 .post-section.draft::before {
1553 content: "\F15B";
1555 .post-section.alignment-forum::before {
1556 content: "AF";
1557 font-family: Concourse;
1560 /*= Karma controls hover tooltips =*/
1562 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1563 .post .karma,
1564 .comment-item .karma {
1565 position: relative;
1567 .post .karma.active-controls::after,
1568 .comment-item .karma.active-controls::after {
1569 content: "Double-click for strong vote";
1570 position: absolute;
1571 pointer-events: none;
1572 display: block;
1573 left: 6px;
1574 max-width: calc(100% - 12px);
1575 line-height: 1.15;
1576 white-space: normal;
1577 text-align: center;
1578 font-size: 0.875rem;
1579 opacity: 0;
1580 transition: opacity 0.2s ease;
1582 .post .karma.active-controls:hover::after,
1583 .comment-item .karma.active-controls:hover::after {
1584 opacity: 1.0;
1587 .post .karma .karma-value::after,
1588 .comment-item .karma .karma-value::after {
1589 content: attr(title);
1590 position: absolute;
1591 pointer-events: none;
1592 display: block;
1593 left: 50%;
1594 transform: translateX(-50%);
1595 white-space: nowrap;
1596 text-align: center;
1597 font-size: 0.875rem;
1598 color: #bbb;
1599 opacity: 0;
1600 transition: opacity 0.2s ease;
1602 .post .karma .karma-value:hover::after,
1603 .comment-item .karma .karma-value:hover::after {
1604 opacity: 1.0;
1606 .comment-item .karma .karma-value:hover::after {
1607 z-index: 5001;
1611 /*********/
1612 /* POSTS */
1613 /*********/
1615 .post {
1616 max-width: 100%;
1619 .post-body {
1620 min-height: 8em;
1621 padding: 0 30px;
1622 line-height: 1.5;
1623 font-size: 1.3rem;
1624 overflow: auto;
1625 margin: 0.5em 0 0 0;
1627 h1.post-title {
1628 margin: 1.1em 0 0.35em 0;
1629 padding: 0 30px;
1630 text-align: center;
1631 font-size: 2.5em;
1632 line-height: 1;
1634 .post .post-meta {
1635 text-align: center;
1636 position: relative;
1637 z-index: 2;
1639 .post .top-post-meta:last-child {
1640 margin-bottom: 40px;
1642 .post .bottom-post-meta {
1643 margin: 0;
1644 padding: 20px 0 22px 0;
1647 /**************/
1648 /* LINK POSTS */
1649 /**************/
1651 .post.link-post > .post-body > p:first-child {
1652 text-align: center;
1653 font-size: 1.125em;
1654 margin: 0.5em 0 0 0;
1656 .post.link-post > .post-body > p:only-child {
1657 font-size: 1.5em;
1658 margin: 1em 0;
1660 .post.link-post a.link-post-link::before {
1661 content: "\F0C1";
1662 font-family: Font Awesome;
1663 font-weight: 900;
1664 font-size: 0.75em;
1665 position: relative;
1666 top: -2px;
1667 margin-right: 0.25em;
1670 /************/
1671 /* COMMENTS */
1672 /************/
1674 .comments {
1675 max-width: 100%;
1676 padding: 0 0 1px 0;
1677 position: relative;
1679 .comments::before {
1680 content: "";
1681 position: absolute;
1682 display: block;
1683 top: 0;
1684 left: 0;
1685 width: 100%;
1686 height: 100%;
1687 pointer-events: none;
1689 ul.comment-thread {
1690 list-style-type: none;
1691 padding: 0;
1692 max-width: 100%;
1694 .comments .comment-thread > li {
1695 position: relative;
1697 #content > #top-nav-bar + .comment-thread .comment-item {
1698 margin-top: 0;
1701 .comment-item {
1702 margin: 2em 0 0 0;
1704 .comment-item .comment-item {
1705 margin: 1em 8px 8px 16px;
1707 .comment-item .comment-item + .comment-item {
1708 margin: 2em 8px 8px 16px;
1711 .comment-body {
1712 line-height: 1.45;
1713 font-size: 1.2rem;
1714 padding: 10px;
1716 .comment-body ul {
1717 list-style-type: circle;
1719 .comment-body > *:first-child {
1720 margin-top: 0;
1722 .comment-body > *:last-child {
1723 margin-bottom: 0;
1726 .comments-empty-message {
1727 width: 100%;
1728 text-align: center;
1729 padding: 0.75em 0 0.9em 0;
1730 font-size: 1.375em;
1733 /**********************************/
1734 /* DEEP COMMENT THREAD COLLAPSING */
1735 /**********************************/
1737 .comment-item input[id^="expand"] {
1738 display: none;
1740 .comment-item input[id^="expand"] + label {
1741 display: block;
1742 visibility: hidden;
1743 position: relative;
1744 margin: 8px 9px;
1746 .comment-item input[id^="expand"] + label::after {
1747 content: "(Expand " attr(data-child-count) " below)";
1748 visibility: visible;
1749 position: absolute;
1750 left: 0;
1751 white-space: nowrap;
1752 cursor: pointer;
1754 .comment-item input[id^="expand"]:checked + label::after {
1755 content: "(Collapse " attr(data-child-count) " below)";
1757 .comment-item input[id^="expand"] ~ .comment-thread {
1758 max-height: 34px;
1759 overflow: hidden;
1761 .comment-item input[id^="expand"] ~ .comment-thread > li:first-child {
1762 margin-top: 0;
1764 .comment-item input[id^="expand"]:checked ~ .comment-thread {
1765 max-height: 1000000px;
1768 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
1769 margin: 0;
1771 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
1772 display: none;
1775 /****************/
1776 /* COMMENT-META */
1777 /****************/
1779 .comment-meta {
1780 padding: 2px 24px 2px 10px;
1781 margin: 0 -1px;
1782 border: none;
1783 display: flex;
1784 flex-flow: row wrap;
1785 align-items: baseline;
1787 .user-page .comment-meta,
1788 .conversation-page .comment-meta {
1789 padding-right: 10px;
1791 .comment-meta .comment-post-title {
1792 flex-basis: 100%;
1793 overflow: hidden;
1794 text-overflow: ellipsis;
1795 line-height: 1.3;
1797 .conversation-page .comment-meta .comment-post-title {
1798 margin: 0;
1799 flex-basis: unset;
1800 flex: 1 0 auto;
1801 text-align: right;
1802 display: none; /* Not sure if we need to display this... */
1804 .comment-item .author:not(.redacted).original-poster::after {
1805 content: "\2004(OP)";
1806 font-size: 0.75em;
1809 /*****************************/
1810 /* COMMENT THREAD NAVIGATION */
1811 /*****************************/
1813 a.comment-parent-link:not(.inline-author),
1814 a.comment-parent-link.inline-author::before {
1815 opacity: 0.5;
1817 a.comment-parent-link:hover {
1818 opacity: 1.0;
1820 a.comment-parent-link::before {
1821 content: "\F062";
1822 font-family: "Font Awesome";
1823 font-weight: 900;
1824 font-size: 0.75rem;
1825 line-height: 1;
1826 position: absolute;
1827 z-index: 1;
1828 display: block;
1829 padding: 3px 3px 0 3px;
1830 width: 16px;
1831 height: calc(100% + 2px);
1832 top: -1px;
1833 left: -17px;
1835 a.comment-parent-link::after {
1836 content: "";
1837 position: absolute;
1838 z-index: 0;
1839 display: block;
1840 width: calc(100% + 26px);
1841 height: calc(100% + 38px);
1842 top: -29px;
1843 left: -17px;
1844 pointer-events: none;
1845 overflow: hidden;
1846 visibility: hidden;
1848 a.comment-parent-link:hover::after {
1849 visibility: visible;
1852 .comment-child-links {
1853 flex-basis: 100%;
1855 .comment-child-link {
1856 margin: 0 0.25em;
1857 display: inline-block;
1859 .comment-child-link::before {
1860 content: ">";
1861 display: inline-block;
1862 margin: 0 2px 0 0;
1865 .comment-popup {
1866 position: fixed;
1867 top: 10%;
1868 right: 10%;
1869 max-width: 700px;
1870 z-index: 10001;
1871 font-size: 1rem;
1872 white-space: unset;
1873 pointer-events: none;
1875 .comment-popup .comment-parent-link {
1876 display: none;
1878 .comment-popup .comment-body {
1879 font-size: 1.0625rem;
1882 /**********************/
1883 /* COMMENT PERMALINKS */
1884 /**********************/
1885 /********************/
1886 /* COMMENT LW LINKS */
1887 /********************/
1889 .comment-meta .permalink::before,
1890 .comment-meta .lw2-link::before,
1891 .individual-thread-page a.comment-parent-link:empty::before {
1892 content: "";
1893 display: inline-block;
1894 width: 1rem;
1895 height: 1rem;
1896 border-radius: 3px;
1897 box-shadow:
1898 0 0 0 1px #fff,
1899 0 0 0 2px #00e,
1900 0 0 0 3px transparent;
1901 padding: 0 0 0 2px;
1902 background-size: 100%;
1903 position: relative;
1904 top: 2px;
1905 opacity: 0.5;
1907 .comment-meta .permalink::before {
1908 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');
1910 .comment-meta .lw2-link::before {
1911 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==');
1913 .individual-thread-page a.comment-parent-link:empty::before {
1914 left: unset;
1915 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==');
1917 .comment-meta .permalink:hover::before {
1918 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');
1920 .comment-meta .lw2-link:hover::before {
1921 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==');
1923 .individual-thread-page a.comment-parent-link:empty:hover::before {
1924 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=');
1926 .comment-meta .permalink:hover::before,
1927 .comment-meta .lw2-link:hover::before,
1928 .individual-thread-page a.comment-parent-link:empty:hover::before {
1929 box-shadow:
1930 0 0 0 2px #00e,
1931 0 0 0 3px transparent;
1932 opacity: 1.0;
1933 filter: unset;
1935 .comment-meta .permalink:active::before,
1936 .comment-meta .lw2-link:active::before,
1937 .individual-thread-page a.comment-parent-link:empty:active::before {
1938 transform: scale(0.9);
1941 .comment-meta .permalink,
1942 .comment-meta .lw2-link,
1943 .individual-thread-page .comment-parent-link:empty {
1944 position: relative;
1945 opacity: 1.0;
1947 .comment-meta .permalink::after,
1948 .comment-meta .lw2-link::after,
1949 .individual-thread-page .comment-parent-link:empty::after {
1950 content: "";
1951 width: 30px;
1952 height: 30px;
1953 display: block;
1954 position: absolute;
1955 top: -2px;
1956 left: -7px;
1957 box-shadow: none;
1958 pointer-events: auto;
1959 visibility: visible;
1962 /*************************/
1963 /* COMMENTS COMPACT VIEW */
1964 /*************************/
1966 #comments-list-mode-selector,
1967 #content.index-page #comments-list-mode-selector,
1968 #content.user-page #comments-list-mode-selector {
1969 padding-top: 6px;
1970 grid-column: 1;
1971 position: unset;
1972 z-index: 1;
1973 justify-self: start;
1974 align-self: start;
1976 #comments-list-mode-selector button {
1977 color: transparent;
1978 width: 32px;
1979 height: 32px;
1980 padding: 6px;
1981 margin: 1px;
1982 overflow: hidden;
1983 background-repeat: no-repeat;
1984 background-size: 100%;
1985 background-origin: content-box;
1987 #comments-list-mode-selector button:disabled {
1988 cursor: auto;
1990 #comments-list-mode-selector button.expanded {
1991 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
1993 #comments-list-mode-selector button.compact {
1994 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
1996 @media only screen and (max-resolution: 1dppx) {
1997 #comments-list-mode-selector button.expanded {
1998 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2000 #comments-list-mode-selector button.compact {
2001 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2005 #content > ul.comment-thread > li.comment-item,
2006 #content.compact > ul.comment-thread > li.comment-item {
2007 margin: 0;
2010 #content > .comment-thread {
2011 margin: 1em 0;
2013 #content.compact > .comment-thread {
2014 font-size: 0.9375rem;
2015 margin: 0.5em 0;
2017 #content.compact > .comment-thread:hover {
2018 z-index: 1;
2020 #content.compact > .comment-thread .comment-body {
2021 font-size: 1.0625rem;
2023 #content.compact > .comment-thread .comment-item {
2024 max-height: 61px;
2025 margin-top: 1em;
2026 overflow: hidden;
2027 position: relative;
2028 pointer-events: none;
2030 #content.compact > .comment-thread .comment-item::after {
2031 content: "…";
2032 position: absolute;
2033 right: 0;
2034 bottom: 0;
2035 font-size: 2rem;
2036 line-height: 1;
2037 padding: 0 16px 10px 64px;
2038 pointer-events: auto;
2040 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2041 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2042 #content.compact > .comment-thread .comment-item.expanded {
2043 overflow: visible;
2044 pointer-events: auto;
2045 z-index: 10;
2048 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2049 #content.compact > .comment-thread.expanded .comment-item {
2050 overflow: visible;
2051 pointer-events: auto;
2052 z-index: 10;
2055 #content.compact > .comment-thread .comment-item .comment-meta {
2056 white-space: nowrap;
2057 overflow: hidden;
2058 text-overflow: ellipsis;
2059 padding: 2px 10px;
2061 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2062 white-space: unset;
2064 #content.compact > .comment-thread .comment-item .comment-meta a {
2065 pointer-events: auto;
2067 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2068 display: inline;
2070 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2071 margin-left: 0.75em;
2073 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2074 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2075 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2076 max-height: unset;
2078 #content.compact > .comment-thread .comment-item:hover .comment,
2079 #content.compact > .comment-thread .comment-item.expanded .comment {
2080 position: relative;
2081 z-index: 1;
2082 margin-bottom: 2em;
2083 bottom: 0;
2085 #content.compact > .comment-thread .comment-item:hover .comment::before,
2086 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2087 content: "";
2088 position: absolute;
2089 display: block;
2090 width: calc(100% + 20px);
2091 height: calc(100% + 20px);
2092 z-index: -1;
2093 top: -10px;
2094 left: -10px;
2096 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2097 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2098 margin: 0;
2101 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2102 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2103 max-height: unset;
2105 #content.compact > .comment-thread.expanded .comment-item .comment {
2106 position: relative;
2107 z-index: 1;
2108 margin-bottom: 2em;
2109 bottom: 0;
2111 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2112 content: "";
2113 position: absolute;
2114 display: block;
2115 width: calc(100% + 14px);
2116 height: calc(100% + 20px);
2117 z-index: -1;
2118 top: -10px;
2119 left: -10px;
2121 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2122 margin: 0;
2124 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2125 content: "";
2126 display: block;
2127 position: fixed;
2128 top: 0;
2129 left: 0;
2130 width: 100%;
2131 height: 100%;
2132 z-index: -2;
2133 background-color: rgba(0,0,0,0.5);
2137 /*****************************/
2138 /* HIGHLIGHTING NEW COMMENTS */
2139 /*****************************/
2141 .new-comment::before {
2142 content: "";
2143 position: absolute;
2144 width: 100%;
2145 height: 100%;
2146 z-index: 5000;
2147 pointer-events: none;
2150 /***********************************/
2151 /* COMMENT THREAD MINIMIZE BUTTONS */
2152 /***********************************/
2154 .comment-minimize-button {
2155 font-family: Font Awesome;
2156 font-weight: 900;
2157 font-size: 1.25rem;
2158 line-height: 1;
2159 position: absolute;
2160 right: 1px;
2161 top: 1px;
2162 width: 18px;
2163 margin: 0;
2164 cursor: pointer;
2166 .comment-minimize-button:active {
2167 transform: scale(0.9);
2169 .comment-minimize-button::after {
2170 content: attr(data-child-count);
2171 font-weight: normal;
2172 font-size: 0.8125rem;
2173 position: absolute;
2174 left: 0;
2175 width: 100%;
2176 text-align: center;
2177 top: 21px;
2179 #content.individual-thread-page .comment-minimize-button {
2180 display: none;
2183 /***********************************/
2184 /* INDIVIDUAL COMMENT THREAD PAGES */
2185 /***********************************/
2187 .individual-thread-page > h1 {
2188 line-height: 1;
2189 margin: 0.75em 0 3px 0;
2191 .individual-thread-page .comments {
2192 border: none;
2195 /****************/
2196 /* VOTE BUTTONS */
2197 /****************/
2199 .vote {
2200 margin: 0;
2202 .vote {
2203 font-family: Font Awesome;
2204 font-weight: 900;
2205 border: none;
2207 .karma.waiting {
2208 opacity: 0.5;
2210 .karma.waiting button {
2211 pointer-events: none;
2214 /* Replicated karma controls at bottom of comments. */
2215 .comment-controls .karma {
2216 float: left;
2217 margin-left: -14px;
2218 font-size: 0.9375em;
2221 /*****************************/
2222 /* COMMENTING AND POSTING UI */
2223 /*****************************/
2225 .comment-controls {
2226 text-align: right;
2227 margin: 0 8px 8px 16px;
2228 position: relative;
2229 z-index: 9999;
2231 .comment-thread .comment-controls + .comment-thread > li:first-child {
2232 margin-top: 8px;
2234 .comments > .comment-controls {
2235 margin: 8px 0 0 0;
2237 .comments > .comment-controls:last-child {
2238 margin: 8px 0 16px 0;
2241 .posting-controls input[type='submit'] {
2242 margin: 6px;
2243 padding: 4px 10px;
2244 font-size: 1.125rem;
2247 .comment-controls .cancel-comment-button {
2248 position: absolute;
2249 right: 0;
2250 margin: 0;
2251 height: 27px;
2252 font-size: inherit;
2253 padding: 4px 8px 2px 4px;
2254 z-index: 1;
2256 .comment-controls .cancel-comment-button::before {
2257 font-family: Font Awesome;
2258 margin-right: 3px;
2259 content: '\F00D';
2260 font-weight: 900;
2261 font-size: 0.9em;
2262 opacity: 0.7;
2265 .comment + .comment-controls .action-button {
2266 font-weight: normal;
2267 font-size: 1.0625em;
2268 padding: 1px 6px;
2270 .comment-controls .action-button::before {
2271 font-family: Font Awesome;
2272 margin-right: 3px;
2274 .new-comment-button {
2275 font-size: 1.5rem;
2276 margin: 0 0.25em;
2278 .comment-controls .reply-button::before {
2279 content: '\F3E5';
2280 font-weight: 900;
2281 font-size: 0.9em;
2282 opacity: 0.6;
2285 .post-controls {
2286 text-align: right;
2287 margin: 0.75em 0 0 0;
2288 grid-row: 3;
2289 align-self: start;
2290 justify-self: end;
2292 .post {
2293 grid-row: 3;
2295 .edit-post-link {
2296 display: inline-block;
2297 margin-bottom: 0.25em;
2298 font-size: 1.125rem;
2300 .edit-post-link::before {
2301 margin-right: 0.3em;
2303 .comment-controls .edit-button::before,
2304 .edit-post-link::before {
2305 content: '\F303';
2306 font-family: "Font Awesome";
2307 font-weight: 900;
2308 font-size: 0.75em;
2309 position: relative;
2310 top: -1px;
2313 .comment-controls .delete-button {
2314 margin-right: 0.25em;
2316 .comment-controls .edit-button,
2317 .comment-controls .retract-button,
2318 .comment-controls .unretract-button {
2319 margin-right: 1em;
2321 .comment-controls .retract-button::before {
2322 content: '\F4B3';
2323 opacity: 0.6;
2325 .comment-controls .unretract-button::before {
2326 content: '\F075';
2327 opacity: 0.9;
2329 .comment-controls .delete-button::before {
2330 content: '\F05E';
2331 opacity: 0.7;
2333 .comment-controls .retract-button::before,
2334 .comment-controls .unretract-button::before,
2335 .comment-controls .delete-button::before {
2336 font-weight: 900;
2337 font-size: 0.9em;
2340 .comment-controls form {
2341 position: relative;
2343 .textarea-container {
2344 position: relative;
2346 .posting-controls textarea {
2347 display: block;
2348 width: 100%;
2349 height: 15em;
2350 min-height: 15em;
2351 max-height: calc(100vh - 6em);
2352 margin: 2px 0 0 0;
2353 padding: 4px 5px;
2354 font-size: 1.2rem;
2355 border-style: solid;
2356 border-width: 29px 1px 1px 1px;
2357 resize: none;
2360 /* GUIEdit buttons */
2362 .guiedit-buttons-container {
2363 position: absolute;
2364 left: 1px;
2365 top: 1px;
2366 width: calc(100% - 2px);
2367 height: 28px;
2368 text-align: left;
2369 padding: 1px 4px 0 4px;
2370 overflow: hidden;
2372 .comment-thread-page .guiedit-buttons-container {
2373 padding-right: 60px;
2375 .guiedit-buttons-container button {
2376 height: 26px;
2377 padding: 0 7px;
2378 font-weight: 900;
2379 font-size: 0.875rem;
2380 line-height: 1;
2381 position: static;
2383 .guiedit-buttons-container button:active {
2384 transform: none;
2386 .guiedit-buttons-container button:active div {
2387 transform: scale(0.9);
2389 .guiedit-buttons-container button sup {
2390 font-weight: bold;
2392 .guiedit::after {
2393 content: attr(data-tooltip);
2394 position: absolute;
2395 font-weight: normal;
2396 font-size: 1rem;
2397 top: 2px;
2398 left: 464px;
2399 height: 25px;
2400 padding: 4px 0;
2401 white-space: nowrap;
2402 visibility: hidden;
2404 .guiedit:hover::after {
2405 visibility: visible;
2408 /* Markdown hints */
2410 .posting-controls .markdown-reference-link {
2411 float: left;
2412 padding: 1px 0 0 6px;
2414 .posting-controls .markdown-reference-link a {
2415 padding-right: 1.5em;
2416 margin-right: 0.15em;
2417 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');
2418 background-size: 1.25em;
2419 background-repeat: no-repeat;
2420 background-position: right center;
2423 #markdown-hints-checkbox + label {
2424 float: left;
2425 margin: 2px 0 0 1em;
2426 line-height: 1.3;
2427 cursor: pointer;
2429 #edit-post-form #markdown-hints-checkbox + label {
2430 padding: 0;
2432 #markdown-hints-checkbox {
2433 visibility: hidden;
2434 float: left;
2436 #markdown-hints-checkbox + label::after {
2437 content: "(Show Markdown help)";
2439 #markdown-hints-checkbox:checked + label::after {
2440 content: "(Hide Markdown help)";
2442 #markdown-hints-checkbox + label::before {
2443 content: '\F059';
2444 font-family: Font Awesome;
2445 font-weight: 900;
2446 margin-right: 3px;
2448 #markdown-hints-checkbox:checked + label::before {
2449 font-weight: normal;
2451 #markdown-hints {
2452 margin: 4px 0 0 4px;
2453 padding: 4px 8px;
2454 position: absolute;
2455 text-align: left;
2456 top: calc(100% - 1em);
2457 z-index: 1;
2458 display: none;
2460 .comment-controls #markdown-hints {
2461 top: calc(100% + 1.75em);
2463 #markdown-hints-checkbox:checked ~ #markdown-hints {
2464 display: table;
2466 .markdown-hints-row {
2467 display: table-row;
2469 #markdown-hints .markdown-hints-row span,
2470 #markdown-hints .markdown-hints-row code {
2471 float: none;
2472 display: table-cell;
2473 border: none;
2474 background-color: inherit;
2475 padding: 0 12px 0 0;
2478 /******************/
2479 /* EDIT POST FORM */
2480 /******************/
2482 #edit-post-form {
2483 padding: 1em 1em 4em 1em;
2485 #edit-post-form .post-meta-fields {
2486 display: grid;
2487 grid-template-columns: 5em auto auto auto 1fr auto;
2488 margin-bottom: 0.625em;
2491 #edit-post-form label[for='title'],
2492 #edit-post-form label[for='url'],
2493 #edit-post-form label[for='section'] {
2494 grid-column: 1;
2496 #edit-post-form input[type='text'] {
2497 padding: 0.25em;
2498 grid-column: 2 / span 4;
2499 margin-bottom: 0.5em;
2502 #edit-post-form .link-post-checkbox,
2503 #edit-post-form .link-post-checkbox + label {
2504 grid-row: 1;
2505 grid-column: 6;
2507 #edit-post-form .question-checkbox,
2508 #edit-post-form .question-checkbox + label {
2509 grid-row: 3;
2510 grid-column: 5;
2511 justify-self: start;
2512 margin-left: 1.5em;
2515 #edit-post-form .post-meta-fields input[type='checkbox'] {
2516 height: 0;
2517 opacity: 0;
2518 pointer-events: none;
2520 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
2521 white-space: nowrap;
2522 position: relative;
2523 cursor: pointer;
2524 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
2525 align-self: start;
2527 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
2528 content: "";
2529 font-family: Font Awesome;
2530 font-size: 1.375rem;
2531 line-height: 0.7;
2532 text-indent: 1px;
2533 font-weight: 900;
2534 position: absolute;
2535 width: 20px;
2536 height: 20px;
2537 left: 5px;
2539 #edit-post-form label[for='url'],
2540 #edit-post-form input[name='url'] {
2541 display: none;
2543 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2544 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2545 display: initial;
2547 #edit-post-form label {
2548 line-height: normal;
2549 border: 1px solid transparent;
2550 text-align: right;
2551 padding: 0.25em 0.5em;
2552 white-space: nowrap;
2554 #edit-post-form input[type='radio'] {
2555 width: 0;
2556 margin: 0;
2557 opacity: 0;
2558 pointer-events: none;
2560 #edit-post-form input[type='radio'] + label {
2561 padding: 4px 12px;
2562 text-align: center;
2563 border-style: solid;
2564 border-width: 1px 1px 1px 0;
2565 cursor: pointer;
2567 #edit-post-form input[type='radio']:checked + label {
2568 cursor: default;
2571 #edit-post-form label[for='section'] {
2572 grid-row: 3;
2574 #edit-post-form input[type='radio'] + label {
2575 grid-row: 3;
2577 @supports (width: -moz-fit-content) {
2578 #edit-post-form input[type='radio'] + label {
2579 width: -moz-fit-content;
2582 @supports (width: fit-content) {
2583 #edit-post-form input[type='radio'] + label {
2584 width: fit-content;
2588 #edit-post-form textarea {
2589 min-height: 24em;
2592 #edit-post-form input[type='submit'] {
2593 padding: 6px 12px;
2594 float: right;
2596 #edit-post-form #markdown-hints {
2597 top: calc(100% + 2em);
2600 #edit-post-form button.guiedit div {
2601 overflow: visible;
2603 .guiedit-mobile-auxiliary-button {
2604 display: none;
2607 /***********/
2608 /* BUTTONS */
2609 /***********/
2611 button,
2612 input[type='submit'] {
2613 font-family: inherit;
2614 font-size: inherit;
2615 background-color: inherit;
2616 cursor: pointer;
2617 border: none;
2618 border-radius: 0;
2621 /************/
2622 /* HEADINGS */
2623 /************/
2625 .post-body h1,
2626 .post-body h2,
2627 .post-body h3,
2628 .post-body h4,
2629 .post-body h5,
2630 .post-body h6,
2631 .comment-body h1,
2632 .comment-body h2,
2633 .comment-body h3,
2634 .comment-body h4,
2635 .comment-body h5,
2636 .comment-body h6 {
2637 line-height: 1.1;
2638 margin: 1em 0 0.75em 0;
2639 text-align: left;
2642 .post-body h5,
2643 .post-body h6,
2644 .comment-body h5,
2645 .comment-body h6 {
2646 font-size: 1em;
2648 .post-body h4,
2649 .comment-body h4 {
2650 font-size: 1.2em;
2652 .post-body h3,
2653 .comment-body h3 {
2654 font-size: 1.4em;
2656 .post-body h2,
2657 .comment-body h2 {
2658 font-size: 1.75em;
2660 .post-body h1,
2661 .comment-body h1 {
2662 font-size: 2.1em;
2665 /**********/
2666 /* QUOTES */
2667 /**********/
2669 blockquote,
2670 .post-body .comment-box .comment-body {
2671 font-size: 0.9em;
2672 margin: 1em 0;
2673 padding-left: 0.5em;
2674 margin-left: 1px;
2675 padding-bottom: 3px;
2677 blockquote *:first-child {
2678 margin-top: 0;
2680 blockquote *:last-child {
2681 margin-bottom: 0;
2683 blockquote blockquote {
2684 font-size: 0.95em;
2687 /* Pseudo-blockquotes that LW sometimes uses for some reason */
2689 .post-body .comment-box .user-name {
2690 font-style: italic;
2692 .post-body .comment-box .user-name::after {
2693 content: ":";
2695 .post-body .comment-box {
2696 zoom: 1.25;
2699 /**********/
2700 /* IMAGES */
2701 /**********/
2703 #content img {
2704 max-width: 100%;
2707 img.inline-latex {
2708 position: relative;
2709 top: 2.5px;
2710 margin: 0 2px;
2713 #content figure {
2714 text-align: center;
2715 margin: 1.5em auto;
2718 p.imgonly,
2719 div.imgonly {
2720 text-align: center;
2723 /**********/
2724 /* TABLES */
2725 /**********/
2727 .post-body table,
2728 .comment-body table {
2729 border-collapse: collapse;
2730 font-family: Inconsolata, Menlo, monospace;
2731 font-size: 0.875em;
2733 .post-body table th,
2734 .post-body table td,
2735 .comment-body table th,
2736 .comment-body table td {
2737 text-align: left;
2738 padding: 4px 6px;
2739 line-height: 1.3;
2741 .post-body table td:nth-of-type(n+2),
2742 .comment-body table td:nth-of-type(n+2) {
2743 text-align: right;
2745 .post-body table caption,
2746 .comment-body table caption {
2747 margin: 0 0 0.25em 0;
2748 font-weight: bold;
2749 font-size: 1.125em;
2752 /********/
2753 /* MISC */
2754 /********/
2756 /*= Superscripts & subscripts =*/
2758 /* Make sure superscripts and subscripts do not affect line spacing. */
2759 sup, sub {
2760 vertical-align: baseline;
2761 position: relative;
2762 top: -0.5em;
2763 left: 0.05em;
2764 font-size: 0.8em;
2766 sub {
2767 top: 0.3em;
2770 /*= Code blocks & other "unstyled" text. =*/
2772 pre,
2773 code {
2774 font-family: Inconsolata, Menlo, monospace;
2776 pre {
2777 white-space: pre-wrap;
2779 code {
2780 font-size: 0.95em;
2781 display: inline-block;
2782 padding: 0 4px 1px 5px;
2784 pre > code {
2785 display: block;
2786 border-radius: 0;
2787 padding: 3px 4px 5px 8px;
2790 /*= Fractions =*/
2792 .frac::after {
2793 content: "\200B";
2796 /*= Removing browser default styling of various elements =*/
2798 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
2799 :focus {
2800 outline: none;
2803 /* Remove "embossed" appearance of horizontal rules. */
2804 hr {
2805 border: none;
2808 input,
2809 button,
2810 textarea {
2811 -webkit-appearance: none;
2812 -moz-appearance: none;
2813 appearance: none;
2816 input {
2817 font-family: inherit;
2818 font-size: inherit;
2819 font-weight: inherit;
2822 /*************/
2823 /* FOOTNOTES */
2824 /*************/
2826 ol {
2827 counter-reset: ordered-list;
2829 .footnote-definition {
2830 font-size: 0.9em;
2831 list-style-type: none;
2832 counter-increment: ordered-list;
2833 position: relative;
2835 .footnote-definition p {
2836 font-size: inherit !important;
2838 .footnote-definition::before {
2839 content: counter(ordered-list) ".";
2840 position: absolute;
2841 left: -2.5em;
2842 font-weight: bold;
2843 text-align: right;
2844 width: 2em;
2847 /*********/
2848 /* LISTS */
2849 /*********/
2851 li {
2852 margin-bottom: 0.5em;
2855 .post-body ol p,
2856 .post-body ul p,
2857 .comment-body ol p,
2858 .comment-body ul p {
2859 margin: 0.5em 0;
2862 .post-body ol {
2863 list-style: none;
2864 padding: 0;
2865 counter-reset: ol;
2867 .post-body ol > li {
2868 position: relative;
2869 counter-increment: ol;
2870 padding: 0 0 0 2.5em;
2871 margin: 0.25em 0 0 0;
2873 .post-body ol > li::before {
2874 content: counter(ol) ".";
2875 position: absolute;
2876 width: 2em;
2877 text-align: right;
2878 left: 0;
2880 .post-body ul {
2881 list-style: none;
2882 padding: 0;
2884 .post-body ul:not(.contents-list) li {
2885 position: relative;
2886 padding: 0 0 0 2.5em;
2887 margin: 0.25em 0 0 0;
2889 .post-body ul:not(.contents-list) li::before {
2890 content: "•";
2891 position: absolute;
2892 width: 2em;
2893 text-align: right;
2894 left: 0;
2896 .post-body li > ul:first-child > li {
2897 padding-left: 0;
2899 .post-body li > ul:first-child > li::before {
2900 content: none;
2903 /**************/
2904 /* ABOUT PAGE */
2905 /**************/
2907 #content.about-page .contents {
2908 margin-top: 0.25em;
2910 #content.about-page .accesskey-table {
2911 border-collapse: collapse;
2912 margin: auto;
2914 #content.about-page .accesskey-table th,
2915 #content.about-page .accesskey-table td {
2916 padding: 2px 6px;
2918 #content.about-page .accesskey-table td:first-child {
2919 padding-right: 1.5em;
2921 #content.about-page .accesskey-table td:last-child {
2922 text-align: center;
2923 font-family: Inconsolata, Menlo, monospace;
2925 #content.about-page h3:nth-of-type(n+2) {
2926 clear: both;
2929 /******************/
2930 /* IMAGES OVERLAY */
2931 /******************/
2933 #images-overlay + #content .post-body img {
2934 visibility: hidden;
2937 #images-overlay div {
2938 position: absolute;
2940 #images-overlay div::after {
2941 content: "Click to enlarge";
2942 display: block;
2943 position: absolute;
2944 margin: auto;
2945 left: 0;
2946 right: 0;
2947 bottom: 10px;
2948 padding: 6px 10px;
2949 font-size: 1.25rem;
2950 background-color: rgba(0,0,0,0.6);
2951 color: #fff;
2952 border-radius: 5px;
2953 opacity: 0.0;
2954 transition: opacity 0.15s ease;
2955 pointer-events: none;
2957 @supports (width: -moz-fit-content) {
2958 #images-overlay div::after {
2959 width: -moz-fit-content;
2962 @supports (width: fit-content) {
2963 #images-overlay div::after {
2964 width: fit-content;
2967 #images-overlay div:hover::after {
2968 opacity: 1.0;
2971 #images-overlay img {
2972 width: 100%;
2975 /***************/
2976 /* IMAGE FOCUS */
2977 /***************/
2979 #content img:hover,
2980 #images-overlay img:hover {
2981 filter: drop-shadow(0 0 3px #777);
2982 cursor: zoom-in;
2984 #content img:active,
2985 #images-overlay img:active {
2986 transform: scale(0.975);
2989 #image-focus-overlay {
2990 position: fixed;
2991 top: 0;
2992 right: 0;
2993 bottom: 0;
2994 left: 0;
2995 display: none;
2996 cursor: zoom-out;
2998 #image-focus-overlay::before {
2999 content: "";
3000 display: block;
3001 position: absolute;
3002 top: 0;
3003 right: 0;
3004 bottom: 0;
3005 left: 0;
3006 background-color: #000;
3007 opacity: 0.5;
3008 z-index: -1;
3010 #image-focus-overlay.engaged {
3011 display: initial;
3014 #image-focus-overlay img {
3015 margin: auto;
3016 position: absolute;
3017 left: 50%;
3018 top: 50%;
3019 transform: translateX(-50%) translateY(-50%);
3022 #image-focus-overlay .help-overlay {
3023 position: absolute;
3024 display: flex;
3025 flex-flow: column;
3026 z-index: 2;
3027 font-size: 1.5rem;
3028 padding: 1em;
3029 border-radius: 10px;
3030 bottom: 1em;
3031 right: 1em;
3032 overflow: hidden;
3033 white-space: nowrap;
3034 color: transparent;
3035 visibility: hidden;
3036 transition:
3037 visibility 1s ease,
3038 color 1s ease,
3039 background-color 1s ease,
3040 bottom 0.3s ease;
3042 #image-focus-overlay .help-overlay:hover {
3043 max-width: 420px;
3044 max-height: 300px;
3045 background-color: rgba(0,0,0,0.85);
3046 color: #fff;
3047 visibility: visible;
3048 transition:
3049 visibility 0.2s ease 0.3s,
3050 color 0.2s ease 0.3s,
3051 background-color 0.2s ease 0.3s;
3054 #image-focus-overlay .help-overlay::after {
3055 content: "\F128";
3056 font-family: Font Awesome;
3057 font-weight: 900;
3058 font-size: 2rem;
3059 position: absolute;
3060 right: 0;
3061 bottom: 0;
3062 padding: 10px;
3063 color: #000;
3064 filter: drop-shadow(0 0 6px #fff);
3065 visibility: visible;
3066 opacity: 0.85;
3067 transition:
3068 visibility 1s ease;
3070 #image-focus-overlay .help-overlay:hover::after {
3071 visibility: hidden;
3072 transition:
3073 visibility 0.2s ease 0.3s;
3076 #image-focus-overlay .help-overlay p {
3077 margin: 0;
3078 text-indent: -2em;
3079 padding-left: 2em;
3080 max-width: 100%;
3081 overflow: hidden;
3083 #image-focus-overlay .help-overlay p + p {
3084 margin: 0.75em 0 0 0;
3086 #image-focus-overlay .help-overlay.hidden {
3087 bottom: -2em;
3090 #image-focus-overlay .image-number {
3091 position: absolute;
3092 z-index: 2;
3093 font-size: 1.75rem;
3094 left: 1em;
3095 bottom: 1em;
3096 font-weight: 600;
3097 text-shadow:
3098 0 0 3px #fff,
3099 0 0 5px #fff,
3100 0 0 8px #fff,
3101 0 0 13px #fff;
3102 width: 1.5em;
3103 text-align: right;
3104 white-space: nowrap;
3105 transition: bottom 0.3s ease;
3107 #image-focus-overlay .image-number::before {
3108 content: "#";
3109 opacity: 0.3;
3111 #image-focus-overlay .image-number::after {
3112 content: " of " attr(data-number-of-images);
3113 opacity: 0.3;
3115 #image-focus-overlay .image-number:hover::before,
3116 #image-focus-overlay .image-number:hover::after {
3117 opacity: 1.0;
3119 #image-focus-overlay .image-number.hidden {
3120 bottom: -1.25em;
3123 #image-focus-overlay .slideshow-buttons {
3124 position: absolute;
3125 top: 0;
3126 left: 0;
3127 width: 100%;
3128 height: 100%;
3129 z-index: 1;
3130 display: flex;
3131 justify-content: space-between;
3132 pointer-events: none;
3134 #image-focus-overlay .slideshow-buttons button {
3135 font-family: Font Awesome;
3136 font-weight: 900;
3137 font-size: 3rem;
3138 padding: 0.5em;
3139 color: #ddd;
3140 position: relative;
3141 left: 0;
3142 transition:
3143 left 0.3s ease;
3144 pointer-events: auto;
3146 #image-focus-overlay .slideshow-buttons button::selection {
3147 background-color: transparent;
3149 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3150 #image-focus-overlay .slideshow-buttons button:hover {
3151 background-color: rgba(0,0,0,0.1);
3152 color: #777;
3155 #image-focus-overlay .slideshow-buttons button:active {
3156 transform: none;
3157 color: #888;
3159 #image-focus-overlay .slideshow-buttons button:disabled {
3160 text-shadow: none;
3161 background-color: transparent;
3162 color: #ddd;
3163 cursor: default;
3164 opacity: 0.4;
3166 #image-focus-overlay .slideshow-button.previous.hidden {
3167 left: -1.75em;
3169 #image-focus-overlay .slideshow-button.next.hidden {
3170 left: 1.75em;
3173 .blurred {
3174 filter: blur(3px);
3177 /**************************/
3178 /* QUALIFIED HYPERLINKING */
3179 /**************************/
3181 #content.no-comments .comments,
3182 #content.no-comments .post-meta .comment-count,
3183 #content.no-comments .post-meta .karma,
3184 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3185 #content.no-comments + #ui-elements-container #hns-date-picker,
3186 #content.no-comments + #ui-elements-container #quick-nav-ui {
3187 display: none;
3190 #content.no-nav-bars #primary-bar,
3191 #content.no-nav-bars #secondary-bar {
3192 display: none;
3194 #content.no-nav-bars {
3195 margin: 8px auto;
3197 #content.no-nav-bars + #ui-elements-container > * {
3198 padding-top: 8px;
3201 #aux-about-link {
3202 position: fixed;
3203 top: 40px;
3204 left: calc((100% - 900px) / 2 - 69px);
3205 width: 1.5em;
3206 height: 1.5em;
3207 text-align: center;
3208 display: table;
3210 #aux-about-link a {
3211 display: table-cell;
3212 width: 100%;
3213 vertical-align: middle;
3214 font-family: Font Awesome;
3215 font-weight: 900;
3216 font-size: 1.25rem;
3217 opacity: 0.4;
3218 z-index: 1;
3221 .qualified-linking {
3222 margin: 0;
3223 position: relative;
3225 .qualified-linking input[type='checkbox'] {
3226 visibility: hidden;
3227 width: 0;
3228 height: 0;
3229 margin: 0;
3231 .qualified-linking label {
3232 font-family: Font Awesome;
3233 font-weight: 900;
3234 font-size: 1rem;
3235 padding: 0 0.5em;
3236 display: inline-block;
3237 margin-left: 0.25em;
3239 .qualified-linking label:hover {
3240 cursor: pointer;
3242 .qualified-linking label:active span {
3243 display: inline-block;
3244 transform: scale(0.9);
3246 .qualified-linking label::selection {
3247 background-color: transparent;
3250 .qualified-linking label::after {
3251 content: "";
3252 width: 100vw;
3253 height: 0;
3254 left: 0;
3255 top: 0;
3256 position: fixed;
3257 z-index: 1;
3258 cursor: default;
3260 .qualified-linking input[type='checkbox']:checked + label::after {
3261 height: 100vh;
3264 .qualified-linking-toolbar {
3265 position: absolute;
3266 right: 0.25em;
3267 top: 110%;
3268 z-index: 1;
3270 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3271 display: none;
3273 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3274 display: block;
3276 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3277 top: unset;
3278 bottom: 125%;
3281 .qualified-linking-toolbar a {
3282 display: block;
3283 padding: 0 6px;
3284 margin: 4px;
3286 .qualified-linking-toolbar a::selection {
3287 background-color: transparent;
3290 /********/
3291 /* MATH */
3292 /********/
3294 .mathjax-block-container {
3295 overflow-y: hidden;
3296 border-radius: 6px;
3297 margin: 1em 0 1.5em 0;
3299 .mathjax-inline-container {
3300 max-width: 100%;
3301 display: inline-block;
3302 overflow-x: auto;
3303 overflow-y: hidden;
3304 position: relative;
3305 vertical-align: text-top;
3306 padding: 0 1px;
3308 .post .mathjax-inline-container {
3309 line-height: 1.1;
3310 top: 2px;
3312 .comment .mathjax-inline-container {
3313 top: 3px;
3314 line-height: 1;
3316 .mathjax-inline-container .mjx-chtml {
3317 padding: 0;
3320 /************/
3321 /* SPOILERS */
3322 /************/
3324 .spoiler {
3325 color: #000;
3326 background-color: currentColor;
3327 transition: none;
3328 text-shadow: none;
3329 margin: 1em 0;
3330 box-shadow: 0 0 0 1px currentColor inset;
3331 overflow: auto;
3333 .spoiler:not(:last-child) {
3334 margin-bottom: 0;
3336 #content .spoiler * {
3337 color: inherit;
3338 border: none;
3340 .spoiler:hover {
3341 color: unset;
3342 background-color: unset;
3343 text-shadow: unset;
3344 transition:
3345 color 0.1s ease-out 0.1s,
3346 background-color 0.1s ease-out 0.1s,
3347 text-shadow 0.1s ease-out 0.1s;
3349 .spoiler::selection,
3350 .spoiler ::selection {
3351 color: #fff;
3352 background-color: #000;
3354 .spoiler:not(:hover)::selection,
3355 .spoiler:not(:hover) ::selection {
3356 background-color: transparent;
3359 /*= Fix for LessWrong being weird =*/
3361 .spoiler > p {
3362 padding: 0 7px;
3364 .spoiler > p:first-child {
3365 margin-top: 0.25em;
3367 .spoiler > p:last-child {
3368 margin-bottom: 0;
3369 padding-bottom: 0.25em;
3371 .spoiler > p:hover ~ p {
3372 background-color: currentColor;
3374 .spoiler > p + p {
3375 margin-top: -1em;
3377 .spoiler > p:not(:first-child) {
3378 padding-top: 0.5em;
3380 .spoiler > p:not(:last-child) {
3381 padding-bottom: 0.5em;
3384 /*******************/
3385 /* ALIGNMENT FORUM */
3386 /*******************/
3388 #content.alignment-forum-index-page::after {
3389 content: "Alignment Forum";
3390 grid-row: 3;
3391 font-size: 1.5rem;
3392 margin: 0.375em 0 0 -0.375em;
3395 /**********************/
3396 /* FOR NARROW SCREENS */
3397 /**********************/
3399 @media only screen and (max-width: 1440px) {
3400 #hns-date-picker {
3401 right: -81px;
3402 padding: 8px 10px 10px 10px;
3403 bottom: 62px;
3404 display: none;
3406 #hns-date-picker::before {
3407 content: "";
3408 position: absolute;
3409 display: block;
3410 z-index: -1;
3411 height: calc(100% + 2px);
3412 top: -1px;
3413 left: -1px;
3414 width: 50%;
3417 @media only screen and (max-width: 1160px) {
3418 #new-comment-nav-ui {
3419 bottom: 180px;
3420 right: -68px;
3422 #hns-date-picker {
3423 bottom: 200px;
3424 right: -36px;
3426 #hns-date-picker::before {
3427 width: calc(100% - 35px);
3429 #theme-selector button::before {
3430 right: unset;
3431 left: 100%;
3433 #theme-selector:hover::after {
3434 content: "";
3435 display: block;
3436 position: absolute;
3437 width: calc(6em - 7px);
3438 height: calc(100% + 2px);
3439 top: 0;
3440 left: calc(100% + 1px);
3442 #anti-kibitzer-toggle {
3443 bottom: 330px;
3446 @media only screen and (max-width: 1080px) {
3447 #width-selector {
3448 right: -30px;
3450 #width-selector button {
3451 display: block;
3453 #text-size-adjustment-ui {
3454 top: 90px;
3455 right: -30px;
3457 #text-size-adjustment-ui button {
3458 display: block;
3459 position: relative;
3461 #text-size-adjustment-ui button.increase {
3462 bottom: 48px;
3464 #text-size-adjustment-ui button.decrease {
3465 top: 50px;
3467 #theme-selector {
3468 top: 46px;
3469 left: -44px;
3471 #theme-tweaker-toggle {
3472 left: -44px;
3473 top: 2px;
3475 #theme-tweaker-toggle button {
3476 height: 2em;
3477 width: 2em;
3478 padding: 7px;
3480 #quick-nav-ui {
3481 right: -54px;
3483 #new-comment-nav-ui {
3484 right: -55px;
3486 #hns-date-picker {
3487 right: -23px;
3489 #hns-date-picker::before {
3490 width: calc(100% - 22px);
3492 #anti-kibitzer-toggle {
3493 right: -54px;
3496 @media only screen and (max-width: 1040px) {
3497 #quick-nav-ui {
3498 right: -49px;
3500 #new-comment-nav-ui {
3501 right: -50px;
3503 #hns-date-picker {
3504 right: -18px;
3506 #hns-date-picker::before {
3507 width: calc(100% - 17px);
3509 #anti-kibitzer-toggle {
3510 right: -50px;
3513 @media only screen and (max-width: 1020px) {
3514 #quick-nav-ui {
3515 right: -20px;
3517 #new-comment-nav-ui {
3518 right: -21px;
3520 #new-comment-nav-ui .new-comments-count::before {
3521 content: "";
3522 position: absolute;
3523 width: 100%;
3524 height: calc(100% + 45px);
3525 z-index: -1;
3526 left: 0;
3527 top: -22px;
3529 #hns-date-picker {
3530 right: 19px;
3532 #hns-date-picker::before {
3533 width: 100%;
3535 #anti-kibitzer-toggle {
3536 right: -20px;
3539 @media only screen and (max-width: 1000px) {
3540 #theme-selector {
3541 left: -17px;
3542 top: 120px;
3543 padding: 3px 0;
3544 max-width: 32px;
3546 #theme-selector button {
3547 margin: 1px 4px;
3549 #text-size-adjustment-ui {
3550 top: 100px;
3551 right: -12px;
3553 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3554 #quick-nav-ui,
3555 #new-comment-nav-ui,
3556 #new-comment-nav-ui + #hns-date-picker,
3557 #anti-kibitzer-toggle {
3558 opacity: 0.4;
3560 #quick-nav-ui:hover,
3561 #new-comment-nav-ui:hover,
3562 #new-comment-nav-ui + #hns-date-picker:hover,
3563 #new-comment-nav-ui + #hns-date-picker:focus-within,
3564 #new-comment-nav-ui:hover + #hns-date-picker,
3565 #anti-kibitzer-toggle:hover {
3566 opacity: 1.0;
3569 #theme-tweaker-toggle {
3570 top: 70px;
3571 left: -21px;
3575 /**************/
3576 /* PRINT VIEW */
3577 /**************/
3579 @media only print {
3580 .nav-bar {
3581 visibility: hidden;
3582 max-height: 0;
3583 overflow: hidden;
3585 #ui-elements-container {
3586 display: none;
3588 #images-overlay {
3589 display: none;
3591 #images-overlay + #content .post-body img {
3592 visibility: visible;
3594 .comment-controls {
3595 display: none;
3597 #comments-sort-mode-selector {
3598 display: none;
3600 .comment-minimize-button {
3601 display: none;
3603 .post-meta .qualified-linking,
3604 .post-meta .lw2-link {
3605 display: none;
3607 .comment-meta .permalink,
3608 .comment-meta .lw2-link,
3609 .comment-meta .comment-parent-link {
3610 display: none;
3612 .new-comment::before {
3613 display: none;
3615 #content::before {
3616 box-shadow: none;
3620 /*****************/
3621 /* MOBILE LAYOUT */
3622 /*****************/
3624 /* Hide the mobile elements on desktop screens: */
3626 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3627 #post-nav-ui-toggle,
3628 #appearance-adjust-ui-toggle,
3629 #theme-selector .theme-selector-close-button {
3630 display: none;
3634 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
3636 /*====================*/
3637 /* MOBILE UI ELEMENTS */
3638 /*====================*/
3640 #ui-elements-container {
3641 height: unset;
3642 position: unset;
3644 #ui-elements-container > * {
3645 position: fixed;
3646 visibility: hidden;
3647 opacity: 1.0;
3648 z-index: 10000;
3651 #ui-elements-container > div[id$='-ui-toggle'] {
3652 visibility: visible;
3653 display: inline-block;
3654 border-radius: 50%;
3655 z-index: 10000;
3657 #ui-elements-container > div[id$='-ui-toggle'] button,
3658 #theme-selector .theme-selector-close-button {
3659 font-family: Font Awesome;
3660 font-weight: 900;
3661 font-size: 32px;
3662 padding: 10px;
3663 opacity: 0.8;
3664 -webkit-tap-highlight-color: transparent;
3665 transition: transform 0.2s ease;
3667 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
3668 #theme-selector .theme-selector-close-button::selection {
3669 background-color: transparent;
3671 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
3672 #theme-selector .theme-selector-close-button::-moz-focus-inner {
3673 border: none;
3675 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
3676 transform: rotate(-90deg);
3677 opacity: 1.0;
3680 #appearance-adjust-ui-toggle {
3681 bottom: 10px;
3682 left: 10px;
3685 #post-nav-ui-toggle {
3686 bottom: 10px;
3687 right: 10px;
3690 #theme-selector.engaged,
3691 #quick-nav-ui.engaged,
3692 #new-comment-nav-ui.engaged,
3693 #hns-date-picker.engaged {
3694 visibility: visible;
3697 #image-focus-overlay.engaged {
3698 visibility: visible;
3700 #image-focus-overlay .help-overlay {
3701 display: none;
3704 /*=========*/
3705 /* GENERAL */
3706 /*=========*/
3708 @media only screen and (max-width: 900px) {
3709 #content,
3710 #images-overlay,
3711 #ui-elements-container {
3712 min-width: unset;
3713 width: unset;
3715 #content {
3716 padding: 0 4px;
3720 /*================*/
3721 /* THEME SELECTOR */
3722 /*================*/
3724 #theme-selector {
3725 display: flex;
3726 flex-flow: column;
3727 width: calc(100vw - 20px);
3728 max-width: 360px;
3729 padding: 0 0 3px 0;
3730 overflow: hidden;
3731 max-height: 0;
3732 transition:
3733 top 0.2s ease,
3734 max-height 0.2s ease,
3735 visibility 0.2s ease;
3736 top: calc(100% + 10px);
3737 left: 0;
3738 right: 0;
3739 margin: auto;
3741 #theme-selector.engaged {
3742 max-height: 1000px;
3743 top: 10px;
3744 z-index: 10001;
3746 #theme-selector::before {
3747 content: "Select theme";
3748 white-space: nowrap;
3749 display: block;
3750 font-weight: 600;
3751 font-size: 2rem;
3752 margin: 0.375em 1em 0.5em 1em;
3753 text-align: center;
3755 #theme-selector button {
3756 width: calc(100% - 0.5em);
3757 background-repeat: no-repeat;
3758 padding: 1em 0.875em;
3759 margin: 1px 4px;
3760 line-height: 1;
3761 height: unset;
3762 position: relative;
3764 #theme-selector button::after {
3765 content: attr(data-theme-description);
3766 white-space: nowrap;
3767 position: absolute;
3768 text-align: left;
3769 left: 2.5em;
3770 top: 1em;
3772 @media only screen and (max-height: 675px) {
3773 #theme-selector button {
3774 padding: 0.875em;
3776 #theme-selector button::after {
3777 top: 0.875em;
3780 #theme-selector .theme-selector-close-button {
3781 position: absolute;
3782 width: unset;
3783 background-color: transparent;
3784 top: 0;
3785 right: -3px;
3787 #theme-selector .theme-selector-close-button,
3788 #theme-selector .theme-selector-close-button:focus,
3789 #theme-selector .theme-selector-close-button:active,
3790 #theme-selector .theme-selector-close-button:hover {
3791 box-shadow: none;
3794 /*===============*/
3795 /* THEME TWEAKER */
3796 /*===============*/
3798 #theme-selector {
3799 padding: 0 0 64px 0;
3801 #theme-selector ~ #theme-tweaker-toggle {
3802 top: 100%;
3804 #theme-selector ~ #theme-tweaker-toggle::after {
3805 content: "Open theme tweaker";
3806 position: absolute;
3807 font-size: 0.625em;
3808 white-space: nowrap;
3809 left: -50%;
3810 top: 100%;
3812 #theme-selector.engaged ~ #theme-tweaker-toggle {
3813 visibility: visible;
3814 top: 530px;
3815 left: 0;
3816 right: 0;
3817 margin: auto;
3818 z-index: 11111;
3819 transition:
3820 top 0.2s ease,
3821 visibility 0.2s ease;
3823 @media only screen and (max-height: 675px) {
3824 #theme-selector.engaged ~ #theme-tweaker-toggle {
3825 top: 492px;
3828 @supports (width: -moz-fit-content) {
3829 #theme-selector.engaged ~ #theme-tweaker-toggle {
3830 width: -moz-fit-content;
3833 @supports (width: fit-content) {
3834 #theme-selector.engaged ~ #theme-tweaker-toggle {
3835 width: fit-content;
3838 #theme-selector.engaged ~ #theme-tweaker-toggle button {
3839 opacity: 1.0;
3842 #theme-tweaker-ui {
3843 visibility: visible;
3846 /*======================*/
3847 /* ANTI-KIBITZER TOGGLE */
3848 /*======================*/
3850 #theme-selector ~ #anti-kibitzer-toggle {
3851 top: 100%;
3852 bottom: unset;
3853 left: 0;
3854 right: 0;
3855 margin: auto;
3856 box-shadow: none;
3857 width: calc(100vw - 44px);
3858 max-width: 330px;
3859 text-align: right;
3860 pointer-events: none;
3862 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3863 visibility: visible;
3864 z-index: 11110;
3865 top: 530px;
3866 transition:
3867 top 0.2s ease,
3868 visibility 0.2s ease;
3870 @media only screen and (max-height: 675px) {
3871 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3872 top: 492px;
3875 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
3876 pointer-events: auto;
3877 display: inline-block;
3880 /*=================*/
3881 /* QUICKNAV WIDGET */
3882 /*=================*/
3884 #quick-nav-ui {
3885 max-width: 0px;
3886 transition:
3887 max-width 0.2s ease,
3888 visibility 0.2s ease;
3889 display: flex;
3890 right: 72px;
3891 bottom: 14px;
3893 #quick-nav-ui.engaged {
3894 max-width: 1000px;
3896 #quick-nav-ui a {
3897 position: relative;
3898 margin: 2px;
3900 #quick-nav-ui a + a {
3901 margin-left: 5px;
3903 #quick-nav-ui a::after {
3904 position: absolute;
3905 top: calc(100% + 2px);
3906 font-size: 0.375rem;
3907 left: 0;
3908 right: 0;
3909 margin: auto;
3910 line-height: 1;
3911 padding: 2px;
3912 text-transform: uppercase;
3913 z-index: -1;
3915 @supports (width: -moz-fit-content) {
3916 #quick-nav-ui a::after {
3917 width: -moz-fit-content;
3920 @supports (width: fit-content) {
3921 #quick-nav-ui a::after {
3922 width: fit-content;
3925 #quick-nav-ui a[href='#top']::after {
3926 content: "Top";
3927 left: -1px;
3929 #quick-nav-ui a[href='#comments']::after {
3930 content: "Comments";
3932 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
3933 visibility: hidden;
3934 transition: visibility 0.2s ease;
3936 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
3937 visibility: visible;
3939 #quick-nav-ui a[href='#bottom-bar']::after {
3940 content: "Bottom";
3943 /*======================*/
3944 /* NEW COMMENT QUICKNAV */
3945 /*======================*/
3947 #new-comment-nav-ui {
3948 max-width: 0px;
3949 max-height: 0px;
3950 transition:
3951 max-width 0.2s ease,
3952 max-height 0.2s ease,
3953 visibility 0.2s ease;
3954 display: flex;
3955 right: 78px;
3956 bottom: 70px;
3958 #new-comment-nav-ui::before {
3959 content: "New Comments";
3960 position: absolute;
3961 bottom: 100%;
3962 font-size: 0.5625rem;
3963 left: 0;
3964 right: 0;
3965 margin: auto;
3966 padding: 2px 3px;
3967 text-transform: uppercase;
3968 z-index: -1;
3970 @supports (width: -moz-fit-content) {
3971 #new-comment-nav-ui::before {
3972 width: -moz-fit-content;
3975 @supports (width: fit-content) {
3976 #new-comment-nav-ui::before {
3977 width: fit-content;
3980 #new-comment-nav-ui.engaged {
3981 max-width: 1000px;
3982 max-height: 1000px;
3984 #new-comment-nav-ui .new-comment-sequential-nav-button {
3985 top: unset;
3986 bottom: unset;
3987 padding: 2px 7px;
3989 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
3990 padding: 2px 7px 3px 7px;
3992 #new-comment-nav-ui .new-comments-count {
3993 padding: 4px 0 5px 0;
3995 #new-comment-nav-ui .new-comments-count::before {
3996 display: none;
3998 #new-comment-nav-ui button::after {
3999 position: absolute;
4000 font-size: 0.375rem;
4001 left: 0;
4002 right: 0;
4003 margin: auto;
4004 line-height: 1;
4005 text-transform: uppercase;
4006 pointer-events: none;
4008 #new-comment-nav-ui button.new-comment-previous::after {
4009 content: "Previous";
4010 bottom: 5px;
4012 #new-comment-nav-ui button.new-comment-next::after {
4013 content: "Next";
4014 top: 7px;
4017 /*=================*/
4018 /* HNS DATE PICKER */
4019 /*=================*/
4021 #hns-date-picker {
4022 max-height: 0px;
4023 bottom: 132px;
4024 right: 62px;
4025 transition:
4026 max-height 0.2s ease,
4027 visibility 0.2s ease;
4029 #hns-date-picker.engaged {
4030 max-height: 1000px;
4032 #hns-date-picker::before {
4033 width: calc(100% + 2px);
4034 border-width: 1px !important;
4037 /*=========*/
4038 /* NAV BAR */
4039 /*=========*/
4041 #bottom-bar {
4042 padding: 0 4.5rem;
4044 #bottom-bar .nav-item {
4045 box-shadow: none;
4046 position: relative;
4048 #bottom-bar .nav-inner {
4049 font-size: 2rem;
4050 padding: 1rem 0 1.25rem 0;
4051 visibility: hidden;
4052 position: static;
4053 width: 0;
4055 #content #bottom-bar .nav-item .nav-inner::before {
4056 margin: 0;
4057 visibility: visible;
4058 position: absolute;
4059 width: 100%;
4060 height: 100%;
4061 left: 0;
4062 top: 0;
4063 padding: 1rem 0;
4065 #bottom-bar .nav-inner::after {
4066 display: block;
4067 visibility: visible;
4068 text-transform: uppercase;
4069 color: unset;
4070 font-size: 0.75rem;
4071 top: unset;
4072 left: 0;
4073 bottom: 1rem;
4074 width: 100%;
4076 #bottom-bar #nav-item-first .nav-inner::after {
4077 content: "First Page";
4079 #bottom-bar #nav-item-prev .nav-inner::after {
4080 content: "Prev. Page";
4082 #bottom-bar #nav-item-top .nav-inner::after {
4083 content: "Top";
4085 #bottom-bar #nav-item-next .nav-inner::after {
4086 content: "Next Page";
4088 #bottom-bar #nav-item-last .nav-inner::after {
4089 content: "Last Page";
4092 @media only screen and (max-width: 900px) {
4093 #primary-bar,
4094 #secondary-bar {
4095 font-size: 0.75rem;
4097 .nav-bar {
4098 width: calc(100% + 8px);
4099 margin: 0 -4px;
4101 .nav-bar .nav-inner::after {
4102 display: none;
4105 #primary-bar .nav-item {
4106 flex: 1 1 100%;
4108 #secondary-bar .nav-item:not(#nav-item-search) {
4109 flex: 1 1 60px;
4111 #primary-bar .nav-inner,
4112 #secondary-bar .nav-inner {
4113 text-transform: uppercase;
4114 padding: 6px;
4116 #primary-bar .nav-inner::before,
4117 #secondary-bar .nav-inner::before {
4118 display: block;
4119 font-family: "Font Awesome";
4120 font-size: 2em;
4121 font-weight: 900;
4124 #nav-item-home .nav-inner::before {
4125 content: "\F015";
4127 #nav-item-featured .nav-inner::before {
4128 content: "\F005";
4130 #nav-item-all .nav-inner::before {
4131 content: "\F069";
4133 #nav-item-meta .nav-inner::before {
4134 content: "\F077";
4136 #nav-item-recent-comments > * > span {
4137 display: none;
4139 #nav-item-recent-comments .nav-inner::before {
4140 content: "\F036";
4142 #nav-item-archive .nav-inner::before {
4143 content: "\F187";
4145 #nav-item-about .nav-inner::before {
4146 content: "\F129";
4148 #nav-item-search {
4149 font-size: 2em;
4150 padding: 10px;
4152 #nav-item-search .nav-inner::before {
4153 content: none;
4155 #nav-item-search .nav-inner {
4156 height: 100%;
4157 display: flex;
4159 #nav-item-search input {
4160 width: 100%;
4161 height: 100%;
4163 #nav-item-search button {
4164 height: 100%;
4165 padding: 5px 5px 5px 10px;
4166 width: 40px;
4167 overflow: visible;
4168 visibility: hidden;
4170 #nav-item-search button::before {
4171 content: "\F002";
4172 font-family: Font Awesome;
4173 font-weight: 900;
4174 visibility: visible;
4176 #nav-item-login {
4177 padding: 0;
4179 #nav-item-login .nav-inner::before {
4180 content: "\F007";
4183 @media only screen and (max-width: 520px) {
4184 #primary-bar,
4185 #secondary-bar {
4186 font-size: 0.5rem;
4189 #nav-item-search .nav-inner {
4190 padding: 0;
4192 #nav-item-search button {
4193 width: 31px;
4196 #bottom-bar #nav-item-first .nav-inner::after {
4197 content: "First";
4199 #bottom-bar #nav-item-prev .nav-inner::after {
4200 content: "Prev";
4202 #bottom-bar #nav-item-next .nav-inner::after {
4203 content: "Next";
4205 #bottom-bar #nav-item-last .nav-inner::after {
4206 content: "Last";
4210 /*=================*/
4211 /* INBOX INDICATOR */
4212 /*=================*/
4214 @media only screen and (max-width: 900px) {
4215 #inbox-indicator {
4216 width: 100%;
4217 top: 0;
4218 pointer-events: none;
4220 #inbox-indicator::before {
4221 width: 100%;
4222 font-size: 1rem;
4223 text-align: right;
4224 padding: 1px 6px;
4226 #inbox-indicator.new-messages {
4227 pointer-events: auto;
4229 #inbox-indicator.new-messages::before {
4230 box-shadow: 0 0 8px 1px #f00 inset;
4233 @media only screen and (max-width: 520px) {
4234 #inbox-indicator::before {
4235 font-size: 0.75rem;
4236 padding: 2px 5px;
4239 @media only screen and (max-width: 374px) {
4240 #inbox-indicator::before {
4241 font-size: 0.625rem;
4245 /*===================*/
4246 /* TOP PAGINATION UI */
4247 /*===================*/
4249 #top-nav-bar {
4250 font-size: 1.75rem;
4253 /*==============*/
4254 /* PAGE TOOLBAR */
4255 /*==============*/
4257 @media only screen and (max-width: 900px) {
4258 #content > .page-toolbar {
4259 font-size: 1rem;
4260 margin-right: 0;
4262 #content.user-page > .page-toolbar {
4263 grid-column: 2 / span 2;
4264 margin: 0 0 6px 0;
4267 @media only screen and (max-width: 520px) {
4268 #content:not(.user-page) .page-toolbar {
4269 display: flex;
4270 flex-direction: column-reverse;
4271 text-align: right;
4272 align-self: start;
4273 padding: 4px 0 0 0;
4275 #content.user-page .page-toolbar {
4276 display: flex;
4277 flex-flow: row;
4278 justify-content: flex-end;
4279 padding: 2px 0 0 0;
4281 #content.user-page .page-toolbar > form,
4282 #content.user-page .page-toolbar > .button {
4283 text-align: center;
4284 flex-basis: 25%;
4285 margin-left: 1.5em;
4287 #content.user-page .page-toolbar .button {
4288 text-transform: uppercase;
4289 font-size: 0.625rem;
4291 #content.user-page .page-toolbar .button::before {
4292 font-size: 1.375rem;
4293 display: block;
4294 padding: 0;
4296 #content.user-page .page-toolbar .rss {
4297 white-space: nowrap;
4298 margin: 0 0 0 1.5em;
4300 .page-toolbar > * {
4301 line-height: 1.15;
4302 padding: 6px 0;
4303 margin: 0;
4307 /*==============*/
4308 /* SUBLEVEL NAV */
4309 /*==============*/
4311 @media only screen and (max-width: 900px) {
4312 .sublevel-nav:not(.sort) {
4313 flex-wrap: wrap;
4314 width: calc(100vw - 100px);
4316 .sublevel-nav:not(.sort) .sublevel-item {
4317 margin: 1px;
4318 flex-basis: 7em;
4321 @media only screen and (max-width: 720px) {
4322 .sublevel-nav:not(.sort) {
4323 width: calc(100vw - 200px);
4326 @media only screen and (max-width: 520px) {
4327 .sublevel-nav:not(.sort) {
4328 width: calc(100vw - 100px);
4330 .sublevel-nav:not(.sort) .sublevel-item {
4331 font-size: 1rem;
4335 /*=====================*/
4336 /* SORT ORDER SELECTOR */
4337 /*=====================*/
4339 @media only screen and (max-width: 720px) {
4340 #content.index-page > .sublevel-nav.sort {
4341 flex-flow: column;
4342 margin-left: 4px;
4346 /*==========*/
4347 /* ARCHIVES */
4348 /*==========*/
4350 @media only screen and (max-width: 900px) {
4351 div[class^='archive-nav-'] {
4352 flex-wrap: wrap;
4353 justify-content: flex-start;
4355 .archive-nav *[class^='archive-nav-item'],
4356 .archive-nav *[class^='archive-nav-item']:first-child {
4357 padding: 10px;
4358 margin: 2px;
4359 max-width: unset;
4360 flex: 0 1 calc((100% / 8) - 4px);
4362 .archive-nav .archive-nav-item-day,
4363 .archive-nav .archive-nav-item-day:first-child {
4364 flex-basis: calc((100% / 16) - 4px);
4366 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4367 margin-top: 8px;
4368 position: relative;
4370 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4371 content: "";
4372 display: block;
4373 position: absolute;
4374 height: 1px;
4375 width: calc(100% + 8px);
4376 left: -4px;
4377 top: -4px;
4380 @media only screen and (max-width: 720px) {
4381 .archive-nav .archive-nav-item-day,
4382 .archive-nav .archive-nav-item-day:first-child {
4383 flex-basis: calc((100% / 12) - 4px);
4386 @media only screen and (max-width: 520px) {
4387 .archive-nav *[class^='archive-nav-item'],
4388 .archive-nav *[class^='archive-nav-item']:first-child {
4389 flex-basis: calc((100% / 5) - 4px);
4391 .archive-nav .archive-nav-item-day,
4392 .archive-nav .archive-nav-item-day:first-child {
4393 flex-basis: calc((100% / 8) - 4px);
4397 /*==========*/
4398 /* LISTINGS */
4399 /*==========*/
4401 h1.listing {
4402 max-height: unset;
4405 /*============*/
4406 /* USER PAGES */
4407 /*============*/
4409 @media only screen and (max-width: 720px) {
4410 #content.user-page h1.page-main-heading {
4411 align-self: center;
4413 #content.user-page .user-stats {
4414 padding: 4px 0;
4415 line-height: 1.3;
4419 /*============*/
4420 /* LOGIN PAGE */
4421 /*============*/
4423 @media only screen and (max-width: 640px) {
4424 .login-container {
4425 flex-flow: column;
4426 margin: 0 auto 3em auto;
4427 max-width: 400px;
4429 .login-container #login-form,
4430 .login-container #signup-form {
4431 padding: 0 1em 1.25em 1em;
4432 grid-row-gap: 0;
4434 .login-container #signup-form {
4435 padding-top: 1em;
4437 .login-container #login-form > *,
4438 .login-container #signup-form > * {
4439 grid-column: 1 / span 2;
4441 .login-container form label {
4442 text-align: left;
4443 padding: 0;
4444 line-height: 1;
4446 .login-container form input {
4447 margin: 0.25em 0 0.75em 0;
4448 padding: 0.5em;
4450 .login-container form h1 {
4451 grid-column: 1 / span 2;
4452 margin: 0 0 0.25em 0;
4454 .login-container form a {
4455 margin: 0.75em 0 0 0;
4457 .login-container .login-tip {
4458 margin: 1.5em 1em 0 1em;
4462 /*==================*/
4463 /* POSTS & COMMENTS */
4464 /*==================*/
4466 /*===========*/
4467 /* POST-META */
4468 /*===========*/
4470 .post-meta {
4471 line-height: 1.9;
4473 @media only screen and (max-width: 720px) {
4474 .post-meta .lw2-link span,
4475 .post-meta .karma-value span,
4476 .post-meta .comment-count span {
4477 display: none;
4479 .post-meta .comment-count::before {
4480 content: "\F086";
4481 font-family: Font Awesome;
4482 font-size: 0.875em;
4483 margin: 0 0.25em 0 0;
4484 font-weight: 400;
4488 /*=======*/
4489 /* POSTS */
4490 /*=======*/
4492 @media only screen and (max-width: 900px) {
4493 .post-body,
4494 h1.post-title {
4495 padding: 0 6px;
4498 @media only screen and (max-width: 520px) {
4499 .post-body {
4500 font-size: 1.2rem;
4501 line-height: 1.45;
4503 h1.post-title {
4504 font-size: 2em;
4508 /*==========*/
4509 /* COMMENTS */
4510 /*==========*/
4512 @media only screen and (max-width: 900px) {
4513 .comment-body ul {
4514 padding-left: 30px;
4516 .comment-body ol {
4517 padding-left: 30px;
4521 /*==============*/
4522 /* COMMENT-META */
4523 /*==============*/
4525 a.comment-parent-link::after {
4526 display: none;
4528 @media only screen and (max-width: 900px) {
4529 .comment-meta {
4530 padding: 2px 40px 2px 10px;
4533 @media only screen and (max-width: 720px) {
4534 .comment-meta .karma-value span {
4535 display: none;
4537 .comment-meta .comment-parent-link {
4538 opacity: 1.0;
4541 @media only screen and (max-width: 520px) {
4542 .comment-meta {
4543 padding: 2px 10px;
4544 position: relative;
4546 .comment-meta .author {
4547 flex-basis: 100%;
4549 .comment-post-title2 {
4550 display: block;
4551 text-overflow: ellipsis;
4552 overflow: hidden;
4554 .comment-meta .lw2-link {
4555 display: none;
4559 /*=======================*/
4560 /* COMMENTS COMPACT VIEW */
4561 /*=======================*/
4563 /*===========================*/
4564 /* COMMENT THREAD NAVIGATION */
4565 /*===========================*/
4567 @media only screen and (max-width: 900px) {
4568 a.comment-parent-link {
4569 width: 0;
4570 visibility: hidden;
4571 position: relative;
4573 a.comment-parent-link::before {
4574 padding: 0;
4575 font-size: 1em;
4576 left: 0;
4577 top: 0;
4578 line-height: inherit;
4579 visibility: visible;
4580 content: "\F3BF";
4581 transform: scaleX(-1);
4582 width: 2em;
4583 text-align: center;
4586 @media only screen and (max-width: 520px) {
4587 a.comment-parent-link {
4588 position: static;
4590 a.comment-parent-link::before {
4591 padding: 6px;
4592 left: unset;
4593 right: 0;
4594 top: unset;
4595 bottom: 0;
4596 height: 2em;
4600 /*=================================*/
4601 /* COMMENT THREAD MINIMIZE BUTTONS */
4602 /*=================================*/
4604 @media only screen and (max-width: 520px) {
4605 .comment-minimize-button{
4606 right: 2px;
4610 /*===========================*/
4611 /* COMMENTING AND POSTING UI */
4612 /*===========================*/
4614 @media only screen and (max-width: 900px) {
4615 .comment-controls .cancel-comment-button {
4616 max-width: 1.3em;
4617 overflow: hidden;
4618 margin-right: 0.125em;
4620 .comment-controls .edit-button::before {
4621 font-size: 0.9375em;
4623 .comments > .comment-controls .cancel-comment-button {
4624 right: 8px;
4626 .comment-controls .cancel-comment-button::before {
4627 font-size: 1.25rem;
4630 @media only screen and (max-width: 520px) {
4631 .comment-controls {
4632 position: static;
4634 .comment-controls:focus-within {
4635 z-index: 10001;
4637 .comment-controls .cancel-comment-button {
4638 right: 10px;
4640 .textarea-container:focus-within textarea {
4641 position: fixed;
4642 top: 0;
4643 left: 2px;
4644 width: calc(100vw - 4px);
4645 height: calc(100% - 100px);
4646 min-height: unset;
4647 max-height: unset;
4648 border-width: 1px;
4649 z-index: 11001;
4651 #content.conversation-page .textarea-container:focus-within textarea {
4652 height: calc(100% - 54px);
4654 #content.conversation-page .textarea-container:focus-within::after {
4655 content: "";
4656 display: block;
4657 width: 100%;
4658 height: 50px;
4659 position: fixed;
4660 left: 0;
4661 bottom: 0;
4662 z-index: 11000;
4664 .textarea-container:focus-within .guiedit-buttons-container {
4665 position: fixed;
4666 z-index: 11002;
4667 left: 0;
4668 width: 100vw;
4669 height: auto;
4670 background-image: none;
4671 padding: 3px 4px 4px 4px;
4672 margin: 0;
4673 text-align: center;
4674 top: auto;
4675 bottom: 0;
4677 .textarea-container:focus-within button.guiedit {
4678 font-size: 0.9375rem;
4679 line-height: 1.5;
4680 height: auto;
4681 width: calc((100% / 10) - 2px);
4682 padding: 10px 1px 8px 0;
4683 position: relative;
4684 margin: 1px;
4686 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
4687 z-index: 11011;
4688 position: fixed;
4689 bottom: 7px;
4690 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
4691 font-size: 1.25rem;
4692 padding: 5px 5px 6px 5px;
4693 display: block;
4695 .textarea-container:focus-within button.guiedit sup {
4696 position: absolute;
4697 left: calc(50% + 0.65em);
4698 top: calc(50% - 1.3em);
4700 .textarea-container:focus-within .guiedit-mobile-help-button {
4701 left: 8px;
4703 .textarea-container:focus-within .guiedit-mobile-exit-button {
4704 right: 8px;
4706 .guiedit::after {
4707 display: none;
4710 #markdown-hints,
4711 #edit-post-form #markdown-hints {
4712 z-index: 11111;
4713 position: fixed;
4714 top: 40px;
4715 left: 0;
4716 right: 0;
4717 margin: auto;
4718 padding: 4px 0 4px 8px;
4719 width: 310px;
4720 border-width: 3px;
4721 border-style: double;
4722 pointer-events: none;
4724 #markdown-hints::after {
4725 content: "(Type to hide this help box.)";
4726 color: #090;
4727 display: block;
4728 margin: 12px 18px 13px 10px;
4729 padding: 5px;
4730 font-size: 0.9em;
4731 text-align: center;
4735 /*================*/
4736 /* EDIT POST FORM */
4737 /*================*/
4739 @media only screen and (max-width: 520px) {
4740 #edit-post-form {
4741 padding-bottom: 0;
4743 #edit-post-form .post-meta-fields {
4744 grid-template-columns: 4.5em auto auto auto 1fr auto;
4746 #edit-post-form label[for='url'],
4747 #edit-post-form label[for='section'],
4748 #edit-post-form label[for='title'] {
4749 padding-left: 0;
4751 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
4752 white-space: normal;
4753 line-height: 0.9;
4754 top: -1px;
4755 font-family: Font Awesome;
4756 font-weight: 900;
4757 justify-self: start;
4759 #edit-post-form .post-meta-fields .question-checkbox,
4760 #edit-post-form .post-meta-fields .question-checkbox + label {
4761 grid-column: 6;
4762 margin-left: unset;
4764 #edit-post-form .post-meta-fields input[type='radio'] + label {
4765 align-self: start;
4767 #edit-post-form .textarea-container:focus-within textarea {
4768 height: calc(100% - 101px);
4769 min-height: unset;
4772 #markdown-hints-checkbox,
4773 #markdown-hints-checkbox + label {
4774 display: none;
4777 #edit-post-form div:last-child {
4778 clear: both;
4779 overflow: auto;
4781 #edit-post-form input[type='submit'] {
4782 float: none;
4783 display: block;
4784 font-size: 1.5rem;
4785 margin: 1rem auto 1.5rem auto;
4786 padding: 6px 12px 8px 12px;
4790 /*===================*/
4791 /* TABLE OF CONTENTS */
4792 /*===================*/
4794 @media only screen and (max-width: 900px) {
4795 .contents {
4796 float: none;
4797 display: table;
4798 max-width: none;
4799 margin-left: auto;
4800 margin-right: auto;
4803 @media only screen and (max-width: 520px) {
4804 .contents {
4805 max-width: 100%;
4806 margin: 1em auto 0 auto;
4807 display: table;
4809 .contents-head {
4810 font-size: 1.2em;
4812 div.post-body .contents ul {
4813 font-size: unset;
4817 /*========================*/
4818 /* QUALIFIED HYPERLINKING */
4819 /*========================*/
4821 @media only screen and (max-width: 520px) {
4822 .qualified-linking-toolbar {
4823 right: -5em;
4827 } /* END MOBILE LAYOUT */
4830 /**************/
4831 /* THEME ZERO */
4832 /**************/
4834 body {
4835 color: #000;
4836 font-family: Trade Gothic, Helvetica, sans-serif;
4837 background-color: #eee;
4839 #content {
4840 line-height: 1.55;
4843 /*=========*/
4844 /* NAV BAR */
4845 /*=========*/
4847 .nav-bar {
4848 background-color: #e4e4e4;
4850 .nav-inner {
4851 font-size: 1.125em;
4852 padding: 11px 30px 13px 30px;
4854 #secondary-bar .nav-inner {
4855 font-size: 0.875em;
4857 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
4858 padding: 6px 0 3px 0;
4860 .active-bar {
4861 border-top: 2px solid #eee;
4864 .nav-bar a:visited {
4865 color: #00e;
4868 #bottom-bar.decorative {
4869 background-color: transparent;
4871 #bottom-bar.decorative::before,
4872 #bottom-bar.decorative::after {
4873 content: "GW";
4874 display: block;
4875 text-align: center;
4876 padding: 0.25em 0 1em 0;
4878 #bottom-bar.decorative::before {
4879 width: 100%;
4880 color: transparent;
4881 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4882 background-repeat: repeat-x;
4883 background-position: center 35%;
4884 margin: 0 30px;
4885 filter: contrast(90%);
4887 #bottom-bar.decorative::after {
4888 color: #d8d8d8;
4889 position: absolute;
4890 left: 0;
4891 right: 0;
4892 margin: auto;
4893 background-color: #eee;
4894 padding-right: 4px;
4895 padding-left: 4px;
4897 @supports (width: -moz-fit-content) {
4898 #bottom-bar.decorative::after {
4899 width: -moz-fit-content;
4902 @supports (width: fit-content) {
4903 #bottom-bar.decorative::after {
4904 width: fit-content;
4908 /* Accesskey hints */
4910 .nav-inner::after {
4911 display: block;
4912 position: absolute;
4913 left: 5px;
4914 top: -1px;
4915 font-weight: 400;
4916 font-size: 0.7em;
4917 color: #d8d8d8;
4919 .inactive-bar .nav-inner::after {
4920 color: #ccc;
4922 .nav-inner:hover::after {
4923 color: #bbb;
4926 /* "Tabs" */
4928 .nav-current {
4929 background-color: #eee;
4932 /* Search tab */
4934 #nav-item-search form::before {
4935 font-size: 1.125em;
4937 #nav-item-search button {
4938 border: none;
4939 font-weight: inherit;
4941 #nav-item-search input::placeholder {
4942 color: #d00;
4943 font-weight: normal;
4946 /*= Top pagination UI hover tooltips =*/
4948 #top-nav-bar a::after,
4949 #bottom-bar a::after {
4950 color: #000;
4953 /*==============*/
4954 /* PAGE TOOLBAR */
4955 /*==============*/
4957 .new-post,
4958 .new-post:visited,
4959 .new-private-message,
4960 .new-private-message:visited {
4961 color: #090;
4963 .logout-button {
4964 color: #d33;
4967 /*==============*/
4968 /* SUBLEVEL NAV */
4969 /*==============*/
4971 .sublevel-nav .sublevel-item {
4972 color: #777;
4974 .sublevel-nav .sublevel-item:not(.selected):hover {
4975 background-color: #ddd;
4976 color: #000;
4977 text-decoration: none;
4978 text-shadow: none;
4980 .sublevel-nav .sublevel-item:not(.selected):active,
4981 .sublevel-nav .sublevel-item.selected {
4982 background-color: #ddd;
4983 color: #000;
4984 text-shadow:
4985 0 -1px 0 #fff,
4986 0 0.5px 0.5px #000;
4989 .sublevel-nav:not(.sort) .sublevel-item {
4990 border-style: solid;
4991 border-color: #ccc;
4992 border-width: 1px 0 1px 1px;
4994 .sublevel-nav:not(.sort) .sublevel-item:first-child {
4995 border-radius: 8px 0 0 8px;
4997 .sublevel-nav:not(.sort) .sublevel-item:last-child {
4998 border-width: 1px;
4999 border-radius: 0 8px 8px 0;
5002 /*=====================*/
5003 /* SORT ORDER SELECTOR */
5004 /*=====================*/
5006 .sublevel-nav.sort {
5007 padding: 18px 0 0 0;
5008 border-radius: 8px;
5009 pointer-events: none;
5011 .sublevel-nav.sort::before {
5012 text-transform: uppercase;
5013 font-weight: 600;
5014 color: #444;
5015 text-shadow: 0.5px 0.5px 0 #fff;
5016 z-index: 1;
5018 .sublevel-nav.sort::after {
5019 content: "";
5020 position: absolute;
5021 display: block;
5022 top: 0;
5023 left: 0;
5024 width: 100%;
5025 height: 100%;
5026 border-radius: 6px;
5027 box-shadow:
5028 0 18px 0 0 #eee inset,
5029 0 0 0 1px #ccc inset,
5030 0 18px 0 1px #ccc inset,
5031 0 0 0 2px #eee;
5033 .sublevel-nav.sort .sublevel-item {
5034 padding: 7px 7px 6px 7px;
5035 text-transform: uppercase;
5036 box-shadow: 1px 1px 0 0 #ccc inset;
5037 pointer-events: auto;
5040 /*================*/
5041 /* WIDTH SELECTOR */
5042 /*================*/
5044 #width-selector button {
5045 box-shadow:
5046 0 0 0 4px #eee inset,
5047 0 0 0 5px #aaa inset;
5049 #width-selector button:hover,
5050 #width-selector button.selected {
5051 box-shadow:
5052 0 0 0 1px #eee inset,
5053 0 0 0 2px #aaa inset,
5054 0 0 0 4px #eee inset,
5055 0 0 0 5px #aaa inset;
5057 #width-selector button::after {
5058 color: #999;
5061 /*================*/
5062 /* THEME SELECTOR */
5063 /*================*/
5065 #theme-selector button {
5066 box-shadow:
5067 0 0 0 4px #eee inset,
5068 0 0 0 5px #999 inset;
5070 #theme-selector button:hover,
5071 #theme-selector button.selected {
5072 box-shadow:
5073 0 0 0 1px #eee inset,
5074 0 0 0 2px #999 inset,
5075 0 0 0 4px #eee inset,
5076 0 0 0 5px #999 inset;
5079 #theme-selector button::before {
5080 color: #aaa;
5081 background-color: #eee;
5083 #theme-selector button:hover::before,
5084 #theme-selector button.selected::before {
5085 color: #666;
5088 /*======================*/
5089 /* THEME TWEAKER TOGGLE */
5090 /*======================*/
5092 #theme-tweaker-toggle button {
5093 color: #777;
5096 /*=================*/
5097 /* QUICKNAV WIDGET */
5098 /*=================*/
5100 #quick-nav-ui a {
5101 color: #00c;
5102 border-radius: 4px;
5103 box-shadow: 0 0 0 1px #ddf;
5104 text-decoration: none;
5106 #quick-nav-ui a[href='#bottom-bar'] {
5107 line-height: 1.8;
5109 #quick-nav-ui a:active {
5110 transform: scale(0.9);
5112 #quick-nav-ui a[href='#comments'].no-comments {
5113 opacity: 0.4;
5114 color: #bbb;
5116 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5117 #quick-nav-ui a:hover {
5118 color: #f00;
5119 box-shadow: 0 0 0 1px #faa;
5121 #quick-nav-ui a:focus:not(:hover) {
5122 transform: none;
5123 text-shadow: none;
5127 /*======================*/
5128 /* NEW COMMENT QUICKNAV */
5129 /*======================*/
5131 #new-comment-nav-ui .new-comments-count {
5132 font-weight: 600;
5133 color: #666;
5134 text-shadow: 0.5px 0.5px 0 #fff;
5136 #new-comment-nav-ui .new-comments-count::after {
5137 font-weight: 600;
5138 color: #777;
5140 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5141 color: #bbb;
5142 text-shadow: none;
5144 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5145 #new-comment-nav-ui .new-comments-count:hover {
5146 text-shadow:
5147 0 0 1px #fff,
5148 0 0 3px #fff,
5149 0 0 5px #fff,
5150 0 0 8px #fff,
5151 0.5px 0.5px 0 #fff;
5153 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5154 color: #d00;
5155 text-shadow:
5156 0 0 1px #fff,
5157 0 0 3px #fff,
5158 0 0 5px #fff;
5162 /*=================*/
5163 /* HNS DATE PICKER */
5164 /*=================*/
5166 #hns-date-picker span {
5167 color: #777;
5168 text-shadow: 0.5px 0.5px 0 #fff;
5169 font-weight: 600;
5171 #hns-date-picker input {
5172 border: 1px solid #777;
5173 background-color: transparent;
5174 color: #666;
5176 #hns-date-picker input:focus {
5177 color: #000;
5180 /*======================*/
5181 /* ANTI-KIBITZER TOGGLE */
5182 /*======================*/
5184 #anti-kibitzer-toggle button::before,
5185 #anti-kibitzer-toggle button::after {
5186 background-color: #aaa;
5187 -webkit-background-clip: text;
5188 color: transparent;
5189 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5191 #anti-kibitzer-toggle button:hover::before,
5192 #anti-kibitzer-toggle button:hover::after {
5193 background-color: #777;
5196 /*======================*/
5197 /* TEXT SIZE ADJUSTMENT */
5198 /*======================*/
5200 #text-size-adjustment-ui button {
5201 color: #777;
5203 #text-size-adjustment-ui button.default {
5204 font-weight: 600;
5206 #text-size-adjustment-ui button:disabled:hover {
5207 text-shadow: none;
5209 #text-size-adjustment-ui::after {
5210 color: #999;
5213 /*=============================*/
5214 /* COMMENTS VIEW MODE SELECTOR */
5215 /*=============================*/
5217 #comments-view-mode-selector a {
5218 color: #777;
5221 /*==========*/
5222 /* ARCHIVES */
5223 /*==========*/
5225 .archive-nav {
5226 border: 1px solid #aaa;
5228 .archive-nav *[class^='archive-nav-item'] {
5229 border-style: solid;
5230 border-color: #ddd;
5231 border-width: 1px 0 1px 1px;
5232 background-color: #eee;
5234 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5235 border-top-width: 0;
5236 border-bottom-width: 0;
5238 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5239 border-bottom-width: 1px;
5241 .archive-nav *[class^='archive-nav-item']:last-child {
5242 border-right-width: 1px;
5244 .archive-nav span[class^='archive-nav-item'] {
5245 font-weight: bold;
5246 background-color: #ddd;
5249 .archive-nav a:link,
5250 .archive-nav a:visited {
5251 color: rgba(0, 0, 238, 0.7);
5253 .archive-nav a:hover {
5254 text-decoration: none;
5255 color: #c00;
5256 background-color: #e0e0e0;
5257 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5259 .archive-nav a:active {
5260 transform: scale(0.9);
5262 .archive-nav a:focus:not(:hover) {
5263 transform: none;
5265 .archive-nav a.archive-nav-item-day:hover {
5266 background-color: #ddd;
5269 /*==========*/
5270 /* LISTINGS */
5271 /*==========*/
5273 h1.listing {
5274 margin: 0.7em 20px 0.1em 20px;
5275 max-width: calc(100% - 40px);
5276 font-family: Trade Gothic, Helvetica, sans-serif, 'Font Awesome';
5277 font-size: 1.375rem;
5278 line-height: 1.2;
5281 h1.listing a[href^="http"] {
5282 color: #00c;
5283 font-size: 0.75em;
5285 h1.listing a[href^="/posts"] {
5286 color: #000;
5287 font-weight: bold;
5290 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5291 h1.listing a:hover,
5292 h1.listing a:focus {
5293 color: #777;
5294 background-color: rgba(238,238,238,0.85);
5296 h1.listing:focus-within::before {
5297 color: #00f;
5298 left: -0.625em;
5299 top: 1px;
5301 h1.listing a[href^="http"]:hover {
5302 color: #4879ec;
5303 text-shadow:
5304 0.5px 0.5px 0 #fff,
5305 -0.5px -0.5px 0 #fff,
5306 0 0 2px #fff,
5307 0 0 3px #00c;
5311 h1.listing .edit-post-link {
5312 padding: 6px 3px 32px 0.5em;
5313 top: 0;
5314 right: 0;
5316 h1.listing .edit-post-link:hover {
5317 text-decoration: none;
5319 #content.user-page h1.listing .edit-post-link {
5320 background-color: #eee;
5323 /*======*/
5324 /* SPAM */
5325 /*======*/
5327 h1.listing.spam {
5328 opacity: 0.1;
5330 h1.listing.spam + .post-meta {
5331 opacity: 0.25;
5333 h1.listing.spam:hover,
5334 h1.listing.spam + .post-meta:hover,
5335 h1.listing.spam:hover + .post-meta {
5336 opacity: 1.0;
5339 /*===================*/
5340 /* LISTING POST-META */
5341 /*===================*/
5343 h1.listing + .post-meta {
5344 font-size: 0.875rem;
5347 h1.listing + .post-meta .karma-value {
5348 cursor: default;
5351 /*============*/
5352 /* USER PAGES */
5353 /*============*/
5355 #content.user-page h1.page-main-heading {
5356 border-bottom: 1px solid #ccc;
5359 #content.user-page h1.listing,
5360 #content.user-page h1.listing + .post-meta {
5361 border-style: solid;
5362 border-color: #ccc;
5364 #content.user-page h1.listing {
5365 padding: 0 6px;
5366 padding-top: 0.25em;
5367 border-width: 1px 1px 0 1px;
5368 margin: 1rem 0 0 0;
5369 max-width: 100%;
5371 #content.own-user-page h1.listing,
5372 h1.listing.own-post-listing {
5373 padding-right: 36px;
5375 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5376 #content.user-page h1.listing:focus-within::before {
5377 left: -0.625em;
5378 top: 6px;
5381 #content.user-page h1.listing + .post-meta {
5382 padding: 0.75em 6px 0.5em 32px;
5383 border-width: 0 1px 1px 1px;
5384 margin: 0 0 1rem 0;
5386 #content.user-page h1.listing + .post-meta .post-section::before {
5387 left: 0;
5390 #content.conversations-user-page h1.listing {
5391 padding: 6px 6px 4px 9px;
5392 font-size: 1.5rem;
5394 #content.conversations-user-page h1.listing + .post-meta {
5395 padding: 6px 4px;
5396 margin: 0;
5399 .user-stats .karma-total {
5400 font-weight: bold;
5403 /*===============*/
5404 /* CONVERSATIONS */
5405 /*===============*/
5407 /*============*/
5408 /* LOGIN PAGE */
5409 /*============*/
5411 .login-container form input[type='submit'] {
5412 font-weight: bold;
5413 background-color: #eee;
5414 border: 1px solid #ccc;
5416 .login-container form input[type='submit']:hover,
5417 .login-container form input[type='submit']:focus {
5418 background-color: #ddd;
5419 border: 1px solid #aaa;
5422 /* “Create account” form */
5424 #signup-form {
5425 background-color: #f3f3f3;
5426 border: 1px solid #ddd;
5428 #signup-form input[type='submit'] {
5429 background-color: #e4e4e4;
5430 border: 1px solid #ccc;
5432 #signup-form input[type='submit']:hover {
5433 background-color: #d8d8d8;
5434 border: 1px solid #aaa;
5437 /* Log in tip */
5439 .login-container .login-tip {
5440 border: 1px solid #eee;
5443 /* Message box */
5445 .error-box {
5446 border: 1px solid red;
5447 background-color: #faa;
5449 .success-box {
5450 border: 1px solid green;
5451 background-color: #afa;
5454 /*=====================*/
5455 /* PASSWORD RESET PAGE */
5456 /*=====================*/
5458 .reset-password-container input[type='submit'] {
5459 background-color: #e4e4e4;
5460 border: 1px solid #ccc;
5461 font-weight: bold;
5464 /*===================*/
5465 /* TABLE OF CONTENTS */
5466 /*===================*/
5468 .contents {
5469 font-family: Trade Gothic, Helvetica, sans-serif;
5470 background-color: #eee;
5472 .contents-head {
5473 font-weight: bold;
5475 .post-body .contents li::before {
5476 color: #999;
5477 font-feature-settings: "tnum";
5479 .post-body .contents a,
5480 .post-body .contents a:hover {
5481 border: none;
5483 .post-body .contents a:hover {
5484 text-decoration: underline;
5487 /*==================*/
5488 /* POSTS & COMMENTS */
5489 /*==================*/
5491 .post-body,
5492 .comment-body {
5493 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
5496 .post-body a,
5497 .comment-body a {
5498 border-bottom: 1px dotted #bbb;
5500 .post-body a:hover,
5501 .comment-body a:hover {
5502 text-decoration: none;
5503 border-bottom: 1px solid currentColor;
5506 /*=======*/
5507 /* POSTS */
5508 /*=======*/
5510 .post-body {
5511 font-size: 1.25rem;
5514 h1.post-title {
5515 font-size: 2rem;
5516 line-height: 1.1;
5517 margin: 1em 0 0.25em 0;
5520 /*===========*/
5521 /* POST-META */
5522 /*===========*/
5524 .post-meta .post-section::before {
5525 color: #fff;
5526 text-shadow:
5527 1px 1px 0 #090,
5528 0 1px 0 #090,
5529 0 0 5px #090;
5531 a.post-section:hover {
5532 text-decoration: none;
5534 a.post-section:hover::before {
5535 color: #97ff7c;
5537 .post-meta .post-section.alignment-forum::before {
5538 text-shadow:
5539 1px 1px 0 #626dd7,
5540 0 1px 0 #626dd7,
5541 0 0 5px #626dd7;
5543 a.post-section.alignment-forum:hover::before {
5544 color: #e6e5ff;
5545 text-decoration: none;
5547 .post-meta .date {
5548 color: #888;
5550 .post-meta .author {
5551 color: #090;
5553 .bottom-post-meta {
5554 border-top: 1px solid #ddd;
5557 /*============*/
5558 /* LINK POSTS */
5559 /*============*/
5561 .post.link-post a.link-post-link {
5562 text-decoration: none;
5563 font-family: Trade Gothic, Helvetica, sans-serif;
5564 font-weight: 600;
5566 .post.link-post a.link-post-link:hover {
5567 color: #c00;
5569 .post.link-post a.link-post-link:hover::before {
5570 color: #4879ec;
5571 text-shadow:
5572 0.5px 0.5px 0 #fff,
5573 -0.5px -0.5px 0 #fff,
5574 0 0 2px #fff,
5575 0 0 3px #00c;
5577 .post.link-post a.link-post-link:focus {
5578 color: #999;
5579 border-bottom: 2px dotted #999;
5582 /*==========*/
5583 /* COMMENTS */
5584 /*==========*/
5586 #content > .comment-thread .comment-meta a.date:focus,
5587 #content > .comment-thread .comment-meta a.permalink:focus {
5588 color: #888;
5589 outline: 2px dotted #999;
5590 position: relative;
5591 background-color: #fff;
5592 padding: 0 5px;
5593 left: -5px;
5595 #content > .comment-thread .comment-meta a.date:focus + *,
5596 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5597 margin-left: -10px;
5599 .comment-item {
5600 border: 1px solid #ccc;
5604 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5605 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5606 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5607 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5608 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5609 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5610 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5611 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5612 .comment-item .comment-item .comment-item .comment-item .comment-item,
5613 .comment-item .comment-item .comment-item,
5614 .comment-item {
5615 background-color: #eee;
5617 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5618 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5619 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5620 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5621 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5622 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5623 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5624 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5625 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5626 #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5627 .comment-item a.comment-parent-link::after {
5628 box-shadow:
5629 0 28px 16px -16px #fff inset,
5630 4px 16px 0 12px #ffd inset,
5631 4px 4px 0 12px #ffd inset;
5634 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5635 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5636 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5637 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5638 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5639 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5640 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5641 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5642 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5643 .comment-item .comment-item .comment-item .comment-item,
5644 .comment-item .comment-item {
5645 background-color: #fff;
5647 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5648 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5649 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5650 .comment-item .comment-item .comment-item .comment-item .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,
5651 .comment-item .comment-item .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,
5652 .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,
5653 .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,
5654 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5655 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5656 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5657 .comment-item .comment-item a.comment-parent-link::after {
5658 box-shadow:
5659 0 28px 16px -16px #eee inset,
5660 4px 16px 0 12px #ffd inset,
5661 4px 4px 0 12px #ffd inset;
5664 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5665 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5666 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5667 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5668 .comment-item .comment-item .comment-item .comment-item .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,
5669 .comment-item .comment-item .comment-item .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,
5670 .comment-item .comment-item .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,
5671 .comment-item .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,
5672 .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,
5673 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5674 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5675 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5676 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5677 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5678 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5679 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5680 .comment-item .comment-item .comment-item .comment-item:target,
5681 .comment-item .comment-item .comment-item:target,
5682 .comment-item .comment-item:target,
5683 .comment-item:target {
5684 background-color: #ffd;
5686 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5687 box-shadow:
5688 0 28px 16px -16px #ffd inset,
5689 4px 16px 0 12px #ffd inset,
5690 4px 4px 0 12px #ffd inset !important;
5693 .comment-body {
5694 font-size: 1.1875rem;
5697 /*================================*/
5698 /* DEEP COMMENT THREAD COLLAPSING */
5699 /*================================*/
5701 .comment-item input[id^="expand"] + label::after {
5702 color: #00e;
5703 font-weight: 600;
5705 .comment-item input[id^="expand"] + label:hover::after {
5706 color: #c00;
5708 .comment-item input[id^="expand"] + label:active::after,
5709 .comment-item input[id^="expand"] + label:focus::after{
5710 color: #c00;
5712 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5713 border-width: 1px 0 0 0;
5716 /*==============*/
5717 /* COMMENT-META */
5718 /*==============*/
5720 .comment-meta .author {
5721 font-size: 1.125em;
5722 color: #090;
5724 .comment-item .author:not(.redacted).original-poster::after {
5725 opacity: 0.6;
5726 filter: brightness(60%);
5729 .comment-item .karma.active-controls::after,
5730 .comment-item .karma .karma-value::after,
5731 .post .karma.active-controls::after,
5732 .post .karma .karma-value::after {
5733 background-color: #eee;
5734 color: #777;
5735 border-radius: 4px;
5736 box-shadow: 0 0 0 1px #bbb inset;
5738 .comment-item .karma.active-controls::after,
5739 .post .karma.active-controls::after {
5740 padding: 6px;
5741 bottom: -46px;
5743 .comment-item .karma .karma-value::after,
5744 .post .karma .karma-value::after {
5745 padding: 2px 8px;
5746 top: -26px;
5747 min-width: 60px;
5750 /*====================*/
5751 /* ANTI-KIBITZER MODE */
5752 /*====================*/
5754 .author.redacted,
5755 .inline-author.redacted {
5756 opacity: 0.6;
5757 font-weight: 400;
5760 .karma-value.redacted {
5761 opacity: 0.4;
5764 .link-post-domain.redacted {
5765 opacity: 0.4;
5768 /*===========================*/
5769 /* COMMENT THREAD NAVIGATION */
5770 /*===========================*/
5772 div.comment-parent-link {
5773 font-weight: bold;
5775 a.comment-parent-link {
5776 font-weight: normal;
5778 a.comment-parent-link::before {
5779 color: #bbb;
5781 a.comment-parent-link:hover::before {
5782 background-color: #ffd;
5783 color: #999;
5786 div.comment-child-links {
5787 font-weight: bold;
5789 div.comment-child-links a {
5790 font-weight: normal;
5792 .comment-child-link::before {
5793 color: #aaa;
5796 .comment-item-highlight {
5797 box-shadow:
5798 0 0 2px #e7b200,
5799 0 0 3px #e7b200,
5800 0 0 5px #e7b200,
5801 0 0 7px #e7b200,
5802 0 0 10px #e7b200;
5803 border: 1px solid #e7b200;
5805 .comment-item-highlight-faint {
5806 box-shadow:
5807 0 0 2px #f8e7b5,
5808 0 0 3px #f8e7b5,
5809 0 0 5px #f8e7b5,
5810 0 0 7px #f8e7b5,
5811 0 0 10px #f8e7b5;
5812 border: 1px solid #f8e7b5;
5815 .comment-popup {
5816 background-color: #fff;
5819 /*=======================*/
5820 /* COMMENTS COMPACT VIEW */
5821 /*=======================*/
5823 #comments-list-mode-selector button {
5824 box-shadow:
5825 0 0 0 4px #eee inset,
5826 0 0 0 5px #aaa inset;
5828 #comments-list-mode-selector button:hover,
5829 #comments-list-mode-selector button.selected {
5830 box-shadow:
5831 0 0 0 1px #eee inset,
5832 0 0 0 2px #aaa inset,
5833 0 0 0 4px #eee inset,
5834 0 0 0 5px #aaa inset;
5836 #content.compact > .comment-thread .comment-item {
5837 max-height: 58px;
5839 #content.compact > .comment-thread .comment-item::after {
5840 color: #00e;
5841 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
5844 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5845 #content.compact > .comment-thread .comment-item:hover .comment,
5846 #content.compact > .comment-thread .comment-item.expanded .comment {
5847 background-color: #fff;
5848 outline: 3px solid #00c;
5850 #content.compact > .comment-thread .comment-item:hover .comment::before,
5851 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5852 background-color: #fff;
5853 box-shadow:
5854 0 0 3px #fff,
5855 0 0 5px #fff,
5856 0 0 7px #fff,
5857 0 0 10px #fff,
5858 0 0 20px #fff,
5859 0 0 30px #fff,
5860 0 0 40px #fff;
5863 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
5864 #content.compact > .comment-thread.expanded .comment-item .comment {
5865 background-color: #fff;
5866 outline: 3px solid #00c;
5868 #content.compact > .comment-thread.expanded .comment-item .comment::before {
5869 background-color: #fff;
5870 box-shadow:
5871 0 0 3px #fff,
5872 0 0 5px #fff,
5873 0 0 7px #fff,
5874 0 0 10px #fff,
5875 0 0 20px #fff,
5876 0 0 30px #fff,
5877 0 0 40px #fff;
5881 #content.user-page.compact > h1.listing {
5882 margin-top: 0.5rem;
5884 #content.user-page.compact > h1.listing + .post-meta {
5885 margin-bottom: 0.5rem;
5888 /*===========================*/
5889 /* HIGHLIGHTING NEW COMMENTS */
5890 /*===========================*/
5892 .new-comment::before {
5893 display: none;
5895 .new-comment {
5896 border: 1px solid #e00;
5897 outline: 1px solid #e00;
5900 /*=================================*/
5901 /* COMMENT THREAD MINIMIZE BUTTONS */
5902 /*=================================*/
5904 .comment-minimize-button {
5905 color: #ccc;
5907 .comment-minimize-button:hover {
5908 color: #aaa;
5909 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5911 .comment-minimize-button::after {
5912 font-family: Trade Gothic, Helvetica, sans-serif;
5913 color: #777;
5915 .comment-minimize-button.maximized::after {
5916 color: #ccc;
5919 /*==============*/
5920 /* VOTE BUTTONS */
5921 /*==============*/
5923 .vote::before {
5924 content: "";
5925 border-radius: 50%;
5926 background-size: 17px 17px;
5927 width: 17px;
5928 height: 17px;
5929 display: inline-block;
5930 position: relative;
5931 top: 2.5px;
5933 .vote:active {
5934 transform: none;
5936 .vote:hover::before,
5937 .vote.selected::before,
5938 .vote.clicked-once::before,
5939 .vote.clicked-twice::before {
5940 filter: drop-shadow(0 0 1px #fff);
5943 .upvote::before,
5944 .waiting .upvote.big-vote.clicked-twice::before {
5945 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
5946 filter: grayscale(100%) brightness(128%);
5948 .downvote::before,
5949 .waiting .downvote.big-vote.clicked-twice::before {
5950 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
5951 filter: grayscale(100%) brightness(188%);
5954 .vote.clicked-once::before,
5955 .vote.big-vote.clicked-once::before {
5956 box-shadow:
5957 0 0 0 1px #fff,
5958 0 0 0 4px #c8c8c8,
5959 0 0 0 5px transparent;
5962 .vote.big-vote.clicked-twice::before,
5963 .waiting .vote.big-vote:not(.clicked-twice)::before,
5964 .waiting .vote:not(.big-vote).clicked-once::before {
5965 box-shadow: none;
5968 .upvote.clicked-twice::before,
5969 .upvote.big-vote::before {
5970 box-shadow:
5971 0 0 0 1px #fff,
5972 0 0 0 4px #00d800,
5973 0 0 0 5px transparent;
5976 .downvote.clicked-twice::before,
5977 .downvote.big-vote::before {
5978 box-shadow:
5979 0 0 0 1px #fff,
5980 0 0 0 4px #eb4c2a,
5981 0 0 0 5px transparent;
5984 /*===========================*/
5985 /* COMMENTING AND POSTING UI */
5986 /*===========================*/
5988 .posting-controls input[type='submit'] {
5989 background-color: #fff;
5990 border: 1px solid #aaa;
5991 font-weight: bold;
5993 .posting-controls input[type='submit']:hover,
5994 .posting-controls input[type='submit']:focus {
5995 background-color: #ddd;
5996 border: 1px solid #999;
5999 .comment-controls .cancel-comment-button {
6000 font-weight: 600;
6001 color: #c00;
6002 text-shadow:
6003 0 0 1px #fff,
6004 0 0 2px #fff;
6006 .comment-controls .cancel-comment-button:hover {
6007 color: #f00;
6008 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6011 .new-comment-button {
6012 font-weight: 600;
6015 .comment-controls .delete-button,
6016 .comment-controls .retract-button {
6017 color: #c00;
6019 .comment-controls .delete-button::before {
6020 font-size: 1em;
6021 font-weight: 400;
6022 opacity: 0.7;
6024 .comment-controls .edit-button,
6025 .comment-controls .unretract-button {
6026 color: #0a0;
6028 .comment-controls .action-button:hover {
6029 color: #f00
6032 .post-controls {
6033 margin: 0.25em -1em 0 0;
6035 h1.listing .edit-post-link,
6036 h1.listing .edit-post-link:visited,
6037 .post-controls .edit-post-link,
6038 .post-controls .edit-post-link:visited {
6039 color: #090;
6041 h1.listing .edit-post-link:hover,
6042 .post-controls .edit-post-link:hover {
6043 color: #d00;
6046 .posting-controls textarea {
6047 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
6048 color: #000;
6049 border-color: #00e;
6051 .posting-controls textarea:focus {
6052 border-width: 29px 1px 1px 1px;
6053 box-shadow: 0 0 0 1px #00e;
6055 .posting-controls.edit-existing-post textarea:focus,
6056 .posting-controls form.edit-existing-comment textarea:focus {
6057 border-color: #090;
6058 box-shadow: 0 0 0 1px #090;
6061 /*= Scroll bars =*/
6063 .posting-controls textarea::-webkit-scrollbar {
6064 width: 16px;
6065 background-color: transparent;
6067 .posting-controls textarea::-webkit-scrollbar-track {
6068 background-color: #fff;
6069 border-left: 1px solid #0040ff;
6070 border-top: 1px solid #eee;
6072 .posting-controls textarea:focus::-webkit-scrollbar-track {
6073 border-top: 1px solid #ddf;
6074 border-left: 2px solid #0040ff;
6076 .posting-controls textarea::-webkit-scrollbar-thumb {
6077 background-color: #acacff;
6078 box-shadow: 0 0 0 1px #eee inset;
6079 border-left: 1px solid #0040ff;
6081 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
6082 background-color: #0040ff;
6083 border-left: 2px solid #0040ff;
6084 box-shadow:
6085 0 1px 0 0 #ddf inset,
6086 0 0 0 1px #eee inset;
6089 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
6090 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
6091 border-left: 2px solid #090;
6093 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
6094 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
6095 border-left: 2px solid #090;
6096 background-color: #28a708;
6099 /* GUIEdit buttons */
6101 .guiedit-buttons-container {
6102 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6105 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6106 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6107 color: #050;
6109 .guiedit-buttons-container button {
6110 font-family: Font Awesome, 'News Gothic BT', 'Helvetica', sans-serif;
6113 .guiedit::after {
6114 font-family: Trade Gothic, Helvetica, sans-serif;
6115 color: #777;
6116 text-shadow: none;
6119 /* Markdown hints */
6121 #markdown-hints-checkbox + label {
6122 color: #00e;
6124 #markdown-hints-checkbox + label:hover {
6125 color: #e00;
6126 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6128 #markdown-hints {
6129 border: 1px solid #c00;
6130 background-color: #ffa;
6133 /*================*/
6134 /* EDIT POST FORM */
6135 /*================*/
6137 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
6138 top: -2px;
6140 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6141 border-radius: 3px;
6142 border: 1px solid #ddd;
6143 color: #777;
6145 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6146 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6147 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6148 text-shadow:
6149 0 0 1px #fff,
6150 0 0 2px #fff,
6151 0 0 2.5px #aaa;
6153 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6154 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6155 border-color: #aaa;
6158 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6159 content: "\F00C";
6161 #edit-post-form input[type='radio'] + label {
6162 color: #777;
6163 border-color: #ddd;
6165 #edit-post-form input[type='radio'][value='all'] + label {
6166 border-radius: 8px 0 0 8px;
6167 border-width: 1px;
6169 #edit-post-form input[type='radio'][value='drafts'] + label {
6170 border-radius: 0 8px 8px 0;
6172 #edit-post-form input[type='radio'] + label:hover,
6173 #edit-post-form input[type='radio']:focus + label {
6174 background-color: #ddd;
6175 color: #000;
6177 #edit-post-form input[type='radio']:focus + label {
6178 color: #000;
6179 box-shadow:
6180 0 0 0 1px #aaa;
6182 #edit-post-form input[type='radio']:checked + label {
6183 background-color: #ddd;
6184 border-color: #ddd;
6185 color: #000;
6186 text-shadow:
6187 0 -1px 0 #fff,
6188 0 0.5px 0.5px #000;
6191 /*=======*/
6192 /* LINKS */
6193 /*=======*/
6196 text-decoration: none;
6197 color: #00e;
6199 a:visited {
6200 color: #551a8b;
6202 a:hover {
6203 text-decoration: underline;
6206 /*=========*/
6207 /* BUTTONS */
6208 /*=========*/
6210 button,
6211 input[type='submit'] {
6212 color: #00e;
6215 button:hover,
6216 input[type='submit']:hover,
6217 button:focus,
6218 input[type='submit']:focus {
6219 color: #d00;
6220 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6222 button:active,
6223 input[type='submit']:active {
6224 color: #f00;
6225 transform: scale(0.9);
6227 .button:visited {
6228 color: #00e;
6230 .button:hover {
6231 color: #d00;
6232 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6233 text-decoration: none;
6235 .button:active {
6236 transform: scale(0.9);
6238 .button:focus:not(:hover) {
6239 transform: none;
6241 @-moz-document url-prefix() {
6242 .button:active {
6243 transform: none;
6247 /*==========*/
6248 /* HEADINGS */
6249 /*==========*/
6251 .post-body h1,
6252 .post-body h2,
6253 .post-body h3,
6254 .post-body h4,
6255 .post-body h5,
6256 .post-body h6,
6257 .comment-body h1,
6258 .comment-body h2,
6259 .comment-body h3,
6260 .comment-body h4,
6261 .comment-body h5,
6262 .comment-body h6 {
6263 font-family: Trade Gothic, Helvetica, sans-serif;
6265 .post-body h6,
6266 .comment-body h6 {
6267 color: #555;
6270 /*========*/
6271 /* QUOTES */
6272 /*========*/
6274 blockquote {
6275 border-left: 5px solid #ccc;
6278 /*========*/
6279 /* IMAGES */
6280 /*========*/
6282 .post-body img,
6283 .comment-body img {
6284 border: 1px solid #ccc;
6286 .post-body img[src$='.svg'],
6287 .comment-body img[src$='.svg'] {
6288 border: none;
6290 #content figure img {
6291 border: 1px solid #000;
6293 #content figure img[src$='.svg'] {
6294 border: none;
6297 /*========*/
6298 /* TABLES */
6299 /*========*/
6301 .post-body table,
6302 .comment-body table,
6303 .post-body table th,
6304 .post-body table td,
6305 .comment-body table th,
6306 .comment-body table td {
6307 border: 1px solid #ccc;
6310 /*======*/
6311 /* MISC */
6312 /*======*/
6314 hr {
6315 border-bottom: 1px solid #999;
6318 code {
6319 background-color: #f6f6ff;
6320 border: 1px solid #ddf;
6321 border-radius: 4px;
6324 input[type='text'],
6325 input[type='search'],
6326 input[type='password'] {
6327 border: 1px solid #999;
6328 color: #000;
6329 background-color: transparent;
6331 input[type='text']:focus,
6332 input[type='search']:focus,
6333 input[type='password']:focus {
6334 border: 1px solid #00e;
6335 outline: 1px solid #00e;
6338 select {
6339 color: #000;
6342 /*============*/
6343 /* ABOUT PAGE */
6344 /*============*/
6346 .about-page mark {
6347 background-color: #e6e6e6;
6348 text-decoration: none;
6349 box-shadow:
6350 0 -1px 0 0 #000 inset,
6351 0 -3px 1px -2px #000 inset;
6352 padding: 0 1px;
6355 #content.about-page .accesskey-table {
6356 font-family: Trade Gothic, Helvetica, sans-serif;
6357 border-color: #ddd;
6360 #content.about-page img {
6361 border: 1px solid #000;
6364 /*========================*/
6365 /* QUALIFIED HYPERLINKING */
6366 /*========================*/
6368 #aux-about-link a {
6369 color: #777;
6371 #aux-about-link a:hover {
6372 opacity: 1.0;
6373 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6376 .qualified-linking label {
6377 color: #00e;
6379 .qualified-linking label:hover {
6380 text-shadow:
6381 0 0 1px #fff,
6382 0 0 3px #fff,
6383 0 0 5px #00e;
6386 .qualified-linking-toolbar {
6387 border: 1px solid #000;
6388 background-color: #fff;
6390 .qualified-linking-toolbar a {
6391 background-color: #eee;
6392 border: 1px solid #ccc;
6393 border-radius: 4px;
6395 .qualified-linking-toolbar a:visited {
6396 color: #00e;
6398 .qualified-linking-toolbar a:hover {
6399 text-decoration: none;
6400 background-color: #ddd;
6401 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6403 .qualified-linking label::after {
6404 background-color: #eee;
6405 opacity: 0.8;
6408 /*======*/
6409 /* MATH */
6410 /*======*/
6412 .mathjax-block-container::-webkit-scrollbar {
6413 height: 12px;
6414 background-color: #f6f6ff;
6415 border-radius: 6px;
6416 border: 1px solid #ddf;
6418 .mathjax-block-container::-webkit-scrollbar-thumb {
6419 background-color: #dde;
6420 border-radius: 6px;
6421 border: 1px solid #cce;
6423 .mathjax-inline-container::-webkit-scrollbar {
6424 height: 8px;
6425 background-color: #f6f6ff;
6426 border-radius: 4px;
6427 border: 1px solid #ddf;
6429 .mathjax-inline-container::-webkit-scrollbar-thumb {
6430 background-color: #dde;
6431 border-radius: 4px;
6432 border: 1px solid #cce;
6435 /*=================*/
6436 /* ALIGNMENT FORUM */
6437 /*=================*/
6439 #content.alignment-forum-index-page::before {
6440 background-color: #eaedff;
6442 #content.alignment-forum-index-page::after {
6443 font-family: "Concourse SmallCaps";
6444 font-weight: 600;
6445 background-color: #7f85b2;
6446 color: transparent;
6447 -webkit-background-clip: text;
6448 text-shadow:
6449 rgba(255,255,255,0.5) 0px 3px 3px;
6451 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6452 #content.alignment-forum-index-page h1.listing a:hover,
6453 #content.alignment-forum-index-page h1.listing a:focus {
6454 background-color: rgba(234,237,255,0.85);
6458 /*====================*/
6459 /* FOR NARROW SCREENS */
6460 /*====================*/
6462 @media only screen and (max-width: 1440px) {
6463 #hns-date-picker {
6464 background-color: #d8d8d8;
6465 opacity: 1.0;
6467 #hns-date-picker::before {
6468 border: 1px solid #999;
6469 border-width: 1px 0 1px 1px;
6472 @media only screen and (max-width: 1200px) {
6473 #hns-date-picker {
6474 background-color: #eee;
6476 #hns-date-picker::before {
6477 display: none;
6480 @media only screen and (max-width: 1080px) {
6481 #text-size-adjustment-ui button {
6482 border: 1px solid #999;
6483 padding: 0 0 0 1px;
6484 border-radius: 50%;
6485 box-shadow:
6486 0 0 6px #999 inset,
6487 0 0 0 1px transparent;
6489 #theme-tweaker-toggle button {
6490 border: 1px solid #999;
6491 box-shadow:
6492 0 0 10px #999 inset,
6493 0 0 0 1px transparent;
6494 border-radius: 50%;
6495 transform: scale(0.8);
6498 @media only screen and (max-width: 1020px) {
6499 #quick-nav-ui a {
6500 box-shadow:
6501 0 0 0 1px #999,
6502 0 0 0 2px transparent;
6504 #new-comment-nav-ui .new-comments-count::before {
6505 background-color: #d8d8d8;
6506 box-shadow:
6507 0 0 0 1px #999,
6508 0 0 0 2px transparent;
6509 border-radius: 8px;
6512 @media only screen and (max-width: 1000px) {
6513 #theme-selector {
6514 background-color: #eee;
6515 box-shadow:
6516 0 0 0 1px #999,
6517 0 0 0 2px transparent;
6519 #theme-selector:hover::after {
6520 background-color: #999;
6521 width: calc(6em - 3px);
6522 height: calc(100% - 5px);
6523 top: 3px;
6524 left: 100%;
6526 #text-size-adjustment-ui button {
6527 background-color: #ddd;
6529 #text-size-adjustment-ui button:hover {
6530 background-color: #eee;
6532 #theme-tweaker-toggle button {
6533 background-color: #ddd;
6537 /*========*/
6538 /* MOBILE */
6539 /*========*/
6541 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6542 #ui-elements-container > div[id$='-ui-toggle'] button,
6543 #theme-selector .theme-selector-close-button {
6544 color: #aaa;
6545 text-shadow:
6546 0 0 1px #fff,
6547 0 0 3px #fff,
6548 0 0 5px #fff,
6549 0 0 10px #fff,
6550 0 0 20px #fff,
6551 0 0 30px #fff;
6554 #theme-selector {
6555 background-color: #eee;
6556 box-shadow:
6557 0 0 0 1px #999,
6558 0 0 1px 3px #fff,
6559 0 0 3px 3px #fff,
6560 0 0 5px 3px #fff,
6561 0 0 10px 3px #fff,
6562 0 0 20px 3px #fff;
6563 border-radius: 12px;
6565 #theme-selector::before {
6566 color: #777;
6567 font-weight: normal;
6568 text-shadow: 0.5px 0.5px 0 #aaa;
6570 #theme-selector button {
6571 background-color: #e6e6e6;
6572 border-radius: 10px;
6574 #theme-selector button::after {
6575 color: #000;
6576 max-width: calc(100% - 3.5em);
6577 overflow: hidden;
6578 text-overflow: ellipsis;
6579 padding: 0 0 2px 0;
6581 #theme-selector button.selected::after {
6582 text-shadow:
6583 0 -1px 0 #fff,
6584 0 0.5px 0.5px #000;
6587 #quick-nav-ui {
6588 background-color: #fff;
6590 #quick-nav-ui,
6591 #new-comment-nav-ui,
6592 #hns-date-picker {
6593 box-shadow:
6594 0 0 1px 3px #fff,
6595 0 0 3px 3px #fff,
6596 0 0 5px 3px #fff,
6597 0 0 10px 3px #fff,
6598 0 0 20px 3px #fff;
6600 #quick-nav-ui a::after,
6601 #new-comment-nav-ui::before {
6602 font-family: Trade Gothic, Helvetica, sans-serif;
6603 font-weight: bold;
6604 box-shadow:
6605 0 0 1px 0 #fff,
6606 0 0 3px 0 #fff,
6607 0 0 5px 0 #fff;
6608 background-color: #fff;
6609 border-radius: 4px;
6611 #quick-nav-ui,
6612 #new-comment-nav-ui {
6613 border-radius: 8px;
6615 #new-comment-nav-ui {
6616 background-color: #fff;
6617 border: 1px solid #999;
6619 #new-comment-nav-ui::before {
6620 color: #777;
6621 font-weight: bold;
6623 #new-comment-nav-ui .new-comment-sequential-nav-button {
6624 box-shadow: 0 0 0 1px #999;
6625 color: #00c;
6627 #new-comment-nav-ui .new-comments-count {
6628 background-color: inherit;
6629 box-shadow: 0 -1px 0 0 #999;
6631 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6632 color: #bbb;
6634 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6635 border-radius: 7px 0 0 7px;
6637 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6638 border-radius: 0 7px 7px 0;
6640 #new-comment-nav-ui button::after {
6641 font-family: Trade Gothic, Helvetica, sans-serif;
6643 #hns-date-picker {
6644 background-color: #fff;
6645 border: 1px solid #999;
6648 /*****************************************/
6649 @media only screen and (max-width: 900px) {
6650 /*****************************************/
6651 h1.listing + .post-meta > * {
6652 line-height: 1.5;
6654 h1.listing + .post-meta .post-section {
6655 overflow: visible;
6656 order: 1;
6658 h1.listing + .post-meta .post-section::before {
6659 position: unset;
6662 #primary-bar .nav-inner {
6663 font-size: 1.375em;
6665 #secondary-bar .nav-inner {
6666 font-size: 1.125em;
6668 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
6669 padding: 6px 10px;
6672 .archive-nav *[class^='archive-nav-item-'] {
6673 border-width: 1px !important;
6675 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6676 background-color: #aaa;
6679 .comment-item .comment-item {
6680 margin: 0.75em 3px 3px 6px;
6682 .comment-item .comment-item + .comment-item {
6683 margin: 1.5em 3px 3px 6px;
6686 .sublevel-nav:not(.sort) .sublevel-item,
6687 .sublevel-nav:not(.sort) .sublevel-item:first-child,
6688 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6689 border-radius: 8px;
6690 border-width: 1px;
6691 margin: 2px;
6693 /*******************************************/
6694 } @media only screen and (max-width: 720px) {
6695 /*******************************************/
6696 /*******************************************/
6697 } @media only screen and (max-width: 520px) {
6698 /*******************************************/
6699 h1.listing {
6700 font-size: 1.25rem;
6701 margin: 18px 6px 4px 6px;
6702 max-width: calc(100% - 12px);
6704 h1.listing + .post-meta {
6705 margin: 4px 6px;
6707 h1.listing a[href^='http'] {
6708 top: 2px;
6710 #content.conversations-user-page h1.listing::after {
6711 height: calc(100% + 2.25em);
6713 #content.conversations-user-page h1.listing + .post-meta .date {
6714 margin: 0 0 0 1em;
6717 .comment-body {
6718 font-size: 1.125rem;
6721 #content.compact > .comment-thread .comment-item {
6722 max-height: 105px;
6725 .textarea-container:focus-within textarea {
6726 background-color: #fff;
6727 border-width: 1px;
6729 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6730 padding: 5px 6px 6px 6px;
6731 font-weight: bold;
6733 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6734 box-shadow:
6735 0 0 0 2px #c00;
6736 color: #c00;
6738 .textarea-container:focus-within .guiedit-buttons-container {
6739 background-color: #fff;
6740 border-top: 1px solid #ddf;
6742 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
6743 box-shadow: none;
6745 #content.conversation-page .textarea-container:focus-within::after {
6746 background-color: #fff;
6748 .textarea-container:focus-within button.guiedit {
6749 border: 1px solid #00c;
6750 border-radius: 6px;
6752 #markdown-hints::after {
6753 color: #090;
6756 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
6757 top: 2px;
6759 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6760 top: 1px;
6766 /*************/
6767 /* ACCORDIUS */
6768 /*************/