Corrected style sheet file names
[lw2-viewer.git] / www / css / style-classic.mac.css
blob9b1c94e312af03c43353ca9b2b6598a0245d0d41
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 /* CLASSIC THEME */
4832 /*****************/
4834 body {
4835 color: #000;
4836 background-color: #d8d8d8;
4837 font-family: 'Arial', sans-serif;
4839 #content {
4840 line-height: 1.5;
4842 #content::before {
4843 background-color: #fff;
4844 box-shadow: 0px 0px 10px #555;
4847 /*=========*/
4848 /* NAV BAR */
4849 /*=========*/
4851 .nav-inner {
4852 font-size: 1.125em;
4853 font-weight: bold;
4855 .nav-inner,
4856 #primary-bar.inactive-bar .nav-inner {
4857 padding: 13px 30px 11px 30px;
4859 #secondary-bar .nav-inner {
4860 font-size: 0.875em;
4862 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
4863 padding: 6px 0 4px 0;
4866 #bottom-bar.decorative {
4867 background-color: #fff;
4869 #bottom-bar.decorative::before,
4870 #bottom-bar.decorative::after {
4871 content: "GW";
4872 font-weight: 200;
4873 display: block;
4874 text-align: center;
4875 padding: 0.5em 0 0.75em 0;
4877 #bottom-bar.decorative::before {
4878 width: 100%;
4879 color: transparent;
4880 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4881 background-repeat: repeat-x;
4882 background-position: center 44%;
4883 margin: 0 30px;
4884 filter: opacity(0.7);
4886 #bottom-bar.decorative::after {
4887 color: #eee;
4888 position: absolute;
4889 left: 0;
4890 right: 0;
4891 margin: auto;
4892 background-color: #fff;
4893 padding-right: 4px;
4894 padding-left: 4px;
4896 @supports (width: -moz-fit-content) {
4897 #bottom-bar.decorative::after {
4898 width: -moz-fit-content;
4901 @supports (width: fit-content) {
4902 #bottom-bar.decorative::after {
4903 width: fit-content;
4907 /* Accesskey hints */
4909 .nav-inner::after {
4910 display: block;
4911 position: absolute;
4912 left: 5px;
4913 top: 0;
4914 font-weight: normal;
4915 font-size: 0.7em;
4916 color: #ddd;
4918 .nav-inner:hover::after {
4919 color: #bbb;
4922 /* This makes the navbar items look like tabs: */
4924 .active-bar {
4925 position: relative;
4927 .nav-bar {
4928 background-color: #f5f5f5;
4930 .nav-bar {
4931 border-bottom: 1px solid #d6d5d6;
4933 .nav-bar a,
4934 .nav-bar a:visited {
4935 color: #999;
4937 .nav-bar a:hover {
4938 color: #777;
4939 text-decoration: none;
4941 .nav-bar .nav-current {
4942 color: #666;
4944 .nav-item:nth-of-type(n+2) {
4945 box-shadow: -9px 0 0 -8px #d6d5d6;
4948 /* Search tab */
4950 #nav-item-search form::before {
4951 position: relative;
4952 top: 2px;
4953 opacity: 0.3;
4955 #nav-item-search button {
4956 border: none;
4957 font-weight: inherit;
4959 #nav-item-search input::placeholder {
4960 color: #d00;
4961 font-weight: normal;
4964 /*= User/login tab =*/
4966 #inbox-indicator::before {
4967 top: 1px;
4968 color: #ccc;
4971 /*= Pagination UI =*/
4973 #bottom-bar #nav-item-next a::before {
4974 margin-left: -2.2em;
4975 left: 4.0em;
4977 #bottom-bar #nav-item-last a::before {
4978 margin-left: -2.3em;
4979 left: 3.9em;
4982 /*= Top pagination UI hover tooltips =*/
4984 #top-nav-bar a::after,
4985 #bottom-bar a::after {
4986 color: #000;
4989 /*==============*/
4990 /* PAGE TOOLBAR */
4991 /*==============*/
4993 .new-post,
4994 .new-post:visited,
4995 .new-private-message,
4996 .new-private-message:visited {
4997 color: #090;
4999 .logout-button {
5000 color: #d33;
5003 /*==============*/
5004 /* SUBLEVEL NAV */
5005 /*==============*/
5007 .sublevel-nav .sublevel-item {
5008 color: #777;
5009 background-color: #fff;
5011 .sublevel-nav .sublevel-item:not(.selected):hover {
5012 background-color: #ddd;
5013 color: #000;
5014 text-decoration: none;
5015 text-shadow: none;
5017 .sublevel-nav .sublevel-item:not(.selected):active,
5018 .sublevel-nav .sublevel-item.selected {
5019 background-color: #ddd;
5020 color: #000;
5021 text-shadow:
5022 0 -1px 0 #fff,
5023 0 0.5px 0.5px #000;
5026 .sublevel-nav:not(.sort) .sublevel-item {
5027 border-style: solid;
5028 border-color: #ddd;
5029 border-width: 1px 0 1px 1px;
5031 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5032 border-radius: 8px 0 0 8px;
5034 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5035 border-width: 1px;
5036 border-radius: 0 8px 8px 0;
5039 /*=====================*/
5040 /* SORT ORDER SELECTOR */
5041 /*=====================*/
5043 .sublevel-nav.sort .sublevel-item {
5044 letter-spacing: 0.5px;
5045 padding: 7px 7px 6px 8px;
5046 text-transform: uppercase;
5047 pointer-events: auto;
5048 box-shadow: 1px 1px 0 0 #aaa inset;
5050 .sublevel-nav.sort {
5051 border: 2px solid transparent;
5052 padding: 18px 0 0 0;
5053 border-radius: 8px;
5054 pointer-events: none;
5055 background-color: #bbb;
5057 .sublevel-nav.sort::before {
5058 text-transform: uppercase;
5059 font-weight: 600;
5060 color: #444;
5061 text-shadow: 0.5px 0.5px 0 #fff;
5062 z-index: 1;
5064 .sublevel-nav.sort::after {
5065 content: "";
5066 position: absolute;
5067 display: block;
5068 top: 0;
5069 left: 0;
5070 width: 100%;
5071 height: 100%;
5072 border-radius: 6px;
5073 box-shadow:
5074 0 18px 0 0 #bbb inset,
5075 0 0 0 1px #aaa inset,
5076 0 18px 0 1px #aaa inset,
5077 0 0 0 2px #bbb;
5080 /*================*/
5081 /* WIDTH SELECTOR */
5082 /*================*/
5083 /* THEME SELECTOR */
5084 /*================*/
5086 #width-selector button,
5087 #theme-selector button {
5088 box-shadow:
5089 0 0 0 4px #d8d8d8 inset,
5090 0 0 0 5px #bbb inset;
5092 #width-selector button:hover,
5093 #width-selector button.selected,
5094 #theme-selector button:hover,
5095 #theme-selector button.selected {
5096 box-shadow:
5097 0 0 0 5px #bbb inset;
5100 #theme-selector button::before {
5101 font-size: 0.9375em;
5102 padding: 5px 6px 7px 6px;
5103 color: #999;
5104 background-color: #d8d8d8;
5106 #theme-selector button:hover::before,
5107 #theme-selector button.selected::before {
5108 color: #222;
5110 #width-selector button::after {
5111 color: #999;
5112 font-size: 0.9em;
5115 /*======================*/
5116 /* THEME TWEAKER TOGGLE */
5117 /*======================*/
5119 #theme-tweaker-toggle button {
5120 color: #777;
5123 /*=================*/
5124 /* QUICKNAV WIDGET */
5125 /*=================*/
5127 #quick-nav-ui a {
5128 color: #999;
5129 background-color: #e4e4e4;
5130 border-radius: 4px;
5132 #quick-nav-ui a[href='#bottom-bar'] {
5133 line-height: 1.8;
5135 #quick-nav-ui a:active {
5136 transform: scale(0.9);
5138 #quick-nav-ui a[href='#comments'].no-comments {
5139 opacity: 0.4;
5140 color: #bbb;
5142 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5143 #quick-nav-ui a:hover {
5144 color: #000;
5145 background-color: #eee;
5147 #quick-nav-ui a:focus:not(:hover) {
5148 transform: none;
5149 text-shadow: none;
5153 /*======================*/
5154 /* NEW COMMENT QUICKNAV */
5155 /*======================*/
5157 #new-comment-nav-ui .new-comments-count {
5158 font-weight: 600;
5159 color: #666;
5160 text-shadow: 0.5px 0.5px 0 #fff;
5162 #new-comment-nav-ui .new-comments-count::after {
5163 font-weight: 600;
5164 color: #777;
5166 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5167 color: #bbb;
5168 text-shadow: none;
5170 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5171 #new-comment-nav-ui .new-comments-count:hover {
5172 text-shadow:
5173 0 0 1px #fff,
5174 0 0 3px #fff,
5175 0 0 5px #fff,
5176 0 0 8px #fff,
5177 0.5px 0.5px 0 #fff;
5179 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5180 color: #d00;
5184 /*=================*/
5185 /* HNS DATE PICKER */
5186 /*=================*/
5188 #hns-date-picker span {
5189 color: #777;
5190 text-shadow: 0.5px 0.5px 0 #fff;
5191 font-weight: 600;
5193 #hns-date-picker input {
5194 border: 1px solid #777;
5195 background-color: transparent;
5196 color: #666;
5198 #hns-date-picker input:focus {
5199 color: #000;
5202 /*======================*/
5203 /* ANTI-KIBITZER TOGGLE */
5204 /*======================*/
5206 #anti-kibitzer-toggle button::before,
5207 #anti-kibitzer-toggle button::after {
5208 background-color: #888;
5209 -webkit-background-clip: text;
5210 color: transparent;
5211 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5213 #anti-kibitzer-toggle button:hover::before,
5214 #anti-kibitzer-toggle button:hover::after {
5215 background-color: #444;
5218 /*======================*/
5219 /* TEXT SIZE ADJUSTMENT */
5220 /*======================*/
5222 #text-size-adjustment-ui button {
5223 color: #777;
5225 #text-size-adjustment-ui button:hover {
5226 color: #222;
5228 #text-size-adjustment-ui button.default {
5229 font-weight: 600;
5231 #text-size-adjustment-ui button:disabled:hover {
5232 text-shadow: none;
5234 #text-size-adjustment-ui::after {
5235 color: #999;
5238 /*=============================*/
5239 /* COMMENTS VIEW MODE SELECTOR */
5240 /*=============================*/
5242 #comments-view-mode-selector a {
5243 color: #777;
5246 /*==========*/
5247 /* ARCHIVES */
5248 /*==========*/
5250 .archive-nav {
5251 border: 1px solid #aaa;
5253 .archive-nav *[class^='archive-nav-item'] {
5254 border-style: solid;
5255 border-color: #ddd;
5256 border-width: 1px 0 1px 1px;
5257 background-color: #eee;
5259 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5260 border-top-width: 0;
5261 border-bottom-width: 0;
5263 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5264 border-bottom-width: 1px;
5266 .archive-nav *[class^='archive-nav-item']:last-child {
5267 border-right-width: 1px;
5269 .archive-nav span[class^='archive-nav-item'] {
5270 font-weight: bold;
5271 background-color: #ddd;
5274 .archive-nav a:link,
5275 .archive-nav a:visited {
5276 color: rgba(0, 0, 238, 0.7);
5278 .archive-nav a:hover {
5279 text-decoration: none;
5280 color: #c00;
5281 background-color: #e0e0e0;
5283 .archive-nav a:active {
5284 transform: scale(0.9);
5286 .archive-nav a:focus:not(:hover) {
5287 transform: none;
5289 .archive-nav a.archive-nav-item-day:hover {
5290 background-color: #ddd;
5293 /*==========*/
5294 /* LISTINGS */
5295 /*==========*/
5297 h1.listing {
5298 margin: 1.125em 20px 0.25em 20px;
5299 max-width: calc(100% - 40px);
5300 font-family: 'Arial', sans-serif, 'Font Awesome';
5301 font-size: 1.125rem;
5302 padding-left: 30px;
5303 max-height: unset;
5306 h1.listing a[href^='/posts'] {
5307 color: #538d4d;
5308 white-space: unset;
5309 display: inline;
5311 h1.listing a[href^='/posts']:visited {
5312 color: #5a5a5b;
5314 h1.listing a[href^="http"] {
5315 top: 2px;
5318 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5319 h1.listing a:hover,
5320 h1.listing a:focus {
5321 color: #3d3d3e;
5322 text-decoration: none;
5324 h1.listing a:focus {
5325 border-bottom: 1px dotted #999;
5327 h1.listing:focus-within::before {
5328 display: none;
5330 h1.listing:focus-within + .post-meta .karma-value {
5331 box-shadow:
5332 0 0 0 3px #fff,
5333 0 0 0 6px #3d3d3e;
5335 h1.listing a[href^="http"]:hover,
5336 h1.listing a[href^="http"]:focus {
5337 color: #4879ec;
5338 text-shadow:
5339 0.5px 0.5px 0 #fff,
5340 -0.5px -0.5px 0 #fff,
5341 0 0 2px #fff,
5342 0 0 3px #00c;
5343 border: none;
5347 h1.listing .edit-post-link {
5348 padding: 5px 3px 12px 0.5em;
5349 top: 0;
5350 right: 0;
5352 h1.listing .edit-post-link:hover {
5353 text-decoration: none;
5355 #content.user-page h1.listing .edit-post-link {
5356 background-color: #f7f7f8;
5359 /*======*/
5360 /* SPAM */
5361 /*======*/
5363 h1.listing.spam {
5364 opacity: 0.15;
5366 h1.listing.spam + .post-meta {
5367 opacity: 0.2;
5369 h1.listing.spam:hover,
5370 h1.listing.spam + .post-meta:hover,
5371 h1.listing.spam:hover + .post-meta {
5372 opacity: 1.0;
5375 /*===================*/
5376 /* LISTING POST-META */
5377 /*===================*/
5379 h1.listing + .post-meta {
5380 font-size: 0.8125rem;
5381 padding-left: 30px;
5382 display: flex;
5383 justify-content: flex-end;
5386 h1.listing + .post-meta .author {
5387 font-weight: bold;
5388 color: #6a8a6b;
5389 text-decoration: none;
5390 margin: 0 0 0 1.5em;
5391 order: 0;
5393 h1.listing + .post-meta .author:hover {
5394 color: #3d3d3e;
5396 h1.listing + .post-meta .date,
5397 h1.listing + .post-meta .read-time {
5398 color: #999;
5399 font-style: italic;
5401 h1.listing + .post-meta a {
5402 color: #8a8a8b;
5403 text-decoration: underline;
5405 h1.listing + .post-meta a:hover {
5406 color: #3d3d3e;
5409 h1.listing + .post-meta .karma-value {
5410 background-color: #538d4d;
5411 color: #fff;
5412 font-weight: bold;
5413 font-size: 0.8125rem;
5414 border-radius: 1.0625em;
5415 padding: 2px 6px 1px 6px;
5416 text-align: center;
5417 display: block;
5418 min-width: 2.125em;
5419 position: absolute;
5420 right: calc(100% - 1.75em);
5421 top: -2.1em;
5423 h1.listing + .post-meta .karma-value span,
5424 h1.listing + .post-meta .lw2-link span,
5425 h1.listing + .post-meta .comment-count span {
5426 display: none;
5429 h1.listing + .post-meta > * {
5430 text-align: right;
5431 margin: 0 0 0 0.5em;
5433 h1.listing + .post-meta .read-time {
5434 width: 6.5em;
5435 order: 2;
5437 h1.listing + .post-meta .comment-count {
5438 order: -1;
5440 h1.listing + .post-meta .comment-count::before {
5441 content: "Comments ("
5443 h1.listing + .post-meta .comment-count::after {
5444 content: ")"
5446 h1.listing + .post-meta .date {
5447 width: 11em;
5448 order: 1;
5450 h1.listing + .post-meta .lw2-link {
5451 margin: 0 0 0 1em;
5452 order: 3;
5454 h1.listing + .post-meta .post-section {
5455 margin: 0;
5456 text-decoration: none;
5458 h1.listing + .post-meta .post-section::before {
5459 left: unset;
5460 right: calc(100% + 1.15em);
5461 top: -1.95em;
5463 h1.listing + .post-meta .link-post-domain {
5464 order: -2;
5465 margin: 0 1em 0 0;
5468 /*============*/
5469 /* USER PAGES */
5470 /*============*/
5472 #content.user-page h1.page-main-heading {
5473 border-bottom: 1px solid #ccc;
5476 #content.user-page h1.listing,
5477 #content.user-page h1.listing + .post-meta {
5478 background-color: #f7f7f8;
5479 border-style: solid;
5480 border-color: #bbbcbf;
5483 #content.user-page h1.listing {
5484 padding: 0.5em 6px 0 48px;
5485 border-width: 1px 1px 0 1px;
5486 margin: 1rem 0 0 0;
5487 max-width: 100%;
5489 #content.own-user-page h1.listing,
5490 h1.listing.own-post-listing {
5491 padding-right: 36px;
5493 #content.user-page h1.listing a:hover {
5494 background-color: #f7f7f8;
5497 #content.user-page h1.listing + .post-meta {
5498 padding: 0.25em 10px 0.5em 32px;
5499 border-width: 0 1px 1px 1px;
5500 margin: 0 0 1rem 0;
5502 #content.user-page h1.listing + .post-meta .karma-value {
5503 right: calc(100% - 3.25em);
5504 top: -1.8em;
5506 #content.user-page h1.listing + .post-meta .post-section::before {
5507 right: calc(100% - 5.1em);
5508 top: 4px;
5511 #content.conversations-user-page h1.listing {
5512 padding: 8px 6px 8px 10px;
5513 font-size: 1.25rem;
5515 #content.conversations-user-page h1.listing + .post-meta {
5516 padding: 0 10px 6px 4px;
5517 margin: 0;
5520 .user-stats .karma-total {
5521 font-weight: bold;
5524 /*================*/
5525 /* SEARCH RESULTS */
5526 /*================*/
5528 #content.search-results-page h1.listing {
5529 font-size: 1.125rem;
5532 /*===============*/
5533 /* CONVERSATIONS */
5534 /*===============*/
5536 #content.conversation-page h1.page-main-heading {
5537 font-size: 1.375em;
5538 text-align: left;
5541 /*============*/
5542 /* LOGIN PAGE */
5543 /*============*/
5545 .login-container form input[type='submit'] {
5546 font-weight: bold;
5547 background-color: #eee;
5548 border: 1px solid #ccc;
5550 .login-container form input[type='submit']:hover,
5551 .login-container form input[type='submit']:focus {
5552 background-color: #ddd;
5553 border: 1px solid #aaa;
5556 /* “Create account” form */
5558 #signup-form {
5559 background-color: #f3f3f3;
5560 border: 1px solid #ddd;
5562 #signup-form input[type='submit'] {
5563 background-color: #e4e4e4;
5564 border: 1px solid #ccc;
5566 #signup-form input[type='submit']:hover {
5567 background-color: #d8d8d8;
5568 border: 1px solid #aaa;
5571 /* Log in tip */
5573 .login-container .login-tip {
5574 border: 1px solid #eee;
5577 /* Message box */
5579 .error-box {
5580 border: 1px solid red;
5581 background-color: #faa;
5583 .success-box {
5584 border: 1px solid green;
5585 background-color: #afa;
5588 /*=====================*/
5589 /* PASSWORD RESET PAGE */
5590 /*=====================*/
5592 .reset-password-container input[type='submit'] {
5593 background-color: #e4e4e4;
5594 border: 1px solid #ccc;
5595 font-weight: bold;
5598 /*===================*/
5599 /* TABLE OF CONTENTS */
5600 /*===================*/
5602 .contents {
5603 font-family: 'Arial', sans-serif;
5604 border: 1px solid #ddd;
5605 background-color: #eee;
5606 padding: 0.75em 0.5em 0.5em 0.5em;
5608 .contents-head {
5609 font-weight: bold;
5610 font-size: 1.25em;
5612 .post-body .contents ul {
5613 font-size: 1em;
5615 .post-body .contents li::before {
5616 color: #999;
5617 font-feature-settings: "tnum";
5620 /*==================*/
5621 /* POSTS & COMMENTS */
5622 /*==================*/
5624 .post-body,
5625 .comment-body {
5626 font-family: 'Arial', sans-serif;
5627 font-size: 1rem;
5629 .post-body a,
5630 .comment-body a {
5631 text-decoration: underline;
5633 .post-meta > *,
5634 .comment-meta > * {
5635 white-space: unset;
5638 /*===========*/
5639 /* POST-META */
5640 /*===========*/
5642 .post-meta {
5643 line-height: 1.9;
5645 .post-meta .post-section::before {
5646 color: #fff;
5647 text-shadow:
5648 1px 1px 0 #090,
5649 0 1px 0 #090,
5650 0 0 5px #090;
5652 a.post-section:hover::before {
5653 color: #97ff7c;
5655 .post-meta .post-section.alignment-forum::before {
5656 text-shadow:
5657 1px 1px 0 #626dd7,
5658 0 1px 0 #626dd7,
5659 0 0 5px #626dd7;
5661 a.post-section.alignment-forum:hover::before {
5662 color: #e6e5ff;
5665 .bottom-post-meta {
5666 border-top: 1px solid #ddd;
5669 .post .post-meta {
5670 position: relative;
5671 font-size: 0.875rem;
5672 justify-content: flex-start;
5673 padding-left: 30px;
5675 .post .post-meta .author {
5676 font-weight: bold;
5677 color: #6a8a6b;
5678 text-decoration: none;
5680 .post .post-meta .author:hover {
5681 color: #3d3d3e;
5683 .post .post-meta .date{
5684 color: #999;
5685 font-style: italic;
5687 .post .post-meta a {
5688 color: #8a8a8b;
5689 text-decoration: underline;
5691 .post .post-meta a:hover {
5692 color: #3d3d3e;
5695 .post .post-meta .karma {
5696 order: -1;
5698 .post .post-meta .karma-value {
5699 background-color: #538d4d;
5700 color: #fff;
5701 font-weight: bold;
5702 font-size: 0.8125rem;
5703 border-radius: 1.125em;
5704 padding: 2px 6px 1px 6px;
5705 text-align: center;
5706 min-width: 2.125em;
5707 display: block;
5708 float: left;
5709 margin: 0 0.5em 0 0;
5711 .post .post-meta .karma-value span,
5712 .post .post-meta .lw2-link span,
5713 .post .post-meta .comment-count span {
5714 display: none;
5717 .post .post-meta .comment-count::before {
5718 content: "Comments ("
5720 .post .post-meta .comment-count::after {
5721 content: ")"
5724 .post .post-meta .post-section::before {
5725 position: absolute;
5726 top: 1px;
5727 left: 0;
5729 .post .bottom-post-meta .post-section::before {
5730 top: 21px;
5733 /*============*/
5734 /* LINK POSTS */
5735 /*============*/
5737 .post.link-post > .post-body > p:first-child {
5738 margin: 0;
5740 .post.link-post a.link-post-link {
5741 text-decoration: none;
5742 font-family: 'Arial', sans-serif;
5743 font-weight: 600;
5745 .post.link-post a.link-post-link:hover {
5746 color: #c00;
5748 .post.link-post a.link-post-link:hover::before {
5749 color: #4879ec;
5750 text-shadow:
5751 0.5px 0.5px 0 #fff,
5752 -0.5px -0.5px 0 #fff,
5753 0 0 2px #fff,
5754 0 0 3px #00c;
5756 .post.link-post a.link-post-link:focus {
5757 color: #aaa;
5758 border-bottom: 2px dotted #aaa;
5761 /*=======*/
5762 /* POSTS */
5763 /*=======*/
5765 h1.post-title {
5766 font-size: 1.375rem;
5767 text-align: left;
5768 margin: 2em 0 0.5em 0;
5769 line-height: 1.2;
5772 /*==========*/
5773 /* COMMENTS */
5774 /*==========*/
5776 #comments::before {
5777 border-top: 1px solid #000;
5778 box-shadow: 0 3px 4px -4px #000 inset;
5780 @-moz-document url-prefix() {
5781 #comments::before {
5782 box-shadow: 0 3px 3px -4px #000 inset;
5785 #content > .comment-thread .comment-meta a.date:focus,
5786 #content > .comment-thread .comment-meta a.permalink:focus {
5787 color: #444;
5788 outline: 2px dotted #444;
5789 position: relative;
5790 background-color: #fff;
5791 padding: 0 5px;
5792 left: -5px;
5794 #content > .comment-thread .comment-meta a.date:focus + *,
5795 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5796 margin-left: -10px;
5798 .comment-item {
5799 border: 1px solid #bbbcbf;
5801 .comment-item .comment-item {
5802 margin: 1em -1px 8px 16px;
5804 .comment-item .comment-item + .comment-item {
5805 margin: 2em -1px 8px 16px;
5809 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5810 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5811 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5812 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5813 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5814 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5815 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5816 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5817 .comment-item .comment-item .comment-item .comment-item .comment-item,
5818 .comment-item .comment-item .comment-item,
5819 .comment-item {
5820 background-color: #f7f7f8;
5822 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5823 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5824 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5825 .comment-item .comment-item .comment-item .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,
5826 .comment-item .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,
5827 .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,
5828 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5829 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5830 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5831 .comment-item .comment-item .comment-item a.comment-parent-link::after,
5832 .comment-item a.comment-parent-link::after {
5833 box-shadow:
5834 0 28px 16px -16px #fff inset,
5835 4px 16px 0 12px #ffd inset,
5836 4px 4px 0 12px #ffd inset;
5839 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5840 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5841 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5842 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5843 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5844 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5845 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5846 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5847 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5848 .comment-item .comment-item .comment-item .comment-item,
5849 .comment-item .comment-item {
5850 background-color: #fff;
5852 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5853 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5854 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5855 .comment-item .comment-item .comment-item .comment-item .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,
5856 .comment-item .comment-item .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,
5857 .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,
5858 .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,
5859 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5860 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5861 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5862 .comment-item .comment-item a.comment-parent-link::after {
5863 box-shadow:
5864 0 28px 16px -16px #eee inset,
5865 4px 16px 0 12px #ffd inset,
5866 4px 4px 0 12px #ffd inset;
5869 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5870 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5871 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5872 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5873 .comment-item .comment-item .comment-item .comment-item .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,
5874 .comment-item .comment-item .comment-item .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,
5875 .comment-item .comment-item .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,
5876 .comment-item .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,
5877 .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,
5878 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5879 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5880 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5881 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5882 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5883 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5884 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5885 .comment-item .comment-item .comment-item .comment-item:target,
5886 .comment-item .comment-item .comment-item:target,
5887 .comment-item .comment-item:target,
5888 .comment-item:target {
5889 background-color: #ffd;
5891 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5892 box-shadow:
5893 0 28px 16px -16px #ffd inset,
5894 4px 16px 0 12px #ffd inset,
5895 4px 4px 0 12px #ffd inset !important;
5898 a.comment-parent-link::after {
5899 display: none;
5902 /*================================*/
5903 /* DEEP COMMENT THREAD COLLAPSING */
5904 /*================================*/
5906 .comment-item input[id^="expand"] + label::after {
5907 color: #6a8a6b;
5908 font-weight: 600;
5910 .comment-item input[id^="expand"] + label:hover::after {
5911 color: #c00;
5913 .comment-item input[id^="expand"] + label:active::after,
5914 .comment-item input[id^="expand"] + label:focus::after{
5915 color: #c00;
5917 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5918 border-width: 1px 0 0 0;
5921 /*==============*/
5922 /* COMMENT-META */
5923 /*==============*/
5925 .comment-meta > * {
5926 font-size: 0.9375rem;
5927 padding-top: 2px;
5929 .comment-meta .author {
5930 font-weight: bold;
5931 color: #538d4d;
5933 .comment-meta .date {
5934 color: #999;
5935 font-style: italic;
5937 .comment-meta .date:hover {
5938 color: #777;
5940 .comment-meta .karma-value,
5941 .comment-controls .karma .karma-value {
5942 color: #666;
5943 float: left;
5944 margin-right: 0.5em;
5946 .comment-meta .karma-value:only-child {
5947 float: none;
5949 .comment-item .author:not(.redacted).original-poster::after {
5950 opacity: 0.8;
5953 .comment-item .karma.active-controls::after,
5954 .comment-item .karma .karma-value::after,
5955 .post .karma.active-controls::after,
5956 .post .karma .karma-value::after {
5957 background-color: #fff;
5958 color: #888;
5959 box-shadow: 0 0 0 1px #ccc inset;
5960 border-radius: 4px;
5962 .comment-item .karma.active-controls::after,
5963 .post .karma.active-controls::after {
5964 padding: 6px;
5965 max-width: unset;
5966 bottom: -46px;
5967 width: 110px;
5969 .comment-item .karma .karma-value::after,
5970 .post .karma .karma-value::after {
5971 padding: 2px 8px;
5972 top: -36px;
5973 min-width: 64px;
5974 font-weight: normal;
5977 /*====================*/
5978 /* COMMENT PERMALINKS */
5979 /*====================*/
5981 .comment-meta .permalink,
5982 .comment-meta .lw2-link,
5983 .individual-thread-page .comment-parent-link:empty {
5984 top: 1px;
5985 filter: grayscale(50%);
5987 .comment-meta .permalink,
5988 .comment-meta .lw2-link,
5989 .individual-thread-page .comment-parent-link:empty {
5990 filter: unset;
5993 /*====================*/
5994 /* ANTI-KIBITZER MODE */
5995 /*====================*/
5997 .author.redacted,
5998 .inline-author.redacted {
5999 opacity: 0.8;
6000 font-weight: 400;
6003 .karma-value.redacted {
6004 opacity: 0.5;
6007 .link-post-domain.redacted {
6008 opacity: 0.5;
6011 /*===========================*/
6012 /* COMMENT THREAD NAVIGATION */
6013 /*===========================*/
6015 div.comment-parent-link {
6016 font-weight: bold;
6018 a.comment-parent-link {
6019 font-weight: normal;
6021 a.comment-parent-link::before {
6022 color: #bbb;
6024 a.comment-parent-link:hover::before {
6025 background-color: #ffd;
6026 color: #999;
6029 div.comment-child-links {
6030 font-weight: bold;
6032 div.comment-child-links a {
6033 font-weight: normal;
6035 .comment-child-link::before {
6036 color: #bbb;
6039 .comment-item-highlight {
6040 box-shadow:
6041 0 0 2px #e7b200,
6042 0 0 3px #e7b200,
6043 0 0 5px #e7b200,
6044 0 0 7px #e7b200,
6045 0 0 10px #e7b200;
6046 border: 1px solid #e7b200;
6048 .comment-item-highlight-faint {
6049 box-shadow:
6050 0 0 2px #f8e7b5,
6051 0 0 3px #f8e7b5,
6052 0 0 5px #f8e7b5,
6053 0 0 7px #f8e7b5,
6054 0 0 10px #f8e7b5;
6055 border: 1px solid #f8e7b5;
6058 .comment-popup {
6059 background-color: #fff;
6062 /*=======================*/
6063 /* COMMENTS COMPACT VIEW */
6064 /*=======================*/
6066 #comments-list-mode-selector button {
6067 box-shadow:
6068 0 0 0 4px #fff inset,
6069 0 0 0 5px #bbb inset;
6071 #comments-list-mode-selector button:hover,
6072 #comments-list-mode-selector button.selected {
6073 box-shadow:
6074 0 0 0 5px #bbb inset;
6076 #content.compact > .comment-thread .comment-item {
6077 max-height: 57px;
6079 #content.compact > .comment-thread .comment-item::after {
6080 color: #6a8a6b;
6081 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6084 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6085 #content.compact > .comment-thread .comment-item:hover .comment,
6086 #content.compact > .comment-thread .comment-item.expanded .comment {
6087 background-color: #fff;
6088 outline: 3px solid #6a8a6b;
6090 #content.compact > .comment-thread .comment-item:hover .comment::before,
6091 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6092 background-color: #fff;
6093 box-shadow:
6094 0 0 3px #fff,
6095 0 0 5px #fff,
6096 0 0 7px #fff,
6097 0 0 10px #fff,
6098 0 0 20px #fff,
6099 0 0 30px #fff,
6100 0 0 40px #fff;
6103 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6104 #content.compact > .comment-thread.expanded .comment-item .comment {
6105 background-color: #fff;
6106 outline: 3px solid #6a8a6b;
6108 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6109 background-color: #fff;
6110 box-shadow:
6111 0 0 3px #fff,
6112 0 0 5px #fff,
6113 0 0 7px #fff,
6114 0 0 10px #fff,
6115 0 0 20px #fff,
6116 0 0 30px #fff,
6117 0 0 40px #fff;
6121 #content.user-page.compact > h1.listing {
6122 margin-top: 0.5rem;
6124 #content.user-page.compact > h1.listing + .post-meta {
6125 margin-bottom: 0.5rem;
6128 /*===========================*/
6129 /* HIGHLIGHTING NEW COMMENTS */
6130 /*===========================*/
6132 .new-comment::before {
6133 outline: 2px solid #5a5;
6134 box-shadow:
6135 0 0 6px -2px #5a5 inset,
6136 0 0 4px #5a5,
6137 0 0 6px #5a5;
6140 /*=================================*/
6141 /* COMMENT THREAD MINIMIZE BUTTONS */
6142 /*=================================*/
6144 .comment-meta .comment-minimize-button {
6145 font-size: 1.25rem;
6146 top: -1px;
6148 .comment-meta .comment-minimize-button::after {
6149 top: 23px;
6151 .comment-minimize-button {
6152 color: #ccc;
6154 .comment-minimize-button:hover {
6155 color: #aaa;
6157 .comment-minimize-button::after {
6158 font-family: 'Arial', sans-serif;
6159 color: #777;
6161 .comment-minimize-button.maximized::after {
6162 color: #ccc;
6165 /*==============*/
6166 /* VOTE BUTTONS */
6167 /*==============*/
6169 .upvote,
6170 .downvote {
6171 color: #c8c8c8;
6172 padding: 0 5px;
6173 position: relative;
6175 .vote::before {
6176 position: relative;
6178 .upvote::before {
6179 content: '\F164';
6181 .downvote::before {
6182 content: '\F165';
6183 top: 2px;
6186 .vote {
6187 text-shadow:
6188 1px 1px 0 #aaa,
6189 -1px 1px 0 #aaa,
6190 1px -1px 0 #aaa,
6191 -1px -1px 0 #aaa;
6193 .upvote.selected,
6194 .upvote:hover {
6195 text-shadow:
6196 1px 1px 0 #080,
6197 -1px 1px 0 #080,
6198 1px -1px 0 #080,
6199 -1px -1px 0 #080;
6202 .downvote.selected,
6203 .downvote:hover {
6204 text-shadow:
6205 1px 1px 0 #b00,
6206 -1px 1px 0 #a00,
6207 1px -1px 0 #b00,
6208 -1px -1px 0 #b00;
6210 @media only screen and (min-resolution: 192dpi) {
6211 .vote {
6212 text-shadow:
6213 0.5px 0.5px 0 #aaa,
6214 -0.5px 0.5px 0 #aaa,
6215 0.5px -0.5px 0 #aaa,
6216 -0.5px -0.5px 0 #aaa;
6218 .upvote.selected,
6219 .upvote:hover {
6220 text-shadow:
6221 0.5px 0.5px 0 #060,
6222 -0.5px 0.5px 0 #060,
6223 0.5px -0.5px 0 #060,
6224 -0.5px -0.5px 0 #060;
6227 .downvote.selected,
6228 .downvote:hover {
6229 text-shadow:
6230 0.5px 0.5px 0 #900,
6231 -0.5px 0.5px 0 #900,
6232 0.5px -0.5px 0 #900,
6233 -0.5px -0.5px 0 #900;
6237 .vote::before {
6238 z-index: 1;
6241 .vote::after {
6242 position: absolute;
6243 color: #fff;
6244 visibility: hidden;
6246 .vote:hover::after,
6247 .vote.big-vote::after,
6248 .vote:not(.big-vote).clicked-twice::after {
6249 visibility: visible;
6251 .vote.big-vote::after,
6252 .vote:not(.big-vote).clicked-twice::after {
6253 color: inherit;
6255 .karma:not(.waiting) .vote.clicked-once::after {
6256 color: #c8c8c8;
6259 .upvote::after {
6260 content: "\F164";
6261 left: -1px;
6262 top: -3px;
6265 .downvote::after {
6266 content: "\F165";
6267 left: -1px;
6268 top: 5px;
6271 .comment-controls .karma {
6272 margin-left: -6px;
6275 /*===========================*/
6276 /* COMMENTING AND POSTING UI */
6277 /*===========================*/
6279 .posting-controls input[type='submit'] {
6280 background-color: #fff;
6281 border: 1px solid #aaa;
6282 font-weight: bold;
6284 .posting-controls input[type='submit']:hover,
6285 .posting-controls input[type='submit']:focus {
6286 background-color: #ddd;
6287 border: 1px solid #999;
6290 .comment-controls .cancel-comment-button {
6291 font-weight: 600;
6292 color: #c00;
6293 text-shadow:
6294 0 0 1px #fff,
6295 0 0 2px #fff;
6296 max-width: 1.2em;
6297 overflow: hidden;
6298 margin-right: 0.375em;
6300 .comment-controls .cancel-comment-button::before {
6301 font-size: 1.25em;
6303 .comment-controls .cancel-comment-button:hover {
6304 color: #f00;
6307 .new-comment-button {
6308 font-weight: 600;
6311 .comment-controls .action-button::before {
6312 font-size: 1em;
6314 .comment-controls .action-button::after {
6315 content: attr(data-label);
6316 display: block;
6317 position: absolute;
6318 font-size: 0.5em;
6319 text-transform: uppercase;
6320 visibility: hidden;
6321 text-shadow: none;
6323 .comment-controls .action-button:hover::after {
6324 visibility: visible;
6326 .comment-controls .delete-button::before,
6327 .comment-controls .retract-button::before {
6328 color: #ca3232;
6330 .comment-controls .delete-button::after {
6331 transform: translateX(-8px);
6333 .comment-controls .retract-button::after {
6334 transform: translateX(-8px);
6336 .comment-controls .unretract-button::after {
6337 transform: translateX(-18px);
6339 .comment-controls .reply-button::before {
6340 content: "\F086";
6341 font-weight: 400;
6342 font-size: 1.125rem;
6343 color: #6a8a6b;
6345 .comment-controls .reply-button::after {
6346 transform: translateX(-4px);
6348 .comment-controls .edit-button::before {
6349 font-size: 0.9375em;
6350 color: #0b0;
6352 .comment-controls .unretract-button::before {
6353 font-size: 1.125rem;
6354 color: #0b0;
6356 .comment-controls .edit-button::after {
6357 transform: translateX(-1px);
6359 .comment-item .comment-controls .action-button:hover::before {
6360 color: #f00;
6361 text-shadow:
6362 0.5px 0.5px 0.5px #f77;
6365 h1.listing .edit-post-link,
6366 h1.listing .edit-post-link:visited,
6367 .post-controls .edit-post-link,
6368 .post-controls .edit-post-link:visited {
6369 color: #090;
6371 h1.listing .edit-post-link:hover,
6372 .post-controls .edit-post-link:hover {
6373 color: #d00;
6376 .posting-controls textarea {
6377 font-family: 'Arial', sans-serif;
6378 font-size: 1rem;
6379 color: #000;
6380 background-color: #fff;
6381 border-color: #aaa;
6382 box-shadow:
6383 0 0 0 1px #eee inset;
6385 .posting-controls textarea:focus {
6386 background-color: #ffd;
6387 border-color: #6a8a6b;
6388 box-shadow:
6389 0 0 0 1px #ddf inset,
6390 0 0 0 1px #fff,
6391 0 0 0 2px #6a8a6b;
6393 .posting-controls.edit-existing-post textarea:focus,
6394 .posting-controls form.edit-existing-comment textarea:focus {
6395 border-color: #090;
6396 box-shadow:
6397 0 0 0 1px #81ff7f inset,
6398 0 0 0 1px #fff,
6399 0 0 0 2px #090;
6402 /* GUIEdit buttons */
6404 .guiedit-buttons-container {
6405 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6408 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6409 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6410 color: #050;
6412 .guiedit-buttons-container button {
6413 font-family: Font Awesome, 'Arial', sans-serif;
6416 .guiedit::after {
6417 font-family: 'Arial', sans-serif;
6418 color: #777;
6419 text-shadow: none;
6420 top: 4px;
6423 /* Markdown hints */
6425 #markdown-hints-checkbox + label {
6426 color: #6a8a6b;
6428 #markdown-hints-checkbox + label:hover {
6429 color: #e00;
6431 #markdown-hints {
6432 border: 1px solid #c00;
6433 background-color: #ffa;
6436 /*================*/
6437 /* EDIT POST FORM */
6438 /*================*/
6440 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6441 border-radius: 3px;
6442 border: 1px solid #ddd;
6443 color: #777;
6444 top: 2px;
6446 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6447 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6448 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6449 text-shadow:
6450 0 0 1px #fff,
6451 0 0 2px #fff,
6452 0 0 2.5px #aaa;
6454 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6455 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6456 border-color: #aaa;
6459 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6460 content: "\F00C";
6462 #edit-post-form input[type='radio'] + label {
6463 color: #777;
6464 border-color: #ddd;
6466 #edit-post-form input[type='radio'][value='all'] + label {
6467 border-radius: 8px 0 0 8px;
6468 border-width: 1px;
6470 #edit-post-form input[type='radio'][value='drafts'] + label {
6471 border-radius: 0 8px 8px 0;
6473 #edit-post-form input[type='radio'] + label:hover,
6474 #edit-post-form input[type='radio']:focus + label {
6475 background-color: #ddd;
6476 color: #000;
6478 #edit-post-form input[type='radio']:focus + label {
6479 color: #000;
6480 box-shadow:
6481 0 0 0 1px #aaa;
6483 #edit-post-form input[type='radio']:checked + label {
6484 background-color: #ddd;
6485 border-color: #ddd;
6486 color: #000;
6487 text-shadow:
6488 0 -1px 0 #fff,
6489 0 0.5px 0.5px #000;
6491 #edit-post-form #markdown-hints-checkbox + label {
6492 padding: 3px 0 0 14px;
6495 /*=======*/
6496 /* LINKS */
6497 /*=======*/
6500 text-decoration: none;
6501 color: #6a8a6b;
6503 a:visited {
6504 color: #8a8a8b;
6506 a:hover {
6507 color: #3d3d3e;
6510 /*=========*/
6511 /* BUTTONS */
6512 /*=========*/
6514 button,
6515 input[type='submit'] {
6516 color: #6a8a6b;
6519 button:hover,
6520 input[type='submit']:hover,
6521 button:focus,
6522 input[type='submit']:focus {
6523 color: #d00;
6525 button:active,
6526 input[type='submit']:active {
6527 color: #f00;
6528 transform: scale(0.9);
6530 .button:visited {
6531 color: #6a8a6b;
6533 .button:hover {
6534 color: #f00;
6535 text-decoration: none;
6537 .button:active {
6538 transform: scale(0.9);
6540 .button:focus:not(:hover) {
6541 transform: none;
6543 @-moz-document url-prefix() {
6544 .button:active {
6545 transform: none;
6549 /*==========*/
6550 /* HEADINGS */
6551 /*==========*/
6553 .post-body h1,
6554 .post-body h2,
6555 .post-body h4,
6556 .comment-body h1,
6557 .comment-body h2,
6558 .comment-body h4 {
6559 font-family: 'Arial', sans-serif;
6561 .post-body h3,
6562 .comment-body h3,
6563 .post-body h5,
6564 .post-body h6,
6565 .comment-body h5,
6566 .comment-body h6 {
6567 font-weight: 600;
6569 .post-body h6,
6570 .comment-body h6 {
6571 color: #555;
6573 .post-body h1,
6574 .comment-body h1 {
6575 border-bottom: 1px solid #aaa;
6578 /*========*/
6579 /* QUOTES */
6580 /*========*/
6582 blockquote {
6583 border-left: 5px solid #ccc;
6586 /*========*/
6587 /* IMAGES */
6588 /*========*/
6590 #content img {
6591 border: 1px solid #ccc;
6593 #content img[style^='float'] {
6594 border: 1px solid transparent;
6596 #content img[src$='.svg'] {
6597 border: none;
6599 #content figure img {
6600 border: 1px solid #000;
6602 #content figure img[src$='.svg'] {
6603 border: none;
6606 /*========*/
6607 /* TABLES */
6608 /*========*/
6610 .post-body table,
6611 .comment-body table,
6612 .post-body table th,
6613 .post-body table td,
6614 .comment-body table th,
6615 .comment-body table td {
6616 border: 1px solid #bbb;
6619 /*======*/
6620 /* MISC */
6621 /*======*/
6623 hr {
6624 border-bottom: 1px solid #999;
6627 code {
6628 background-color: #f6f6ff;
6629 border: 1px solid #ddf;
6630 border-radius: 4px;
6633 input[type='text'],
6634 input[type='search'],
6635 input[type='password'] {
6636 background-color: #fff;
6637 border: 1px solid #ddd;
6638 color: #000;
6640 input[type='text']:focus,
6641 input[type='search']:focus,
6642 input[type='password']:focus {
6643 background-color: #ffd;
6644 border: 1px solid #bbb;
6645 box-shadow: 0 0 1px #bbb;
6648 select {
6649 color: #000;
6652 /*============*/
6653 /* ABOUT PAGE */
6654 /*============*/
6656 .about-page mark {
6657 background-color: #e6e6e6;
6658 text-decoration: none;
6659 box-shadow:
6660 0 -1px 0 0 #000 inset,
6661 0 -3px 1px -2px #000 inset;
6662 padding: 0 1px;
6665 #content.about-page .accesskey-table {
6666 font-family: 'Arial', sans-serif;
6667 border-color: #ddd;
6670 #content.about-page img {
6671 border: 1px solid #000;
6674 /*========================*/
6675 /* QUALIFIED HYPERLINKING */
6676 /*========================*/
6678 #aux-about-link a {
6679 color: #777;
6681 #aux-about-link a:hover {
6682 opacity: 1.0;
6685 .qualified-linking label {
6686 color: #6a8a6b;
6688 .qualified-linking label:hover {
6689 text-shadow:
6690 0 0 1px #fff,
6691 0 0 3px #fff,
6692 0 0 5px #00e;
6695 .qualified-linking-toolbar {
6696 border: 1px solid #000;
6697 background-color: #fff;
6699 .qualified-linking-toolbar a {
6700 background-color: #eee;
6701 border: 1px solid #ccc;
6702 border-radius: 4px;
6703 padding: 2px 12px;
6704 white-space: nowrap;
6706 .qualified-linking-toolbar a:visited {
6707 color: #6a8a6b;
6709 .qualified-linking-toolbar a:hover {
6710 text-decoration: none;
6711 background-color: #ddd;
6713 .qualified-linking label::after {
6714 background-color: #d8d8d8;
6715 opacity: 0.8;
6718 /*======*/
6719 /* MATH */
6720 /*======*/
6722 .mathjax-block-container::-webkit-scrollbar {
6723 height: 12px;
6724 background-color: #f6f6ff;
6725 border-radius: 6px;
6726 border: 1px solid #ddf;
6728 .mathjax-block-container::-webkit-scrollbar-thumb {
6729 background-color: #dde;
6730 border-radius: 6px;
6731 border: 1px solid #cce;
6733 .mathjax-inline-container::-webkit-scrollbar {
6734 height: 8px;
6735 background-color: #f6f6ff;
6736 border-radius: 4px;
6737 border: 1px solid #ddf;
6739 .mathjax-inline-container::-webkit-scrollbar-thumb {
6740 background-color: #dde;
6741 border-radius: 4px;
6742 border: 1px solid #cce;
6745 /*=================*/
6746 /* ALIGNMENT FORUM */
6747 /*=================*/
6749 #content.alignment-forum-index-page::before {
6750 background-color: #f4f5ff;
6752 #content.alignment-forum-index-page::after {
6753 font-family: "Concourse SmallCaps";
6754 font-weight: 600;
6755 background-color: #7f85b2;
6756 color: transparent;
6757 -webkit-background-clip: text;
6758 text-shadow:
6759 rgba(255,255,255,0.5) 0px 3px 3px;
6761 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6762 #content.alignment-forum-index-page h1.listing a:hover,
6763 #content.alignment-forum-index-page h1.listing a:focus {
6764 background-color: rgba(244,245,255,0.85);
6768 /*====================*/
6769 /* FOR NARROW SCREENS */
6770 /*====================*/
6772 @media only screen and (max-width: 1440px) {
6773 #hns-date-picker {
6774 background-color: #d8d8d8;
6775 opacity: 1.0;
6777 #hns-date-picker::before {
6778 border: 1px solid #999;
6779 border-width: 1px 0 1px 1px;
6782 @media only screen and (max-width: 1160px) {
6783 #theme-selector:hover::after {
6784 background-color: #999;
6785 width: calc(6em - 13px);
6788 @media only screen and (max-width: 1080px) {
6789 #text-size-adjustment-ui button {
6790 border: 1px solid #999;
6791 padding: 0 0 0 1px;
6792 border-radius: 50%;
6793 box-shadow:
6794 0 0 6px #999 inset,
6795 0 0 0 1px transparent;
6797 #theme-tweaker-toggle button {
6798 border: 1px solid #999;
6799 box-shadow:
6800 0 0 10px #999 inset,
6801 0 0 0 1px transparent;
6802 border-radius: 50%;
6803 transform: scale(0.8);
6806 @media only screen and (max-width: 1020px) {
6807 #quick-nav-ui a {
6808 box-shadow:
6809 0 0 0 1px #999,
6810 0 0 0 2px transparent;
6812 #new-comment-nav-ui .new-comments-count::before {
6813 background-color: #d8d8d8;
6814 box-shadow:
6815 0 0 0 1px #999,
6816 0 0 0 2px transparent;
6817 border-radius: 8px;
6819 #anti-kibitzer-toggle {
6820 background-color: #d8d8d8;
6821 box-shadow:
6822 0 0 0 1px #999,
6823 0 0 0 2px transparent;
6824 border-radius: 6px;
6825 overflow: hidden;
6828 @media only screen and (max-width: 1000px) {
6829 #theme-selector {
6830 background-color: #d8d8d8;
6831 box-shadow:
6832 0 0 0 1px #999,
6833 0 0 0 2px transparent;
6835 #theme-selector:hover::after {
6836 width: calc(6em - 9px);
6837 height: calc(100% - 5px);
6838 top: 3px;
6839 left: 100%;
6841 #text-size-adjustment-ui button {
6842 background-color: #ddd;
6844 #text-size-adjustment-ui button:hover {
6845 background-color: #eee;
6847 #theme-tweaker-toggle button {
6848 background-color: #ddd;
6852 /*========*/
6853 /* MOBILE */
6854 /*========*/
6856 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6857 #ui-elements-container > div[id$='-ui-toggle'] button {
6858 color: #aaa;
6859 text-shadow:
6860 0 0 1px #fff,
6861 0 0 3px #fff,
6862 0 0 5px #fff,
6863 0 0 10px #fff,
6864 0 0 20px #fff,
6865 0 0 30px #fff;
6868 #theme-selector {
6869 background-color: #d8d8d8;
6870 box-shadow:
6871 0 0 0 1px #999,
6872 0 0 1px 3px #fff,
6873 0 0 3px 3px #fff,
6874 0 0 5px 3px #fff,
6875 0 0 10px 3px #fff,
6876 0 0 20px 3px #fff;
6877 border-radius: 12px;
6879 #theme-selector::before,
6880 #theme-selector .theme-selector-close-button {
6881 color: #000;
6882 font-weight: normal;
6884 #theme-selector button {
6885 background-color: #e6e6e6;
6886 border-radius: 10px;
6888 #theme-selector button::after {
6889 color: #444;
6890 max-width: calc(100% - 3.5em);
6891 overflow: hidden;
6892 text-overflow: ellipsis;
6893 padding-bottom: 1px;
6895 #theme-selector button.selected::after {
6896 color: #000;
6897 text-shadow:
6898 0 -1px 0 #fff,
6899 0 0.5px 0.5px #000;
6902 #quick-nav-ui {
6903 background-color: #fff;
6905 #quick-nav-ui,
6906 #new-comment-nav-ui,
6907 #hns-date-picker {
6908 box-shadow:
6909 0 0 1px 3px #fff,
6910 0 0 3px 3px #fff,
6911 0 0 5px 3px #fff,
6912 0 0 10px 3px #fff,
6913 0 0 20px 3px #fff;
6915 #quick-nav-ui a::after,
6916 #new-comment-nav-ui::before {
6917 font-family: 'Arial', sans-serif;
6918 font-weight: bold;
6919 box-shadow:
6920 0 0 1px 0 #fff,
6921 0 0 3px 0 #fff,
6922 0 0 5px 0 #fff;
6923 background-color: #fff;
6924 border-radius: 4px;
6926 #quick-nav-ui,
6927 #new-comment-nav-ui {
6928 border-radius: 8px;
6930 #new-comment-nav-ui {
6931 background-color: #e4e4e4;
6932 border: 1px solid #999;
6934 #new-comment-nav-ui::before {
6935 color: #777;
6936 font-weight: bold;
6938 #new-comment-nav-ui .new-comment-sequential-nav-button {
6939 box-shadow: 0 0 0 1px #999;
6940 color: #538d4d;
6942 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6943 color: #bbb;
6945 #new-comment-nav-ui .new-comments-count {
6946 background-color: inherit;
6947 box-shadow: 0 -1px 0 0 #999;
6949 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6950 border-radius: 7px 0 0 7px;
6952 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6953 border-radius: 0 7px 7px 0;
6955 #new-comment-nav-ui button::after {
6956 font-family: 'Arial', sans-serif;
6958 #hns-date-picker {
6959 background-color: #e4e4e4;
6960 border: 1px solid #999;
6963 /*****************************************/
6964 @media only screen and (max-width: 900px) {
6965 /*****************************************/
6966 h1.listing + .post-meta .post-section {
6967 overflow: visible;
6968 order: -2;
6969 width: unset;
6971 h1.listing + .post-meta .post-section::before {
6972 position: unset;
6975 #primary-bar .nav-inner {
6976 font-size: 1.25em;
6978 #secondary-bar .nav-inner {
6979 font-size: 1.125em;
6981 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
6982 padding: 6px 10px;
6985 .archive-nav *[class^='archive-nav-item-'] {
6986 border-width: 1px !important;
6988 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6989 background-color: #aaa;
6992 .comment-item .comment-item {
6993 margin: 0.75em 0 3px 6px;
6995 .comment-item .comment-item + .comment-item {
6996 margin: 1.5em 0 3px 6px;
6999 .sublevel-nav:not(.sort) .sublevel-item,
7000 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7001 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7002 border-radius: 8px;
7003 border-width: 1px;
7004 margin: 2px;
7006 /*******************************************/
7007 } @media only screen and (max-width: 720px) {
7008 /*******************************************/
7009 .post-meta .comment-count::before {
7010 font-family: inherit;
7011 font-size: inherit;
7012 margin: 0;
7014 /*******************************************/
7015 } @media only screen and (max-width: 520px) {
7016 /*******************************************/
7017 #primary-bar.inactive-bar .nav-inner {
7018 padding: 6px 10px;
7019 font-size: 1.375em;
7022 h1.listing {
7023 margin: 18px 6px 4px 6px;
7024 max-width: calc(100% - 12px);
7025 padding: 0;
7027 h1.listing a[href^='http'] {
7028 top: 2px;
7030 h1.listing + .post-meta {
7031 margin: 4px 6px;
7033 h1.listing + .post-meta > *:not(.karma) {
7034 line-height: 1.5;
7035 width: unset;
7037 h1.listing + .post-meta .karma-value {
7038 top: 0;
7039 right: calc(100% - 2.25em);
7042 #content.compact > .comment-thread .comment-item {
7043 max-height: 104px;
7046 .textarea-container:focus-within textarea {
7047 background-color: #fff;
7049 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7050 padding: 6px;
7051 font-weight: bold;
7053 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7054 box-shadow:
7055 0 0 0 2px #c00;
7056 color: #c00;
7058 .textarea-container:focus-within .guiedit-buttons-container {
7059 background-color: #fff;
7060 border-top: 1px solid #ddf;
7062 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
7063 box-shadow: none;
7065 #content.conversation-page .textarea-container:focus-within::after {
7066 background-color: #fff;
7068 .textarea-container:focus-within button.guiedit {
7069 border: 1px solid #6a8a6b;
7070 border-radius: 6px;
7073 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7074 top: 1px;
7076 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7077 top: 1px;
7080 #edit-post-form textarea {
7081 min-height: calc(100vh - 345px);
7086 /*************/
7087 /* ACCORDIUS */
7088 /*************/
7090 /*======*/
7091 /* TAGS */
7092 /*======*/
7094 #tags {
7095 order: 12;
7096 display: flex;
7097 flex-basis: 100%;
7098 justify-content: center;
7099 margin: 0;
7101 #tags a {
7102 display: inline-block;
7105 /*===============*/
7106 /* CLASSIC THEME */
7107 /*===============*/
7109 /*++++++*/
7110 /* TAGS */
7111 /*++++++*/
7113 #tags {
7114 padding: 0.25em 0.5em;
7115 line-height: 1;
7116 justify-content: flex-start;
7117 margin: 0.5em 0 0 0;
7119 #tags::before {
7120 content: "Tags:";
7121 display: inline-block;
7122 margin: 0 0.25em 0 0;
7123 padding: 3px 0;
7124 color: #999;
7126 #tags a {
7127 border-radius: 6px;
7128 background-color: #ffd;
7129 border: 1px solid #ecc700;
7130 padding: 3px 6px;
7131 line-height: 1;
7132 margin: 0 0.25em;
7133 font-size: 0.9375em;
7134 text-decoration: none;
7135 color: #6a8a6b;
7137 #tags a:hover {
7138 text-decoration: none;
7139 background-color: #ecc700;
7140 color: #000;
7142 #tags a:active {
7143 color: #d00;