Fixed bug with spoiler blocks
[lw2-viewer.git] / www / style-dark.windows.css
blob8fd25c40434ae8c09e354468ab88e2a9bf0b5105
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 overflow: auto;
42 display: grid;
43 grid-template-columns: repeat(3, 1fr);
44 grid-auto-flow: dense;
47 /*=---------=*/
48 /*= Content =*/
49 /*=---------=*/
51 #content > * {
52 grid-column: 1 / span 3;
55 /*=----------------------=*/
56 /*= Floating UI elements =*/
57 /*=----------------------=*/
59 #ui-elements-container {
60 position: fixed;
61 height: 100vh;
62 top: 0;
63 left: 0;
64 right: 0;
65 margin: auto;
66 z-index: 10000;
67 pointer-events: none;
69 #ui-elements-container > * {
70 pointer-events: auto;
73 /*=----------------=*/
74 /*= Images overlay =*/
75 /*=----------------=*/
76 /* (To exclude images in posts from theme tweaks) */
78 #images-overlay {
79 position: absolute;
80 z-index: 1;
81 left: 0;
82 right: 0;
83 margin: auto;
86 /***********/
87 /* NAV BAR */
88 /***********/
90 .nav-bar {
91 margin: 0 -30px;
93 .nav-bar {
94 display: flex;
95 justify-content: flex-end;
98 /*=---------------=*/
99 /*= Nav bar items =*/
100 /*=---------------=*/
102 .nav-item {
103 flex: 1 1 auto;
105 .nav-item * {
106 text-overflow: ellipsis;
107 white-space: nowrap;
108 overflow: hidden;
110 .nav-inner {
111 padding: 12px 30px;
112 text-align: center;
113 display: block;
114 position: relative;
116 #secondary-bar .nav-inner {
117 padding: 4px 0;
120 /*=------------=*/
121 /*= Bottom bar =*/
122 /*=------------=*/
124 h1.listing ~ #bottom-bar {
125 margin-top: 1.25em;
127 #bottom-bar .nav-item {
128 flex: 1 1 0;
131 /*=-----------------=*/
132 /*= Accesskey hints =*/
133 /*=-----------------=*/
135 .nav-inner::after {
136 content: attr(accesskey);
137 display: none;
140 /*=---------------=*/
141 /*= Pagination UI =*/
142 /*=---------------=*/
144 #bottom-bar .nav-item a::before,
145 #top-nav-bar a::before {
146 font-family: Font Awesome;
147 font-weight: 900;
148 font-size: 0.8em;
149 position: relative;
150 bottom: 1px;
151 margin-right: 0.5em;
153 #bottom-bar #nav-item-first a::before,
154 #top-nav-bar a.nav-item-first::before {
155 content: "\F33e";
157 #bottom-bar #nav-item-top a::before {
158 content: "\F062";
160 #bottom-bar #nav-item-prev a::before,
161 #top-nav-bar a.nav-item-prev::before {
162 content: "\F060";
164 #bottom-bar #nav-item-next a::before,
165 #top-nav-bar a.nav-item-next::before {
166 content: "\F061";
168 #bottom-bar #nav-item-last a::before,
169 #top-nav-bar a.nav-item-last::before {
170 content: "\F340";
172 #bottom-bar #nav-item-next a::before {
173 margin-left: -2em;
174 margin-right: 0;
175 left: 3.8em;
177 #bottom-bar #nav-item-last a::before {
178 margin-left: -1.8em;
179 margin-right: 0;
180 left: 3.4em;
183 /*=-----------------------=*/
184 /*= Decorative bottom bar =*/
185 /*=-----------------------=*/
186 /* (On short pages with no pagination) */
188 #bottom-bar.decorative {
189 position: relative;
191 #bottom-bar.decorative .nav-item {
192 display: none;
195 /*=------------=*/
196 /*= Search tab =*/
197 /*=------------=*/
199 #nav-item-search {
200 flex: 4 1 auto;
202 #nav-item-search form::before {
203 content: "\F002";
204 font-family: Font Awesome;
205 font-weight: 900;
206 display: inline-block;
207 vertical-align: top;
208 height: 23px;
209 width: 23px;
211 #nav-item-search input {
212 height: 23px;
213 width: calc(95% - 80px);
214 padding: 1px 4px;
216 #nav-item-search button {
217 height: 21px;
220 /*=-----------=*/
221 /*= Login tab =*/
222 /*=-----------=*/
224 #nav-item-login {
225 position: relative;
226 padding-right: 0.5em;
229 /*******************/
230 /* INBOX INDICATOR */
231 /*******************/
233 #inbox-indicator {
234 position: absolute;
235 top: 1px;
236 right: 0;
237 height: 100%;
238 visibility: hidden;
240 #inbox-indicator::before {
241 content: "\F0E0";
242 font-family: "Font Awesome";
243 color: #393939;
244 font-size: 1.1875rem;
245 position: absolute;
246 height: 100%;
247 right: 0;
248 top: 0;
249 padding: 0 0.45em;
250 visibility: visible;
251 font-weight: 900;
253 #inbox-indicator.new-messages::before {
254 color: #0090e0;
255 text-shadow:
256 0 0 1px #777,
257 0.5px 0.5px 1px #777;
259 a#inbox-indicator:hover::before {
260 color: #000;
261 text-shadow:
262 0 0 1px #fff,
263 0 0 2px #fff,
264 0 0 4px #fff,
265 0 0 1px #777,
266 0.5px 0.5px 1px #777;
268 a#inbox-indicator.new-messages:hover::before {
269 text-shadow:
270 0 0 1px #0090e0,
271 0 0 2px #0090e0,
272 0 0 4px #0090e0,
273 0 0 1px #777,
274 0.5px 0.5px 1px #777;
277 /****************/
278 /* PAGE TOOLBAR */
279 /****************/
281 #content > .page-toolbar {
282 grid-column: 3;
283 text-align: right;
284 margin-right: -20px;
286 #content.user-page > .page-toolbar {
287 grid-column: 2 / span 2;
289 .page-toolbar {
290 font-size: 0.9em;
291 line-height: 1.8;
294 /*=--------------------------=*/
295 /*= Page toolbar items (all) =*/
296 /*=--------------------------=*/
298 .page-toolbar > * {
299 display: inline-block;
300 margin-left: 1.5em;
302 .page-toolbar .button::before {
303 font-family: "Font Awesome";
304 font-size: 0.9em;
305 padding-right: 0.3em;
308 /*=-------------------------------=*/
309 /*= Page toolbar items (specific) =*/
310 /*=-------------------------------=*/
312 .new-post::before {
313 content: '\F067';
314 font-weight: 900;
316 .new-private-message::before {
317 content: '\F075';
318 font-weight: 400;
320 .logout-button::before {
321 content: '\F2F5';
322 font-weight: 900;
324 .rss::before {
325 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
326 display: inline-block;
327 width: 1em;
328 padding-right: 0.2em;
329 position: relative;
330 top: 1px;
333 /*********************/
334 /* TOP PAGINATION UI */
335 /*********************/
337 #top-nav-bar {
338 grid-column: 2;
339 margin: 0.25em 0 0 0;
340 padding: 0.75em 0 0 0;
341 text-align: center;
342 font-size: 1.25em;
343 display: flex;
344 justify-content: center;
346 #top-nav-bar a {
347 line-height: 1;
349 #top-nav-bar a.disabled {
350 pointer-events: none;
351 visibility: hidden;
353 #top-nav-bar .page-number {
354 position: relative;
355 display: inline-block;
356 width: 1.5em;
358 #top-nav-bar .page-number-label {
359 position: absolute;
360 font-size: 0.5em;
361 text-transform: uppercase;
362 width: 100%;
363 bottom: 90%;
364 left: 0;
366 #top-nav-bar a::before {
367 margin: 0.5em;
368 display: inline-block;
371 /****************/
372 /* SUBLEVEL NAV */
373 /****************/
375 .sublevel-nav {
376 text-align: center;
377 display: flex;
378 justify-content: center;
379 margin: 1em 0 0 0;
381 #content > .sublevel-nav:not(.sort) {
382 grid-row: 5;
383 grid-column: 2;
384 align-self: start;
386 .sublevel-nav .sublevel-item {
387 flex: 0 0 6em;
388 padding: 0.125em 0.5em;
389 font-size: 1.125rem;
391 .sublevel-nav .sublevel-item:disabled,
392 .sublevel-nav span.sublevel-item {
393 cursor: default;
396 /***********************/
397 /* SORT ORDER SELECTOR */
398 /***********************/
400 .sublevel-nav.sort {
401 position: relative;
402 margin-top: 8px;
403 font-size: 0.75em;
405 #content > .sublevel-nav.sort {
406 grid-column: 3;
407 grid-row: 5 / span 2;
408 justify-self: end;
409 align-self: start;
410 flex-flow: column;
412 #content.index-page > .sublevel-nav.sort {
413 grid-column: 1;
414 grid-row: 3 / span 1;
415 justify-self: start;
416 flex-flow: row;
419 .sublevel-nav.sort::before {
420 content: "Sort";
421 font-size: 0.75rem;
422 position: absolute;
423 top: 0;
424 left: 0;
425 width: 100%;
427 .sublevel-nav.sort .sublevel-item {
428 line-height: 1;
429 font-size: 0.875rem;
430 flex-basis: unset;
433 /*******************************/
434 /* COMMENTS SORT MODE SELECTOR */
435 /*******************************/
437 #comments > .sublevel-nav.sort {
438 margin: 1em auto 0 auto;
440 @supports (width: -moz-fit-content) {
441 #comments > .sublevel-nav.sort {
442 width: -moz-fit-content;
445 @supports (width: fit-content) {
446 #comments > .sublevel-nav.sort {
447 width: fit-content;
451 /******************/
452 /* WIDTH SELECTOR */
453 /******************/
455 #width-selector {
456 position: absolute;
457 top: 4px;
458 right: -78px;
460 #width-selector button {
461 width: 22px;
462 height: 22px;
463 padding: 6px;
464 margin: 1px;
465 overflow: hidden;
466 background-repeat: no-repeat;
467 background-size: 100%;
468 background-origin: content-box;
470 #width-selector button,
471 #width-selector button:active,
472 #width-selector button:focus {
473 text-shadow: none;
474 color: transparent;
476 #width-selector button:disabled {
477 cursor: auto;
479 #width-selector button.select-width-normal {
480 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
482 #width-selector button.select-width-wide {
483 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
485 #width-selector button.select-width-fluid {
486 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
489 /*=----------------=*/
490 /*= Hover tooltips =*/
491 /*=----------------=*/
493 #width-selector button::after {
494 content: attr(data-name);
495 position: absolute;
496 display: block;
497 left: 0;
498 width: 100%;
499 text-align: center;
500 top: 56px;
501 visibility: hidden;
503 #width-selector button.selected::after {
504 content: attr(data-name) " (selected)";
506 #width-selector button:hover:not(:active)::after {
507 visibility: visible;
510 head.content-width-normal + body > * {
511 max-width: 900px;
513 head.content-width-wide + body > * {
514 max-width: 1150px;
516 head.content-width-fluid + body > * {
517 max-width: calc(100% - 300px);
520 /******************/
521 /* THEME SELECTOR */
522 /******************/
524 #theme-selector {
525 position: absolute;
526 top: 3px;
527 left: -41px;
528 opacity: 0.4;
529 display: table;
530 max-width: 40px;
532 #theme-selector:hover {
533 opacity: 1.0;
536 /*=----------------------=*/
537 /*= Theme select buttons =*/
538 /*=----------------------=*/
540 .theme-selector button {
541 display: table-cell;
542 width: 26px;
543 height: 26px;
544 padding: 5px;
545 margin: 1px 7px 0 7px;
546 color: transparent;
547 background-size: 16px 16px;
548 background-origin: content-box;
550 .theme-selector button,
551 .theme-selector button:hover,
552 .theme-selector button:active,
553 .theme-selector button:focus {
554 text-shadow: none;
555 color: transparent;
557 .theme-selector button:disabled {
558 cursor: auto;
561 /*=----------------------------=*/
562 /*= Pre-rendered button images =*/
563 /*=----------------------------=*/
564 /* (Each is just a capital letter A through whatever) */
566 .theme-selector button:nth-of-type(1) {
567 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
569 .theme-selector button:nth-of-type(2) {
570 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
572 .theme-selector button:nth-of-type(3) {
573 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=');
575 .theme-selector button:nth-of-type(4) {
576 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
578 .theme-selector button:nth-of-type(5) {
579 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
581 .theme-selector button:nth-of-type(6) {
582 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
584 .theme-selector button:nth-of-type(7) {
585 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
587 .theme-selector button:nth-of-type(8) {
588 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
590 .theme-selector button:nth-of-type(9) {
591 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
594 /*=------------------------------=*/
595 /*= Theme select button tooltips =*/
596 /*=------------------------------=*/
597 /* (with the name & description of the theme that each button selects) */
599 #theme-selector button {
600 position: relative;
601 z-index: 1;
603 #theme-selector button::before {
604 content: attr(data-theme-name);
605 position: absolute;
606 top: 0;
607 right: 100%;
608 padding: 5px 6px 6px 6px;
609 line-height: 1;
610 width: 6em;
611 text-align: right;
612 z-index: 1;
613 visibility: hidden;
615 #theme-selector:hover button::before {
616 visibility: visible;
618 #theme-selector:hover ~ #theme-tweaker-toggle,
619 #theme-selector:active ~ #theme-tweaker-toggle {
620 z-index: -1;
623 /************************/
624 /* THEME TWEAKER TOGGLE */
625 /************************/
627 #theme-tweaker-toggle {
628 position: absolute;
629 top: 7px;
630 left: -75px;
632 #theme-tweaker-toggle button {
633 font-family: Font Awesome;
634 font-weight: 900;
635 font-size: 1.25rem;
636 opacity: 0.4;
637 z-index: 1;
639 #theme-tweaker-toggle button:hover {
640 opacity: 1.0;
643 /*******************/
644 /* QUICKNAV WIDGET */
645 /*******************/
647 #quick-nav-ui {
648 position: absolute;
649 right: -67px;
650 bottom: 20px;
652 #quick-nav-ui a {
653 font-family: 'Font Awesome';
654 font-weight: 900;
655 font-size: 1.5rem;
656 line-height: 1.7;
657 text-align: center;
658 display: block;
659 width: 40px;
660 height: 40px;
661 margin: 10px 0 0 0;
663 #quick-nav-ui a[href='#comments'].no-comments {
664 pointer-events: none;
666 #quick-nav-ui a {
667 visibility: hidden;
669 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
670 visibility: visible;
673 /************************/
674 /* NEW COMMENT QUICKNAV */
675 /************************/
677 #new-comment-nav-ui {
678 position: absolute;
679 right: -112px;
680 bottom: 42px;
682 #new-comment-nav-ui > * {
683 display: block;
684 position: relative;
686 #new-comment-nav-ui.no-comments {
687 display: none;
690 /*=--------------------=*/
691 /*= New comments count =*/
692 /*=--------------------=*/
694 #new-comment-nav-ui .new-comments-count {
695 width: 2em;
696 font-size: 1.25rem;
697 line-height: 1.1;
698 text-align: center;
699 left: 1px;
700 cursor: pointer;
702 #new-comment-nav-ui .new-comments-count::selection {
703 background-color: transparent;
705 #new-comment-nav-ui .new-comments-count::after {
706 content: "NEW";
707 display: block;
708 font-size: 0.625rem;
711 /*=-----------------------------------=*/
712 /*= Next/previous new comment buttons =*/
713 /*=-----------------------------------=*/
715 #new-comment-nav-ui .new-comment-sequential-nav-button {
716 font-size: 1.75rem;
717 font-family: 'Font Awesome';
718 font-weight: 900;
719 width: 1.5em;
720 z-index: 5001;
722 #new-comment-nav-ui .new-comment-previous {
723 top: 8px;
725 #new-comment-nav-ui .new-comment-next {
726 bottom: 6px;
728 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
729 cursor: auto;
730 pointer-events: none;
733 /*******************/
734 /* HNS DATE PICKER */
735 /*******************/
737 #hns-date-picker {
738 position: absolute;
739 bottom: 72px;
740 right: -253px;
741 opacity: 0.6;
743 #hns-date-picker:hover,
744 #hns-date-picker:focus-within {
745 opacity: 1.0;
747 #hns-date-picker.no-comments {
748 display: none;
751 /*=---------------=*/
752 /*= "Since" label =*/
753 /*=---------------=*/
755 #hns-date-picker span {
756 display: block;
757 font-size: 0.75rem;
758 text-transform: uppercase;
761 /*=--------------------=*/
762 /*= "Since" text field =*/
763 /*=--------------------=*/
765 #hns-date-picker input {
766 margin-top: 1px;
767 padding: 1px 3px;
768 width: 140px;
769 text-align: center;
770 box-shadow: 0 0 0 1px transparent;
773 /************************/
774 /* ANTI-KIBITZER TOGGLE */
775 /************************/
777 #anti-kibitzer-toggle {
778 position: absolute;
779 right: -67px;
780 bottom: 225px;
782 #anti-kibitzer-toggle button {
783 display: block;
784 width: 40px;
785 height: 54px;
786 padding: 0;
788 #anti-kibitzer-toggle button::before,
789 #anti-kibitzer-toggle button::after {
790 font-family: Font Awesome;
792 #anti-kibitzer-toggle button::before {
793 content: "\F06E";
794 display: block;
795 font-size: 1.75em;
796 font-weight: 400;
798 #anti-kibitzer-toggle button::after {
799 content: "\F007\2004\F164";
800 font-size: 0.875em;
801 font-weight: 900;
803 #anti-kibitzer-toggle.engaged button::before {
804 content: "\F070";
807 /************************/
808 /* TEXT SIZE ADJUSTMENT */
809 /************************/
811 #text-size-adjustment-ui {
812 position: absolute;
813 top: 30px;
814 right: -78px;
815 opacity: 0.4;
817 #text-size-adjustment-ui:hover {
818 opacity: 1.0;
821 /* This doesn't work in Mozilla browsers, so hide it */
822 @-moz-document url-prefix() {
823 #text-size-adjustment-ui {
824 display: none;
828 /*=---------=*/
829 /*= Buttons =*/
830 /*=---------=*/
832 #text-size-adjustment-ui button {
833 font-weight: 900;
834 font-family: Font Awesome;
835 font-size: 0.75rem;
836 width: 24px;
837 height: 24px;
838 padding: 0;
840 #text-size-adjustment-ui button.default {
841 font-family: inherit;
842 font-size: 1.125rem;
843 position: relative;
844 top: 1px;
846 #text-size-adjustment-ui button:disabled {
847 opacity: 0.5;
849 #text-size-adjustment-ui button:disabled:hover {
850 cursor: default;
853 /*=----------------=*/
854 /*= Hover tooltips =*/
855 /*=----------------=*/
857 #text-size-adjustment-ui::after {
858 content: "Adjust text size";
859 position: absolute;
860 display: block;
861 left: 0;
862 width: 100%;
863 text-align: center;
864 top: 32px;
865 visibility: hidden;
866 font-size: 0.9em;
868 #text-size-adjustment-ui:hover::after {
869 visibility: visible;
872 /*******************************/
873 /* COMMENTS VIEW MODE SELECTOR */
874 /*******************************/
876 #comments-view-mode-selector {
877 position: absolute;
878 bottom: 30px;
879 left: -40px;
880 opacity: 0.6;
882 #comments-view-mode-selector:hover {
883 opacity: 1.0;
886 /*=---------=*/
887 /*= Buttons =*/
888 /*=---------=*/
890 #comments-view-mode-selector a {
891 display: block;
892 font-family: Font Awesome;
893 font-size: 1.25rem;
894 text-align: center;
895 opacity: 0.4;
896 padding: 0.25em;
897 z-index: 1;
899 #comments-view-mode-selector a.threaded {
900 transform: scaleY(-1);
901 font-weight: 900;
903 #comments-view-mode-selector a.chrono {
904 font-weight: normal;
906 #comments-view-mode-selector a.selected,
907 #comments-view-mode-selector a:hover {
908 opacity: 1.0;
909 text-decoration: none;
911 #comments-view-mode-selector a.selected {
912 cursor: default;
915 /************/
916 /* ARCHIVES */
917 /************/
919 .archive-nav {
920 margin: 1.25em 0.5em 0 0.5em;
921 padding: 0.25em;
923 .archive-nav > * {
924 display: flex;
926 .archive-nav *[class^='archive-nav-item'] {
927 line-height: 1;
928 flex: 1 1 5%;
929 text-align: center;
930 padding: 6px 4px 4px 4px;
931 max-width: 8%;
933 @-moz-document url-prefix() {
934 .archive-nav *[class^='archive-nav-item'] {
935 padding: 5px 4px;
938 .archive-nav-days .archive-nav-item-day {
939 font-size: 0.8em;
940 padding: 7px 0 5px 0;
941 max-width: 4%;
943 .archive-nav-days .archive-nav-item-day:first-child {
944 flex-basis: 10%;
947 /************/
948 /* LISTINGS */
949 /************/
951 h1.listing {
952 font-size: 1.875rem;
953 line-height: 1.15;
954 max-height: 1.15em;
955 position: relative;
958 h1.listing a {
959 position: relative;
962 /* Links to link-posts (not the link-post links themselves; that's below) */
963 h1.listing a[href^='http'] + a {
964 margin-left: 0.25em;
966 /* Link-post links */
967 h1.listing a[href^="http"] {
968 font-size: 0.8em;
969 display: inline;
970 vertical-align: top;
971 position: relative;
972 top: 4px;
975 /*=----------------------=*/
976 /*= Listing hover reveal =*/
977 /*=----------------------=*/
978 /* (On desktops, hover over a multi-line listing to reveal all of it) */
980 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
981 h1.listing a {
982 max-width: 100%;
983 display: inline-block;
984 white-space: nowrap;
985 text-overflow: ellipsis;
986 overflow: hidden;
987 border-bottom: 1px solid transparent;
988 -webkit-hyphens: auto;
989 -moz-hyphens: auto;
990 -ms-hyphens: auto;
991 hyphens: auto;
992 z-index: 1;
993 padding: 0 0 1px 1px;
995 h1.listing a[href^='http'] + a {
996 max-width: calc(100% - 33px);
998 h1.listing a:hover,
999 h1.listing a:focus {
1000 text-decoration: dotted underline;
1001 white-space: initial;
1002 overflow: visible;
1003 z-index: 2;
1005 h1.listing:focus-within::before {
1006 content: "\F105";
1007 font-family: Font Awesome;
1008 display: block;
1009 position: absolute;
1010 left: -0.75em;
1013 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1014 mouse movements) */
1016 h1.listing a:not(.edit-post-link):hover::before {
1017 content: "";
1018 position: absolute;
1019 top: -10px;
1020 right: -10px;
1021 bottom: -10px;
1022 left: -10px;
1023 z-index: -1;
1025 h1.listing a[href^="http"]:hover {
1026 text-decoration: none;
1030 /*=-----------------------=*/
1031 /*= In-listing edit links =*/
1032 /*=-----------------------=*/
1034 h1.listing .edit-post-link {
1035 position: absolute;
1036 margin: 0;
1039 /*=---------------------------------=*/
1040 /*= Error messages on listing pages =*/
1041 /*=---------------------------------=*/
1043 .listing-message {
1044 width: 100%;
1045 text-align: center;
1046 padding: 1.25em 0 1.25em 0;
1047 font-size: 1.375em;
1050 /*********************/
1051 /* LISTING POST-META */
1052 /*********************/
1054 h1.listing + .post-meta {
1055 position: relative;
1056 justify-content: flex-start;
1057 margin: 0 20px 0 21px;
1060 h1.listing + .post-meta > * {
1061 margin: 0 1em 0 0;
1064 h1.listing + .post-meta .post-section {
1065 width: 0;
1066 margin: 0;
1067 overflow: hidden;
1069 h1.listing + .post-meta .post-section::before {
1070 position: absolute;
1071 left: -36px;
1074 h1.listing + .post-meta .read-time {
1075 cursor: default;
1078 /**************/
1079 /* USER PAGES */
1080 /**************/
1082 /*=------------=*/
1083 /*= Pagination =*/
1084 /*=------------=*/
1086 #content.user-page > #top-nav-bar {
1087 grid-row: 6;
1090 /*=---------------------=*/
1091 /*= User's display name =*/
1092 /*=---------------------=*/
1094 #content.user-page h1.page-main-heading {
1095 margin: 0.25em 0 0 0;
1096 line-height: 1.1;
1097 grid-row: 4;
1100 /*=--------------------=*/
1101 /*= User's karma total =*/
1102 /*=--------------------=*/
1104 #content.user-page .user-stats {
1105 grid-column: 3;
1106 grid-row: 4;
1107 text-align: right;
1108 align-self: end;
1111 /*=----------------------=*/
1112 /*= Expanded vs. compact =*/
1113 /*=----------------------=*/
1115 #content.user-page #comments-list-mode-selector {
1116 grid-row: 5 / span 2;
1118 #content.user-page #comments-list-mode-selector button {
1119 display: block;
1122 /*=----------------------------------------------------=*/
1123 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1124 /*=----------------------------------------------------=*/
1126 #content.user-page .sublevel-nav {
1127 margin-bottom: 0.5em;
1130 /*=--------------=*/
1131 /*= User's posts =*/
1132 /*=--------------=*/
1134 #content.user-page h1.listing {
1135 margin: 0.5em 0 0 0;
1138 /*****************/
1139 /* CONVERSATIONS */
1140 /*****************/
1142 #content.conversation-page {
1143 overflow: visible;
1146 /*=----------------------=*/
1147 /*= List of participants =*/
1148 /*=----------------------=*/
1150 #content.conversation-page .conversation-participants {
1151 grid-column: 2 / span 2;
1152 grid-row: 3;
1153 text-align: right;
1154 margin: 0.5em 0 0 0;
1157 .conversation-participants ul,
1158 .conversation-participants li {
1159 list-style-type: none;
1160 display: inline-block;
1161 margin: 0;
1162 padding: 0;
1164 .conversation-participants li {
1165 margin-left: 0.375em;
1167 .conversation-participants li:not(:last-of-type)::after {
1168 content: ",";
1171 /*=-------------------------=*/
1172 /*= Posting controls (form) =*/
1173 /*=-------------------------=*/
1175 #content.conversation-page .posting-controls {
1176 padding: 0 0 1em 0;
1178 #content.conversation-page .post-meta-fields {
1179 overflow: auto;
1180 display: flex;
1181 flex-flow: row wrap;
1183 #content.conversation-page textarea {
1184 margin-top: 0.375em;
1186 #conversation-form {
1187 padding: 0 1em 3em 1em;
1189 #conversation-form input[type='text'],
1190 #conversation-form label {
1191 margin: 0.25em 0;
1193 #conversation-form label {
1194 width: 4em;
1195 text-align: right;
1196 padding: 2px 6px;
1197 border: 1px solid transparent;
1199 #conversation-form input[type='text'] {
1200 width: calc(100% - 4em);
1201 padding: 0.25em;
1203 #conversation-form input[type='submit'] {
1204 float: right;
1206 #content.conversation-page #markdown-hints-checkbox ~ label {
1207 white-space: nowrap;
1209 #content.conversation-page .markdown-hints {
1210 top: calc(100% + 2em);
1213 /*=--------------------=*/
1214 /*= Conversation title =*/
1215 /*=--------------------=*/
1217 #content.conversation-page h1.page-main-heading {
1218 text-align: center;
1219 margin: 0.5em 0;
1220 line-height: 1.15;
1223 /*=----------=*/
1224 /*= Messages =*/
1225 /*=----------=*/
1227 #content.conversation-page > ul.comment-thread:last-of-type {
1228 margin-bottom: 2em;
1231 /******************/
1232 /* SEARCH RESULTS */
1233 /******************/
1235 #content.search-results-page h1.listing {
1236 font-size: 1.625em;
1239 /**************/
1240 /* LOGIN PAGE */
1241 /**************/
1243 .login-container {
1244 margin: 2em 0;
1245 padding: 1em;
1246 display: flex;
1247 flex-flow: row wrap;
1250 .login-container form {
1251 flex-basis: 50%;
1252 display: grid;
1253 grid-row-gap: 0.5em;
1254 align-content: start;
1256 .login-container form label {
1257 text-align: right;
1258 padding: 0.25em 0.5em;
1259 white-space: nowrap;
1260 grid-column: 1;
1262 .login-container form input {
1263 grid-column: 2;
1264 padding: 0.25em;
1266 .login-container form input[type='submit'],
1267 .login-container form a {
1268 grid-column: 2;
1269 justify-self: center;
1271 .login-container form input[type='submit'] {
1272 width: 10em;
1273 padding: 0.35em;
1274 line-height: 1;
1275 margin: 0.5em 0 0 0;
1277 .login-container form h1 {
1278 text-align: center;
1279 margin: 0;
1280 grid-column: 2;
1283 /* “Log in” form */
1285 #login-form {
1286 grid-template-columns: 5.5em 1fr;
1287 padding: 0.5em 2em 0.5em 0;
1290 /* “Create account” form */
1292 #signup-form {
1293 font-size: 0.9em;
1294 grid-template-columns: 8.5em 1fr;
1295 padding: 0.5em 1em 1em 1em;
1297 #signup-form h1 {
1298 font-size: 1.7em;
1300 #signup-form input[type='submit'] {
1301 padding: 0.4em 0.5em 0.5em 0.5em;
1304 /* Log in tip */
1306 .login-container .login-tip {
1307 padding: 0.5em 0.5em 0.5em 3em;
1308 margin: 2em 4em 0 4em;
1309 text-indent: -2em;
1310 line-height: 1.4;
1312 .login-container .login-tip span {
1313 font-weight: bold;
1316 /* Message box */
1318 #content.login-page .error-box {
1319 margin: 1.5em 0.875em -1.5em 0.875em;
1321 .error-box, .success-box {
1322 padding: 0.25em;
1323 text-align: center;
1326 /***********************/
1327 /* PASSWORD RESET PAGE */
1328 /***********************/
1330 .reset-password-container {
1331 margin-bottom: 2em;
1333 .reset-password-container input[type='submit'] {
1334 padding: 0.2em 0.5em;
1335 width: unset;
1337 .reset-password-container input {
1338 margin-left: 0.5em;
1339 width: 12em;
1341 .reset-password-container label {
1342 display: inline-block;
1343 width: 9em;
1345 .reset-password-container form > div {
1346 margin: 0.2em;
1348 .reset-password-container .action-container {
1349 padding-left: 11em;
1350 padding-top: 0.2em;
1352 .reset-password-container .error-box {
1353 margin: unset;
1356 /*********************/
1357 /* TABLE OF CONTENTS */
1358 /*********************/
1360 .contents {
1361 float: right;
1362 min-width: 6em;
1363 max-width: 40%;
1364 margin: 1.25em 0 0.75em 1.25em;
1365 padding: 7px 14px 10px 10px;
1366 position: relative;
1367 z-index: 1;
1370 .contents-head {
1371 text-align: center;
1372 margin-bottom: 0.25em;
1375 .post-body .contents ul {
1376 list-style-type: none;
1377 margin: 0 0 0 0.5em;
1378 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1379 padding-left: 1em;
1380 font-size: 0.75em;
1382 .post-body .contents li {
1383 margin: 0.15em 0 0.3em 1em;
1384 text-align: left;
1385 text-indent: -1em;
1386 line-height: 1.2;
1387 position: relative;
1389 .post-body .contents li::before {
1390 position: absolute;
1391 width: 3em;
1392 display: block;
1393 text-align: right;
1394 left: -4.5em;
1396 .contents .toc-item-1 {
1397 counter-increment: toc-item-1;
1398 counter-reset: toc-item-2 toc-item-3;
1400 .contents .toc-item-1::before {
1401 content: counter(toc-item-1);
1403 .contents .toc-item-1 ~ .toc-item-2 {
1404 margin-left: 2.9em;
1405 font-size: 0.95em;
1407 .contents .toc-item-2 {
1408 counter-increment: toc-item-2;
1409 counter-reset: toc-item-3;
1411 .contents .toc-item-1 ~ .toc-item-2::before {
1412 content: counter(toc-item-1) "." counter(toc-item-2);
1414 .contents .toc-item-2::before {
1415 content: counter(toc-item-2);
1417 .contents .toc-item-1 + .toc-item-3 {
1418 counter-increment: toc-item-2 toc-item-3;
1420 .contents .toc-item-2 ~ .toc-item-3,
1421 .contents .toc-item-1 ~ .toc-item-3 {
1422 margin-left: 2.9em;
1423 font-size: 0.95em;
1425 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1426 margin-left: 5.7em;
1427 font-size: 0.9em;
1429 .contents .toc-item-3 {
1430 counter-increment: toc-item-3;
1432 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1433 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1435 .contents .toc-item-1 ~ .toc-item-3::before {
1436 content: counter(toc-item-1) "." counter(toc-item-3);
1438 .contents .toc-item-2 ~ .toc-item-3::before {
1439 content: counter(toc-item-2) "." counter(toc-item-3);
1441 .contents .toc-item-3::before {
1442 content: counter(toc-item-3);
1444 .contents .toc-item-4,
1445 .contents .toc-item-5,
1446 .contents .toc-item-6 {
1447 display: none;
1450 /********************/
1451 /* POSTS & COMMENTS */
1452 /********************/
1454 .post-meta > *,
1455 .comment-meta > * {
1456 display: inline-block;
1457 margin-right: 1em;
1458 font-size: 1.0625em;
1459 white-space: nowrap;
1461 .post-body,
1462 .comment-body {
1463 overflow-wrap: break-word;
1464 text-align: justify;
1466 .post-body p,
1467 .comment-body p {
1468 margin: 1em 0;
1471 /*************/
1472 /* POST-META */
1473 /*************/
1475 .post-meta {
1476 display: flex;
1477 flex-flow: row wrap;
1478 justify-content: center;
1480 .post-meta .lw2-link {
1481 opacity: 0.5;
1482 order: 1;
1484 .post-meta > *,
1485 .post-meta .post-section::before {
1486 margin: 0 0.5em;
1488 .post-meta .post-section {
1489 order: -1;
1490 margin: 0;
1491 visibility: hidden;
1493 .post-meta .post-section::before {
1494 visibility: visible;
1495 font-family: "Font Awesome";
1496 font-weight: 900;
1498 .post-section.frontpage::before {
1499 content: "\F015";
1501 .post-section.featured::before {
1502 content: "\F005";
1504 .post-section.meta::before {
1505 content: "\F077";
1507 .post-section.personal::before {
1508 content: "\F007";
1510 .post-section.draft::before {
1511 content: "\F15B";
1513 .post-section.alignment-forum::before {
1514 content: "AF";
1515 font-family: Concourse;
1518 /*= Karma controls hover tooltips =*/
1520 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1521 .post .karma,
1522 .comment-item .karma {
1523 position: relative;
1525 .post .karma.active-controls::after,
1526 .comment-item .karma.active-controls::after {
1527 content: "Double-click for strong vote";
1528 position: absolute;
1529 pointer-events: none;
1530 display: block;
1531 left: 6px;
1532 max-width: calc(100% - 12px);
1533 line-height: 1.15;
1534 white-space: normal;
1535 text-align: center;
1536 font-size: 0.875rem;
1537 opacity: 0;
1538 transition: opacity 0.2s ease;
1540 .post .karma.active-controls:hover::after,
1541 .comment-item .karma.active-controls:hover::after {
1542 opacity: 1.0;
1545 .post .karma .karma-value::after,
1546 .comment-item .karma .karma-value::after {
1547 content: attr(title);
1548 position: absolute;
1549 pointer-events: none;
1550 display: block;
1551 left: 50%;
1552 transform: translateX(-50%);
1553 white-space: nowrap;
1554 text-align: center;
1555 font-size: 0.875rem;
1556 color: #393939;
1557 opacity: 0;
1558 transition: opacity 0.2s ease;
1560 .post .karma .karma-value:hover::after,
1561 .comment-item .karma .karma-value:hover::after {
1562 opacity: 1.0;
1564 .comment-item .karma .karma-value:hover::after {
1565 z-index: 5001;
1569 /*********/
1570 /* POSTS */
1571 /*********/
1573 .post {
1574 max-width: 100%;
1577 .post-body {
1578 min-height: 8em;
1579 padding: 0 30px;
1580 line-height: 1.5;
1581 font-size: 1.3rem;
1582 overflow: auto;
1583 margin: 0.5em 0 0 0;
1585 .post > h1:first-child {
1586 margin: 1.1em 0 0.35em 0;
1587 padding: 0 30px;
1588 text-align: center;
1589 font-size: 2.5em;
1590 line-height: 1;
1592 .post .post-meta {
1593 text-align: center;
1594 position: relative;
1595 z-index: 2;
1597 .post .top-post-meta:last-child {
1598 margin-bottom: 40px;
1600 .post .bottom-post-meta {
1601 margin: 0;
1602 padding: 20px 0 22px 0;
1605 /**************/
1606 /* LINK POSTS */
1607 /**************/
1609 .post.link-post > .post-body > p:first-child {
1610 text-align: center;
1611 font-size: 1.125em;
1612 margin: 0.5em 0 0 0;
1614 .post.link-post > .post-body > p:only-child {
1615 font-size: 1.5em;
1616 margin: 1em 0;
1618 .post.link-post a.link-post-link::before {
1619 content: "\F0C1";
1620 font-family: Font Awesome;
1621 font-weight: 900;
1622 font-size: 0.75em;
1623 position: relative;
1624 top: -2px;
1625 margin-right: 0.25em;
1628 /************/
1629 /* COMMENTS */
1630 /************/
1632 #comments {
1633 max-width: 100%;
1634 padding: 0 0 1px 0;
1636 ul.comment-thread {
1637 list-style-type: none;
1638 padding: 0;
1639 max-width: 100%;
1641 #comments .comment-thread > li {
1642 position: relative;
1644 #content > #top-nav-bar + .comment-thread .comment-item {
1645 margin-top: 0;
1648 .comment-item {
1649 margin: 2em 0 0 0;
1651 .comment-item .comment-item {
1652 margin: 1em 8px 8px 16px;
1654 .comment-item .comment-item + .comment-item {
1655 margin: 2em 8px 8px 16px;
1658 .comment-body {
1659 line-height: 1.45;
1660 font-size: 1.2rem;
1661 padding: 10px;
1663 .comment-body ul {
1664 list-style-type: circle;
1666 .comment-body > *:first-child {
1667 margin-top: 0;
1669 .comment-body > *:last-child {
1670 margin-bottom: 0;
1673 #comments:empty::before,
1674 #comments > .comment-controls:last-child::after {
1675 content: "No comments.";
1676 display: block;
1677 width: 100%;
1678 text-align: center;
1679 padding: 0.75em 0 0.9em 0;
1680 font-size: 1.375em;
1683 /**********************************/
1684 /* DEEP COMMENT THREAD COLLAPSING */
1685 /**********************************/
1687 .comment-item input[id^="expand"] {
1688 display: none;
1690 .comment-item input[id^="expand"] + label {
1691 display: block;
1692 visibility: hidden;
1693 position: relative;
1694 margin: 8px 9px;
1696 .comment-item input[id^="expand"] + label::after {
1697 content: "(Expand " attr(data-child-count) " below)";
1698 visibility: visible;
1699 position: absolute;
1700 left: 0;
1701 white-space: nowrap;
1702 cursor: pointer;
1704 .comment-item input[id^="expand"]:checked + label::after {
1705 content: "(Collapse " attr(data-child-count) " below)";
1707 .comment-item input[id^="expand"] ~ .comment-thread {
1708 max-height: 34px;
1709 overflow: hidden;
1711 .comment-item input[id^="expand"] ~ .comment-thread > li:first-child {
1712 margin-top: 0;
1714 .comment-item input[id^="expand"]:checked ~ .comment-thread {
1715 max-height: 1000000px;
1718 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
1719 margin: 0;
1721 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
1722 display: none;
1725 /****************/
1726 /* COMMENT-META */
1727 /****************/
1729 .comment-meta {
1730 padding: 2px 24px 2px 10px;
1731 margin: 0 -1px;
1732 border: none;
1733 display: flex;
1734 flex-flow: row wrap;
1735 align-items: baseline;
1737 .user-page .comment-meta,
1738 .conversation-page .comment-meta {
1739 padding-right: 10px;
1741 .comment-meta .comment-post-title {
1742 flex-basis: 100%;
1743 overflow: hidden;
1744 text-overflow: ellipsis;
1745 line-height: 1.3;
1747 .conversation-page .comment-meta .comment-post-title {
1748 margin: 0;
1749 flex-basis: unset;
1750 flex: 1 0 auto;
1751 text-align: right;
1752 display: none; /* Not sure if we need to display this... */
1754 .comment-item .author:not(.redacted).original-poster::after {
1755 content: "\2004(OP)";
1756 font-size: 0.75em;
1759 /*****************************/
1760 /* COMMENT THREAD NAVIGATION */
1761 /*****************************/
1763 a.comment-parent-link:not(.inline-author),
1764 a.comment-parent-link.inline-author::before {
1765 opacity: 0.5;
1767 a.comment-parent-link:hover {
1768 opacity: 1.0;
1770 a.comment-parent-link::before {
1771 content: "\F062";
1772 font-family: "Font Awesome";
1773 font-weight: 900;
1774 font-size: 0.75rem;
1775 line-height: 1;
1776 position: absolute;
1777 z-index: 1;
1778 display: block;
1779 padding: 3px 3px 0 3px;
1780 width: 16px;
1781 height: calc(100% + 2px);
1782 top: -1px;
1783 left: -17px;
1785 a.comment-parent-link::after {
1786 content: "";
1787 position: absolute;
1788 z-index: 0;
1789 display: block;
1790 width: calc(100% + 26px);
1791 height: calc(100% + 38px);
1792 top: -29px;
1793 left: -17px;
1794 pointer-events: none;
1795 overflow: hidden;
1796 visibility: hidden;
1798 a.comment-parent-link:hover::after {
1799 visibility: visible;
1802 .comment-child-links {
1803 flex-basis: 100%;
1805 .comment-child-link {
1806 margin: 0 0.25em;
1807 display: inline-block;
1809 .comment-child-link::before {
1810 content: ">";
1811 display: inline-block;
1812 margin: 0 2px 0 0;
1815 .comment-popup {
1816 position: fixed;
1817 top: 10%;
1818 right: 10%;
1819 max-width: 700px;
1820 z-index: 10001;
1821 font-size: 1rem;
1822 white-space: unset;
1823 pointer-events: none;
1825 .comment-popup .comment-parent-link {
1826 display: none;
1828 .comment-popup .comment-body {
1829 font-size: 1.0625rem;
1832 /**********************/
1833 /* COMMENT PERMALINKS */
1834 /**********************/
1835 /********************/
1836 /* COMMENT LW LINKS */
1837 /********************/
1839 .comment-meta .permalink::before,
1840 .comment-meta .lw2-link::before,
1841 .individual-thread-page a.comment-parent-link:empty::before {
1842 content: "";
1843 display: inline-block;
1844 width: 1rem;
1845 height: 1rem;
1846 border-radius: 3px;
1847 box-shadow:
1848 0 0 0 1px #000,
1849 0 0 0 2px #0cc800,
1850 0 0 0 3px transparent;
1851 padding: 0 0 0 2px;
1852 background-size: 100%;
1853 position: relative;
1854 top: 2px;
1855 opacity: 0.5;
1857 .comment-meta .permalink::before {
1858 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');
1860 .comment-meta .lw2-link::before {
1861 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==');
1863 .individual-thread-page a.comment-parent-link:empty::before {
1864 left: unset;
1865 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==');
1867 .comment-meta .permalink:hover::before {
1868 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');
1870 .comment-meta .lw2-link:hover::before {
1871 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==');
1873 .individual-thread-page a.comment-parent-link:empty:hover::before {
1874 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=');
1876 .comment-meta .permalink:hover::before,
1877 .comment-meta .lw2-link:hover::before,
1878 .individual-thread-page a.comment-parent-link:empty:hover::before {
1879 box-shadow:
1880 0 0 0 2px #0cc800,
1881 0 0 0 3px transparent;
1882 opacity: 1.0;
1883 filter: unset;
1885 .comment-meta .permalink:active::before,
1886 .comment-meta .lw2-link:active::before,
1887 .individual-thread-page a.comment-parent-link:empty:active::before {
1888 transform: scale(0.9);
1891 .comment-meta .permalink,
1892 .comment-meta .lw2-link,
1893 .individual-thread-page .comment-parent-link:empty {
1894 position: relative;
1895 opacity: 1.0;
1897 .comment-meta .permalink::after,
1898 .comment-meta .lw2-link::after,
1899 .individual-thread-page .comment-parent-link:empty::after {
1900 content: "";
1901 width: 30px;
1902 height: 30px;
1903 display: block;
1904 position: absolute;
1905 top: -2px;
1906 left: -7px;
1907 box-shadow: none;
1908 pointer-events: auto;
1909 visibility: visible;
1912 /*************************/
1913 /* COMMENTS COMPACT VIEW */
1914 /*************************/
1916 #comments-list-mode-selector,
1917 #content.index-page #comments-list-mode-selector,
1918 #content.user-page #comments-list-mode-selector {
1919 padding-top: 6px;
1920 grid-column: 1;
1921 position: unset;
1922 z-index: 1;
1923 justify-self: start;
1924 align-self: start;
1926 #comments-list-mode-selector button {
1927 color: transparent;
1928 width: 32px;
1929 height: 32px;
1930 padding: 6px;
1931 margin: 1px;
1932 overflow: hidden;
1933 background-repeat: no-repeat;
1934 background-size: 100%;
1935 background-origin: content-box;
1937 #comments-list-mode-selector button:disabled {
1938 cursor: auto;
1940 #comments-list-mode-selector button.expanded {
1941 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
1943 #comments-list-mode-selector button.compact {
1944 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
1946 @media only screen and (max-resolution: 1dppx) {
1947 #comments-list-mode-selector button.expanded {
1948 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
1950 #comments-list-mode-selector button.compact {
1951 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
1955 #content > ul.comment-thread > li.comment-item,
1956 #content.compact > ul.comment-thread > li.comment-item {
1957 margin: 0;
1960 #content > .comment-thread {
1961 margin: 1em 0;
1963 #content.compact > .comment-thread {
1964 font-size: 0.9375rem;
1965 margin: 0.5em 0;
1967 #content.compact > .comment-thread:hover {
1968 z-index: 1;
1970 #content.compact > .comment-thread .comment-body {
1971 font-size: 1.0625rem;
1973 #content.compact > .comment-thread .comment-item {
1974 max-height: 61px;
1975 margin-top: 1em;
1976 overflow: hidden;
1977 position: relative;
1978 pointer-events: none;
1980 #content.compact > .comment-thread .comment-item::after {
1981 content: "…";
1982 position: absolute;
1983 right: 0;
1984 bottom: 0;
1985 font-size: 2rem;
1986 line-height: 1;
1987 padding: 0 16px 10px 64px;
1988 pointer-events: auto;
1990 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1991 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
1992 #content.compact > .comment-thread .comment-item.expanded {
1993 overflow: visible;
1994 pointer-events: auto;
1995 z-index: 10;
1998 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
1999 #content.compact > .comment-thread.expanded .comment-item {
2000 overflow: visible;
2001 pointer-events: auto;
2002 z-index: 10;
2005 #content.compact > .comment-thread .comment-item .comment-meta {
2006 white-space: nowrap;
2007 overflow: hidden;
2008 text-overflow: ellipsis;
2009 padding: 2px 10px;
2011 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2012 white-space: unset;
2014 #content.compact > .comment-thread .comment-item .comment-meta a {
2015 pointer-events: auto;
2017 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2018 display: inline;
2020 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2021 margin-left: 0.75em;
2023 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2024 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2025 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2026 max-height: unset;
2028 #content.compact > .comment-thread .comment-item:hover .comment,
2029 #content.compact > .comment-thread .comment-item.expanded .comment {
2030 position: relative;
2031 z-index: 1;
2032 margin-bottom: 2em;
2033 bottom: 0;
2035 #content.compact > .comment-thread .comment-item:hover .comment::before,
2036 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2037 content: "";
2038 position: absolute;
2039 display: block;
2040 width: calc(100% + 20px);
2041 height: calc(100% + 20px);
2042 z-index: -1;
2043 top: -10px;
2044 left: -10px;
2046 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2047 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2048 margin: 0;
2051 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2052 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2053 max-height: unset;
2055 #content.compact > .comment-thread.expanded .comment-item .comment {
2056 position: relative;
2057 z-index: 1;
2058 margin-bottom: 2em;
2059 bottom: 0;
2061 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2062 content: "";
2063 position: absolute;
2064 display: block;
2065 width: calc(100% + 14px);
2066 height: calc(100% + 20px);
2067 z-index: -1;
2068 top: -10px;
2069 left: -10px;
2071 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2072 margin: 0;
2074 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2075 content: "";
2076 display: block;
2077 position: fixed;
2078 top: 0;
2079 left: 0;
2080 width: 100%;
2081 height: 100%;
2082 z-index: -2;
2083 background-color: rgba(255, 255, 255, 0.5);
2087 /*****************************/
2088 /* HIGHLIGHTING NEW COMMENTS */
2089 /*****************************/
2091 .new-comment::before {
2092 content: "";
2093 position: absolute;
2094 width: 100%;
2095 height: 100%;
2096 z-index: 5000;
2097 pointer-events: none;
2100 /***********************************/
2101 /* COMMENT THREAD MINIMIZE BUTTONS */
2102 /***********************************/
2104 .comment-minimize-button {
2105 font-family: Font Awesome;
2106 font-weight: 900;
2107 font-size: 1.25rem;
2108 line-height: 1;
2109 position: absolute;
2110 right: 1px;
2111 top: 1px;
2112 width: 18px;
2113 margin: 0;
2114 cursor: pointer;
2116 .comment-minimize-button:active {
2117 transform: scale(0.9);
2119 .comment-minimize-button::after {
2120 content: attr(data-child-count);
2121 font-weight: normal;
2122 font-size: 0.8125rem;
2123 position: absolute;
2124 left: 0;
2125 width: 100%;
2126 text-align: center;
2127 top: 21px;
2129 #content.individual-thread-page .comment-minimize-button {
2130 display: none;
2133 /***********************************/
2134 /* INDIVIDUAL COMMENT THREAD PAGES */
2135 /***********************************/
2137 .individual-thread-page > h1 {
2138 line-height: 1;
2139 margin: 0.75em 0 3px 0;
2141 .individual-thread-page #comments {
2142 border: none;
2145 /****************/
2146 /* VOTE BUTTONS */
2147 /****************/
2149 .vote {
2150 margin: 0;
2152 .vote {
2153 font-family: Font Awesome;
2154 font-weight: 900;
2155 border: none;
2157 .karma.waiting {
2158 opacity: 0.5;
2160 .karma.waiting button {
2161 pointer-events: none;
2164 /* Replicated karma controls at bottom of comments. */
2165 .comment-controls .karma {
2166 float: left;
2167 margin-left: -14px;
2168 font-size: 0.9375em;
2171 /*****************************/
2172 /* COMMENTING AND POSTING UI */
2173 /*****************************/
2175 .comment-controls {
2176 text-align: right;
2177 margin: 0 8px 8px 16px;
2178 position: relative;
2179 z-index: 9999;
2181 .comment-thread .comment-controls + .comment-thread > li:first-child {
2182 margin-top: 8px;
2184 #comments > .comment-controls {
2185 margin: 8px 0 0 0;
2187 #comments > .comment-controls:last-child {
2188 margin: 8px 0 16px 0;
2191 .posting-controls input[type='submit'] {
2192 margin: 6px;
2193 padding: 4px 10px;
2194 font-size: 1.125rem;
2197 .comment-controls .cancel-comment-button {
2198 position: absolute;
2199 right: 0;
2200 margin: 0;
2201 height: 27px;
2202 font-size: inherit;
2203 padding: 4px 8px 2px 4px;
2204 z-index: 1;
2206 .comment-controls .cancel-comment-button::before {
2207 font-family: Font Awesome;
2208 margin-right: 3px;
2209 content: '\F00D';
2210 font-weight: 900;
2211 font-size: 0.9em;
2212 opacity: 0.7;
2215 .comment + .comment-controls .action-button {
2216 font-weight: normal;
2217 font-size: 1.0625em;
2218 padding: 1px 6px;
2220 .comment-controls .action-button::before {
2221 font-family: Font Awesome;
2222 margin-right: 3px;
2224 .new-comment-button {
2225 font-size: 1.5rem;
2226 margin: 0 0.25em;
2228 .comment-controls .reply-button::before {
2229 content: '\F3E5';
2230 font-weight: 900;
2231 font-size: 0.9em;
2232 opacity: 0.6;
2235 .post-controls {
2236 text-align: right;
2237 margin: 0.75em 0 0 0;
2238 grid-row: 3;
2239 align-self: start;
2240 justify-self: end;
2242 .post {
2243 grid-row: 3;
2245 .edit-post-link {
2246 display: inline-block;
2247 margin-bottom: 0.25em;
2248 font-size: 1.125rem;
2250 .edit-post-link::before {
2251 margin-right: 0.3em;
2253 .comment-controls .edit-button::before,
2254 .edit-post-link::before {
2255 content: '\F303';
2256 font-family: "Font Awesome";
2257 font-weight: 900;
2258 font-size: 0.75em;
2259 position: relative;
2260 top: -1px;
2263 .comment-controls form {
2264 position: relative;
2266 .textarea-container {
2267 position: relative;
2269 .posting-controls textarea {
2270 display: block;
2271 width: 100%;
2272 height: 15em;
2273 min-height: 15em;
2274 max-height: calc(100vh - 6em);
2275 margin: 2px 0 0 0;
2276 padding: 4px 5px;
2277 font-size: 1.2rem;
2278 border-style: solid;
2279 border-width: 29px 1px 1px 1px;
2280 resize: none;
2283 /* GUIEdit buttons */
2285 .guiedit-buttons-container {
2286 position: absolute;
2287 left: 1px;
2288 top: 1px;
2289 width: calc(100% - 2px);
2290 height: 28px;
2291 text-align: left;
2292 padding: 1px 4px 0 4px;
2293 overflow: hidden;
2295 .comment-thread-page .guiedit-buttons-container {
2296 padding-right: 60px;
2298 .guiedit-buttons-container button {
2299 height: 26px;
2300 padding: 0 7px;
2301 font-weight: 900;
2302 font-size: 0.875rem;
2303 line-height: 1;
2304 position: static;
2306 .guiedit-buttons-container button:active {
2307 transform: none;
2309 .guiedit-buttons-container button:active div {
2310 transform: scale(0.9);
2312 .guiedit-buttons-container button sup {
2313 font-weight: bold;
2315 .guiedit::after {
2316 content: attr(data-tooltip);
2317 position: absolute;
2318 font-weight: normal;
2319 font-size: 1rem;
2320 top: 2px;
2321 left: 464px;
2322 height: 25px;
2323 padding: 4px 0;
2324 white-space: nowrap;
2325 visibility: hidden;
2327 .guiedit:hover::after {
2328 visibility: visible;
2331 /* Markdown hints */
2333 .posting-controls .markdown-reference-link {
2334 float: left;
2335 padding: 1px 0 0 6px;
2337 .posting-controls .markdown-reference-link a {
2338 padding-right: 1.5em;
2339 margin-right: 0.15em;
2340 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');
2341 background-size: 1.25em;
2342 background-repeat: no-repeat;
2343 background-position: right center;
2346 #markdown-hints-checkbox + label {
2347 float: left;
2348 margin: 0 0 0 1em;
2349 line-height: 1.3;
2350 cursor: pointer;
2352 #edit-post-form #markdown-hints-checkbox + label {
2353 padding: 2px 0 0 14px;
2355 #markdown-hints-checkbox {
2356 visibility: hidden;
2357 float: left;
2359 #markdown-hints-checkbox + label::after {
2360 content: "(Show Markdown help)";
2362 #markdown-hints-checkbox:checked + label::after {
2363 content: "(Hide Markdown help)";
2365 #markdown-hints-checkbox + label::before {
2366 content: '\F059';
2367 font-family: Font Awesome;
2368 font-weight: 900;
2369 margin-right: 3px;
2371 #markdown-hints-checkbox:checked + label::before {
2372 font-weight: normal;
2374 .markdown-hints {
2375 margin: 4px 0 0 4px;
2376 padding: 4px 8px;
2377 position: absolute;
2378 text-align: left;
2379 top: calc(100% - 1em);
2380 z-index: 1;
2381 display: none;
2383 #markdown-hints-checkbox:checked ~ .markdown-hints {
2384 display: table;
2386 .markdown-hints-row {
2387 display: table-row;
2389 .markdown-hints .markdown-hints-row span,
2390 .markdown-hints .markdown-hints-row code {
2391 float: none;
2392 display: table-cell;
2393 border: none;
2394 background-color: inherit;
2395 padding: 0 12px 0 0;
2398 /******************/
2399 /* EDIT POST FORM */
2400 /******************/
2402 #edit-post-form {
2403 padding: 1em 1em 4em 1em;
2405 #edit-post-form .post-meta-fields {
2406 display: grid;
2407 grid-template-columns: 5em auto auto auto 1fr auto;
2408 margin-bottom: 0.625em;
2411 #edit-post-form label[for='title'],
2412 #edit-post-form label[for='url'],
2413 #edit-post-form label[for='section'] {
2414 grid-column: 1;
2416 #edit-post-form input[type='text'] {
2417 padding: 0.25em;
2418 grid-column: 2 / span 4;
2419 margin-bottom: 0.5em;
2422 #edit-post-form .link-post-checkbox,
2423 #edit-post-form .link-post-checkbox + label {
2424 grid-row: 1;
2425 grid-column: 6;
2428 #edit-post-form .link-post-checkbox {
2429 height: 0;
2430 opacity: 0;
2431 pointer-events: none;
2433 #edit-post-form .link-post-checkbox + label {
2434 white-space: nowrap;
2435 position: relative;
2436 cursor: pointer;
2437 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
2439 #edit-post-form .link-post-checkbox + label::before {
2440 content: "";
2441 font-family: Font Awesome;
2442 font-size: 1.375rem;
2443 line-height: 0.7;
2444 text-indent: 1px;
2445 font-weight: 900;
2446 position: absolute;
2447 width: 20px;
2448 height: 20px;
2449 left: 5px;
2451 #edit-post-form label[for='url'],
2452 #edit-post-form input[name='url'] {
2453 display: none;
2455 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2456 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2457 display: initial;
2459 #edit-post-form label {
2460 line-height: normal;
2461 border: 1px solid transparent;
2462 text-align: right;
2463 padding: 0.25em 0.5em;
2464 white-space: nowrap;
2466 #edit-post-form input[type='radio'] {
2467 width: 0;
2468 margin: 0;
2469 opacity: 0;
2470 pointer-events: none;
2472 #edit-post-form input[type='radio'] + label {
2473 padding: 4px 12px;
2474 text-align: center;
2475 border-style: solid;
2476 border-width: 1px 1px 1px 0;
2477 cursor: pointer;
2479 #edit-post-form input[type='radio']:checked + label {
2480 cursor: default;
2483 #edit-post-form label[for='section'] {
2484 grid-row: 3;
2486 #edit-post-form input[type='radio'] + label {
2487 grid-row: 3;
2489 @supports (width: -moz-fit-content) {
2490 #edit-post-form input[type='radio'] + label {
2491 width: -moz-fit-content;
2494 @supports (width: fit-content) {
2495 #edit-post-form input[type='radio'] + label {
2496 width: fit-content;
2500 #edit-post-form textarea {
2501 min-height: 24em;
2504 #edit-post-form input[type='submit'] {
2505 padding: 6px 12px;
2506 float: right;
2508 #edit-post-form .markdown-hints {
2509 top: calc(100% + 2em);
2512 #content.edit-post-page {
2513 overflow: visible;
2515 #edit-post-form button.guiedit div {
2516 overflow: visible;
2518 .guiedit-mobile-auxiliary-button {
2519 display: none;
2522 /***********/
2523 /* BUTTONS */
2524 /***********/
2526 button,
2527 input[type='submit'] {
2528 font-family: inherit;
2529 font-size: inherit;
2530 background-color: inherit;
2531 cursor: pointer;
2532 border: none;
2533 border-radius: 0;
2536 /************/
2537 /* HEADINGS */
2538 /************/
2540 .post-body h1,
2541 .post-body h2,
2542 .post-body h3,
2543 .post-body h4,
2544 .post-body h5,
2545 .post-body h6,
2546 .comment-body h1,
2547 .comment-body h2,
2548 .comment-body h3,
2549 .comment-body h4,
2550 .comment-body h5,
2551 .comment-body h6 {
2552 line-height: 1.1;
2553 margin: 1em 0 0.75em 0;
2554 text-align: left;
2557 .post-body h5,
2558 .post-body h6,
2559 .comment-body h5,
2560 .comment-body h6 {
2561 font-size: 1em;
2563 .post-body h4,
2564 .comment-body h4 {
2565 font-size: 1.2em;
2567 .post-body h3,
2568 .comment-body h3 {
2569 font-size: 1.4em;
2571 .post-body h2,
2572 .comment-body h2 {
2573 font-size: 1.75em;
2575 .post-body h1,
2576 .comment-body h1 {
2577 font-size: 2.1em;
2580 /**********/
2581 /* QUOTES */
2582 /**********/
2584 blockquote,
2585 .post-body .comment-box .comment-body {
2586 font-size: 0.9em;
2587 margin: 1em 0;
2588 padding-left: 0.5em;
2589 margin-left: 1px;
2590 padding-bottom: 3px;
2592 blockquote *:first-child {
2593 margin-top: 0;
2595 blockquote *:last-child {
2596 margin-bottom: 0;
2598 blockquote blockquote {
2599 font-size: 0.95em;
2602 /* Pseudo-blockquotes that LW sometimes uses for some reason */
2604 .post-body .comment-box .user-name {
2605 font-style: italic;
2607 .post-body .comment-box .user-name::after {
2608 content: ":";
2610 .post-body .comment-box {
2611 zoom: 1.25;
2614 /**********/
2615 /* IMAGES */
2616 /**********/
2618 #content img {
2619 max-width: 100%;
2622 img.inline-latex {
2623 position: relative;
2624 top: 2.5px;
2625 margin: 0 2px;
2628 #content figure {
2629 text-align: center;
2630 margin: 1.5em auto;
2633 p.imgonly,
2634 div.imgonly {
2635 text-align: center;
2638 /**********/
2639 /* TABLES */
2640 /**********/
2642 .post-body table,
2643 .comment-body table {
2644 border-collapse: collapse;
2645 font-family: Inconsolata, Menlo, monospace;
2646 font-size: 0.875em;
2648 .post-body table th,
2649 .post-body table td,
2650 .comment-body table th,
2651 .comment-body table td {
2652 text-align: left;
2653 padding: 4px 6px;
2654 line-height: 1.3;
2656 .post-body table td:nth-of-type(n+2),
2657 .comment-body table td:nth-of-type(n+2) {
2658 text-align: right;
2660 .post-body table caption,
2661 .comment-body table caption {
2662 margin: 0 0 0.25em 0;
2663 font-weight: bold;
2664 font-size: 1.125em;
2667 /********/
2668 /* MISC */
2669 /********/
2671 /*= Superscripts & subscripts =*/
2673 /* Make sure superscripts and subscripts do not affect line spacing. */
2674 sup, sub {
2675 vertical-align: baseline;
2676 position: relative;
2677 top: -0.5em;
2678 left: 0.05em;
2679 font-size: 0.8em;
2681 sub {
2682 top: 0.3em;
2685 /*= Code blocks & other "unstyled" text. =*/
2687 pre,
2688 code {
2689 font-family: Inconsolata, Menlo, monospace;
2691 pre {
2692 white-space: pre-wrap;
2694 code {
2695 font-size: 0.95em;
2696 display: inline-block;
2697 padding: 0 4px 1px 5px;
2699 pre > code {
2700 display: block;
2701 border-radius: 0;
2702 padding: 3px 4px 5px 8px;
2705 /*= Fractions =*/
2707 .frac::after {
2708 content: "\200B";
2711 /*= Removing browser default styling of various elements =*/
2713 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
2714 :focus {
2715 outline: none;
2718 /* Remove "embossed" appearance of horizontal rules. */
2719 hr {
2720 border: none;
2723 input,
2724 button,
2725 textarea {
2726 -webkit-appearance: none;
2727 -moz-appearance: none;
2728 appearance: none;
2731 input {
2732 font-family: inherit;
2733 font-size: inherit;
2734 font-weight: inherit;
2737 /*************/
2738 /* FOOTNOTES */
2739 /*************/
2741 ol {
2742 counter-reset: ordered-list;
2744 .footnote-definition {
2745 font-size: 0.9em;
2746 list-style-type: none;
2747 counter-increment: ordered-list;
2748 position: relative;
2750 .footnote-definition p {
2751 font-size: inherit !important;
2753 .footnote-definition::before {
2754 content: counter(ordered-list) ".";
2755 position: absolute;
2756 left: -2.5em;
2757 font-weight: bold;
2758 text-align: right;
2759 width: 2em;
2762 /*********/
2763 /* LISTS */
2764 /*********/
2766 li {
2767 margin-bottom: 0.5em;
2770 .post-body ol p,
2771 .post-body ul p,
2772 .comment-body ol p,
2773 .comment-body ul p {
2774 margin: 0.5em 0;
2777 .post-body ol {
2778 list-style: none;
2779 padding: 0;
2780 counter-reset: ol;
2782 .post-body ol > li {
2783 position: relative;
2784 counter-increment: ol;
2785 padding: 0 0 0 2.5em;
2786 margin: 0.25em 0 0 0;
2788 .post-body ol > li::before {
2789 content: counter(ol) ".";
2790 position: absolute;
2791 width: 2em;
2792 text-align: right;
2793 left: 0;
2795 .post-body ul {
2796 list-style: none;
2797 padding: 0;
2799 .post-body ul:not(.contents-list) li {
2800 position: relative;
2801 padding: 0 0 0 2.5em;
2802 margin: 0.25em 0 0 0;
2804 .post-body ul:not(.contents-list) li::before {
2805 content: "•";
2806 position: absolute;
2807 width: 2em;
2808 text-align: right;
2809 left: 0;
2811 .post-body li > ul:first-child > li {
2812 padding-left: 0;
2814 .post-body li > ul:first-child > li::before {
2815 content: none;
2818 /**************/
2819 /* ABOUT PAGE */
2820 /**************/
2822 #content.about-page .contents {
2823 margin-top: 0.25em;
2825 #content.about-page .accesskey-table {
2826 border-collapse: collapse;
2827 margin: auto;
2829 #content.about-page .accesskey-table th,
2830 #content.about-page .accesskey-table td {
2831 padding: 2px 6px;
2833 #content.about-page .accesskey-table td:first-child {
2834 padding-right: 1.5em;
2836 #content.about-page .accesskey-table td:last-child {
2837 text-align: center;
2838 font-family: Inconsolata, Menlo, monospace;
2840 #content.about-page h3:nth-of-type(n+2) {
2841 clear: both;
2844 /******************/
2845 /* IMAGES OVERLAY */
2846 /******************/
2848 #images-overlay + #content .post-body img {
2849 visibility: hidden;
2852 #images-overlay div {
2853 position: absolute;
2855 #images-overlay div::after {
2856 content: "Click to enlarge";
2857 display: block;
2858 position: absolute;
2859 margin: auto;
2860 left: 0;
2861 right: 0;
2862 bottom: 10px;
2863 padding: 6px 10px;
2864 font-size: 1.25rem;
2865 background-color: rgba(255, 255, 255, 0.6);
2866 color: #000;
2867 border-radius: 5px;
2868 opacity: 0.0;
2869 transition: opacity 0.15s ease;
2870 pointer-events: none;
2872 @supports (width: -moz-fit-content) {
2873 #images-overlay div::after {
2874 width: -moz-fit-content;
2877 @supports (width: fit-content) {
2878 #images-overlay div::after {
2879 width: fit-content;
2882 #images-overlay div:hover::after {
2883 opacity: 1.0;
2886 #images-overlay img {
2887 width: 100%;
2890 /***************/
2891 /* IMAGE FOCUS */
2892 /***************/
2894 #content img:hover,
2895 #images-overlay img:hover {
2896 filter: drop-shadow(0 0 3px #777);
2897 cursor: zoom-in;
2899 #content img:active,
2900 #images-overlay img:active {
2901 transform: scale(0.975);
2904 #image-focus-overlay {
2905 position: fixed;
2906 top: 0;
2907 right: 0;
2908 bottom: 0;
2909 left: 0;
2910 display: none;
2911 cursor: zoom-out;
2913 #image-focus-overlay::before {
2914 content: "";
2915 display: block;
2916 position: absolute;
2917 top: 0;
2918 right: 0;
2919 bottom: 0;
2920 left: 0;
2921 background-color: #fff;
2922 opacity: 0.5;
2923 z-index: -1;
2925 #image-focus-overlay.engaged {
2926 display: initial;
2929 #image-focus-overlay img {
2930 margin: auto;
2931 position: absolute;
2932 left: 50%;
2933 top: 50%;
2934 transform: translateX(-50%) translateY(-50%);
2937 #image-focus-overlay .help-overlay {
2938 position: absolute;
2939 display: flex;
2940 flex-flow: column;
2941 z-index: 2;
2942 font-size: 1.5rem;
2943 padding: 1em;
2944 border-radius: 10px;
2945 bottom: 1em;
2946 right: 1em;
2947 overflow: hidden;
2948 white-space: nowrap;
2949 color: transparent;
2950 visibility: hidden;
2951 transition:
2952 visibility 1s ease,
2953 color 1s ease,
2954 background-color 1s ease,
2955 bottom 0.3s ease;
2957 #image-focus-overlay .help-overlay:hover {
2958 max-width: 420px;
2959 max-height: 300px;
2960 background-color: rgba(255, 255, 255, 0.85);
2961 color: #000;
2962 visibility: visible;
2963 transition:
2964 visibility 0.2s ease 0.3s,
2965 color 0.2s ease 0.3s,
2966 background-color 0.2s ease 0.3s;
2969 #image-focus-overlay .help-overlay::after {
2970 content: "\F128";
2971 font-family: Font Awesome;
2972 font-weight: 900;
2973 font-size: 2rem;
2974 position: absolute;
2975 right: 0;
2976 bottom: 0;
2977 padding: 10px;
2978 color: #fff;
2979 filter: drop-shadow(0 0 6px #fff);
2980 visibility: visible;
2981 opacity: 0.85;
2982 transition:
2983 visibility 1s ease;
2985 #image-focus-overlay .help-overlay:hover::after {
2986 visibility: hidden;
2987 transition:
2988 visibility 0.2s ease 0.3s;
2991 #image-focus-overlay .help-overlay p {
2992 margin: 0;
2993 text-indent: -2em;
2994 padding-left: 2em;
2995 max-width: 100%;
2996 overflow: hidden;
2998 #image-focus-overlay .help-overlay p + p {
2999 margin: 0.75em 0 0 0;
3001 #image-focus-overlay .help-overlay.hidden {
3002 bottom: -2em;
3005 #image-focus-overlay .image-number {
3006 position: absolute;
3007 z-index: 2;
3008 font-size: 1.75rem;
3009 left: 1em;
3010 bottom: 1em;
3011 font-weight: 600;
3012 text-shadow:
3013 0 0 3px #000,
3014 0 0 5px #000,
3015 0 0 8px #000,
3016 0 0 13px #000;
3017 width: 1.5em;
3018 text-align: right;
3019 white-space: nowrap;
3020 transition: bottom 0.3s ease;
3022 #image-focus-overlay .image-number::before {
3023 content: "#";
3024 opacity: 0.3;
3026 #image-focus-overlay .image-number::after {
3027 content: " of " attr(data-number-of-images);
3028 opacity: 0.3;
3030 #image-focus-overlay .image-number:hover::before,
3031 #image-focus-overlay .image-number:hover::after {
3032 opacity: 1.0;
3034 #image-focus-overlay .image-number.hidden {
3035 bottom: -1.25em;
3038 #image-focus-overlay .slideshow-buttons {
3039 position: absolute;
3040 top: 0;
3041 left: 0;
3042 width: 100%;
3043 height: 100%;
3044 z-index: 1;
3045 display: flex;
3046 justify-content: space-between;
3047 pointer-events: none;
3049 #image-focus-overlay .slideshow-buttons button {
3050 font-family: Font Awesome;
3051 font-weight: 900;
3052 font-size: 3rem;
3053 padding: 0.5em;
3054 color: #1f1f1f;
3055 position: relative;
3056 left: 0;
3057 transition:
3058 left 0.3s ease;
3059 pointer-events: auto;
3061 #image-focus-overlay .slideshow-buttons button::selection {
3062 background-color: transparent;
3064 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3065 #image-focus-overlay .slideshow-buttons button:hover {
3066 background-color: rgba(255, 255, 255, 0.1);
3067 color: #777;
3070 #image-focus-overlay .slideshow-buttons button:active {
3071 transform: none;
3072 color: #666;
3074 #image-focus-overlay .slideshow-buttons button:disabled {
3075 text-shadow: none;
3076 background-color: transparent;
3077 color: #1f1f1f;
3078 cursor: default;
3079 opacity: 0.4;
3081 #image-focus-overlay .slideshow-button.previous.hidden {
3082 left: -1.75em;
3084 #image-focus-overlay .slideshow-button.next.hidden {
3085 left: 1.75em;
3088 .blurred {
3089 filter: blur(3px);
3092 /**************************/
3093 /* QUALIFIED HYPERLINKING */
3094 /**************************/
3096 #content.no-comments #comments,
3097 #content.no-comments .post-meta .comment-count,
3098 #content.no-comments .post-meta .karma,
3099 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3100 #content.no-comments + #ui-elements-container #hns-date-picker,
3101 #content.no-comments + #ui-elements-container #quick-nav-ui {
3102 display: none;
3105 #content.no-nav-bars #primary-bar,
3106 #content.no-nav-bars #secondary-bar {
3107 display: none;
3109 #content.no-nav-bars {
3110 margin: 8px auto;
3112 #content.no-nav-bars + #ui-elements-container > * {
3113 padding-top: 8px;
3116 #aux-about-link {
3117 position: fixed;
3118 top: 40px;
3119 left: calc((100% - 900px) / 2 - 69px);
3120 width: 1.5em;
3121 height: 1.5em;
3122 text-align: center;
3123 display: table;
3125 #aux-about-link a {
3126 display: table-cell;
3127 width: 100%;
3128 vertical-align: middle;
3129 font-family: Font Awesome;
3130 font-weight: 900;
3131 font-size: 1.25rem;
3132 opacity: 0.4;
3133 z-index: 1;
3136 .qualified-linking {
3137 margin: 0;
3138 position: relative;
3140 .qualified-linking input[type='checkbox'] {
3141 visibility: hidden;
3142 width: 0;
3143 height: 0;
3144 margin: 0;
3146 .qualified-linking label {
3147 font-family: Font Awesome;
3148 font-weight: 900;
3149 font-size: 1rem;
3150 padding: 0 0.5em;
3151 display: inline-block;
3152 margin-left: 0.25em;
3154 .qualified-linking label:hover {
3155 cursor: pointer;
3157 .qualified-linking label:active span {
3158 display: inline-block;
3159 transform: scale(0.9);
3161 .qualified-linking label::selection {
3162 background-color: transparent;
3165 .qualified-linking label::after {
3166 content: "";
3167 width: 100vw;
3168 height: 0;
3169 left: 0;
3170 top: 0;
3171 position: fixed;
3172 z-index: 1;
3173 cursor: default;
3175 .qualified-linking input[type='checkbox']:checked + label::after {
3176 height: 100vh;
3179 .qualified-linking-toolbar {
3180 position: absolute;
3181 right: 0.25em;
3182 top: 110%;
3183 z-index: 1;
3185 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3186 display: none;
3188 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3189 display: block;
3191 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3192 top: unset;
3193 bottom: 125%;
3196 .qualified-linking-toolbar a {
3197 display: block;
3198 padding: 0 6px;
3199 margin: 4px;
3201 .qualified-linking-toolbar a::selection {
3202 background-color: transparent;
3205 /********/
3206 /* MATH */
3207 /********/
3209 .mathjax-block-container {
3210 overflow-y: hidden;
3211 border-radius: 6px;
3212 margin: 1em 0 1.5em 0;
3214 .mathjax-inline-container {
3215 max-width: 100%;
3216 display: inline-block;
3217 overflow-x: auto;
3218 overflow-y: hidden;
3219 position: relative;
3220 vertical-align: text-top;
3221 padding: 0 1px;
3223 .post .mathjax-inline-container {
3224 line-height: 1.1;
3225 top: 2px;
3227 .comment .mathjax-inline-container {
3228 top: 3px;
3229 line-height: 1;
3231 .mathjax-inline-container .mjx-chtml {
3232 padding: 0;
3235 /************/
3236 /* SPOILERS */
3237 /************/
3239 .spoiler {
3240 color: #fff;
3241 background-color: currentColor;
3242 position: relative;
3243 transition: none;
3244 border: 1px solid currentColor;
3245 padding: 0 6px;
3246 text-shadow: none;
3248 #content .spoiler * {
3249 color: inherit;
3250 border: none;
3252 .spoiler:hover {
3253 color: unset;
3254 background-color: unset;
3255 text-shadow: unset;
3256 transition:
3257 color 0.1s ease-out 0.1s,
3258 background-color 0.1s ease-out 0.1s,
3259 text-shadow 0.1s ease-out 0.1s;
3261 .spoiler::selection,
3262 .spoiler ::selection {
3263 color: #000;
3264 background-color: #fff;
3266 .spoiler:not(:hover)::selection,
3267 .spoiler:not(:hover) ::selection {
3268 background-color: transparent;
3271 /*= Fix for LessWrong being weird =*/
3273 div.spoiler {
3274 margin: 1em 0;
3275 overflow: visible;
3277 div.spoiler > p:first-child {
3278 margin-top: 0.25em;
3280 div.spoiler > p:last-child {
3281 margin-bottom: 0.25em;
3284 /*******************/
3285 /* ALIGNMENT FORUM */
3286 /*******************/
3288 #content.alignment-forum-index-page::before {
3289 content: "Alignment Forum";
3290 grid-row: 3;
3291 font-size: 1.5rem;
3292 margin: 0.375em 0 0 -0.375em;
3295 /**********************/
3296 /* FOR NARROW SCREENS */
3297 /**********************/
3299 @media only screen and (max-width: 1440px) {
3300 #hns-date-picker {
3301 right: -81px;
3302 padding: 8px 10px 10px 10px;
3303 bottom: 62px;
3304 display: none;
3306 #hns-date-picker::before {
3307 content: "";
3308 position: absolute;
3309 display: block;
3310 z-index: -1;
3311 height: calc(100% + 2px);
3312 top: -1px;
3313 left: -1px;
3314 width: 50%;
3317 @media only screen and (max-width: 1160px) {
3318 #new-comment-nav-ui {
3319 bottom: 180px;
3320 right: -68px;
3322 #hns-date-picker {
3323 bottom: 200px;
3324 right: -36px;
3326 #hns-date-picker::before {
3327 width: calc(100% - 35px);
3329 #theme-selector button::before {
3330 right: unset;
3331 left: 100%;
3333 #theme-selector:hover::after {
3334 content: "";
3335 display: block;
3336 position: absolute;
3337 width: calc(6em - 7px);
3338 height: calc(100% + 2px);
3339 top: 0;
3340 left: calc(100% + 1px);
3342 #anti-kibitzer-toggle {
3343 bottom: 330px;
3346 @media only screen and (max-width: 1080px) {
3347 #width-selector {
3348 right: -30px;
3350 #width-selector button {
3351 display: block;
3353 #text-size-adjustment-ui {
3354 top: 90px;
3355 right: -30px;
3357 #text-size-adjustment-ui button {
3358 display: block;
3359 position: relative;
3361 #text-size-adjustment-ui button.increase {
3362 bottom: 48px;
3364 #text-size-adjustment-ui button.decrease {
3365 top: 50px;
3367 #theme-selector {
3368 top: 46px;
3369 left: -44px;
3371 #theme-tweaker-toggle {
3372 left: -44px;
3373 top: 2px;
3375 #theme-tweaker-toggle button {
3376 height: 2em;
3377 width: 2em;
3378 padding: 7px;
3380 #quick-nav-ui {
3381 right: -54px;
3383 #new-comment-nav-ui {
3384 right: -55px;
3386 #hns-date-picker {
3387 right: -23px;
3389 #hns-date-picker::before {
3390 width: calc(100% - 22px);
3392 #anti-kibitzer-toggle {
3393 right: -54px;
3396 @media only screen and (max-width: 1040px) {
3397 #quick-nav-ui {
3398 right: -49px;
3400 #new-comment-nav-ui {
3401 right: -50px;
3403 #hns-date-picker {
3404 right: -18px;
3406 #hns-date-picker::before {
3407 width: calc(100% - 17px);
3409 #anti-kibitzer-toggle {
3410 right: -50px;
3413 @media only screen and (max-width: 1020px) {
3414 #quick-nav-ui {
3415 right: -20px;
3417 #new-comment-nav-ui {
3418 right: -21px;
3420 #new-comment-nav-ui .new-comments-count::before {
3421 content: "";
3422 position: absolute;
3423 width: 100%;
3424 height: calc(100% + 45px);
3425 z-index: -1;
3426 left: 0;
3427 top: -22px;
3429 #hns-date-picker {
3430 right: 19px;
3432 #hns-date-picker::before {
3433 width: 100%;
3435 #anti-kibitzer-toggle {
3436 right: -20px;
3439 @media only screen and (max-width: 1000px) {
3440 #theme-selector {
3441 left: -17px;
3442 top: 120px;
3443 padding: 3px 0;
3444 max-width: 32px;
3446 #theme-selector button {
3447 margin: 1px 4px;
3449 #text-size-adjustment-ui {
3450 top: 100px;
3451 right: -12px;
3453 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3454 #quick-nav-ui,
3455 #new-comment-nav-ui,
3456 #new-comment-nav-ui + #hns-date-picker,
3457 #anti-kibitzer-toggle {
3458 opacity: 0.4;
3460 #quick-nav-ui:hover,
3461 #new-comment-nav-ui:hover,
3462 #new-comment-nav-ui + #hns-date-picker:hover,
3463 #new-comment-nav-ui + #hns-date-picker:focus-within,
3464 #new-comment-nav-ui:hover + #hns-date-picker,
3465 #anti-kibitzer-toggle:hover {
3466 opacity: 1.0;
3469 #theme-tweaker-toggle {
3470 top: 70px;
3471 left: -21px;
3475 /**************/
3476 /* PRINT VIEW */
3477 /**************/
3479 @media only print {
3480 .nav-bar {
3481 visibility: hidden;
3482 max-height: 0;
3483 overflow: hidden;
3485 #ui-elements-container {
3486 display: none;
3488 #images-overlay {
3489 display: none;
3491 #images-overlay + #content .post-body img {
3492 visibility: visible;
3494 .comment-controls {
3495 display: none;
3497 #comments-sort-mode-selector {
3498 display: none;
3500 .comment-minimize-button {
3501 display: none;
3503 .post-meta .qualified-linking,
3504 .post-meta .lw2-link {
3505 display: none;
3507 .comment-meta .permalink,
3508 .comment-meta .lw2-link,
3509 .comment-meta .comment-parent-link {
3510 display: none;
3512 .new-comment::before {
3513 display: none;
3515 #content {
3516 box-shadow: none;
3520 /*****************/
3521 /* MOBILE LAYOUT */
3522 /*****************/
3524 /* Hide the mobile elements on desktop screens: */
3526 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3527 #post-nav-ui-toggle,
3528 #appearance-adjust-ui-toggle,
3529 #theme-selector .theme-selector-close-button {
3530 display: none;
3534 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
3536 /*====================*/
3537 /* MOBILE UI ELEMENTS */
3538 /*====================*/
3540 #ui-elements-container {
3541 height: unset;
3542 position: unset;
3544 #ui-elements-container > * {
3545 position: fixed;
3546 visibility: hidden;
3547 opacity: 1.0;
3548 z-index: 10000;
3551 #ui-elements-container > div[id$='-ui-toggle'] {
3552 visibility: visible;
3553 display: inline-block;
3554 border-radius: 50%;
3555 z-index: 10000;
3557 #ui-elements-container > div[id$='-ui-toggle'] button,
3558 #theme-selector .theme-selector-close-button {
3559 font-family: Font Awesome;
3560 font-weight: 900;
3561 font-size: 32px;
3562 padding: 10px;
3563 opacity: 0.8;
3564 -webkit-tap-highlight-color: transparent;
3565 transition: transform 0.2s ease;
3567 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
3568 #theme-selector .theme-selector-close-button::selection {
3569 background-color: transparent;
3571 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
3572 #theme-selector .theme-selector-close-button::-moz-focus-inner {
3573 border: none;
3575 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
3576 transform: rotate(-90deg);
3577 opacity: 1.0;
3580 #appearance-adjust-ui-toggle {
3581 bottom: 10px;
3582 left: 10px;
3585 #post-nav-ui-toggle {
3586 bottom: 10px;
3587 right: 10px;
3590 #theme-selector.engaged,
3591 #quick-nav-ui.engaged,
3592 #new-comment-nav-ui.engaged,
3593 #hns-date-picker.engaged {
3594 visibility: visible;
3597 #image-focus-overlay.engaged {
3598 visibility: visible;
3600 #image-focus-overlay .help-overlay {
3601 display: none;
3604 /*=========*/
3605 /* GENERAL */
3606 /*=========*/
3608 @media only screen and (max-width: 900px) {
3609 #content,
3610 #images-overlay,
3611 #ui-elements-container {
3612 min-width: unset;
3613 width: unset;
3615 #content {
3616 padding: 0 4px;
3620 /*================*/
3621 /* THEME SELECTOR */
3622 /*================*/
3624 #theme-selector {
3625 display: flex;
3626 flex-flow: column;
3627 width: calc(100vw - 20px);
3628 max-width: 360px;
3629 padding: 0 0 3px 0;
3630 overflow: hidden;
3631 max-height: 0;
3632 transition:
3633 top 0.2s ease,
3634 max-height 0.2s ease,
3635 visibility 0.2s ease;
3636 top: calc(100% + 10px);
3637 left: 0;
3638 right: 0;
3639 margin: auto;
3641 #theme-selector.engaged {
3642 max-height: 1000px;
3643 top: 10px;
3644 z-index: 10001;
3646 #theme-selector::before {
3647 content: "Select theme";
3648 white-space: nowrap;
3649 display: block;
3650 font-weight: 600;
3651 font-size: 2rem;
3652 margin: 0.375em 1em 0.5em 1em;
3653 text-align: center;
3655 #theme-selector button {
3656 width: calc(100% - 0.5em);
3657 background-repeat: no-repeat;
3658 padding: 1em 0.875em;
3659 margin: 1px 4px;
3660 line-height: 1;
3661 height: unset;
3662 position: relative;
3664 #theme-selector button::after {
3665 content: attr(data-theme-description);
3666 white-space: nowrap;
3667 position: absolute;
3668 text-align: left;
3669 left: 2.5em;
3670 top: 1em;
3672 @media only screen and (max-height: 675px) {
3673 #theme-selector button {
3674 padding: 0.875em;
3676 #theme-selector button::after {
3677 top: 0.875em;
3680 #theme-selector .theme-selector-close-button {
3681 position: absolute;
3682 width: unset;
3683 background-color: transparent;
3684 top: 0;
3685 right: -3px;
3687 #theme-selector .theme-selector-close-button,
3688 #theme-selector .theme-selector-close-button:focus,
3689 #theme-selector .theme-selector-close-button:active,
3690 #theme-selector .theme-selector-close-button:hover {
3691 box-shadow: none;
3694 /*===============*/
3695 /* THEME TWEAKER */
3696 /*===============*/
3698 #theme-selector {
3699 padding: 0 0 64px 0;
3701 #theme-selector ~ #theme-tweaker-toggle {
3702 top: 100%;
3704 #theme-selector ~ #theme-tweaker-toggle::after {
3705 content: "Open theme tweaker";
3706 position: absolute;
3707 font-size: 0.625em;
3708 white-space: nowrap;
3709 left: -50%;
3710 top: 100%;
3712 #theme-selector.engaged ~ #theme-tweaker-toggle {
3713 visibility: visible;
3714 top: 530px;
3715 left: 0;
3716 right: 0;
3717 margin: auto;
3718 z-index: 11111;
3719 transition:
3720 top 0.2s ease,
3721 visibility 0.2s ease;
3723 @media only screen and (max-height: 675px) {
3724 #theme-selector.engaged ~ #theme-tweaker-toggle {
3725 top: 492px;
3728 @supports (width: -moz-fit-content) {
3729 #theme-selector.engaged ~ #theme-tweaker-toggle {
3730 width: -moz-fit-content;
3733 @supports (width: fit-content) {
3734 #theme-selector.engaged ~ #theme-tweaker-toggle {
3735 width: fit-content;
3738 #theme-selector.engaged ~ #theme-tweaker-toggle button {
3739 opacity: 1.0;
3742 #theme-tweaker-ui {
3743 visibility: visible;
3746 /*======================*/
3747 /* ANTI-KIBITZER TOGGLE */
3748 /*======================*/
3750 #theme-selector ~ #anti-kibitzer-toggle {
3751 top: 100%;
3752 bottom: unset;
3753 left: 0;
3754 right: 0;
3755 margin: auto;
3756 box-shadow: none;
3757 width: calc(100vw - 44px);
3758 max-width: 330px;
3759 text-align: right;
3760 pointer-events: none;
3762 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3763 visibility: visible;
3764 z-index: 11110;
3765 top: 530px;
3766 transition:
3767 top 0.2s ease,
3768 visibility 0.2s ease;
3770 @media only screen and (max-height: 675px) {
3771 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3772 top: 492px;
3775 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
3776 pointer-events: auto;
3777 display: inline-block;
3780 /*=================*/
3781 /* QUICKNAV WIDGET */
3782 /*=================*/
3784 #quick-nav-ui {
3785 max-width: 0px;
3786 transition:
3787 max-width 0.2s ease,
3788 visibility 0.2s ease;
3789 display: flex;
3790 right: 72px;
3791 bottom: 14px;
3793 #quick-nav-ui.engaged {
3794 max-width: 1000px;
3796 #quick-nav-ui a {
3797 position: relative;
3798 margin: 2px;
3800 #quick-nav-ui a + a {
3801 margin-left: 5px;
3803 #quick-nav-ui a::after {
3804 position: absolute;
3805 top: calc(100% + 2px);
3806 font-size: 0.375rem;
3807 left: 0;
3808 right: 0;
3809 margin: auto;
3810 line-height: 1;
3811 padding: 2px;
3812 text-transform: uppercase;
3813 z-index: -1;
3815 @supports (width: -moz-fit-content) {
3816 #quick-nav-ui a::after {
3817 width: -moz-fit-content;
3820 @supports (width: fit-content) {
3821 #quick-nav-ui a::after {
3822 width: fit-content;
3825 #quick-nav-ui a[href='#top']::after {
3826 content: "Top";
3827 left: -1px;
3829 #quick-nav-ui a[href='#comments']::after {
3830 content: "Comments";
3832 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
3833 visibility: hidden;
3834 transition: visibility 0.2s ease;
3836 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
3837 visibility: visible;
3839 #quick-nav-ui a[href='#bottom-bar']::after {
3840 content: "Bottom";
3843 /*======================*/
3844 /* NEW COMMENT QUICKNAV */
3845 /*======================*/
3847 #new-comment-nav-ui {
3848 max-width: 0px;
3849 max-height: 0px;
3850 transition:
3851 max-width 0.2s ease,
3852 max-height 0.2s ease,
3853 visibility 0.2s ease;
3854 display: flex;
3855 right: 78px;
3856 bottom: 70px;
3858 #new-comment-nav-ui::before {
3859 content: "New Comments";
3860 position: absolute;
3861 bottom: 100%;
3862 font-size: 0.5625rem;
3863 left: 0;
3864 right: 0;
3865 margin: auto;
3866 padding: 2px 3px;
3867 text-transform: uppercase;
3868 z-index: -1;
3870 @supports (width: -moz-fit-content) {
3871 #new-comment-nav-ui::before {
3872 width: -moz-fit-content;
3875 @supports (width: fit-content) {
3876 #new-comment-nav-ui::before {
3877 width: fit-content;
3880 #new-comment-nav-ui.engaged {
3881 max-width: 1000px;
3882 max-height: 1000px;
3884 #new-comment-nav-ui .new-comment-sequential-nav-button {
3885 top: unset;
3886 bottom: unset;
3887 padding: 2px 7px;
3889 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
3890 padding: 2px 7px 3px 7px;
3892 #new-comment-nav-ui .new-comments-count {
3893 padding: 4px 0 5px 0;
3895 #new-comment-nav-ui .new-comments-count::before {
3896 display: none;
3898 #new-comment-nav-ui button::after {
3899 position: absolute;
3900 font-size: 0.375rem;
3901 left: 0;
3902 right: 0;
3903 margin: auto;
3904 line-height: 1;
3905 text-transform: uppercase;
3906 pointer-events: none;
3908 #new-comment-nav-ui button.new-comment-previous::after {
3909 content: "Previous";
3910 bottom: 5px;
3912 #new-comment-nav-ui button.new-comment-next::after {
3913 content: "Next";
3914 top: 7px;
3917 /*=================*/
3918 /* HNS DATE PICKER */
3919 /*=================*/
3921 #hns-date-picker {
3922 max-height: 0px;
3923 bottom: 132px;
3924 right: 62px;
3925 transition:
3926 max-height 0.2s ease,
3927 visibility 0.2s ease;
3929 #hns-date-picker.engaged {
3930 max-height: 1000px;
3932 #hns-date-picker::before {
3933 width: calc(100% + 2px);
3934 border-width: 1px !important;
3937 /*=========*/
3938 /* NAV BAR */
3939 /*=========*/
3941 #bottom-bar {
3942 padding: 0 4.5rem;
3944 #bottom-bar .nav-item {
3945 box-shadow: none;
3946 position: relative;
3948 #bottom-bar .nav-inner {
3949 font-size: 2rem;
3950 padding: 1rem 0 1.25rem 0;
3951 visibility: hidden;
3952 position: static;
3953 width: 0;
3955 #content #bottom-bar .nav-item .nav-inner::before {
3956 margin: 0;
3957 visibility: visible;
3958 position: absolute;
3959 width: 100%;
3960 height: 100%;
3961 left: 0;
3962 top: 0;
3963 padding: 1rem 0;
3965 #bottom-bar .nav-inner::after {
3966 display: block;
3967 visibility: visible;
3968 text-transform: uppercase;
3969 color: unset;
3970 font-size: 0.75rem;
3971 top: unset;
3972 left: 0;
3973 bottom: 1rem;
3974 width: 100%;
3976 #bottom-bar #nav-item-first .nav-inner::after {
3977 content: "First Page";
3979 #bottom-bar #nav-item-prev .nav-inner::after {
3980 content: "Prev. Page";
3982 #bottom-bar #nav-item-top .nav-inner::after {
3983 content: "Top";
3985 #bottom-bar #nav-item-next .nav-inner::after {
3986 content: "Next Page";
3988 #bottom-bar #nav-item-last .nav-inner::after {
3989 content: "Last Page";
3992 @media only screen and (max-width: 900px) {
3993 #primary-bar,
3994 #secondary-bar {
3995 font-size: 0.75rem;
3997 .nav-bar {
3998 width: calc(100% + 8px);
3999 margin: 0 -4px;
4001 .nav-bar .nav-inner::after {
4002 display: none;
4005 #primary-bar .nav-item {
4006 flex: 1 1 100%;
4008 #secondary-bar .nav-item:not(#nav-item-search) {
4009 flex: 1 1 60px;
4011 #primary-bar .nav-inner,
4012 #secondary-bar .nav-inner {
4013 text-transform: uppercase;
4014 padding: 6px;
4016 #primary-bar .nav-inner::before,
4017 #secondary-bar .nav-inner::before {
4018 display: block;
4019 font-family: "Font Awesome";
4020 font-size: 2em;
4021 font-weight: 900;
4024 #nav-item-home .nav-inner::before {
4025 content: "\F015";
4027 #nav-item-featured .nav-inner::before {
4028 content: "\F005";
4030 #nav-item-all .nav-inner::before {
4031 content: "\F069";
4033 #nav-item-meta .nav-inner::before {
4034 content: "\F077";
4036 #nav-item-recent-comments > * > span {
4037 display: none;
4039 #nav-item-recent-comments .nav-inner::before {
4040 content: "\F036";
4042 #nav-item-archive .nav-inner::before {
4043 content: "\F187";
4045 #nav-item-about .nav-inner::before {
4046 content: "\F129";
4048 #nav-item-search {
4049 font-size: 2em;
4050 padding: 10px;
4052 #nav-item-search .nav-inner::before {
4053 content: none;
4055 #nav-item-search .nav-inner {
4056 height: 100%;
4057 display: flex;
4059 #nav-item-search input {
4060 width: 100%;
4061 height: 100%;
4063 #nav-item-search button {
4064 height: 100%;
4065 padding: 5px 5px 5px 10px;
4066 width: 40px;
4067 overflow: visible;
4068 visibility: hidden;
4070 #nav-item-search button::before {
4071 content: "\F002";
4072 font-family: Font Awesome;
4073 font-weight: 900;
4074 visibility: visible;
4076 #nav-item-login {
4077 padding: 0;
4079 #nav-item-login .nav-inner::before {
4080 content: "\F007";
4083 @media only screen and (max-width: 520px) {
4084 #primary-bar,
4085 #secondary-bar {
4086 font-size: 0.5rem;
4089 #nav-item-search .nav-inner {
4090 padding: 0;
4092 #nav-item-search button {
4093 width: 31px;
4096 #bottom-bar #nav-item-first .nav-inner::after {
4097 content: "First";
4099 #bottom-bar #nav-item-prev .nav-inner::after {
4100 content: "Prev";
4102 #bottom-bar #nav-item-next .nav-inner::after {
4103 content: "Next";
4105 #bottom-bar #nav-item-last .nav-inner::after {
4106 content: "Last";
4110 /*=================*/
4111 /* INBOX INDICATOR */
4112 /*=================*/
4114 @media only screen and (max-width: 900px) {
4115 #inbox-indicator {
4116 width: 100%;
4117 top: 0;
4118 pointer-events: none;
4120 #inbox-indicator::before {
4121 width: 100%;
4122 font-size: 1rem;
4123 text-align: right;
4124 padding: 1px 6px;
4126 #inbox-indicator.new-messages {
4127 pointer-events: auto;
4129 #inbox-indicator.new-messages::before {
4130 box-shadow: 0 0 8px 1px #0090e0 inset;
4133 @media only screen and (max-width: 520px) {
4134 #inbox-indicator::before {
4135 font-size: 0.75rem;
4136 padding: 2px 5px;
4139 @media only screen and (max-width: 374px) {
4140 #inbox-indicator::before {
4141 font-size: 0.625rem;
4145 /*===================*/
4146 /* TOP PAGINATION UI */
4147 /*===================*/
4149 #top-nav-bar {
4150 font-size: 1.75rem;
4153 /*==============*/
4154 /* PAGE TOOLBAR */
4155 /*==============*/
4157 @media only screen and (max-width: 900px) {
4158 #content > .page-toolbar {
4159 font-size: 1rem;
4160 margin-right: 0;
4162 #content.user-page > .page-toolbar {
4163 grid-column: 2 / span 2;
4164 margin: 0 0 6px 0;
4167 @media only screen and (max-width: 520px) {
4168 #content:not(.user-page) .page-toolbar {
4169 display: flex;
4170 flex-direction: column-reverse;
4171 text-align: right;
4172 align-self: start;
4173 padding: 4px 0 0 0;
4175 #content.user-page .page-toolbar {
4176 display: flex;
4177 flex-flow: row;
4178 justify-content: flex-end;
4179 padding: 2px 0 0 0;
4181 #content.user-page .page-toolbar > form,
4182 #content.user-page .page-toolbar > .button {
4183 text-align: center;
4184 flex-basis: 25%;
4185 margin-left: 1.5em;
4187 #content.user-page .page-toolbar .button {
4188 text-transform: uppercase;
4189 font-size: 0.625rem;
4191 #content.user-page .page-toolbar .button::before {
4192 font-size: 1.375rem;
4193 display: block;
4194 padding: 0;
4196 #content.user-page .page-toolbar .rss {
4197 white-space: nowrap;
4198 margin: 0 0 0 1.5em;
4200 .page-toolbar > * {
4201 line-height: 1.15;
4202 padding: 6px 0;
4203 margin: 0;
4207 /*==============*/
4208 /* SUBLEVEL NAV */
4209 /*==============*/
4211 @media only screen and (max-width: 900px) {
4212 .sublevel-nav:not(.sort) {
4213 flex-wrap: wrap;
4214 width: calc(100vw - 100px);
4216 .sublevel-nav:not(.sort) .sublevel-item {
4217 margin: 1px;
4218 flex-basis: 7em;
4221 @media only screen and (max-width: 720px) {
4222 .sublevel-nav:not(.sort) {
4223 width: calc(100vw - 200px);
4226 @media only screen and (max-width: 520px) {
4227 .sublevel-nav:not(.sort) {
4228 width: calc(100vw - 100px);
4230 .sublevel-nav:not(.sort) .sublevel-item {
4231 font-size: 1rem;
4235 /*=====================*/
4236 /* SORT ORDER SELECTOR */
4237 /*=====================*/
4239 @media only screen and (max-width: 720px) {
4240 #content.index-page > .sublevel-nav.sort {
4241 flex-flow: column;
4242 margin-left: 4px;
4246 /*==========*/
4247 /* ARCHIVES */
4248 /*==========*/
4250 @media only screen and (max-width: 900px) {
4251 div[class^='archive-nav-'] {
4252 flex-wrap: wrap;
4253 justify-content: flex-start;
4255 .archive-nav *[class^='archive-nav-item'],
4256 .archive-nav *[class^='archive-nav-item']:first-child {
4257 padding: 10px;
4258 margin: 2px;
4259 max-width: unset;
4260 flex: 0 1 calc((100% / 8) - 4px);
4262 .archive-nav .archive-nav-item-day,
4263 .archive-nav .archive-nav-item-day:first-child {
4264 flex-basis: calc((100% / 16) - 4px);
4266 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4267 margin-top: 8px;
4268 position: relative;
4270 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4271 content: "";
4272 display: block;
4273 position: absolute;
4274 height: 1px;
4275 width: calc(100% + 8px);
4276 left: -4px;
4277 top: -4px;
4280 @media only screen and (max-width: 720px) {
4281 .archive-nav .archive-nav-item-day,
4282 .archive-nav .archive-nav-item-day:first-child {
4283 flex-basis: calc((100% / 12) - 4px);
4286 @media only screen and (max-width: 520px) {
4287 .archive-nav *[class^='archive-nav-item'],
4288 .archive-nav *[class^='archive-nav-item']:first-child {
4289 flex-basis: calc((100% / 5) - 4px);
4291 .archive-nav .archive-nav-item-day,
4292 .archive-nav .archive-nav-item-day:first-child {
4293 flex-basis: calc((100% / 8) - 4px);
4297 /*==========*/
4298 /* LISTINGS */
4299 /*==========*/
4301 h1.listing {
4302 max-height: unset;
4305 /*============*/
4306 /* USER PAGES */
4307 /*============*/
4309 @media only screen and (max-width: 720px) {
4310 #content.user-page h1.page-main-heading {
4311 align-self: center;
4313 #content.user-page .user-stats {
4314 padding: 4px 0;
4315 line-height: 1.3;
4319 /*============*/
4320 /* LOGIN PAGE */
4321 /*============*/
4323 @media only screen and (max-width: 640px) {
4324 .login-container {
4325 flex-flow: column;
4326 margin: 0 auto 3em auto;
4327 max-width: 400px;
4329 .login-container #login-form,
4330 .login-container #signup-form {
4331 padding: 0 1em 1.25em 1em;
4332 grid-row-gap: 0;
4334 .login-container #signup-form {
4335 padding-top: 1em;
4337 .login-container #login-form > *,
4338 .login-container #signup-form > * {
4339 grid-column: 1 / span 2;
4341 .login-container form label {
4342 text-align: left;
4343 padding: 0;
4344 line-height: 1;
4346 .login-container form input {
4347 margin: 0.25em 0 0.75em 0;
4348 padding: 0.5em;
4350 .login-container form h1 {
4351 grid-column: 1 / span 2;
4352 margin: 0 0 0.25em 0;
4354 .login-container form a {
4355 margin: 0.75em 0 0 0;
4357 .login-container .login-tip {
4358 margin: 1.5em 1em 0 1em;
4362 /*==================*/
4363 /* POSTS & COMMENTS */
4364 /*==================*/
4366 /*===========*/
4367 /* POST-META */
4368 /*===========*/
4370 .post-meta {
4371 line-height: 1.9;
4373 @media only screen and (max-width: 720px) {
4374 .post-meta .lw2-link span,
4375 .post-meta .karma-value span,
4376 .post-meta .comment-count span {
4377 display: none;
4379 .post-meta .comment-count::before {
4380 content: "\F086";
4381 font-family: Font Awesome;
4382 font-size: 0.875em;
4383 margin: 0 0.25em 0 0;
4384 font-weight: 400;
4388 /*=======*/
4389 /* POSTS */
4390 /*=======*/
4392 @media only screen and (max-width: 900px) {
4393 .post-body,
4394 .post > h1:first-child {
4395 padding: 0 6px;
4398 @media only screen and (max-width: 520px) {
4399 .post-body {
4400 font-size: 1.2rem;
4401 line-height: 1.45;
4403 .post > h1:first-child {
4404 font-size: 2em;
4408 /*==========*/
4409 /* COMMENTS */
4410 /*==========*/
4412 @media only screen and (max-width: 900px) {
4413 .comment-body ul {
4414 padding-left: 30px;
4416 .comment-body ol {
4417 padding-left: 30px;
4421 /*==============*/
4422 /* COMMENT-META */
4423 /*==============*/
4425 a.comment-parent-link::after {
4426 display: none;
4428 @media only screen and (max-width: 900px) {
4429 .comment-meta {
4430 padding: 2px 40px 2px 10px;
4433 @media only screen and (max-width: 720px) {
4434 .comment-meta .karma-value span {
4435 display: none;
4437 .comment-meta .comment-parent-link {
4438 opacity: 1.0;
4441 @media only screen and (max-width: 520px) {
4442 .comment-meta {
4443 padding: 2px 10px;
4444 position: relative;
4446 .comment-meta .author {
4447 flex-basis: 100%;
4449 .comment-post-title2 {
4450 display: block;
4451 text-overflow: ellipsis;
4452 overflow: hidden;
4454 .comment-meta .lw2-link {
4455 display: none;
4459 /*=======================*/
4460 /* COMMENTS COMPACT VIEW */
4461 /*=======================*/
4463 /*===========================*/
4464 /* COMMENT THREAD NAVIGATION */
4465 /*===========================*/
4467 @media only screen and (max-width: 900px) {
4468 a.comment-parent-link {
4469 width: 0;
4470 visibility: hidden;
4471 position: relative;
4473 a.comment-parent-link::before {
4474 padding: 0;
4475 font-size: 1em;
4476 left: 0;
4477 top: 0;
4478 line-height: inherit;
4479 visibility: visible;
4480 content: "\F3BF";
4481 transform: scaleX(-1);
4482 width: 2em;
4483 text-align: center;
4486 @media only screen and (max-width: 520px) {
4487 a.comment-parent-link {
4488 position: static;
4490 a.comment-parent-link::before {
4491 padding: 6px;
4492 left: unset;
4493 right: 0;
4494 top: unset;
4495 bottom: 0;
4496 height: 2em;
4500 /*=================================*/
4501 /* COMMENT THREAD MINIMIZE BUTTONS */
4502 /*=================================*/
4504 @media only screen and (max-width: 520px) {
4505 .comment-minimize-button{
4506 right: 2px;
4510 /*===========================*/
4511 /* COMMENTING AND POSTING UI */
4512 /*===========================*/
4514 @media only screen and (max-width: 900px) {
4515 .comment-controls .edit-button,
4516 .comment-controls .cancel-comment-button {
4517 max-width: 1.3em;
4518 overflow: hidden;
4519 margin-right: 0.125em;
4521 .comment-controls .edit-button {
4522 color: #7b05bb;
4524 .comment-controls .edit-button::before {
4525 font-size: 1rem;
4527 #comments > .comment-controls .cancel-comment-button {
4528 right: 8px;
4530 .comment-controls .cancel-comment-button::before {
4531 font-size: 1.25rem;
4534 @media only screen and (max-width: 520px) {
4535 .comment-controls {
4536 position: static;
4538 .comment-controls:focus-within {
4539 z-index: 10001;
4541 .comment-controls .cancel-comment-button {
4542 right: 10px;
4544 .textarea-container:focus-within textarea {
4545 position: fixed;
4546 top: 0;
4547 left: 2px;
4548 width: calc(100vw - 4px);
4549 height: calc(100% - 100px);
4550 min-height: unset;
4551 max-height: unset;
4552 border-width: 1px;
4553 z-index: 11001;
4555 #content.conversation-page .textarea-container:focus-within textarea {
4556 height: calc(100% - 54px);
4558 #content.conversation-page .textarea-container:focus-within::after {
4559 content: "";
4560 display: block;
4561 width: 100%;
4562 height: 50px;
4563 position: fixed;
4564 left: 0;
4565 bottom: 0;
4566 z-index: 11000;
4568 .textarea-container:focus-within .guiedit-buttons-container {
4569 position: fixed;
4570 z-index: 11002;
4571 left: 0;
4572 width: 100vw;
4573 height: auto;
4574 background-image: none;
4575 padding: 3px 4px 4px 4px;
4576 margin: 0;
4577 text-align: center;
4578 top: auto;
4579 bottom: 0;
4581 .textarea-container:focus-within button.guiedit {
4582 font-size: 0.9375rem;
4583 line-height: 1.5;
4584 height: auto;
4585 width: calc((100% / 10) - 2px);
4586 padding: 10px 1px 8px 0;
4587 position: relative;
4588 margin: 1px;
4590 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
4591 z-index: 11011;
4592 position: fixed;
4593 bottom: 7px;
4594 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
4595 font-size: 1.25rem;
4596 padding: 5px 5px 6px 5px;
4597 display: block;
4599 .textarea-container:focus-within button.guiedit sup {
4600 position: absolute;
4601 left: calc(50% + 0.65em);
4602 top: calc(50% - 1.3em);
4604 .textarea-container:focus-within .guiedit-mobile-help-button {
4605 left: 8px;
4607 .textarea-container:focus-within .guiedit-mobile-exit-button {
4608 right: 8px;
4610 .guiedit::after {
4611 display: none;
4614 .markdown-hints,
4615 #edit-post-form .markdown-hints {
4616 z-index: 11111;
4617 position: fixed;
4618 top: 40px;
4619 left: 0;
4620 right: 0;
4621 margin: auto;
4622 padding: 4px 0 4px 8px;
4623 width: 310px;
4624 border-width: 3px;
4625 border-style: double;
4626 pointer-events: none;
4628 .markdown-hints::after {
4629 content: "(Type to hide this help box.)";
4630 color: #9740cb;
4631 display: block;
4632 margin: 12px 18px 13px 10px;
4633 padding: 5px;
4634 font-size: 0.9em;
4635 text-align: center;
4639 /*================*/
4640 /* EDIT POST FORM */
4641 /*================*/
4643 @media only screen and (max-width: 520px) {
4644 #edit-post-form {
4645 padding-bottom: 0;
4647 #edit-post-form .post-meta-fields {
4648 grid-template-columns: 4em auto auto auto 1fr 4.25em;
4650 #edit-post-form label[for='url'],
4651 #edit-post-form label[for='section'],
4652 #edit-post-form label[for='title'] {
4653 padding-left: 0;
4655 #edit-post-form label[for='link-post'] {
4656 white-space: normal;
4657 line-height: 0.9;
4658 top: -1px;
4660 #edit-post-form .textarea-container:focus-within textarea {
4661 height: calc(100% - 101px);
4662 min-height: unset;
4665 #markdown-hints-checkbox,
4666 #markdown-hints-checkbox + label {
4667 display: none;
4670 #edit-post-form div:last-child {
4671 clear: both;
4672 overflow: auto;
4674 #edit-post-form input[type='submit'] {
4675 float: none;
4676 display: block;
4677 font-size: 1.5rem;
4678 margin: 1rem auto 1.5rem auto;
4679 padding: 6px 12px 8px 12px;
4683 /*===================*/
4684 /* TABLE OF CONTENTS */
4685 /*===================*/
4687 @media only screen and (max-width: 900px) {
4688 .contents {
4689 float: none;
4690 display: table;
4691 max-width: none;
4692 margin-left: auto;
4693 margin-right: auto;
4696 @media only screen and (max-width: 520px) {
4697 .contents {
4698 max-width: 100%;
4699 margin: 1em auto 0 auto;
4700 display: table;
4702 .contents-head {
4703 font-size: 1.2em;
4705 div.post-body .contents ul {
4706 font-size: unset;
4710 /*========================*/
4711 /* QUALIFIED HYPERLINKING */
4712 /*========================*/
4714 @media only screen and (max-width: 520px) {
4715 .qualified-linking-toolbar {
4716 right: -5em;
4720 } /* END MOBILE LAYOUT */
4723 /*****************/
4724 /* DEFAULT THEME */
4725 /*****************/
4727 body {
4728 color: #fff;
4729 background-color: #232323;
4730 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
4731 font-feature-settings: 'ss07';
4733 #content {
4734 background-color: #000;
4735 box-shadow: 0px 0px 10px #9b9b9b;
4736 line-height: 1.55;
4739 /*=========*/
4740 /* NAV BAR */
4741 /*=========*/
4743 .nav-inner {
4744 font-size: 1.375em;
4745 font-weight: 600;
4747 #secondary-bar .nav-inner {
4748 font-size: 1em;
4751 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4752 #bottom-bar a:hover,
4753 #nav-item-search:not(.nav-current):focus-within {
4754 background-color: #1f1f1f;
4756 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4757 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
4758 background-color: #232323;
4761 .nav-bar a:visited {
4762 color: #0cc800;
4764 .nav-bar a:hover,
4765 .nav-bar a:focus {
4766 text-decoration: none;
4767 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
4770 #bottom-bar.decorative::before,
4771 #bottom-bar.decorative::after {
4772 content: "GW";
4773 display: block;
4774 text-align: center;
4775 padding: 0.25em 0 1em 0;
4777 #bottom-bar.decorative::before {
4778 width: 100%;
4779 color: transparent;
4780 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4781 background-repeat: repeat-x;
4782 background-position: center 35%;
4783 margin: 0 30px;
4785 #bottom-bar.decorative::after {
4786 color: #232323;
4787 position: absolute;
4788 left: 0;
4789 right: 0;
4790 margin: auto;
4791 background-color: #000;
4792 padding-right: 4px;
4793 padding-left: 4px;
4795 @supports (width: -moz-fit-content) {
4796 #bottom-bar.decorative::after {
4797 width: -moz-fit-content;
4800 @supports (width: fit-content) {
4801 #bottom-bar.decorative::after {
4802 width: fit-content;
4806 /* Accesskey hints */
4808 .nav-inner::after {
4809 display: block;
4810 position: absolute;
4811 left: 5px;
4812 top: -2px;
4813 font-weight: 400;
4814 font-size: 0.7em;
4815 color: #232323;
4817 .inactive-bar .nav-inner::after {
4818 color: #2c2c2c;
4820 .nav-inner:hover::after {
4821 color: #393939;
4824 /* This makes the navbar items look like tabs: */
4826 .nav-inactive {
4827 box-shadow:
4828 0 -1px #232323 inset,
4829 1px 0 #000 inset;
4831 .nav-inactive:first-child {
4832 box-shadow: 0 -1px #232323 inset;
4834 .inactive-bar .nav-inactive {
4835 background-color: #1a1a1a;
4837 .active-bar .nav-inactive {
4838 background-color: #131313;
4840 .active-bar {
4841 position: relative;
4844 /* For Webkit: */
4845 .active-bar {
4846 box-shadow: 0 -3px 8px -2px #2c2c2c;
4848 .active-bar .nav-inactive {
4849 box-shadow:
4850 0 -4px 8px -4px #393939 inset,
4851 1px 0 #000 inset;
4853 .active-bar .nav-inactive:first-child {
4854 box-shadow:
4855 0 -4px 8px -4px #393939 inset;
4857 .active-bar .nav-current + .nav-inactive {
4858 box-shadow:
4859 5px -4px 8px -4px #393939 inset;
4861 .active-bar .nav-item-last-before-current {
4862 box-shadow:
4863 -5px -4px 8px -4px #393939 inset,
4864 1px 0 #000 inset;
4866 .active-bar .nav-item-last-before-current:first-child {
4867 box-shadow:
4868 -5px -4px 8px -4px #393939 inset;
4870 /* And for Gecko: */
4871 @-moz-document url-prefix() {
4872 .active-bar {
4873 box-shadow: 0 -3px 4px -2px #2c2c2c;
4876 .active-bar .nav-inactive {
4877 box-shadow:
4878 0 -4px 4px -4px #393939 inset,
4879 1px 0 #000 inset;
4881 .active-bar .nav-inactive:first-child {
4882 box-shadow:
4883 0 -4px 4px -4px #393939 inset;
4885 .active-bar .nav-current + .nav-inactive {
4886 box-shadow:
4887 5px -4px 4px -4px #393939 inset;
4889 .active-bar .nav-item-last-before-current {
4890 box-shadow:
4891 -5px -4px 4px -4px #393939 inset,
4892 1px 0 #000 inset;
4894 .active-bar .nav-item-last-before-current:first-child {
4895 box-shadow:
4896 -5px -4px 4px -4px #393939 inset;
4900 /* Search tab */
4902 #nav-item-search button {
4903 border: none;
4904 font-weight: inherit;
4907 /*==============*/
4908 /* PAGE TOOLBAR */
4909 /*==============*/
4911 .button.new-post:not(:hover),
4912 .button.new-private-message:not(:hover) {
4913 color: #9740cb;
4915 .button.logout-button {
4916 color: #0094be;
4919 /*==============*/
4920 /* SUBLEVEL NAV */
4921 /*==============*/
4923 .sublevel-nav .sublevel-item {
4924 background-color: #000;
4925 border-color: #1f1f1f;
4926 border-style: solid;
4927 border-width: 1px 1px 1px 0;
4928 color: #777;
4930 .sublevel-nav .sublevel-item:first-child {
4931 border-radius: 8px 0 0 8px;
4932 border-width: 1px;
4934 .sublevel-nav .sublevel-item:last-child {
4935 border-radius: 0 8px 8px 0;
4937 .sublevel-nav .sublevel-item:hover {
4938 background-color: #1f1f1f;
4939 color: #fff;
4940 text-decoration: none;
4941 text-shadow: none;
4943 .sublevel-nav .sublevel-item:active,
4944 .sublevel-nav .sublevel-item:disabled,
4945 .sublevel-nav span.sublevel-item {
4946 background-color: #1f1f1f;
4947 border-color: #1f1f1f;
4948 color: #fff;
4949 text-shadow:
4950 0 -1px 0 #000,
4951 0 0.5px 0.5px #fff;
4952 transform: none;
4955 /*=====================*/
4956 /* SORT ORDER SELECTOR */
4957 /*=====================*/
4959 .sublevel-nav.sort .sublevel-item {
4960 font-family: 'Whitney Smallcaps', 'a_Avante', Arial, sans-serif;
4962 .sublevel-nav.sort {
4963 border: 2px solid #393939;
4964 padding: 18px 0 0 0;
4965 border-radius: 8px;
4966 box-shadow: 0 18px #393939 inset;
4968 .sublevel-nav.sort::before {
4969 text-transform: uppercase;
4970 font-weight: 600;
4971 color: #aeaeae;
4972 text-shadow: 0.5px 0.5px 0 #000;
4974 .sublevel-nav.sort .sublevel-item {
4975 border: 1px solid #484848;
4976 padding: 5px 6px 5px 6px;
4977 text-transform: uppercase;
4980 /* Vertical */
4981 .sublevel-nav.sort .sublevel-item:first-child {
4982 border-radius: 6px 6px 0 0;
4984 .sublevel-nav.sort .sublevel-item:last-child {
4985 border-radius: 0 0 6px 6px;
4987 .sublevel-nav.sort .sublevel-item:nth-child(n+2) {
4988 border-width: 0 1px 1px 1px;
4991 /* Horizontal */
4992 .sublevel-nav.sort.horizontal .sublevel-item:first-child {
4993 border-radius: 6px 0 0 6px;
4995 .sublevel-nav.sort.horizontal .sublevel-item:last-child {
4996 border-radius: 0 6px 6px 0;
4998 .sublevel-nav.sort.horizontal .sublevel-item:nth-child(n+2) {
4999 border-width: 1px 1px 1px 0;
5002 .sublevel-nav.sort .sublevel-item:active {
5003 border-color: #484848;
5006 /*================*/
5007 /* WIDTH SELECTOR */
5008 /*================*/
5009 /* THEME SELECTOR */
5010 /*================*/
5012 #width-selector button,
5013 #theme-selector button {
5014 box-shadow:
5015 0 0 0 4px #232323 inset,
5016 0 0 0 5px #393939 inset;
5018 #width-selector button:hover,
5019 #width-selector button.selected,
5020 #theme-selector button:hover,
5021 #theme-selector button.selected {
5022 box-shadow:
5023 0 0 0 5px #393939 inset;
5026 #theme-selector button::before {
5027 color: #575756;
5028 background-color: #232323;
5030 #theme-selector button:hover::before,
5031 #theme-selector button.selected::before {
5032 color: #888;
5034 #width-selector button::after {
5035 color: #575756;
5038 /*======================*/
5039 /* THEME TWEAKER TOGGLE */
5040 /*======================*/
5042 #theme-tweaker-toggle button {
5043 color: #777;
5046 /*=================*/
5047 /* QUICKNAV WIDGET */
5048 /*=================*/
5050 #quick-nav-ui a {
5051 color: #575756;
5052 background-color: #1a1a1a;
5053 border-radius: 4px;
5054 text-decoration: none;
5056 #quick-nav-ui a[href='#bottom-bar'] {
5057 line-height: 1.8;
5059 #quick-nav-ui a:active {
5060 transform: scale(0.9);
5062 #quick-nav-ui a[href='#comments'].no-comments {
5063 opacity: 0.4;
5064 color: #393939;
5066 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5067 #quick-nav-ui a:hover {
5068 color: #fff;
5069 background-color: #131313;
5071 #quick-nav-ui a:focus:not(:hover) {
5072 transform: none;
5073 text-shadow: none;
5077 /*======================*/
5078 /* NEW COMMENT QUICKNAV */
5079 /*======================*/
5081 #new-comment-nav-ui .new-comments-count {
5082 font-weight: 600;
5083 color: #888;
5084 text-shadow: 0.5px 0.5px 0 #000;
5086 #new-comment-nav-ui .new-comments-count::after {
5087 font-weight: 600;
5088 color: #777;
5090 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5091 color: #393939;
5092 text-shadow: none;
5094 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5095 #new-comment-nav-ui .new-comments-count:hover {
5096 text-shadow:
5097 0 0 1px #000,
5098 0 0 3px #000,
5099 0 0 5px #000,
5100 0 0 8px #000,
5101 0.5px 0.5px 0 #000;
5103 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5104 color: #00a1e8;
5105 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5109 /*=================*/
5110 /* HNS DATE PICKER */
5111 /*=================*/
5113 #hns-date-picker span {
5114 color: #777;
5115 text-shadow: 0.5px 0.5px 0 #000;
5116 font-weight: 600;
5118 #hns-date-picker input {
5119 border: 1px solid #777;
5120 background-color: transparent;
5121 color: #888;
5122 box-shadow: 0 0 0 1px transparent;
5124 #hns-date-picker input:focus {
5125 color: #fff;
5128 /*======================*/
5129 /* ANTI-KIBITZER TOGGLE */
5130 /*======================*/
5132 #anti-kibitzer-toggle button::before,
5133 #anti-kibitzer-toggle button::after {
5134 background-color: #666;
5135 -webkit-background-clip: text;
5136 color: transparent;
5137 text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 1px;
5139 #anti-kibitzer-toggle button:hover::before,
5140 #anti-kibitzer-toggle button:hover::after {
5141 background-color: #aeaeae;
5144 /*======================*/
5145 /* TEXT SIZE ADJUSTMENT */
5146 /*======================*/
5148 #text-size-adjustment-ui button {
5149 color: #777;
5151 #text-size-adjustment-ui button.default {
5152 font-weight: 600;
5154 #text-size-adjustment-ui button:disabled:hover {
5155 text-shadow: none;
5157 #text-size-adjustment-ui::after {
5158 color: #575756;
5161 /*=============================*/
5162 /* COMMENTS VIEW MODE SELECTOR */
5163 /*=============================*/
5165 #comments-view-mode-selector a {
5166 color: #777;
5169 /*==========*/
5170 /* ARCHIVES */
5171 /*==========*/
5173 .archive-nav {
5174 border: 1px solid #484848;
5176 .archive-nav *[class^='archive-nav-item'] {
5177 border-style: solid;
5178 border-color: #1f1f1f;
5179 border-width: 1px 0 1px 1px;
5180 background-color: #131313;
5182 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5183 border-top-width: 0;
5184 border-bottom-width: 0;
5186 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5187 border-bottom-width: 1px;
5189 .archive-nav *[class^='archive-nav-item']:last-child {
5190 border-right-width: 1px;
5192 .archive-nav span[class^='archive-nav-item'] {
5193 font-weight: bold;
5194 background-color: #1f1f1f;
5197 .archive-nav a:link,
5198 .archive-nav a:visited {
5199 color: rgba(12, 200, 0, 0.7);
5201 .archive-nav a:hover {
5202 text-decoration: none;
5203 color: #00a9ed;
5204 background-color: #1d1d1d;
5205 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5207 .archive-nav a:active {
5208 transform: scale(0.9);
5210 .archive-nav a:focus:not(:hover) {
5211 transform: none;
5213 .archive-nav a.archive-nav-item-day:hover {
5214 background-color: #1f1f1f;
5217 /*==========*/
5218 /* LISTINGS */
5219 /*==========*/
5221 h1.listing {
5222 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif, 'Font Awesome';
5223 font-weight: 800;
5224 margin: 0.7em 20px 0 20px;
5225 max-width: calc(100% - 40px);
5226 top: 0.125em; ;
5229 h1.listing a[href^='/posts'] {
5230 color: #fff;
5232 h1.listing a[href^="http"] {
5233 color: #54d400;
5236 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5237 h1.listing a:hover,
5238 h1.listing a:focus {
5239 color: #777;
5240 background-color: rgba(0, 0, 0, 0.85);
5242 h1.listing:focus-within::before {
5243 color: #00c200;
5244 left: -0.625em;
5246 h1.listing a[href^="http"]:hover {
5247 color: #670;
5248 text-shadow:
5249 0.5px 0.5px 0 #000,
5250 -0.5px -0.5px 0 #000,
5251 0 0 2px #000,
5252 0 0 3px #54d400;
5256 h1.listing .edit-post-link {
5257 padding: 5px 3px 12px 0.5em;
5258 top: 0;
5259 right: 0;
5261 h1.listing .edit-post-link:hover {
5262 text-decoration: none;
5264 #content.user-page h1.listing .edit-post-link {
5265 background-color: #131313;
5268 /*===================*/
5269 /* LISTING POST-META */
5270 /*===================*/
5272 h1.listing + .post-meta {
5273 padding-right: 330px;
5275 h1.listing + .post-meta .karma-value,
5276 h1.listing + .post-meta .comment-count,
5277 h1.listing + .post-meta .lw2-link,
5278 h1.listing + .post-meta .read-time {
5279 border-radius: 4px;
5280 padding: 0 4px 0 2px;
5281 text-shadow: 0.5px 0.5px 0.5px #575756;
5282 margin: 0 0.25em 0 0.5em;
5283 position: absolute;
5284 line-height: 1.15;
5285 bottom: -6px;
5287 h1.listing + .post-meta .karma-value span,
5288 h1.listing + .post-meta .comment-count span,
5289 h1.listing + .post-meta .lw2-link span,
5290 h1.listing + .post-meta .read-time span {
5291 display: none;
5293 h1.listing + .post-meta .karma-value::before,
5294 h1.listing + .post-meta .comment-count::before,
5295 h1.listing + .post-meta .lw2-link::before,
5296 h1.listing + .post-meta .read-time::before {
5297 color: #000;
5298 font-family: Font Awesome;
5299 font-weight: 900;
5300 margin: 0 8px 0 0;
5301 box-shadow: 0 0 0 2px #1f1f1f;
5303 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
5304 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
5305 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
5306 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
5307 text-shadow: 0 0 3px #575756;
5310 h1.listing + .post-meta .karma {
5311 margin: 0;
5313 h1.listing + .post-meta .karma-value {
5314 box-shadow:
5315 22px 0 0 0 #1f1f1f inset,
5316 0 0 0 3px #1f1f1f;
5317 cursor: default;
5318 color: #00a9ed;
5319 right: 264px;
5321 h1.listing + .post-meta .karma-value::before {
5322 content: "\F139";
5323 text-shadow: none;
5324 font-size: 0.9375em;
5325 line-height: 1.3;
5328 h1.listing + .post-meta .comment-count::before {
5329 content: "\F086";
5331 h1.listing + .post-meta .comment-count {
5332 box-shadow:
5333 25px 0 0 0 #1f1f1f inset,
5334 0 0 0 3px #1f1f1f;
5335 color: #9e4acf;
5336 right: 176px;
5338 h1.listing + .post-meta .comment-count:hover {
5339 text-decoration: none;
5340 color: #000;
5341 background-color: #9e4acf;
5343 h1.listing + .post-meta .comment-count:hover::before {
5344 color: #9e4acf;
5346 h1.listing + .post-meta .comment-count.new-comments::before {
5347 color: #9e4acf;
5348 text-shadow: 0.5px 0.5px 0.5px #000;
5350 h1.listing + .post-meta .comment-count.new-comments:hover::before {
5351 text-shadow: 0.5px 0.5px 0.5px #575756;
5355 h1.listing + .post-meta .lw2-link {
5356 box-shadow:
5357 23px 0 0 0 #1f1f1f inset,
5358 0 0 0 3px #1f1f1f;
5359 right: 0;
5361 h1.listing + .post-meta .lw2-link::before {
5362 content: "\F0C1";
5364 h1.listing + .post-meta .lw2-link:hover {
5365 text-decoration: none;
5366 color: #000;
5367 background-color: #00c200;
5369 h1.listing + .post-meta .lw2-link:hover::before {
5370 color: #00c200;
5373 h1.listing + .post-meta .read-time {
5374 box-shadow:
5375 21px 0 0 0 #1f1f1f inset,
5376 0 0 0 3px #1f1f1f;
5377 right: 80px;
5379 h1.listing + .post-meta .read-time::before {
5380 content: "\F2F2";
5381 cursor: pointer;
5383 h1.listing + .post-meta .read-time::after {
5384 content: " min";
5386 h1.listing + .post-meta .read-time:hover::before {
5387 color: #777;
5390 h1.listing + .post-meta .word-count {
5391 box-shadow:
5392 22px 0 0 0 #1f1f1f inset,
5393 0 0 0 3px #1f1f1f;
5394 padding: 0 4px 0 4px;
5396 h1.listing + .post-meta .word-count::before {
5397 content: "\F15C";
5398 margin: 0 10px 0 0;
5400 h1.listing + .post-meta .read-time.word-count::after {
5401 content: none;
5404 h1.listing + .post-meta .link-post-domain {
5405 margin: 0 0 0 0.5em;
5408 h1.listing + .post-meta::after {
5409 content: "";
5410 display: block;
5411 height: 1px;
5412 width: 100%;
5413 background-color: #1f1f1f;
5414 position: absolute;
5415 bottom: -14px;
5418 /*============*/
5419 /* USER PAGES */
5420 /*============*/
5422 #content.user-page h1.page-main-heading {
5423 border-bottom: 1px solid #2c2c2c;
5426 #content.user-page h1.listing,
5427 #content.user-page h1.listing + .post-meta {
5428 background-color: #131313;
5429 border-style: solid;
5430 border-color: #2c2c2c;
5432 #content.user-page h1.listing {
5433 padding: 0 6px;
5434 padding-top: 0.25em;
5435 border-width: 1px 1px 0 1px;
5436 margin: 1rem 0 0 0;
5437 max-width: 100%;
5439 #content.own-user-page h1.listing,
5440 h1.listing.own-post-listing {
5441 padding-right: 36px;
5443 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5444 #content.user-page h1.listing a:hover,
5445 #content.user-page h1.listing a:focus {
5446 background-color: #131313;
5448 #content.user-page h1.listing:focus-within::before {
5449 left: -0.625em;
5452 #content.user-page h1.listing + .post-meta {
5453 padding: 0.125em 6px 1em 36px;
5454 border-width: 0 1px 1px 1px;
5455 margin: 0 0 1rem 0;
5457 #content.user-page h1.listing + .post-meta::after {
5458 display: none;
5460 @media only screen and (min-width: 521px) {
5461 #content.user-page h1.listing + .post-meta .karma-value,
5462 #content.user-page h1.listing + .post-meta .comment-count,
5463 #content.user-page h1.listing + .post-meta .lw2-link,
5464 #content.user-page h1.listing + .post-meta .read-time {
5465 bottom: 10px;
5468 #content.user-page h1.listing + .post-meta .post-section::before {
5469 left: -1px;
5472 #content.conversations-user-page h1.listing {
5473 padding: 4px 6px;
5474 font-size: 1.75rem;
5476 #content.conversations-user-page h1.listing + .post-meta {
5477 padding: 6px 4px;
5478 margin: 0 0 0.25rem 0;
5481 .user-stats .karma-total {
5482 font-weight: bold;
5485 /*===============*/
5486 /* CONVERSATIONS */
5487 /*===============*/
5489 /*============*/
5490 /* LOGIN PAGE */
5491 /*============*/
5493 .login-container form input[type='submit'] {
5494 font-weight: bold;
5495 background-color: #131313;
5496 border: 1px solid #2c2c2c;
5498 .login-container form input[type='submit']:hover,
5499 .login-container form input[type='submit']:focus {
5500 background-color: #1f1f1f;
5501 border: 1px solid #484848;
5504 /* “Create account” form */
5506 #signup-form {
5507 background-color: #0f0f0f;
5508 border: 1px solid #1f1f1f;
5510 #signup-form input[type='submit'] {
5511 background-color: #1a1a1a;
5512 border: 1px solid #2c2c2c;
5514 #signup-form input[type='submit']:hover {
5515 background-color: #232323;
5516 border: 1px solid #484848;
5519 /* Log in tip */
5521 .login-container .login-tip {
5522 border: 1px solid #131313;
5525 /* Message box */
5527 .error-box {
5528 border: 1px solid red;
5529 background-color: #004147;
5531 .success-box {
5532 border: 1px solid green;
5533 background-color: #320042;
5536 /*=====================*/
5537 /* PASSWORD RESET PAGE */
5538 /*=====================*/
5540 .reset-password-container input[type='submit'] {
5541 background-color: #1a1a1a;
5542 border: 1px solid #2c2c2c;
5543 font-weight: bold;
5546 /*===================*/
5547 /* TABLE OF CONTENTS */
5548 /*===================*/
5550 .contents {
5551 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5552 border: 1px solid #1f1f1f;
5553 background-color: #131313;
5555 .contents-head {
5556 font-weight: bold;
5558 .post-body .contents li::before {
5559 color: #575756;
5560 font-feature-settings: "tnum";
5562 .post-body .contents a,
5563 .post-body .contents a:hover {
5564 border: none;
5566 .post-body .contents a:hover {
5567 text-decoration: underline;
5570 /*==================*/
5571 /* POSTS & COMMENTS */
5572 /*==================*/
5574 .post-body,
5575 .comment-body {
5576 font-family: 'Charter', 'Georgia', serif;
5579 .post-body a,
5580 .comment-body a {
5581 border-bottom: 1px dotted #393939;
5583 .post-body a:hover,
5584 .comment-body a:hover {
5585 text-decoration: none;
5586 border-bottom: 1px solid currentColor;
5589 /*=======*/
5590 /* POSTS */
5591 /*=======*/
5593 .post > h1:first-child {
5594 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif;
5595 font-weight: 800;
5598 /*===========*/
5599 /* POST-META */
5600 /*===========*/
5602 .post-meta .post-section::before {
5603 color: #000;
5604 text-shadow:
5605 1px 1px 0 #9740cb,
5606 0 1px 0 #9740cb,
5607 0 0 5px #9740cb;
5609 a.post-section:hover {
5610 text-decoration: none;
5612 a.post-section:hover::before {
5613 color: #2e0062;
5615 .post-meta .post-section.alignment-forum::before {
5616 text-shadow:
5617 1px 1px 0 #658100,
5618 0 1px 0 #658100,
5619 0 0 5px #658100;
5621 a.post-section.alignment-forum:hover::before {
5622 color: #181a00;
5624 .post-meta .date {
5625 color: #666;
5627 .post-meta .author {
5628 color: #9740cb;
5630 .bottom-post-meta {
5631 border-top: 1px solid #1f1f1f;
5634 /*============*/
5635 /* LINK POSTS */
5636 /*============*/
5638 .post.link-post a.link-post-link {
5639 text-decoration: none;
5640 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5641 font-weight: 600;
5643 .post.link-post a.link-post-link:hover {
5644 color: #00a9ed;
5646 .post.link-post a.link-post-link:hover::before {
5647 color: #670;
5648 text-shadow:
5649 0.5px 0.5px 0 #000,
5650 -0.5px -0.5px 0 #000,
5651 0 0 2px #000,
5652 0 0 3px #54d400;
5654 .post.link-post a.link-post-link:focus {
5655 color: #777;
5656 border-bottom: 2px dotted #777;
5659 /*==========*/
5660 /* COMMENTS */
5661 /*==========*/
5663 #comments {
5664 border-top: 1px solid #fff;
5665 box-shadow: 0 3px 4px -4px #fff inset;
5667 @-moz-document url-prefix() {
5668 #comments {
5669 box-shadow: 0 3px 3px -4px #fff inset;
5672 #content > .comment-thread .comment-meta a.date:focus,
5673 #content > .comment-thread .comment-meta a.permalink:focus {
5674 color: #666;
5675 outline: 2px dotted #575756;
5676 position: relative;
5677 background-color: #000;
5679 #content > .comment-thread .comment-meta a.date:focus {
5680 padding: 0 4px;
5681 left: -4px;
5683 #content > .comment-thread .comment-meta a.date:focus + * {
5684 margin-left: -8px;
5686 #content > .comment-thread .comment-meta a.permalink:focus {
5687 padding: 0 5px;
5688 left: -5px;
5690 #content > .comment-thread .comment-meta a.permalink:focus + * {
5691 margin-left: -10px;
5693 .comment-item {
5694 border: 1px solid #2c2c2c;
5698 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5699 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5700 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5701 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5702 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5703 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5704 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5705 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5706 .comment-item .comment-item .comment-item .comment-item .comment-item,
5707 .comment-item .comment-item .comment-item,
5708 .comment-item {
5709 background-color: #131313;
5711 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5712 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5713 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5714 .comment-item .comment-item .comment-item .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,
5715 .comment-item .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,
5716 .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,
5717 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5718 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5719 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5720 .comment-item .comment-item .comment-item a.comment-parent-link::after,
5721 .comment-item a.comment-parent-link::after {
5722 box-shadow:
5723 0 28px 16px -16px #000 inset,
5724 4px 16px 0 12px #00001e inset,
5725 4px 4px 0 12px #00001e inset;
5728 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5729 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5730 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5731 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5732 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5733 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5734 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5735 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5736 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5737 .comment-item .comment-item .comment-item .comment-item,
5738 .comment-item .comment-item {
5739 background-color: #000;
5741 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5742 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5743 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5744 .comment-item .comment-item .comment-item .comment-item .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,
5745 .comment-item .comment-item .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,
5746 .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,
5747 .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,
5748 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5749 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5750 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5751 .comment-item .comment-item a.comment-parent-link::after {
5752 box-shadow:
5753 0 28px 16px -16px #131313 inset,
5754 4px 16px 0 12px #00001e inset,
5755 4px 4px 0 12px #00001e inset;
5758 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5759 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5760 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5761 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5762 .comment-item .comment-item .comment-item .comment-item .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,
5763 .comment-item .comment-item .comment-item .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,
5764 .comment-item .comment-item .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,
5765 .comment-item .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,
5766 .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,
5767 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5768 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5769 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5770 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5771 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5772 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5773 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5774 .comment-item .comment-item .comment-item .comment-item:target,
5775 .comment-item .comment-item .comment-item:target,
5776 .comment-item .comment-item:target,
5777 .comment-item:target {
5778 background-color: #00001e;
5780 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5781 box-shadow:
5782 0 28px 16px -16px #00001e inset,
5783 4px 16px 0 12px #00001e inset,
5784 4px 4px 0 12px #00001e inset !important;
5787 /*================================*/
5788 /* DEEP COMMENT THREAD COLLAPSING */
5789 /*================================*/
5791 .comment-item input[id^="expand"] + label::after {
5792 color: #0cc800;
5793 font-weight: 600;
5795 .comment-item input[id^="expand"] + label:hover::after {
5796 color: #00a9ed;
5798 .comment-item input[id^="expand"] + label:active::after,
5799 .comment-item input[id^="expand"] + label:focus::after{
5800 color: #00a9ed;
5802 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5803 border-width: 1px 0 0 0;
5806 /*==============*/
5807 /* COMMENT-META */
5808 /*==============*/
5810 .comment-meta .author {
5811 font-weight: bold;
5812 font-size: 1.25em;
5813 color: #fff;
5815 .comment-meta .author:hover {
5816 text-decoration: none;
5817 color: #9740cb;
5819 .comment-item .author:not(.redacted).original-poster::after {
5820 opacity: 0.5;
5823 .comment-item .karma.active-controls::after,
5824 .comment-item .karma .karma-value::after,
5825 .post .karma.active-controls::after,
5826 .post .karma .karma-value::after {
5827 background-color: #000;
5828 color: #575756;
5829 border-radius: 4px;
5830 box-shadow: 0 0 0 1px #1f1f1f inset;
5832 .comment-item .karma.active-controls::after,
5833 .post .karma.active-controls::after {
5834 padding: 6px 4px 4px 4px;
5835 bottom: -44px;
5837 .comment-item .karma .karma-value::after,
5838 .post .karma .karma-value::after {
5839 padding: 2px 8px 1px 8px;
5840 top: -25px;
5841 min-width: 56px;
5844 /*====================*/
5845 /* ANTI-KIBITZER MODE */
5846 /*====================*/
5848 .author.redacted,
5849 .inline-author.redacted {
5850 opacity: 0.6;
5851 font-weight: 400;
5854 .karma-value.redacted {
5855 opacity: 0.4;
5858 .link-post-domain.redacted {
5859 opacity: 0.4;
5862 /*===========================*/
5863 /* COMMENT THREAD NAVIGATION */
5864 /*===========================*/
5866 div.comment-parent-link {
5867 font-weight: 600;
5869 a.comment-parent-link {
5870 font-weight: 400;
5872 a.comment-parent-link::before {
5873 color: #393939;
5875 a.comment-parent-link:hover::before {
5876 background-color: #00001e;
5877 color: #575756;
5880 div.comment-child-links {
5881 font-weight: 600;
5883 div.comment-child-links a {
5884 font-weight: 400;
5886 .comment-child-link::before {
5887 color: #484848;
5890 .comment-item-highlight {
5891 box-shadow:
5892 0 0 2px #0047b5,
5893 0 0 3px #0047b5,
5894 0 0 5px #0047b5,
5895 0 0 7px #0047b5,
5896 0 0 10px #0047b5;
5897 border: 1px solid #0047b5;
5899 .comment-item-highlight-faint {
5900 box-shadow:
5901 0 0 2px #00193b,
5902 0 0 3px #00193b,
5903 0 0 5px #00193b,
5904 0 0 7px #00193b,
5905 0 0 10px #00193b;
5906 border: 1px solid #00193b;
5909 .comment-popup {
5910 background-color: #000;
5913 /*=======================*/
5914 /* COMMENTS COMPACT VIEW */
5915 /*=======================*/
5917 #comments-list-mode-selector button {
5918 box-shadow:
5919 0 0 0 4px #000 inset,
5920 0 0 0 5px #393939 inset;
5922 #comments-list-mode-selector button:hover,
5923 #comments-list-mode-selector button.selected {
5924 box-shadow:
5925 0 0 0 5px #393939 inset;
5927 #content.compact > .comment-thread .comment-item::after {
5928 color: #0cc800;
5929 background: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
5932 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5933 #content.compact > .comment-thread .comment-item:hover .comment,
5934 #content.compact > .comment-thread .comment-item.expanded .comment {
5935 background-color: #000;
5936 outline: 3px solid #54d400;
5938 #content.compact > .comment-thread .comment-item:hover .comment::before,
5939 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5940 background-color: #000;
5941 box-shadow:
5942 0 0 3px #000,
5943 0 0 5px #000,
5944 0 0 7px #000,
5945 0 0 10px #000,
5946 0 0 20px #000,
5947 0 0 30px #000,
5948 0 0 40px #000;
5951 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
5952 #content.compact > .comment-thread.expanded .comment-item .comment {
5953 background-color: #000;
5954 outline: 3px solid #54d400;
5956 #content.compact > .comment-thread.expanded .comment-item .comment::before {
5957 background-color: #000;
5958 box-shadow:
5959 0 0 3px #000,
5960 0 0 5px #000,
5961 0 0 7px #000,
5962 0 0 10px #000,
5963 0 0 20px #000,
5964 0 0 30px #000,
5965 0 0 40px #000;
5969 #content.user-page.compact > h1.listing {
5970 margin-top: 0.5rem;
5972 #content.user-page.compact > h1.listing + .post-meta {
5973 margin-bottom: 0.5rem;
5976 /*===========================*/
5977 /* HIGHLIGHTING NEW COMMENTS */
5978 /*===========================*/
5980 .new-comment::before {
5981 outline: 2px solid #7f3b92;
5982 box-shadow:
5983 0 0 6px -2px #7f3b92 inset,
5984 0 0 4px #7f3b92,
5985 0 0 6px #7f3b92;
5988 /*=================================*/
5989 /* COMMENT THREAD MINIMIZE BUTTONS */
5990 /*=================================*/
5992 .comment-minimize-button {
5993 color: #2c2c2c;
5995 .comment-minimize-button:hover {
5996 color: #484848;
5997 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
5999 .comment-minimize-button::after {
6000 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6001 color: #777;
6003 .comment-minimize-button.maximized::after {
6004 color: #2c2c2c;
6007 /*==============*/
6008 /* VOTE BUTTONS */
6009 /*==============*/
6011 .vote::before {
6012 content: "";
6013 border-radius: 50%;
6014 background-size: 17px 17px;
6015 width: 17px;
6016 height: 17px;
6017 display: inline-block;
6018 position: relative;
6019 top: 2.5px;
6021 .vote:active {
6022 transform: none;
6024 .vote:hover::before,
6025 .vote.selected::before,
6026 .vote.clicked-once::before,
6027 .vote.clicked-twice::before {
6028 filter: drop-shadow(0 0 1px #fff);
6031 .upvote::before,
6032 .waiting .upvote.big-vote.clicked-twice::before {
6033 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
6034 filter: grayscale(100%) brightness(128%);
6036 .downvote::before,
6037 .waiting .downvote.big-vote.clicked-twice::before {
6038 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
6039 filter: grayscale(100%) brightness(188%);
6042 .vote.clicked-once::before,
6043 .vote.big-vote.clicked-once::before {
6044 box-shadow:
6045 0 0 0 1px #000,
6046 0 0 0 4px #2f2f2f,
6047 0 0 0 5px transparent;
6050 .vote.big-vote.clicked-twice::before,
6051 .waiting .vote.big-vote:not(.clicked-twice)::before,
6052 .waiting .vote:not(.big-vote).clicked-once::before {
6053 box-shadow: none;
6056 .upvote.clicked-twice::before,
6057 .upvote.big-vote::before {
6058 box-shadow:
6059 0 0 0 1px #000,
6060 0 0 0 4px #6200ad,
6061 0 0 0 5px transparent;
6064 .downvote.clicked-twice::before,
6065 .downvote.big-vote::before {
6066 box-shadow:
6067 0 0 0 1px #000,
6068 0 0 0 4px #0084c2,
6069 0 0 0 5px transparent;
6072 /*===========================*/
6073 /* COMMENTING AND POSTING UI */
6074 /*===========================*/
6076 .posting-controls input[type='submit'] {
6077 background-color: #000;
6078 border: 1px solid #484848;
6079 font-weight: bold;
6081 .posting-controls input[type='submit']:hover,
6082 .posting-controls input[type='submit']:focus {
6083 background-color: #1f1f1f;
6084 border: 1px solid #575756;
6087 .comment-controls .cancel-comment-button {
6088 font-weight: 600;
6089 color: #00a9ed;
6090 text-shadow:
6091 0 0 1px #000,
6092 0 0 2px #000;
6094 .comment-controls .cancel-comment-button:hover {
6095 color: #0090e0;
6096 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6099 .new-comment-button {
6100 font-weight: 600;
6103 .comment-controls .edit-button {
6104 color: #7b05bb;
6106 .comment-controls .edit-button:hover {
6107 color: #0090e0;
6110 .button.edit-post-link:not(:hover) {
6111 color: #9740cb;
6114 .posting-controls textarea {
6115 font-family: 'Charter', 'Georgia', serif;
6116 color: #fff;
6117 background-color: #000;
6118 border-color: #484848;
6119 box-shadow:
6120 0 0 0 1px #131313 inset;
6122 .posting-controls textarea:focus {
6123 background-color: #00001e;
6124 border-color: #0cc800;
6125 box-shadow:
6126 0 0 0 1px #1d1f00 inset,
6127 0 0 0 1px #000,
6128 0 0 0 2px #0cc800;
6130 .posting-controls.edit-existing-post textarea:focus,
6131 .posting-controls form.edit-existing-comment textarea:focus {
6132 border-color: #9740cb;
6133 box-shadow:
6134 0 0 0 1px #3d0061 inset,
6135 0 0 0 1px #000,
6136 0 0 0 2px #9740cb;
6139 /*= Scroll bars =*/
6141 .posting-controls textarea::-webkit-scrollbar {
6142 width: 16px;
6143 background-color: transparent;
6145 .posting-controls textarea::-webkit-scrollbar-track {
6146 background-color: #131313;
6147 border-left: 1px solid #484848;
6148 border-top: 1px solid #131313;
6150 .posting-controls textarea:focus::-webkit-scrollbar-track {
6151 border-left: 1px solid #0cc800;
6152 border-top: 1px solid #1d1f00;
6154 .posting-controls textarea::-webkit-scrollbar-thumb {
6155 background-color: #484848;
6156 box-shadow: 0 0 0 1px #131313 inset;
6157 border-left: 1px solid #484848;
6159 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
6160 border-left: 1px solid #0cc800;
6161 background-color: #40a800;
6162 box-shadow:
6163 0 1px 0 0 #1d1f00 inset,
6164 0 0 0 1px #131313 inset;
6167 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
6168 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
6169 border-left: 1px solid #9740cb;
6171 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
6172 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
6173 border-left: 1px solid #9740cb;
6174 background-color: #8533c2;
6177 /* GUIEdit buttons */
6179 .guiedit-buttons-container {
6180 background-image: linear-gradient(to bottom, #000 0%, #1d1f00 50%, #252c00 75%, #344700 100%);
6183 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6184 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6185 color: #ce92ee;
6187 .guiedit-buttons-container button {
6188 font-family: Font Awesome, 'Charter', 'Georgia', serif;
6191 .guiedit::after {
6192 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6193 color: #777;
6194 text-shadow: none;
6197 /* Markdown hints */
6199 #markdown-hints-checkbox + label {
6200 color: #0cc800;
6202 #markdown-hints-checkbox + label:hover {
6203 color: #0098e4;
6204 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6206 .markdown-hints {
6207 border: 1px solid #00a9ed;
6208 background-color: #000340;
6211 /*================*/
6212 /* EDIT POST FORM */
6213 /*================*/
6215 #edit-post-form .link-post-checkbox + label {
6216 top: -1px;
6218 #edit-post-form .link-post-checkbox + label::before {
6219 border-radius: 3px;
6220 border: 1px solid #1f1f1f;
6221 color: #777;
6223 #edit-post-form .link-post-checkbox + label:hover,
6224 #edit-post-form .link-post-checkbox:focus + label {
6225 text-shadow:
6226 0 0 1px #000,
6227 0 0 2px #000,
6228 0 0 2.5px #484848;
6230 #edit-post-form .link-post-checkbox + label:hover::before,
6231 #edit-post-form .link-post-checkbox:focus + label::before {
6232 border-color: #484848;
6234 #edit-post-form .link-post-checkbox:checked + label::before {
6235 content: "\F00C";
6237 #edit-post-form input[type='radio'] + label {
6238 color: #777;
6239 border-color: #1f1f1f;
6240 padding: 4px 12px 5px 12px;
6242 #edit-post-form input[type='radio'][value='all'] + label {
6243 border-radius: 8px 0 0 8px;
6244 border-width: 1px;
6246 #edit-post-form input[type='radio'][value='drafts'] + label {
6247 border-radius: 0 8px 8px 0;
6249 #edit-post-form input[type='radio'] + label:hover,
6250 #edit-post-form input[type='radio']:focus + label {
6251 background-color: #1f1f1f;
6252 color: #fff;
6254 #edit-post-form input[type='radio']:focus + label {
6255 color: #fff;
6256 box-shadow:
6257 0 0 0 1px #484848;
6259 #edit-post-form input[type='radio']:checked + label {
6260 background-color: #1f1f1f;
6261 border-color: #1f1f1f;
6262 color: #fff;
6263 text-shadow:
6264 0 -1px 0 #000,
6265 0 0.5px 0.5px #fff;
6268 /*=======*/
6269 /* LINKS */
6270 /*=======*/
6273 text-decoration: none;
6274 color: #0cc800;
6276 a:visited {
6277 color: #76cc54;
6279 a:hover {
6280 text-decoration: underline;
6283 /*=========*/
6284 /* BUTTONS */
6285 /*=========*/
6287 button,
6288 input[type='submit'] {
6289 color: #0cc800;
6292 button:active,
6293 input[type='submit']:active {
6294 color: #0090e0;
6295 transform: scale(0.9);
6297 .button:visited {
6298 color: #0cc800;
6300 .button:active {
6301 transform: scale(0.9);
6303 @-moz-document url-prefix() {
6304 .button:active {
6305 transform: none;
6309 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6310 button:hover,
6311 input[type='submit']:hover,
6312 button:focus,
6313 input[type='submit']:focus {
6314 color: #0090e0;
6315 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6318 .button:hover {
6319 color: #0090e0;
6320 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6321 text-decoration: none;
6323 .button:focus:not(:hover) {
6324 transform: none;
6328 /*==========*/
6329 /* HEADINGS */
6330 /*==========*/
6332 .post-body h1,
6333 .post-body h2,
6334 .post-body h4,
6335 .comment-body h1,
6336 .comment-body h2,
6337 .comment-body h4 {
6338 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6340 .post-body h3,
6341 .comment-body h3,
6342 .post-body h5,
6343 .post-body h6,
6344 .comment-body h5,
6345 .comment-body h6 {
6346 font-weight: 600;
6347 font-family: 'Whitney Smallcaps', 'a_Avante', Arial, sans-serif;
6349 .post-body h6,
6350 .comment-body h6 {
6351 color: #9b9b9b;
6353 .post-body h1,
6354 .comment-body h1 {
6355 border-bottom: 1px solid #484848;
6358 /*========*/
6359 /* QUOTES */
6360 /*========*/
6362 blockquote {
6363 border-left: 5px solid #2c2c2c;
6366 /*========*/
6367 /* IMAGES */
6368 /*========*/
6370 #content img {
6371 border: 1px solid #2c2c2c;
6373 #content img[style^='float'] {
6374 border: 1px solid transparent;
6376 #content img[src$='.svg'] {
6377 border: none;
6379 #content figure img {
6380 border: 1px solid #fff;
6382 #content figure img[src$='.svg'] {
6383 border: none;
6386 /*========*/
6387 /* TABLES */
6388 /*========*/
6390 .post-body table,
6391 .comment-body table,
6392 .post-body table th,
6393 .post-body table td,
6394 .comment-body table th,
6395 .comment-body table td {
6396 border: 1px solid #2c2c2c;
6399 /*======*/
6400 /* MISC */
6401 /*======*/
6403 hr {
6404 border-bottom: 1px solid #575756;
6407 code {
6408 background-color: #0b0b00;
6409 border: 1px solid #1d1f00;
6410 border-radius: 4px;
6413 input[type='text'],
6414 input[type='search'],
6415 input[type='password'] {
6416 background-color: #000;
6417 border: 1px solid #1f1f1f;
6418 color: #fff;
6420 input[type='text']:focus,
6421 input[type='search']:focus,
6422 input[type='password']:focus {
6423 background-color: #00001e;
6424 border: 1px solid #393939;
6425 box-shadow: 0 0 1px #393939;
6428 select {
6429 color: #fff;
6432 @-moz-document url-prefix() {
6433 h1.listing s,
6434 .post > h1:first-of-type s {
6435 position: relative;
6436 text-decoration: none;
6438 h1.listing s::after,
6439 .post > h1:first-of-type s::after {
6440 position: absolute;
6441 border-bottom: 3px solid #fff;
6442 content: "";
6443 top: 0;
6444 left: 0;
6445 width: 100%;
6446 height: 50%;
6449 /*============*/
6450 /* ABOUT PAGE */
6451 /*============*/
6453 .about-page u {
6454 background-color: #191919;
6455 text-decoration: none;
6456 box-shadow:
6457 0 -1px 0 0 #fff inset,
6458 0 -3px 1px -2px #fff inset;
6459 padding: 0 1px;
6462 #content.about-page .accesskey-table {
6463 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6464 border-color: #1f1f1f;
6467 #content.about-page img {
6468 border: 1px solid #fff;
6471 /*========================*/
6472 /* QUALIFIED HYPERLINKING */
6473 /*========================*/
6475 #aux-about-link a {
6476 color: #777;
6478 #aux-about-link a:hover {
6479 opacity: 1.0;
6480 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6483 .qualified-linking label {
6484 color: #0cc800;
6486 .qualified-linking label:hover {
6487 text-shadow:
6488 0 0 1px #000,
6489 0 0 3px #000,
6490 0 0 5px #0cc800;
6493 .qualified-linking-toolbar {
6494 border: 1px solid #fff;
6495 background-color: #000;
6497 .qualified-linking-toolbar a {
6498 background-color: #131313;
6499 border: 1px solid #2c2c2c;
6500 border-radius: 4px;
6502 .qualified-linking-toolbar a:visited {
6503 color: #0cc800;
6505 .qualified-linking-toolbar a:hover {
6506 text-decoration: none;
6507 background-color: #1f1f1f;
6508 text-shadow: 0 0 1px #000, 0 0 3px #000, 0 0 5px #000;
6510 .qualified-linking label::after {
6511 background-color: #232323;
6512 opacity: 0.8;
6515 /*======*/
6516 /* MATH */
6517 /*======*/
6519 .mathjax-block-container::-webkit-scrollbar {
6520 height: 12px;
6521 background-color: #0b0b00;
6522 border-radius: 6px;
6523 border: 1px solid #1d1f00;
6525 .mathjax-block-container::-webkit-scrollbar-thumb {
6526 background-color: #1e1f13;
6527 border-radius: 6px;
6528 border: 1px solid #282c11;
6530 .mathjax-inline-container::-webkit-scrollbar {
6531 height: 8px;
6532 background-color: #0b0b00;
6533 border-radius: 4px;
6534 border: 1px solid #1d1f00;
6536 .mathjax-inline-container::-webkit-scrollbar-thumb {
6537 background-color: #1e1f13;
6538 border-radius: 4px;
6539 border: 1px solid #282c11;
6542 /*=================*/
6543 /* ALIGNMENT FORUM */
6544 /*=================*/
6546 #content.alignment-forum-index-page {
6547 background-color: #131100;
6549 #content.alignment-forum-index-page::before {
6550 font-family: "Concourse SmallCaps";
6551 font-weight: bold;
6552 background-color: #658100;
6553 -webkit-background-clip: text;
6554 color: transparent;
6555 text-shadow:
6556 rgba(0, 0, 0, 0.5) 0px 3px 3px;;
6558 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6559 #content.alignment-forum-index-page h1.listing a:hover,
6560 #content.alignment-forum-index-page h1.listing a:focus {
6561 background-color: rgba(19, 17, 0, 0.85);
6565 /*====================*/
6566 /* FOR NARROW SCREENS */
6567 /*====================*/
6569 @media only screen and (max-width: 1440px) {
6570 #hns-date-picker {
6571 background-color: #232323;
6572 opacity: 1.0;
6574 #hns-date-picker::before {
6575 border: 1px solid #575756;
6576 border-width: 1px 0 1px 1px;
6579 @media only screen and (max-width: 1160px) {
6580 #theme-selector:hover::after {
6581 background-color: #575756;
6584 @media only screen and (max-width: 1080px) {
6585 #text-size-adjustment-ui button {
6586 border: 1px solid #575756;
6587 padding: 0 0 0 1px;
6588 border-radius: 50%;
6589 box-shadow:
6590 0 0 6px #575756 inset,
6591 0 0 0 1px transparent;
6593 #theme-tweaker-toggle button {
6594 border: 1px solid #575756;
6595 box-shadow:
6596 0 0 10px #575756 inset,
6597 0 0 0 1px transparent;
6598 border-radius: 50%;
6599 transform: scale(0.8);
6602 @media only screen and (max-width: 1020px) {
6603 #quick-nav-ui a {
6604 box-shadow:
6605 0 0 0 1px #575756,
6606 0 0 0 2px transparent;
6608 #new-comment-nav-ui .new-comments-count::before {
6609 background-color: #232323;
6610 box-shadow:
6611 0 0 0 1px #575756,
6612 0 0 0 2px transparent;
6613 border-radius: 8px;
6615 #anti-kibitzer-toggle {
6616 box-shadow:
6617 0 0 0 1px #575756,
6618 0 0 0 2px transparent;
6619 background-color: #232323;
6620 border-radius: 6px;
6621 overflow: hidden;
6624 @media only screen and (max-width: 1000px) {
6625 #theme-selector {
6626 background-color: #232323;
6627 box-shadow:
6628 0 0 0 1px #575756,
6629 0 0 0 2px transparent;
6631 #theme-selector:hover::after {
6632 width: calc(6em - 3px);
6633 height: calc(100% - 5px);
6634 top: 3px;
6635 left: 100%;
6637 #text-size-adjustment-ui button {
6638 background-color: #1f1f1f;
6640 #text-size-adjustment-ui button:hover {
6641 background-color: #131313;
6643 #theme-tweaker-toggle button {
6644 background-color: #1f1f1f;
6648 /*========*/
6649 /* MOBILE */
6650 /*========*/
6652 /**************************************************************************/
6653 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6654 /**************************************************************************/
6655 #ui-elements-container > div[id$='-ui-toggle'] button {
6656 color: #666;
6657 text-shadow:
6658 0 0 1px #000,
6659 0 0 3px #000,
6660 0 0 5px #000,
6661 0 0 10px #000,
6662 0 0 20px #000,
6663 0 0 30px #000;
6666 #theme-selector {
6667 background-color: #232323;
6668 box-shadow:
6669 0 0 0 1px #575756,
6670 0 0 1px 3px #000,
6671 0 0 3px 3px #000,
6672 0 0 5px 3px #000,
6673 0 0 10px 3px #000,
6674 0 0 20px 3px #000;
6675 border-radius: 12px;
6677 #theme-selector::before,
6678 #theme-selector .theme-selector-close-button {
6679 color: #888;
6680 text-shadow: 0.5px 0.5px 0 #000;
6682 #theme-selector button {
6683 background-color: #191919;
6684 border-radius: 10px;
6686 #theme-selector button::after {
6687 color: #fff;
6688 padding-bottom: 2px;
6689 max-width: calc(100% - 3.25em);
6690 overflow: hidden;
6691 text-overflow: ellipsis;
6693 #theme-selector button.selected::after {
6694 text-shadow:
6695 0 -1px 0 #000,
6696 0 0.5px 0.5px #fff;
6699 #quick-nav-ui {
6700 background-color: #000;
6702 #quick-nav-ui,
6703 #new-comment-nav-ui,
6704 #hns-date-picker {
6705 box-shadow:
6706 0 0 1px 3px #000,
6707 0 0 3px 3px #000,
6708 0 0 5px 3px #000,
6709 0 0 10px 3px #000,
6710 0 0 20px 3px #000;
6712 #quick-nav-ui a::after,
6713 #new-comment-nav-ui::before {
6714 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6715 font-weight: 600;
6716 box-shadow:
6717 0 0 1px 0 #000,
6718 0 0 3px 0 #000,
6719 0 0 5px 0 #000;
6720 background-color: #000;
6721 border-radius: 4px;
6723 #quick-nav-ui,
6724 #new-comment-nav-ui {
6725 border-radius: 8px;
6727 #new-comment-nav-ui {
6728 background-color: #232323;
6729 border: 1px solid #575756;
6731 #new-comment-nav-ui::before {
6732 color: #777;
6734 #new-comment-nav-ui .new-comment-sequential-nav-button {
6735 box-shadow: 0 0 0 1px #575756;
6736 color: #777;
6738 #new-comment-nav-ui .new-comments-count {
6739 background-color: inherit;
6740 box-shadow: 0 -1px 0 0 #575756;
6742 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6743 color: #393939;
6745 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6746 border-radius: 7px 0 0 7px;
6748 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6749 border-radius: 0 7px 7px 0;
6751 #new-comment-nav-ui button::after {
6752 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6755 /*****************************************/
6756 @media only screen and (max-width: 900px) {
6757 /*****************************************/
6758 h1.listing {
6759 font-size: 1.75rem;
6760 line-height: 1;
6762 h1.listing a[href^='http'] {
6763 top: 2px;
6765 h1.listing + .post-meta .karma-value,
6766 h1.listing + .post-meta .comment-count,
6767 h1.listing + .post-meta .lw2-link,
6768 h1.listing + .post-meta .read-time {
6769 bottom: 0;
6771 h1.listing + .post-meta .post-section::before {
6772 position: unset;
6774 h1.listing + .post-meta .post-section {
6775 overflow: visible;
6776 order: 1;
6778 h1.listing + .post-meta .link-post-domain {
6779 order: 2;
6780 line-height: 1;
6781 flex-basis: 100%;
6783 h1.listing + .post-meta::after {
6784 bottom: -10px;
6786 #content.user-page h1.listing + .post-meta {
6787 margin-bottom: 1em;
6789 #content.user-page h1.link-post-listing::after {
6790 height: calc(100% + 2em);
6793 #nav-item-search button::before {
6794 color: #0cc800;
6797 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6798 background-color: #484848;
6801 .comment-item .comment-item {
6802 margin: 0.75em 2px 4px 6px;
6803 box-shadow:
6804 0 0 2px #2c2c2c,
6805 0 0 4px #2c2c2c,
6806 0 0 7px #2c2c2c;
6808 .comment-item .comment-item + .comment-item {
6809 margin: 1.5em 2px 4px 6px;
6811 .comment-body {
6812 font-size: 1.125rem;
6815 a.comment-parent-link:hover::before {
6816 background-color: unset;
6819 .sublevel-nav .sublevel-item,
6820 .sublevel-nav .sublevel-item:first-child,
6821 .sublevel-nav .sublevel-item:last-child {
6822 border-width: 1px;
6823 border-radius: 8px;
6825 /*******************************************/
6826 } @media only screen and (max-width: 720px) {
6827 /*******************************************/
6828 h1.listing {
6829 margin: 10px 6px 6px 6px;
6830 max-width: calc(100% - 12px);
6831 font-size: 1.5rem;
6832 padding-right: 35px;
6834 #content.conversations-user-page h1.listing {
6835 font-size: 1.5rem;
6837 h1.listing + .post-meta {
6838 margin: 0 6px 0 7px;
6839 clear: both;
6841 h1.listing + .post-meta {
6842 padding: .25em 254px 0 0;
6844 h1.listing + .post-meta::after {
6845 bottom: -2px;
6847 h1.listing + .post-meta > * {
6848 line-height: 1;
6849 display: block;
6851 #content.conversations-user-page h1.listing + .post-meta > * {
6852 line-height: 1.5;
6854 h1.listing + .post-meta .date,
6855 h1.listing + .post-meta .author {
6856 line-height: 1.3;
6858 h1.listing + .post-meta .karma-value,
6859 h1.listing + .post-meta .comment-count,
6860 h1.listing + .post-meta .lw2-link,
6861 h1.listing + .post-meta .read-time {
6862 top: unset;
6863 font-size: 1rem;
6864 box-shadow: none;
6866 h1.listing + .post-meta .karma-value::before,
6867 h1.listing + .post-meta .comment-count::before,
6868 h1.listing + .post-meta .lw2-link::before,
6869 h1.listing + .post-meta .read-time::before {
6870 box-shadow: none;
6872 h1.listing + .post-meta .karma-value,
6873 h1.listing + .post-meta .comment-count,
6874 h1.listing + .post-meta .read-time,
6875 h1.listing + .post-meta .lw2-link {
6876 bottom: 4px;
6879 h1.listing + .post-meta .karma-value {
6880 right: 192px;
6882 h1.listing + .post-meta .karma-value::before {
6883 text-shadow: 0.5px 0.5px 0.5px #575756;
6885 h1.listing + .post-meta .comment-count {
6886 right: 132px;
6888 h1.listing + .post-meta .read-time {
6889 right: 56px;
6891 h1.listing + .post-meta .lw2-link {
6892 opacity: 1;
6893 right: 0;
6895 h1.listing + .post-meta .link-post-domain {
6896 margin: 0;
6897 line-height: 1.3;
6898 overflow: hidden;
6899 text-overflow: ellipsis;
6901 h1.listing + .post-meta .post-section::before {
6902 position: absolute;
6903 left: unset;
6904 right: 0;
6905 bottom: 30px;
6906 top: unset;
6908 h1.listing a {
6909 display: inline;
6911 /*******************************************/
6912 } @media only screen and (max-width: 520px) {
6913 /*******************************************/
6914 h1.listing + .post-meta {
6915 padding: .25em 144px 0 0;
6916 flex-flow: column;
6918 #content.conversations-user-page h1.listing + .post-meta {
6919 flex-flow: row wrap;
6921 h1.listing + .post-meta .date {
6922 margin: 0.375em 0 0.25em 0;
6923 line-height: 1;
6925 #content.user-page h1.listing::after {
6926 height: calc(100% + 2.125em);
6928 #content.user-page h1.link-post-listing::after {
6929 height: calc(100% + 3.125em);
6931 #content.user-page h1.listing + .post-meta {
6932 padding: 0.25em 144px 0.5em 36px;
6934 #content.conversations-user-page h1.listing + .post-meta .date {
6935 margin: 0 0 0 1em;
6938 h1.listing + .post-meta .karma-value {
6939 bottom: 28px;
6940 right: 0;
6942 h1.listing + .post-meta .comment-count {
6943 bottom: 28px;
6944 right: 56px;
6946 h1.listing + .post-meta .read-time {
6947 right: 56px;
6948 bottom: 4px;
6950 h1.listing + .post-meta .lw2-link {
6951 right: 0;
6952 bottom: 4px;
6954 h1.listing + .post-meta .link-post-domain {
6955 max-width: 100%;
6957 h1.listing + .post-meta .post-section::before {
6958 right: 120px;
6961 #content.compact > .comment-thread .comment-item {
6962 max-height: 110px;
6965 .textarea-container:focus-within button:active {
6966 background-color: #2c2c2c;
6968 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6969 background-color: #131313;
6970 border: 1px solid #1f1f1f;
6971 border-radius: 6px;
6973 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6974 border-color: #00a9ed;
6975 box-shadow:
6976 0 0 0 1px #000,
6977 0 0 0 2px #00a9ed;
6978 color: #00a9ed;
6979 font-weight: 600;
6981 #content.conversation-page .textarea-container:focus-within::after {
6982 background-color: #000;
6984 .textarea-container:focus-within .guiedit-buttons-container {
6985 background-color: white;
6986 border-top: 1px solid #1d1f00;
6988 .textarea-container:focus-within button.guiedit {
6989 background-color: #131313;
6990 border: 1px solid #1f1f1f;
6991 border-radius: 6px;
6993 .markdown-hints::after {
6994 color: #9740cb;
6996 /*******************************************/
6997 } @media only screen and (max-width: 320px) {
6998 /*******************************************/
6999 h1.listing {
7000 font-size: 1.25rem;
7002 #content.user-page h1.listing::after {
7003 height: calc(100% + 2.625em);
7005 #content.user-page h1.link-post-listing::after {
7006 height: calc(100% + 3.75em);