Revert "Switch "all" view to "community-rss" due to spam."
[lw2-viewer.git] / www / style-dark.linux.css
bloba18a943f30f2496d4378c6434dccde1160f855f8
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: #393939;
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: #0090e0;
295 text-shadow:
296 0 0 1px #777,
297 0.5px 0.5px 1px #777;
299 a#inbox-indicator:hover::before {
300 color: #000;
301 text-shadow:
302 0 0 1px #fff,
303 0 0 2px #fff,
304 0 0 4px #fff,
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 #0090e0,
311 0 0 2px #0090e0,
312 0 0 4px #0090e0,
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: #393939;
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 #000,
1899 0 0 0 2px #0cc800,
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 #0cc800,
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(255, 255, 255, 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(255, 255, 255, 0.6);
2951 color: #000;
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: #fff;
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(255, 255, 255, 0.85);
3046 color: #000;
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: #fff;
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 #000,
3099 0 0 5px #000,
3100 0 0 8px #000,
3101 0 0 13px #000;
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: #1f1f1f;
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(255, 255, 255, 0.1);
3152 color: #777;
3155 #image-focus-overlay .slideshow-buttons button:active {
3156 transform: none;
3157 color: #666;
3159 #image-focus-overlay .slideshow-buttons button:disabled {
3160 text-shadow: none;
3161 background-color: transparent;
3162 color: #1f1f1f;
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: #fff;
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: #000;
3352 background-color: #fff;
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 #0090e0 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: #9740cb;
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 /* DEFAULT THEME */
4832 /*****************/
4834 body {
4835 color: #fff;
4836 background-color: #232323;
4837 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
4838 font-feature-settings: 'ss07';
4840 #content {
4841 line-height: 1.55;
4843 #content::before {
4844 background-color: #000;
4845 box-shadow: 0px 0px 10px #9b9b9b;
4848 /*=========*/
4849 /* NAV BAR */
4850 /*=========*/
4852 .nav-inner {
4853 font-size: 1.375em;
4854 font-weight: 600;
4856 #secondary-bar .nav-inner {
4857 font-size: 1em;
4860 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4861 #bottom-bar a:hover,
4862 #nav-item-search:not(.nav-current):focus-within {
4863 background-color: #1f1f1f;
4865 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4866 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
4867 background-color: #232323;
4870 .nav-bar a:visited {
4871 color: #0cc800;
4873 .nav-bar a:hover,
4874 .nav-bar a:focus {
4875 text-decoration: none;
4876 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
4879 #bottom-bar.decorative::before,
4880 #bottom-bar.decorative::after {
4881 content: "GW";
4882 display: block;
4883 text-align: center;
4884 padding: 0.25em 0 1em 0;
4886 #bottom-bar.decorative::before {
4887 width: 100%;
4888 color: transparent;
4889 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4890 background-repeat: repeat-x;
4891 background-position: center 35%;
4892 margin: 0 30px;
4894 #bottom-bar.decorative::after {
4895 color: #232323;
4896 position: absolute;
4897 left: 0;
4898 right: 0;
4899 margin: auto;
4900 background-color: #000;
4901 padding-right: 4px;
4902 padding-left: 4px;
4904 @supports (width: -moz-fit-content) {
4905 #bottom-bar.decorative::after {
4906 width: -moz-fit-content;
4909 @supports (width: fit-content) {
4910 #bottom-bar.decorative::after {
4911 width: fit-content;
4915 /* Accesskey hints */
4917 .nav-inner::after {
4918 display: block;
4919 position: absolute;
4920 left: 5px;
4921 top: -2px;
4922 font-weight: 400;
4923 font-size: 0.7em;
4924 color: #232323;
4926 .inactive-bar .nav-inner::after {
4927 color: #2c2c2c;
4929 .nav-inner:hover::after {
4930 color: #393939;
4933 /* This makes the navbar items look like tabs: */
4935 .nav-inactive {
4936 box-shadow:
4937 0 -1px #232323 inset,
4938 1px 0 #000 inset;
4940 .nav-inactive:first-child {
4941 box-shadow: 0 -1px #232323 inset;
4943 .inactive-bar .nav-inactive {
4944 background-color: #1a1a1a;
4946 .active-bar .nav-inactive {
4947 background-color: #131313;
4949 .active-bar {
4950 position: relative;
4953 /* For Webkit: */
4954 .active-bar {
4955 box-shadow: 0 -3px 8px -2px #2c2c2c;
4957 .active-bar .nav-inactive {
4958 box-shadow:
4959 0 -4px 8px -4px #393939 inset,
4960 1px 0 #000 inset;
4962 .active-bar .nav-inactive:first-child {
4963 box-shadow:
4964 0 -4px 8px -4px #393939 inset;
4966 .active-bar .nav-current + .nav-inactive {
4967 box-shadow:
4968 5px -4px 8px -4px #393939 inset;
4970 .active-bar .nav-item-last-before-current {
4971 box-shadow:
4972 -5px -4px 8px -4px #393939 inset,
4973 1px 0 #000 inset;
4975 .active-bar .nav-item-last-before-current:first-child {
4976 box-shadow:
4977 -5px -4px 8px -4px #393939 inset;
4979 /* And for Gecko: */
4980 @-moz-document url-prefix() {
4981 .active-bar {
4982 box-shadow: 0 -3px 4px -2px #2c2c2c;
4985 .active-bar .nav-inactive {
4986 box-shadow:
4987 0 -4px 4px -4px #393939 inset,
4988 1px 0 #000 inset;
4990 .active-bar .nav-inactive:first-child {
4991 box-shadow:
4992 0 -4px 4px -4px #393939 inset;
4994 .active-bar .nav-current + .nav-inactive {
4995 box-shadow:
4996 5px -4px 4px -4px #393939 inset;
4998 .active-bar .nav-item-last-before-current {
4999 box-shadow:
5000 -5px -4px 4px -4px #393939 inset,
5001 1px 0 #000 inset;
5003 .active-bar .nav-item-last-before-current:first-child {
5004 box-shadow:
5005 -5px -4px 4px -4px #393939 inset;
5009 /* Search tab */
5011 #nav-item-search button {
5012 border: none;
5013 font-weight: inherit;
5015 #nav-item-search input::placeholder {
5016 color: #00a1e8;
5017 font-weight: normal;
5020 /*= Top pagination UI hover tooltips =*/
5022 #top-nav-bar a::after,
5023 #bottom-bar a::after {
5024 color: #fff;
5027 /*==============*/
5028 /* PAGE TOOLBAR */
5029 /*==============*/
5031 .button.new-post:not(:hover),
5032 .button.new-private-message:not(:hover) {
5033 color: #9740cb;
5035 .button.logout-button {
5036 color: #0094be;
5039 /*==============*/
5040 /* SUBLEVEL NAV */
5041 /*==============*/
5043 .sublevel-nav .sublevel-item {
5044 color: #777;
5045 background-color: #000;
5047 .sublevel-nav .sublevel-item:not(.selected):hover {
5048 background-color: #1f1f1f;
5049 color: #fff;
5050 text-decoration: none;
5051 text-shadow: none;
5053 .sublevel-nav .sublevel-item:not(.selected):active,
5054 .sublevel-nav .sublevel-item.selected {
5055 background-color: #1f1f1f;
5056 color: #fff;
5057 text-shadow:
5058 0 -1px 0 #000,
5059 0 0.5px 0.5px #fff;
5062 .sublevel-nav:not(.sort) .sublevel-item {
5063 border-style: solid;
5064 border-color: #1f1f1f;
5065 border-width: 1px 0 1px 1px;
5067 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5068 border-radius: 8px 0 0 8px;
5070 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5071 border-width: 1px;
5072 border-radius: 0 8px 8px 0;
5075 /*=====================*/
5076 /* SORT ORDER SELECTOR */
5077 /*=====================*/
5079 .sublevel-nav.sort .sublevel-item {
5080 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5081 letter-spacing: 0.5px;
5082 padding: 6px 7px;
5083 text-transform: uppercase;
5084 pointer-events: auto;
5085 box-shadow: 1px 1px 0 0 #484848 inset;
5087 .sublevel-nav.sort {
5088 border: 2px solid transparent;
5089 padding: 18px 0 0 0;
5090 border-radius: 8px;
5091 pointer-events: none;
5092 background-color: #393939;
5094 .sublevel-nav.sort::before {
5095 text-transform: uppercase;
5096 font-weight: 600;
5097 color: #aeaeae;
5098 text-shadow: 0.5px 0.5px 0 #000;
5099 z-index: 1;
5101 .sublevel-nav.sort::after {
5102 content: "";
5103 position: absolute;
5104 display: block;
5105 top: 0;
5106 left: 0;
5107 width: 100%;
5108 height: 100%;
5109 border-radius: 6px;
5110 box-shadow:
5111 0 18px 0 0 #393939 inset,
5112 0 0 0 1px #484848 inset,
5113 0 18px 0 1px #484848 inset,
5114 0 0 0 2px #393939;
5117 /*================*/
5118 /* WIDTH SELECTOR */
5119 /*================*/
5120 /* THEME SELECTOR */
5121 /*================*/
5123 #width-selector button,
5124 #theme-selector button {
5125 box-shadow:
5126 0 0 0 4px #232323 inset,
5127 0 0 0 5px #393939 inset;
5129 #width-selector button:hover,
5130 #width-selector button.selected,
5131 #theme-selector button:hover,
5132 #theme-selector button.selected {
5133 box-shadow:
5134 0 0 0 5px #393939 inset;
5137 #theme-selector button::before {
5138 color: #575756;
5139 background-color: #232323;
5141 #theme-selector button:hover::before,
5142 #theme-selector button.selected::before {
5143 color: #888;
5145 #width-selector button::after {
5146 color: #575756;
5149 /*======================*/
5150 /* THEME TWEAKER TOGGLE */
5151 /*======================*/
5153 #theme-tweaker-toggle button {
5154 color: #777;
5157 /*=================*/
5158 /* QUICKNAV WIDGET */
5159 /*=================*/
5161 #quick-nav-ui a {
5162 color: #575756;
5163 background-color: #1a1a1a;
5164 border-radius: 4px;
5165 text-decoration: none;
5167 #quick-nav-ui a[href='#bottom-bar'] {
5168 line-height: 1.8;
5170 #quick-nav-ui a:active {
5171 transform: scale(0.9);
5173 #quick-nav-ui a[href='#comments'].no-comments {
5174 opacity: 0.4;
5175 color: #393939;
5177 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5178 #quick-nav-ui a:hover {
5179 color: #fff;
5180 background-color: #131313;
5182 #quick-nav-ui a:focus:not(:hover) {
5183 transform: none;
5184 text-shadow: none;
5188 /*======================*/
5189 /* NEW COMMENT QUICKNAV */
5190 /*======================*/
5192 #new-comment-nav-ui .new-comments-count {
5193 font-weight: 600;
5194 color: #888;
5195 text-shadow: 0.5px 0.5px 0 #000;
5197 #new-comment-nav-ui .new-comments-count::after {
5198 font-weight: 600;
5199 color: #777;
5201 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5202 color: #393939;
5203 text-shadow: none;
5205 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5206 #new-comment-nav-ui .new-comments-count:hover {
5207 text-shadow:
5208 0 0 1px #000,
5209 0 0 3px #000,
5210 0 0 5px #000,
5211 0 0 8px #000,
5212 0.5px 0.5px 0 #000;
5214 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5215 color: #00a1e8;
5216 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5220 /*=================*/
5221 /* HNS DATE PICKER */
5222 /*=================*/
5224 #hns-date-picker span {
5225 color: #777;
5226 text-shadow: 0.5px 0.5px 0 #000;
5227 font-weight: 600;
5229 #hns-date-picker input {
5230 border: 1px solid #777;
5231 background-color: transparent;
5232 color: #888;
5233 box-shadow: 0 0 0 1px transparent;
5235 #hns-date-picker input:focus {
5236 color: #fff;
5239 /*======================*/
5240 /* ANTI-KIBITZER TOGGLE */
5241 /*======================*/
5243 #anti-kibitzer-toggle button::before,
5244 #anti-kibitzer-toggle button::after {
5245 background-color: #666;
5246 -webkit-background-clip: text;
5247 color: transparent;
5248 text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 1px;
5250 #anti-kibitzer-toggle button:hover::before,
5251 #anti-kibitzer-toggle button:hover::after {
5252 background-color: #aeaeae;
5255 /*======================*/
5256 /* TEXT SIZE ADJUSTMENT */
5257 /*======================*/
5259 #text-size-adjustment-ui button {
5260 color: #777;
5262 #text-size-adjustment-ui button.default {
5263 font-weight: 600;
5265 #text-size-adjustment-ui button:disabled:hover {
5266 text-shadow: none;
5268 #text-size-adjustment-ui::after {
5269 color: #575756;
5272 /*=============================*/
5273 /* COMMENTS VIEW MODE SELECTOR */
5274 /*=============================*/
5276 #comments-view-mode-selector a {
5277 color: #777;
5280 /*==========*/
5281 /* ARCHIVES */
5282 /*==========*/
5284 .archive-nav {
5285 border: 1px solid #484848;
5287 .archive-nav *[class^='archive-nav-item'] {
5288 border-style: solid;
5289 border-color: #1f1f1f;
5290 border-width: 1px 0 1px 1px;
5291 background-color: #131313;
5293 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5294 border-top-width: 0;
5295 border-bottom-width: 0;
5297 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5298 border-bottom-width: 1px;
5300 .archive-nav *[class^='archive-nav-item']:last-child {
5301 border-right-width: 1px;
5303 .archive-nav span[class^='archive-nav-item'] {
5304 font-weight: bold;
5305 background-color: #1f1f1f;
5308 .archive-nav a:link,
5309 .archive-nav a:visited {
5310 color: rgba(12, 200, 0, 0.7);
5312 .archive-nav a:hover {
5313 text-decoration: none;
5314 color: #00a9ed;
5315 background-color: #1d1d1d;
5316 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5318 .archive-nav a:active {
5319 transform: scale(0.9);
5321 .archive-nav a:focus:not(:hover) {
5322 transform: none;
5324 .archive-nav a.archive-nav-item-day:hover {
5325 background-color: #1f1f1f;
5328 /*==========*/
5329 /* LISTINGS */
5330 /*==========*/
5332 h1.listing {
5333 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif, 'Font Awesome';
5334 font-weight: 800;
5335 margin: 0.7em 20px 0 20px;
5336 max-width: calc(100% - 40px);
5337 top: 0.125em; ;
5340 h1.listing a[href^='/posts'] {
5341 color: #fff;
5343 h1.listing a[href^="http"] {
5344 color: #54d400;
5347 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5348 h1.listing a:hover,
5349 h1.listing a:focus {
5350 color: #777;
5351 background-color: rgba(0, 0, 0, 0.85);
5353 h1.listing:focus-within::before {
5354 color: #00c200;
5355 left: -0.625em;
5357 h1.listing a[href^="http"]:hover {
5358 color: #670;
5359 text-shadow:
5360 0.5px 0.5px 0 #000,
5361 -0.5px -0.5px 0 #000,
5362 0 0 2px #000,
5363 0 0 3px #54d400;
5367 h1.listing .edit-post-link {
5368 padding: 5px 3px 12px 0.5em;
5369 top: 0;
5370 right: 0;
5372 h1.listing .edit-post-link:hover {
5373 text-decoration: none;
5375 #content.user-page h1.listing .edit-post-link {
5376 background-color: #131313;
5379 /*======*/
5380 /* SPAM */
5381 /*======*/
5383 h1.listing.spam {
5384 opacity: 0.15;
5386 h1.listing.spam + .post-meta {
5387 opacity: 0.4;
5389 h1.listing.spam:hover,
5390 h1.listing.spam + .post-meta:hover,
5391 h1.listing.spam:hover + .post-meta {
5392 opacity: 1.0;
5395 /*===================*/
5396 /* LISTING POST-META */
5397 /*===================*/
5399 h1.listing + .post-meta {
5400 padding-right: 330px;
5402 h1.listing + .post-meta .karma-value,
5403 h1.listing + .post-meta .comment-count,
5404 h1.listing + .post-meta .lw2-link,
5405 h1.listing + .post-meta .read-time {
5406 border-radius: 4px;
5407 padding: 0 4px 0 2px;
5408 text-shadow: 0.5px 0.5px 0.5px #575756;
5409 margin: 0 0.25em 0 0.5em;
5410 position: absolute;
5411 line-height: 1.15;
5412 bottom: -6px;
5414 h1.listing + .post-meta .karma-value span,
5415 h1.listing + .post-meta .comment-count span,
5416 h1.listing + .post-meta .lw2-link span,
5417 h1.listing + .post-meta .read-time span {
5418 display: none;
5420 h1.listing + .post-meta .karma-value::before,
5421 h1.listing + .post-meta .comment-count::before,
5422 h1.listing + .post-meta .lw2-link::before,
5423 h1.listing + .post-meta .read-time::before {
5424 color: #000;
5425 font-family: Font Awesome;
5426 font-weight: 900;
5427 margin: 0 8px 0 0;
5428 box-shadow: 0 0 0 2px #1f1f1f;
5430 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
5431 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
5432 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
5433 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
5434 text-shadow: 0 0 3px #575756;
5437 h1.listing + .post-meta .karma {
5438 margin: 0;
5440 h1.listing + .post-meta .karma-value {
5441 box-shadow:
5442 22px 0 0 0 #1f1f1f inset,
5443 0 0 0 3px #1f1f1f;
5444 cursor: default;
5445 color: #00a9ed;
5446 right: 264px;
5448 h1.listing + .post-meta .karma-value::before {
5449 content: "\F139";
5450 text-shadow: none;
5451 font-size: 0.9375em;
5452 line-height: 1.3;
5455 h1.listing + .post-meta .comment-count::before {
5456 content: "\F086";
5458 h1.listing + .post-meta .comment-count {
5459 box-shadow:
5460 25px 0 0 0 #1f1f1f inset,
5461 0 0 0 3px #1f1f1f;
5462 color: #9e4acf;
5463 right: 176px;
5465 h1.listing + .post-meta .comment-count:hover {
5466 text-decoration: none;
5467 color: #000;
5468 background-color: #9e4acf;
5470 h1.listing + .post-meta .comment-count:hover::before {
5471 color: #9e4acf;
5473 h1.listing + .post-meta .comment-count.new-comments::before {
5474 color: #9e4acf;
5475 text-shadow: 0.5px 0.5px 0.5px #000;
5477 h1.listing + .post-meta .comment-count.new-comments:hover::before {
5478 text-shadow: 0.5px 0.5px 0.5px #575756;
5482 h1.listing + .post-meta .lw2-link {
5483 box-shadow:
5484 23px 0 0 0 #1f1f1f inset,
5485 0 0 0 3px #1f1f1f;
5486 right: 0;
5488 h1.listing + .post-meta .lw2-link::before {
5489 content: "\F0C1";
5491 h1.listing + .post-meta .lw2-link:hover {
5492 text-decoration: none;
5493 color: #000;
5494 background-color: #00c200;
5496 h1.listing + .post-meta .lw2-link:hover::before {
5497 color: #00c200;
5500 h1.listing + .post-meta .read-time {
5501 box-shadow:
5502 21px 0 0 0 #1f1f1f inset,
5503 0 0 0 3px #1f1f1f;
5504 right: 80px;
5506 h1.listing + .post-meta .read-time::before {
5507 content: "\F2F2";
5508 cursor: pointer;
5510 h1.listing + .post-meta .read-time::after {
5511 content: " min";
5513 h1.listing + .post-meta .read-time:hover::before {
5514 color: #777;
5517 h1.listing + .post-meta .word-count {
5518 box-shadow:
5519 22px 0 0 0 #1f1f1f inset,
5520 0 0 0 3px #1f1f1f;
5521 padding: 0 4px 0 4px;
5523 h1.listing + .post-meta .word-count::before {
5524 content: "\F15C";
5525 margin: 0 10px 0 0;
5527 h1.listing + .post-meta .read-time.word-count::after {
5528 content: none;
5531 h1.listing + .post-meta .link-post-domain {
5532 margin: 0 0 0 0.5em;
5535 h1.listing + .post-meta::after {
5536 content: "";
5537 display: block;
5538 height: 1px;
5539 width: 100%;
5540 background-color: #1f1f1f;
5541 position: absolute;
5542 bottom: -14px;
5545 /*============*/
5546 /* USER PAGES */
5547 /*============*/
5549 #content.user-page h1.page-main-heading {
5550 border-bottom: 1px solid #2c2c2c;
5553 #content.user-page h1.listing,
5554 #content.user-page h1.listing + .post-meta {
5555 background-color: #131313;
5556 border-style: solid;
5557 border-color: #2c2c2c;
5559 #content.user-page h1.listing {
5560 padding: 0 6px;
5561 padding-top: 0.25em;
5562 border-width: 1px 1px 0 1px;
5563 margin: 1rem 0 0 0;
5564 max-width: 100%;
5566 #content.own-user-page h1.listing,
5567 h1.listing.own-post-listing {
5568 padding-right: 36px;
5570 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5571 #content.user-page h1.listing a:hover,
5572 #content.user-page h1.listing a:focus {
5573 background-color: #131313;
5575 #content.user-page h1.listing:focus-within::before {
5576 left: -0.625em;
5579 #content.user-page h1.listing + .post-meta {
5580 padding: 0.125em 6px 1em 36px;
5581 border-width: 0 1px 1px 1px;
5582 margin: 0 0 1rem 0;
5584 #content.user-page h1.listing + .post-meta::after {
5585 display: none;
5587 @media only screen and (min-width: 521px) {
5588 #content.user-page h1.listing + .post-meta .karma-value,
5589 #content.user-page h1.listing + .post-meta .comment-count,
5590 #content.user-page h1.listing + .post-meta .lw2-link,
5591 #content.user-page h1.listing + .post-meta .read-time {
5592 bottom: 10px;
5595 #content.user-page h1.listing + .post-meta .post-section::before {
5596 left: -1px;
5599 #content.conversations-user-page h1.listing {
5600 padding: 4px 6px;
5601 font-size: 1.75rem;
5603 #content.conversations-user-page h1.listing + .post-meta {
5604 padding: 6px 4px;
5605 margin: 0 0 0.25rem 0;
5608 .user-stats .karma-total {
5609 font-weight: bold;
5612 /*===============*/
5613 /* CONVERSATIONS */
5614 /*===============*/
5616 /*============*/
5617 /* LOGIN PAGE */
5618 /*============*/
5620 .login-container form input[type='submit'] {
5621 font-weight: bold;
5622 background-color: #131313;
5623 border: 1px solid #2c2c2c;
5625 .login-container form input[type='submit']:hover,
5626 .login-container form input[type='submit']:focus {
5627 background-color: #1f1f1f;
5628 border: 1px solid #484848;
5631 /* “Create account” form */
5633 #signup-form {
5634 background-color: #0f0f0f;
5635 border: 1px solid #1f1f1f;
5637 #signup-form input[type='submit'] {
5638 background-color: #1a1a1a;
5639 border: 1px solid #2c2c2c;
5641 #signup-form input[type='submit']:hover {
5642 background-color: #232323;
5643 border: 1px solid #484848;
5646 /* Log in tip */
5648 .login-container .login-tip {
5649 border: 1px solid #131313;
5652 /* Message box */
5654 .error-box {
5655 border: 1px solid red;
5656 background-color: #004147;
5658 .success-box {
5659 border: 1px solid green;
5660 background-color: #320042;
5663 /*=====================*/
5664 /* PASSWORD RESET PAGE */
5665 /*=====================*/
5667 .reset-password-container input[type='submit'] {
5668 background-color: #1a1a1a;
5669 border: 1px solid #2c2c2c;
5670 font-weight: bold;
5673 /*===================*/
5674 /* TABLE OF CONTENTS */
5675 /*===================*/
5677 .contents {
5678 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5679 border: 1px solid #1f1f1f;
5680 background-color: #131313;
5682 .contents-head {
5683 font-weight: bold;
5685 .post-body .contents li::before {
5686 color: #575756;
5687 font-feature-settings: "tnum";
5689 .post-body .contents a,
5690 .post-body .contents a:hover {
5691 border: none;
5693 .post-body .contents a:hover {
5694 text-decoration: underline;
5697 /*==================*/
5698 /* POSTS & COMMENTS */
5699 /*==================*/
5701 .post-body,
5702 .comment-body {
5703 font-family: 'Charter', 'Georgia', serif;
5706 .post-body a,
5707 .comment-body a {
5708 border-bottom: 1px dotted #393939;
5710 .post-body a:hover,
5711 .comment-body a:hover {
5712 text-decoration: none;
5713 border-bottom: 1px solid currentColor;
5716 /*=======*/
5717 /* POSTS */
5718 /*=======*/
5720 h1.post-title {
5721 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif;
5722 font-weight: 800;
5725 /*===========*/
5726 /* POST-META */
5727 /*===========*/
5729 .post-meta .post-section::before {
5730 color: #000;
5731 text-shadow:
5732 1px 1px 0 #9740cb,
5733 0 1px 0 #9740cb,
5734 0 0 5px #9740cb;
5736 a.post-section:hover {
5737 text-decoration: none;
5739 a.post-section:hover::before {
5740 color: #2e0062;
5742 .post-meta .post-section.alignment-forum::before {
5743 text-shadow:
5744 1px 1px 0 #658100,
5745 0 1px 0 #658100,
5746 0 0 5px #658100;
5748 a.post-section.alignment-forum:hover::before {
5749 color: #181a00;
5751 .post-meta .date {
5752 color: #666;
5754 .post-meta .author {
5755 color: #9740cb;
5757 .bottom-post-meta {
5758 border-top: 1px solid #1f1f1f;
5761 /*============*/
5762 /* LINK POSTS */
5763 /*============*/
5765 .post.link-post a.link-post-link {
5766 text-decoration: none;
5767 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5768 font-weight: 600;
5770 .post.link-post a.link-post-link:hover {
5771 color: #00a9ed;
5773 .post.link-post a.link-post-link:hover::before {
5774 color: #670;
5775 text-shadow:
5776 0.5px 0.5px 0 #000,
5777 -0.5px -0.5px 0 #000,
5778 0 0 2px #000,
5779 0 0 3px #54d400;
5781 .post.link-post a.link-post-link:focus {
5782 color: #777;
5783 border-bottom: 2px dotted #777;
5786 /*==========*/
5787 /* COMMENTS */
5788 /*==========*/
5790 #comments::before {
5791 border-top: 1px solid #fff;
5792 box-shadow: 0 3px 4px -4px #fff inset;
5794 @-moz-document url-prefix() {
5795 #comments::before {
5796 box-shadow: 0 3px 3px -4px #fff inset;
5799 #content > .comment-thread .comment-meta a.date:focus,
5800 #content > .comment-thread .comment-meta a.permalink:focus {
5801 color: #666;
5802 outline: 2px dotted #575756;
5803 position: relative;
5804 background-color: #000;
5806 #content > .comment-thread .comment-meta a.date:focus {
5807 padding: 0 4px;
5808 left: -4px;
5810 #content > .comment-thread .comment-meta a.date:focus + * {
5811 margin-left: -8px;
5813 #content > .comment-thread .comment-meta a.permalink:focus {
5814 padding: 0 5px;
5815 left: -5px;
5817 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5818 margin-left: -10px;
5820 .comment-item {
5821 border: 1px solid #2c2c2c;
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 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
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 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5827 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5828 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5829 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5830 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5831 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5832 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5833 .comment-item .comment-item .comment-item .comment-item .comment-item,
5834 .comment-item .comment-item .comment-item,
5835 .comment-item {
5836 background-color: #131313;
5838 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
5843 .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,
5844 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5845 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5846 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5847 .comment-item .comment-item .comment-item a.comment-parent-link::after,
5848 .comment-item a.comment-parent-link::after {
5849 box-shadow:
5850 0 28px 16px -16px #000 inset,
5851 4px 16px 0 12px #00001e inset,
5852 4px 4px 0 12px #00001e inset;
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 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
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 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
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 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5858 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5859 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5860 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5861 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5862 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5863 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5864 .comment-item .comment-item .comment-item .comment-item,
5865 .comment-item .comment-item {
5866 background-color: #000;
5868 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
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 a.comment-parent-link::after,
5874 .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,
5875 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5876 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5877 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5878 .comment-item .comment-item a.comment-parent-link::after {
5879 box-shadow:
5880 0 28px 16px -16px #131313 inset,
5881 4px 16px 0 12px #00001e inset,
5882 4px 4px 0 12px #00001e inset;
5885 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5886 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5887 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5888 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5889 .comment-item .comment-item .comment-item .comment-item .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,
5890 .comment-item .comment-item .comment-item .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,
5891 .comment-item .comment-item .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,
5892 .comment-item .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,
5893 .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,
5894 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5895 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5896 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5897 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5898 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5899 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5900 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5901 .comment-item .comment-item .comment-item .comment-item:target,
5902 .comment-item .comment-item .comment-item:target,
5903 .comment-item .comment-item:target,
5904 .comment-item:target {
5905 background-color: #00001e;
5907 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5908 box-shadow:
5909 0 28px 16px -16px #00001e inset,
5910 4px 16px 0 12px #00001e inset,
5911 4px 4px 0 12px #00001e inset !important;
5914 /*================================*/
5915 /* DEEP COMMENT THREAD COLLAPSING */
5916 /*================================*/
5918 .comment-item input[id^="expand"] + label::after {
5919 color: #0cc800;
5920 font-weight: 600;
5922 .comment-item input[id^="expand"] + label:hover::after {
5923 color: #00a9ed;
5925 .comment-item input[id^="expand"] + label:active::after,
5926 .comment-item input[id^="expand"] + label:focus::after{
5927 color: #00a9ed;
5929 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5930 border-width: 1px 0 0 0;
5933 /*==============*/
5934 /* COMMENT-META */
5935 /*==============*/
5937 .comment-meta .author {
5938 font-weight: bold;
5939 font-size: 1.25em;
5940 color: #fff;
5942 .comment-meta .author:hover {
5943 text-decoration: none;
5944 color: #9740cb;
5946 .comment-item .author:not(.redacted).original-poster::after {
5947 opacity: 0.5;
5950 .comment-item .karma.active-controls::after,
5951 .comment-item .karma .karma-value::after,
5952 .post .karma.active-controls::after,
5953 .post .karma .karma-value::after {
5954 background-color: #000;
5955 color: #575756;
5956 border-radius: 4px;
5957 box-shadow: 0 0 0 1px #1f1f1f inset;
5959 .comment-item .karma.active-controls::after,
5960 .post .karma.active-controls::after {
5961 padding: 6px 4px 4px 4px;
5962 bottom: -44px;
5964 .comment-item .karma .karma-value::after,
5965 .post .karma .karma-value::after {
5966 padding: 2px 8px 1px 8px;
5967 top: -25px;
5968 min-width: 56px;
5971 /*====================*/
5972 /* ANTI-KIBITZER MODE */
5973 /*====================*/
5975 .author.redacted,
5976 .inline-author.redacted {
5977 opacity: 0.6;
5978 font-weight: 400;
5981 .karma-value.redacted {
5982 opacity: 0.4;
5985 .link-post-domain.redacted {
5986 opacity: 0.4;
5989 /*===========================*/
5990 /* COMMENT THREAD NAVIGATION */
5991 /*===========================*/
5993 div.comment-parent-link {
5994 font-weight: 600;
5996 a.comment-parent-link {
5997 font-weight: 400;
5999 a.comment-parent-link::before {
6000 color: #393939;
6002 a.comment-parent-link:hover::before {
6003 background-color: #00001e;
6004 color: #575756;
6007 div.comment-child-links {
6008 font-weight: 600;
6010 div.comment-child-links a {
6011 font-weight: 400;
6013 .comment-child-link::before {
6014 color: #484848;
6017 .comment-item-highlight {
6018 box-shadow:
6019 0 0 2px #0047b5,
6020 0 0 3px #0047b5,
6021 0 0 5px #0047b5,
6022 0 0 7px #0047b5,
6023 0 0 10px #0047b5;
6024 border: 1px solid #0047b5;
6026 .comment-item-highlight-faint {
6027 box-shadow:
6028 0 0 2px #00193b,
6029 0 0 3px #00193b,
6030 0 0 5px #00193b,
6031 0 0 7px #00193b,
6032 0 0 10px #00193b;
6033 border: 1px solid #00193b;
6036 .comment-popup {
6037 background-color: #000;
6040 /*=======================*/
6041 /* COMMENTS COMPACT VIEW */
6042 /*=======================*/
6044 #comments-list-mode-selector button {
6045 box-shadow:
6046 0 0 0 4px #000 inset,
6047 0 0 0 5px #393939 inset;
6049 #comments-list-mode-selector button:hover,
6050 #comments-list-mode-selector button.selected {
6051 box-shadow:
6052 0 0 0 5px #393939 inset;
6054 #content.compact > .comment-thread .comment-item::after {
6055 color: #0cc800;
6056 background: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
6059 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6060 #content.compact > .comment-thread .comment-item:hover .comment,
6061 #content.compact > .comment-thread .comment-item.expanded .comment {
6062 background-color: #000;
6063 outline: 3px solid #54d400;
6065 #content.compact > .comment-thread .comment-item:hover .comment::before,
6066 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6067 background-color: #000;
6068 box-shadow:
6069 0 0 3px #000,
6070 0 0 5px #000,
6071 0 0 7px #000,
6072 0 0 10px #000,
6073 0 0 20px #000,
6074 0 0 30px #000,
6075 0 0 40px #000;
6078 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6079 #content.compact > .comment-thread.expanded .comment-item .comment {
6080 background-color: #000;
6081 outline: 3px solid #54d400;
6083 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6084 background-color: #000;
6085 box-shadow:
6086 0 0 3px #000,
6087 0 0 5px #000,
6088 0 0 7px #000,
6089 0 0 10px #000,
6090 0 0 20px #000,
6091 0 0 30px #000,
6092 0 0 40px #000;
6096 #content.user-page.compact > h1.listing {
6097 margin-top: 0.5rem;
6099 #content.user-page.compact > h1.listing + .post-meta {
6100 margin-bottom: 0.5rem;
6103 /*===========================*/
6104 /* HIGHLIGHTING NEW COMMENTS */
6105 /*===========================*/
6107 .new-comment::before {
6108 outline: 2px solid #7f3b92;
6109 box-shadow:
6110 0 0 6px -2px #7f3b92 inset,
6111 0 0 4px #7f3b92,
6112 0 0 6px #7f3b92;
6115 /*=================================*/
6116 /* COMMENT THREAD MINIMIZE BUTTONS */
6117 /*=================================*/
6119 .comment-minimize-button {
6120 color: #2c2c2c;
6122 .comment-minimize-button:hover {
6123 color: #484848;
6124 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6126 .comment-minimize-button::after {
6127 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6128 color: #777;
6130 .comment-minimize-button.maximized::after {
6131 color: #2c2c2c;
6134 /*==============*/
6135 /* VOTE BUTTONS */
6136 /*==============*/
6138 .vote::before {
6139 content: "";
6140 border-radius: 50%;
6141 background-size: 17px 17px;
6142 width: 17px;
6143 height: 17px;
6144 display: inline-block;
6145 position: relative;
6146 top: 2.5px;
6148 .vote:active {
6149 transform: none;
6151 .vote:hover::before,
6152 .vote.selected::before,
6153 .vote.clicked-once::before,
6154 .vote.clicked-twice::before {
6155 filter: drop-shadow(0 0 1px #fff);
6158 .upvote::before,
6159 .waiting .upvote.big-vote.clicked-twice::before {
6160 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
6161 filter: grayscale(100%) brightness(128%);
6163 .downvote::before,
6164 .waiting .downvote.big-vote.clicked-twice::before {
6165 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
6166 filter: grayscale(100%) brightness(188%);
6169 .vote.clicked-once::before,
6170 .vote.big-vote.clicked-once::before {
6171 box-shadow:
6172 0 0 0 1px #000,
6173 0 0 0 4px #2f2f2f,
6174 0 0 0 5px transparent;
6177 .vote.big-vote.clicked-twice::before,
6178 .waiting .vote.big-vote:not(.clicked-twice)::before,
6179 .waiting .vote:not(.big-vote).clicked-once::before {
6180 box-shadow: none;
6183 .upvote.clicked-twice::before,
6184 .upvote.big-vote::before {
6185 box-shadow:
6186 0 0 0 1px #000,
6187 0 0 0 4px #6200ad,
6188 0 0 0 5px transparent;
6191 .downvote.clicked-twice::before,
6192 .downvote.big-vote::before {
6193 box-shadow:
6194 0 0 0 1px #000,
6195 0 0 0 4px #0084c2,
6196 0 0 0 5px transparent;
6199 /*===========================*/
6200 /* COMMENTING AND POSTING UI */
6201 /*===========================*/
6203 .posting-controls input[type='submit'] {
6204 background-color: #000;
6205 border: 1px solid #484848;
6206 font-weight: bold;
6208 .posting-controls input[type='submit']:hover,
6209 .posting-controls input[type='submit']:focus {
6210 background-color: #1f1f1f;
6211 border: 1px solid #575756;
6214 .comment-controls .cancel-comment-button {
6215 font-weight: 600;
6216 color: #00a9ed;
6217 text-shadow:
6218 0 0 1px #000,
6219 0 0 2px #000;
6221 .comment-controls .cancel-comment-button:hover {
6222 color: #0090e0;
6223 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6226 .new-comment-button {
6227 font-weight: 600;
6230 .comment-controls .delete-button,
6231 .comment-controls .retract-button {
6232 color: #00bbf5;
6233 opacity: 0.85;
6235 .comment-controls .edit-button,
6236 .comment-controls .unretract-button {
6237 color: #9740cb;
6239 .comment-controls .action-button:hover {
6240 color: #0090e0;
6241 opacity: 1.0;
6244 .button.edit-post-link:not(:hover) {
6245 color: #9740cb;
6248 .posting-controls textarea {
6249 font-family: 'Charter', 'Georgia', serif;
6250 color: #fff;
6251 background-color: #000;
6252 border-color: #484848;
6253 box-shadow:
6254 0 0 0 1px #131313 inset;
6256 .posting-controls textarea:focus {
6257 background-color: #00001e;
6258 border-color: #0cc800;
6259 box-shadow:
6260 0 0 0 1px #1d1f00 inset,
6261 0 0 0 1px #000,
6262 0 0 0 2px #0cc800;
6264 .posting-controls.edit-existing-post textarea:focus,
6265 .posting-controls form.edit-existing-comment textarea:focus {
6266 border-color: #9740cb;
6267 box-shadow:
6268 0 0 0 1px #3d0061 inset,
6269 0 0 0 1px #000,
6270 0 0 0 2px #9740cb;
6273 /*= Scroll bars =*/
6275 .posting-controls textarea::-webkit-scrollbar {
6276 width: 16px;
6277 background-color: transparent;
6279 .posting-controls textarea::-webkit-scrollbar-track {
6280 background-color: #131313;
6281 border-left: 1px solid #484848;
6282 border-top: 1px solid #131313;
6284 .posting-controls textarea:focus::-webkit-scrollbar-track {
6285 border-left: 1px solid #0cc800;
6286 border-top: 1px solid #1d1f00;
6288 .posting-controls textarea::-webkit-scrollbar-thumb {
6289 background-color: #484848;
6290 box-shadow: 0 0 0 1px #131313 inset;
6291 border-left: 1px solid #484848;
6293 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
6294 border-left: 1px solid #0cc800;
6295 background-color: #40a800;
6296 box-shadow:
6297 0 1px 0 0 #1d1f00 inset,
6298 0 0 0 1px #131313 inset;
6301 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
6302 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
6303 border-left: 1px solid #9740cb;
6305 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
6306 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
6307 border-left: 1px solid #9740cb;
6308 background-color: #8533c2;
6311 /* GUIEdit buttons */
6313 .guiedit-buttons-container {
6314 background-image: linear-gradient(to bottom, #000 0%, #1d1f00 50%, #252c00 75%, #344700 100%);
6317 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6318 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6319 color: #ce92ee;
6321 .guiedit-buttons-container button {
6322 font-family: Font Awesome, 'Charter', 'Georgia', serif;
6325 .guiedit::after {
6326 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6327 color: #777;
6328 text-shadow: none;
6331 /* Markdown hints */
6333 #markdown-hints-checkbox + label {
6334 color: #0cc800;
6336 #markdown-hints-checkbox + label:hover {
6337 color: #0098e4;
6338 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6340 #markdown-hints {
6341 border: 1px solid #00a9ed;
6342 background-color: #000340;
6345 /*================*/
6346 /* EDIT POST FORM */
6347 /*================*/
6349 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
6350 top: -1px;
6352 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6353 border-radius: 3px;
6354 border: 1px solid #1f1f1f;
6355 color: #777;
6357 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6358 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6359 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6360 text-shadow:
6361 0 0 1px #000,
6362 0 0 2px #000,
6363 0 0 2.5px #484848;
6365 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6366 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6367 border-color: #484848;
6370 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6371 content: "\F00C";
6373 #edit-post-form input[type='radio'] + label {
6374 color: #777;
6375 border-color: #1f1f1f;
6376 padding: 4px 12px 5px 12px;
6378 #edit-post-form input[type='radio'][value='all'] + label {
6379 border-radius: 8px 0 0 8px;
6380 border-width: 1px;
6382 #edit-post-form input[type='radio'][value='drafts'] + label {
6383 border-radius: 0 8px 8px 0;
6385 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6386 #edit-post-form input[type='radio'] + label:hover,
6387 #edit-post-form input[type='radio']:focus + label {
6388 background-color: #1f1f1f;
6389 color: #fff;
6392 #edit-post-form input[type='radio']:focus + label {
6393 color: #fff;
6394 box-shadow:
6395 0 0 0 1px #484848;
6397 #edit-post-form input[type='radio']:checked + label {
6398 background-color: #1f1f1f;
6399 border-color: #1f1f1f;
6400 color: #fff;
6401 text-shadow:
6402 0 -1px 0 #000,
6403 0 0.5px 0.5px #fff;
6406 /*=======*/
6407 /* LINKS */
6408 /*=======*/
6411 text-decoration: none;
6412 color: #0cc800;
6414 a:visited {
6415 color: #76cc54;
6417 a:hover {
6418 text-decoration: underline;
6421 /*=========*/
6422 /* BUTTONS */
6423 /*=========*/
6425 button,
6426 input[type='submit'] {
6427 color: #0cc800;
6430 button:active,
6431 input[type='submit']:active {
6432 color: #0090e0;
6433 transform: scale(0.9);
6435 .button:visited {
6436 color: #0cc800;
6438 .button:active {
6439 transform: scale(0.9);
6441 @-moz-document url-prefix() {
6442 .button:active {
6443 transform: none;
6447 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6448 button:hover,
6449 input[type='submit']:hover,
6450 button:focus,
6451 input[type='submit']:focus {
6452 color: #0090e0;
6453 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6456 .button:hover {
6457 color: #0090e0;
6458 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6459 text-decoration: none;
6461 .button:focus:not(:hover) {
6462 transform: none;
6466 /*==========*/
6467 /* HEADINGS */
6468 /*==========*/
6470 .post-body h1,
6471 .post-body h2,
6472 .post-body h4,
6473 .comment-body h1,
6474 .comment-body h2,
6475 .comment-body h4 {
6476 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6478 .post-body h3,
6479 .comment-body h3,
6480 .post-body h5,
6481 .post-body h6,
6482 .comment-body h5,
6483 .comment-body h6 {
6484 font-weight: 600;
6485 font-family: 'Whitney Smallcaps', 'a_Avante', Arial, sans-serif;
6487 .post-body h6,
6488 .comment-body h6 {
6489 color: #9b9b9b;
6491 .post-body h1,
6492 .comment-body h1 {
6493 border-bottom: 1px solid #484848;
6496 /*========*/
6497 /* QUOTES */
6498 /*========*/
6500 blockquote {
6501 border-left: 5px solid #2c2c2c;
6504 /*========*/
6505 /* IMAGES */
6506 /*========*/
6508 #content img {
6509 border: 1px solid #2c2c2c;
6511 #content img[style^='float'] {
6512 border: 1px solid transparent;
6514 #content img[src$='.svg'] {
6515 border: none;
6517 #content figure img {
6518 border: 1px solid #fff;
6520 #content figure img[src$='.svg'] {
6521 border: none;
6524 /*========*/
6525 /* TABLES */
6526 /*========*/
6528 .post-body table,
6529 .comment-body table,
6530 .post-body table th,
6531 .post-body table td,
6532 .comment-body table th,
6533 .comment-body table td {
6534 border: 1px solid #2c2c2c;
6537 /*======*/
6538 /* MISC */
6539 /*======*/
6541 hr {
6542 border-bottom: 1px solid #575756;
6545 code {
6546 background-color: #0b0b00;
6547 border: 1px solid #1d1f00;
6548 border-radius: 4px;
6551 input[type='text'],
6552 input[type='search'],
6553 input[type='password'] {
6554 background-color: #000;
6555 border: 1px solid #1f1f1f;
6556 color: #fff;
6558 input[type='text']:focus,
6559 input[type='search']:focus,
6560 input[type='password']:focus {
6561 background-color: #00001e;
6562 border: 1px solid #393939;
6563 box-shadow: 0 0 1px #393939;
6566 select {
6567 color: #fff;
6570 @-moz-document url-prefix() {
6571 h1.listing s,
6572 .post > h1:first-of-type s {
6573 position: relative;
6574 text-decoration: none;
6576 h1.listing s::after,
6577 .post > h1:first-of-type s::after {
6578 position: absolute;
6579 border-bottom: 3px solid #fff;
6580 content: "";
6581 top: 0;
6582 left: 0;
6583 width: 100%;
6584 height: 50%;
6587 /*============*/
6588 /* ABOUT PAGE */
6589 /*============*/
6591 .about-page mark {
6592 background-color: #191919;
6593 text-decoration: none;
6594 box-shadow:
6595 0 -1px 0 0 #fff inset,
6596 0 -3px 1px -2px #fff inset;
6597 padding: 0 1px;
6600 #content.about-page .accesskey-table {
6601 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6602 border-color: #1f1f1f;
6605 #content.about-page img {
6606 border: 1px solid #fff;
6609 /*========================*/
6610 /* QUALIFIED HYPERLINKING */
6611 /*========================*/
6613 #aux-about-link a {
6614 color: #777;
6616 #aux-about-link a:hover {
6617 opacity: 1.0;
6618 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6621 .qualified-linking label {
6622 color: #0cc800;
6624 .qualified-linking label:hover {
6625 text-shadow:
6626 0 0 1px #000,
6627 0 0 3px #000,
6628 0 0 5px #0cc800;
6631 .qualified-linking-toolbar {
6632 border: 1px solid #fff;
6633 background-color: #000;
6635 .qualified-linking-toolbar a {
6636 background-color: #131313;
6637 border: 1px solid #2c2c2c;
6638 border-radius: 4px;
6640 .qualified-linking-toolbar a:visited {
6641 color: #0cc800;
6643 .qualified-linking-toolbar a:hover {
6644 text-decoration: none;
6645 background-color: #1f1f1f;
6646 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6648 .qualified-linking label::after {
6649 background-color: #232323;
6650 opacity: 0.8;
6653 /*======*/
6654 /* MATH */
6655 /*======*/
6657 .mathjax-block-container::-webkit-scrollbar {
6658 height: 12px;
6659 background-color: #0b0b00;
6660 border-radius: 6px;
6661 border: 1px solid #1d1f00;
6663 .mathjax-block-container::-webkit-scrollbar-thumb {
6664 background-color: #1e1f13;
6665 border-radius: 6px;
6666 border: 1px solid #282c11;
6668 .mathjax-inline-container::-webkit-scrollbar {
6669 height: 8px;
6670 background-color: #0b0b00;
6671 border-radius: 4px;
6672 border: 1px solid #1d1f00;
6674 .mathjax-inline-container::-webkit-scrollbar-thumb {
6675 background-color: #1e1f13;
6676 border-radius: 4px;
6677 border: 1px solid #282c11;
6680 /*=================*/
6681 /* ALIGNMENT FORUM */
6682 /*=================*/
6684 #content.alignment-forum-index-page::before {
6685 background-color: #131100;
6687 #content.alignment-forum-index-page::after {
6688 font-family: "Concourse SmallCaps";
6689 font-weight: bold;
6690 background-color: #658100;
6691 -webkit-background-clip: text;
6692 color: transparent;
6693 text-shadow:
6694 rgba(0, 0, 0, 0.5) 0px 3px 3px;;
6696 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6697 #content.alignment-forum-index-page h1.listing a:hover,
6698 #content.alignment-forum-index-page h1.listing a:focus {
6699 background-color: rgba(19, 17, 0, 0.85);
6703 /*====================*/
6704 /* FOR NARROW SCREENS */
6705 /*====================*/
6707 @media only screen and (max-width: 1440px) {
6708 #hns-date-picker {
6709 background-color: #232323;
6710 opacity: 1.0;
6712 #hns-date-picker::before {
6713 border: 1px solid #575756;
6714 border-width: 1px 0 1px 1px;
6717 @media only screen and (max-width: 1160px) {
6718 #theme-selector:hover::after {
6719 background-color: #575756;
6722 @media only screen and (max-width: 1080px) {
6723 #text-size-adjustment-ui button {
6724 border: 1px solid #575756;
6725 padding: 0 0 0 1px;
6726 border-radius: 50%;
6727 box-shadow:
6728 0 0 6px #575756 inset,
6729 0 0 0 1px transparent;
6731 #theme-tweaker-toggle button {
6732 border: 1px solid #575756;
6733 box-shadow:
6734 0 0 10px #575756 inset,
6735 0 0 0 1px transparent;
6736 border-radius: 50%;
6737 transform: scale(0.8);
6740 @media only screen and (max-width: 1020px) {
6741 #quick-nav-ui a {
6742 box-shadow:
6743 0 0 0 1px #575756,
6744 0 0 0 2px transparent;
6746 #new-comment-nav-ui .new-comments-count::before {
6747 background-color: #232323;
6748 box-shadow:
6749 0 0 0 1px #575756,
6750 0 0 0 2px transparent;
6751 border-radius: 8px;
6753 #anti-kibitzer-toggle {
6754 box-shadow:
6755 0 0 0 1px #575756,
6756 0 0 0 2px transparent;
6757 background-color: #232323;
6758 border-radius: 6px;
6759 overflow: hidden;
6762 @media only screen and (max-width: 1000px) {
6763 #theme-selector {
6764 background-color: #232323;
6765 box-shadow:
6766 0 0 0 1px #575756,
6767 0 0 0 2px transparent;
6769 #theme-selector:hover::after {
6770 width: calc(6em - 3px);
6771 height: calc(100% - 5px);
6772 top: 3px;
6773 left: 100%;
6775 #text-size-adjustment-ui button {
6776 background-color: #1f1f1f;
6778 #text-size-adjustment-ui button:hover {
6779 background-color: #131313;
6781 #theme-tweaker-toggle button {
6782 background-color: #1f1f1f;
6786 /*========*/
6787 /* MOBILE */
6788 /*========*/
6790 /**************************************************************************/
6791 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6792 /**************************************************************************/
6793 #ui-elements-container > div[id$='-ui-toggle'] button {
6794 color: #666;
6795 text-shadow:
6796 0 0 1px #000,
6797 0 0 3px #000,
6798 0 0 5px #000,
6799 0 0 10px #000,
6800 0 0 20px #000,
6801 0 0 30px #000;
6804 #theme-selector {
6805 background-color: #232323;
6806 box-shadow:
6807 0 0 0 1px #575756,
6808 0 0 1px 3px #000,
6809 0 0 3px 3px #000,
6810 0 0 5px 3px #000,
6811 0 0 10px 3px #000,
6812 0 0 20px 3px #000;
6813 border-radius: 12px;
6815 #theme-selector::before,
6816 #theme-selector .theme-selector-close-button {
6817 color: #888;
6818 text-shadow: 0.5px 0.5px 0 #000;
6820 #theme-selector button {
6821 background-color: #191919;
6822 border-radius: 10px;
6824 #theme-selector button::after {
6825 color: #fff;
6826 padding-bottom: 2px;
6827 max-width: calc(100% - 3.25em);
6828 overflow: hidden;
6829 text-overflow: ellipsis;
6831 #theme-selector button.selected::after {
6832 text-shadow:
6833 0 -1px 0 #000,
6834 0 0.5px 0.5px #fff;
6837 #quick-nav-ui {
6838 background-color: #000;
6840 #quick-nav-ui,
6841 #new-comment-nav-ui,
6842 #hns-date-picker {
6843 box-shadow:
6844 0 0 1px 3px #000,
6845 0 0 3px 3px #000,
6846 0 0 5px 3px #000,
6847 0 0 10px 3px #000,
6848 0 0 20px 3px #000;
6850 #quick-nav-ui a::after,
6851 #new-comment-nav-ui::before {
6852 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6853 font-weight: 600;
6854 box-shadow:
6855 0 0 1px 0 #000,
6856 0 0 3px 0 #000,
6857 0 0 5px 0 #000;
6858 background-color: #000;
6859 border-radius: 4px;
6861 #quick-nav-ui,
6862 #new-comment-nav-ui {
6863 border-radius: 8px;
6865 #new-comment-nav-ui {
6866 background-color: #232323;
6867 border: 1px solid #575756;
6869 #new-comment-nav-ui::before {
6870 color: #777;
6872 #new-comment-nav-ui .new-comment-sequential-nav-button {
6873 box-shadow: 0 0 0 1px #575756;
6874 color: #777;
6876 #new-comment-nav-ui .new-comments-count {
6877 background-color: inherit;
6878 box-shadow: 0 -1px 0 0 #575756;
6880 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6881 color: #393939;
6883 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6884 border-radius: 7px 0 0 7px;
6886 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6887 border-radius: 0 7px 7px 0;
6889 #new-comment-nav-ui button::after {
6890 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6893 /*****************************************/
6894 @media only screen and (max-width: 900px) {
6895 /*****************************************/
6896 h1.listing {
6897 font-size: 1.75rem;
6898 line-height: 1;
6900 h1.listing a[href^='http'] {
6901 top: 2px;
6903 h1.listing + .post-meta .karma-value,
6904 h1.listing + .post-meta .comment-count,
6905 h1.listing + .post-meta .lw2-link,
6906 h1.listing + .post-meta .read-time {
6907 bottom: 0;
6909 h1.listing + .post-meta .post-section::before {
6910 position: unset;
6912 h1.listing + .post-meta .post-section {
6913 overflow: visible;
6914 order: 1;
6916 h1.listing + .post-meta .link-post-domain {
6917 order: 2;
6918 line-height: 1;
6919 flex-basis: 100%;
6921 h1.listing + .post-meta::after {
6922 bottom: -10px;
6924 #content.user-page h1.listing + .post-meta {
6925 margin-bottom: 1em;
6927 #content.user-page h1.link-post-listing::after {
6928 height: calc(100% + 2em);
6931 #nav-item-search button::before {
6932 color: #0cc800;
6935 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6936 background-color: #484848;
6939 .comment-item .comment-item {
6940 margin: 0.75em 2px 4px 6px;
6941 box-shadow:
6942 0 0 2px #2c2c2c,
6943 0 0 4px #2c2c2c,
6944 0 0 7px #2c2c2c;
6946 .comment-item .comment-item + .comment-item {
6947 margin: 1.5em 2px 4px 6px;
6949 .comment-body {
6950 font-size: 1.125rem;
6953 a.comment-parent-link:hover::before {
6954 background-color: unset;
6957 .sublevel-nav:not(.sort) .sublevel-item,
6958 .sublevel-nav:not(.sort) .sublevel-item:first-child,
6959 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6960 border-radius: 8px;
6961 border-width: 1px;
6962 margin: 2px;
6964 /*******************************************/
6965 } @media only screen and (max-width: 720px) {
6966 /*******************************************/
6967 h1.listing {
6968 margin: 10px 6px 6px 6px;
6969 max-width: calc(100% - 12px);
6970 font-size: 1.5rem;
6971 padding-right: 35px;
6973 #content.conversations-user-page h1.listing {
6974 font-size: 1.5rem;
6976 h1.listing + .post-meta {
6977 margin: 0 6px 0 7px;
6978 clear: both;
6980 h1.listing + .post-meta {
6981 padding: .25em 254px 0 0;
6983 h1.listing + .post-meta::after {
6984 bottom: -2px;
6986 h1.listing + .post-meta > * {
6987 line-height: 1;
6988 display: block;
6990 #content.conversations-user-page h1.listing + .post-meta > * {
6991 line-height: 1.5;
6993 h1.listing + .post-meta .date,
6994 h1.listing + .post-meta .author {
6995 line-height: 1.3;
6997 h1.listing + .post-meta .karma-value,
6998 h1.listing + .post-meta .comment-count,
6999 h1.listing + .post-meta .lw2-link,
7000 h1.listing + .post-meta .read-time {
7001 top: unset;
7002 font-size: 1rem;
7003 box-shadow: none;
7005 h1.listing + .post-meta .karma-value::before,
7006 h1.listing + .post-meta .comment-count::before,
7007 h1.listing + .post-meta .lw2-link::before,
7008 h1.listing + .post-meta .read-time::before {
7009 box-shadow: none;
7011 h1.listing + .post-meta .karma-value,
7012 h1.listing + .post-meta .comment-count,
7013 h1.listing + .post-meta .read-time,
7014 h1.listing + .post-meta .lw2-link {
7015 bottom: 4px;
7018 h1.listing + .post-meta .karma-value {
7019 right: 192px;
7021 h1.listing + .post-meta .karma-value::before {
7022 text-shadow: 0.5px 0.5px 0.5px #575756;
7024 h1.listing + .post-meta .comment-count {
7025 right: 132px;
7027 h1.listing + .post-meta .read-time {
7028 right: 56px;
7030 h1.listing + .post-meta .lw2-link {
7031 opacity: 1;
7032 right: 0;
7034 h1.listing + .post-meta .link-post-domain {
7035 margin: 0;
7036 line-height: 1.3;
7037 overflow: hidden;
7038 text-overflow: ellipsis;
7040 h1.listing + .post-meta .post-section::before {
7041 position: absolute;
7042 left: unset;
7043 right: 0;
7044 bottom: 30px;
7045 top: unset;
7047 h1.listing a {
7048 display: inline;
7050 /*******************************************/
7051 } @media only screen and (max-width: 520px) {
7052 /*******************************************/
7053 h1.listing + .post-meta {
7054 padding: .25em 144px 0 0;
7055 flex-flow: column;
7057 #content.conversations-user-page h1.listing + .post-meta {
7058 flex-flow: row wrap;
7060 h1.listing + .post-meta .date {
7061 margin: 0.375em 0 0.25em 0;
7062 line-height: 1;
7064 #content.user-page h1.listing::after {
7065 height: calc(100% + 2.125em);
7067 #content.user-page h1.link-post-listing::after {
7068 height: calc(100% + 3.125em);
7070 #content.user-page h1.listing + .post-meta {
7071 padding: 0.25em 144px 0.5em 36px;
7073 #content.conversations-user-page h1.listing + .post-meta .date {
7074 margin: 0 0 0 1em;
7077 h1.listing + .post-meta .karma-value {
7078 bottom: 28px;
7079 right: 0;
7081 h1.listing + .post-meta .comment-count {
7082 bottom: 28px;
7083 right: 56px;
7085 h1.listing + .post-meta .read-time {
7086 right: 56px;
7087 bottom: 4px;
7089 h1.listing + .post-meta .lw2-link {
7090 right: 0;
7091 bottom: 4px;
7093 h1.listing + .post-meta .link-post-domain {
7094 max-width: 100%;
7096 h1.listing + .post-meta .post-section::before {
7097 right: 120px;
7100 #content.compact > .comment-thread .comment-item {
7101 max-height: 110px;
7104 .textarea-container:focus-within button:active {
7105 background-color: #2c2c2c;
7107 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7108 background-color: #131313;
7109 border: 1px solid #1f1f1f;
7110 border-radius: 6px;
7112 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7113 border-color: #00a9ed;
7114 box-shadow:
7115 0 0 0 1px #000,
7116 0 0 0 2px #00a9ed;
7117 color: #00a9ed;
7118 font-weight: 600;
7120 #content.conversation-page .textarea-container:focus-within::after {
7121 background-color: #000;
7123 .textarea-container:focus-within .guiedit-buttons-container {
7124 background-color: white;
7125 border-top: 1px solid #1d1f00;
7127 .textarea-container:focus-within button.guiedit {
7128 background-color: #131313;
7129 border: 1px solid #1f1f1f;
7130 border-radius: 6px;
7132 #markdown-hints::after {
7133 color: #9740cb;
7136 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7137 top: 2px;
7139 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7140 top: 1px;
7142 /*******************************************/
7143 } @media only screen and (max-width: 320px) {
7144 /*******************************************/
7145 h1.listing {
7146 font-size: 1.25rem;
7148 #content.user-page h1.listing::after {
7149 height: calc(100% + 2.625em);
7151 #content.user-page h1.link-post-listing::after {
7152 height: calc(100% + 3.75em);