Fixed bug with spoiler blocks
[lw2-viewer.git] / www / style-zero.mac.css
blobb5f61e4f1b54d68b1c4036fe13d8f04c3082f9ae
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: #bbb;
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: #f00;
255 text-shadow:
256 0 0 1px #777,
257 0.5px 0.5px 1px #777;
259 a#inbox-indicator:hover::before {
260 color: #fff;
261 text-shadow:
262 0 0 1px #000,
263 0 0 2px #000,
264 0 0 4px #000,
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 #f00,
271 0 0 2px #f00,
272 0 0 4px #f00,
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: #bbb;
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 #fff,
1849 0 0 0 2px #00e,
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 #00e,
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(0,0,0,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(0,0,0,0.6);
2866 color: #fff;
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: #000;
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(0,0,0,0.85);
2961 color: #fff;
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: #000;
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 #fff,
3014 0 0 5px #fff,
3015 0 0 8px #fff,
3016 0 0 13px #fff;
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: #ddd;
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(0,0,0,0.1);
3067 color: #777;
3070 #image-focus-overlay .slideshow-buttons button:active {
3071 transform: none;
3072 color: #888;
3074 #image-focus-overlay .slideshow-buttons button:disabled {
3075 text-shadow: none;
3076 background-color: transparent;
3077 color: #ddd;
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: #000;
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: #fff;
3264 background-color: #000;
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 #f00 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: #0b0;
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: #090;
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 /* THEME ZERO */
4725 /**************/
4727 body {
4728 color: #000;
4729 font-family: Trade Gothic, Helvetica, sans-serif;
4730 background-color: #eee;
4732 #content {
4733 line-height: 1.55;
4736 /*=========*/
4737 /* NAV BAR */
4738 /*=========*/
4740 .nav-bar {
4741 background-color: #e4e4e4;
4743 .nav-inner {
4744 font-size: 1.125em;
4745 padding: 11px 30px 13px 30px;
4747 #secondary-bar .nav-inner {
4748 font-size: 0.875em;
4750 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
4751 padding: 6px 0 3px 0;
4753 .active-bar {
4754 border-top: 2px solid #eee;
4757 .nav-bar a:visited {
4758 color: #00e;
4761 #bottom-bar.decorative {
4762 background-color: transparent;
4764 #bottom-bar.decorative::before,
4765 #bottom-bar.decorative::after {
4766 content: "GW";
4767 display: block;
4768 text-align: center;
4769 padding: 0.25em 0 1em 0;
4771 #bottom-bar.decorative::before {
4772 width: 100%;
4773 color: transparent;
4774 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4775 background-repeat: repeat-x;
4776 background-position: center 35%;
4777 margin: 0 30px;
4778 filter: contrast(90%);
4780 #bottom-bar.decorative::after {
4781 color: #d8d8d8;
4782 position: absolute;
4783 left: 0;
4784 right: 0;
4785 margin: auto;
4786 background-color: #eee;
4787 padding-right: 4px;
4788 padding-left: 4px;
4790 @supports (width: -moz-fit-content) {
4791 #bottom-bar.decorative::after {
4792 width: -moz-fit-content;
4795 @supports (width: fit-content) {
4796 #bottom-bar.decorative::after {
4797 width: fit-content;
4801 /* Accesskey hints */
4803 .nav-inner::after {
4804 display: block;
4805 position: absolute;
4806 left: 5px;
4807 top: -1px;
4808 font-weight: 400;
4809 font-size: 0.7em;
4810 color: #d8d8d8;
4812 .inactive-bar .nav-inner::after {
4813 color: #ccc;
4815 .nav-inner:hover::after {
4816 color: #bbb;
4819 /* "Tabs" */
4821 .nav-current {
4822 background-color: #eee;
4825 /* Search tab */
4827 #nav-item-search form::before {
4828 font-size: 1.125em;
4830 #nav-item-search button {
4831 border: none;
4832 font-weight: inherit;
4835 /*==============*/
4836 /* PAGE TOOLBAR */
4837 /*==============*/
4839 .new-post,
4840 .new-post:visited,
4841 .new-private-message,
4842 .new-private-message:visited {
4843 color: #090;
4845 .logout-button {
4846 color: #d33;
4849 /*==============*/
4850 /* SUBLEVEL NAV */
4851 /*==============*/
4853 .sublevel-nav .sublevel-item {
4854 border-color: #ccc;
4855 border-style: solid;
4856 border-width: 1px 1px 1px 0;
4857 color: #777;
4859 .sublevel-nav .sublevel-item:first-child {
4860 border-radius: 8px 0 0 8px;
4861 border-width: 1px;
4863 .sublevel-nav .sublevel-item:last-child {
4864 border-radius: 0 8px 8px 0;
4866 .sublevel-nav .sublevel-item:hover {
4867 background-color: #ddd;
4868 color: #000;
4869 text-decoration: none;
4870 text-shadow: none;
4872 .sublevel-nav .sublevel-item:active,
4873 .sublevel-nav .sublevel-item:disabled,
4874 .sublevel-nav span.sublevel-item {
4875 background-color: #ddd;
4876 border-color: #ccc;
4877 color: #000;
4878 text-shadow:
4879 0 -1px 0 #fff,
4880 0 0.5px 0.5px #000;
4881 transform: none;
4884 /*=====================*/
4885 /* SORT ORDER SELECTOR */
4886 /*=====================*/
4888 .sublevel-nav.sort {
4889 padding: 18px 0 0 0;
4890 border-radius: 8px;
4892 .sublevel-nav.sort::before {
4893 text-transform: uppercase;
4894 font-weight: 600;
4895 color: #444;
4896 text-shadow: 0.5px 0.5px 0 #fff;
4898 .sublevel-nav.sort .sublevel-item {
4899 padding: 6px 6px 5px 6px;
4900 text-transform: uppercase;
4901 border: 1px solid #ccc;
4904 /* Vertical */
4905 .sublevel-nav.sort .sublevel-item:first-child {
4906 border-radius: 6px 6px 0 0;
4908 .sublevel-nav.sort .sublevel-item:last-child {
4909 border-radius: 0 0 6px 6px;
4911 .sublevel-nav.sort .sublevel-item:nth-child(n+2) {
4912 border-width: 0 1px 1px 1px;
4915 /* Horizontal */
4916 .sublevel-nav.sort.horizontal .sublevel-item:first-child {
4917 border-radius: 6px 0 0 6px;
4919 .sublevel-nav.sort.horizontal .sublevel-item:last-child {
4920 border-radius: 0 6px 6px 0;
4922 .sublevel-nav.sort.horizontal .sublevel-item:nth-child(n+2) {
4923 border-width: 1px 1px 1px 0;
4926 .sublevel-nav.sort .sublevel-item:active {
4927 border-color: #ccc;
4930 /*================*/
4931 /* WIDTH SELECTOR */
4932 /*================*/
4934 #width-selector button {
4935 box-shadow:
4936 0 0 0 4px #eee inset,
4937 0 0 0 5px #aaa inset;
4939 #width-selector button:hover,
4940 #width-selector button.selected {
4941 box-shadow:
4942 0 0 0 1px #eee inset,
4943 0 0 0 2px #aaa inset,
4944 0 0 0 4px #eee inset,
4945 0 0 0 5px #aaa inset;
4947 #width-selector button::after {
4948 color: #999;
4951 /*================*/
4952 /* THEME SELECTOR */
4953 /*================*/
4955 #theme-selector button {
4956 box-shadow:
4957 0 0 0 4px #eee inset,
4958 0 0 0 5px #999 inset;
4960 #theme-selector button:hover,
4961 #theme-selector button.selected {
4962 box-shadow:
4963 0 0 0 1px #eee inset,
4964 0 0 0 2px #999 inset,
4965 0 0 0 4px #eee inset,
4966 0 0 0 5px #999 inset;
4969 #theme-selector button::before {
4970 color: #aaa;
4971 background-color: #eee;
4973 #theme-selector button:hover::before,
4974 #theme-selector button.selected::before {
4975 color: #666;
4978 /*======================*/
4979 /* THEME TWEAKER TOGGLE */
4980 /*======================*/
4982 #theme-tweaker-toggle button {
4983 color: #777;
4986 /*=================*/
4987 /* QUICKNAV WIDGET */
4988 /*=================*/
4990 #quick-nav-ui a {
4991 color: #00c;
4992 border-radius: 4px;
4993 box-shadow: 0 0 0 1px #ddf;
4994 text-decoration: none;
4996 #quick-nav-ui a[href='#bottom-bar'] {
4997 line-height: 1.8;
4999 #quick-nav-ui a:active {
5000 transform: scale(0.9);
5002 #quick-nav-ui a[href='#comments'].no-comments {
5003 opacity: 0.4;
5004 color: #bbb;
5006 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5007 #quick-nav-ui a:hover {
5008 color: #f00;
5009 box-shadow: 0 0 0 1px #faa;
5011 #quick-nav-ui a:focus:not(:hover) {
5012 transform: none;
5013 text-shadow: none;
5017 /*======================*/
5018 /* NEW COMMENT QUICKNAV */
5019 /*======================*/
5021 #new-comment-nav-ui .new-comments-count {
5022 font-weight: 600;
5023 color: #666;
5024 text-shadow: 0.5px 0.5px 0 #fff;
5026 #new-comment-nav-ui .new-comments-count::after {
5027 font-weight: 600;
5028 color: #777;
5030 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5031 color: #bbb;
5032 text-shadow: none;
5034 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5035 #new-comment-nav-ui .new-comments-count:hover {
5036 text-shadow:
5037 0 0 1px #fff,
5038 0 0 3px #fff,
5039 0 0 5px #fff,
5040 0 0 8px #fff,
5041 0.5px 0.5px 0 #fff;
5043 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5044 color: #d00;
5045 text-shadow:
5046 0 0 1px #fff,
5047 0 0 3px #fff,
5048 0 0 5px #fff;
5052 /*=================*/
5053 /* HNS DATE PICKER */
5054 /*=================*/
5056 #hns-date-picker span {
5057 color: #777;
5058 text-shadow: 0.5px 0.5px 0 #fff;
5059 font-weight: 600;
5061 #hns-date-picker input {
5062 border: 1px solid #777;
5063 background-color: transparent;
5064 color: #666;
5066 #hns-date-picker input:focus {
5067 color: #000;
5070 /*======================*/
5071 /* ANTI-KIBITZER TOGGLE */
5072 /*======================*/
5074 #anti-kibitzer-toggle button::before,
5075 #anti-kibitzer-toggle button::after {
5076 background-color: #aaa;
5077 -webkit-background-clip: text;
5078 color: transparent;
5079 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5081 #anti-kibitzer-toggle button:hover::before,
5082 #anti-kibitzer-toggle button:hover::after {
5083 background-color: #777;
5086 /*======================*/
5087 /* TEXT SIZE ADJUSTMENT */
5088 /*======================*/
5090 #text-size-adjustment-ui button {
5091 color: #777;
5093 #text-size-adjustment-ui button.default {
5094 font-weight: 600;
5096 #text-size-adjustment-ui button:disabled:hover {
5097 text-shadow: none;
5099 #text-size-adjustment-ui::after {
5100 color: #999;
5103 /*=============================*/
5104 /* COMMENTS VIEW MODE SELECTOR */
5105 /*=============================*/
5107 #comments-view-mode-selector a {
5108 color: #777;
5111 /*==========*/
5112 /* ARCHIVES */
5113 /*==========*/
5115 .archive-nav {
5116 border: 1px solid #aaa;
5118 .archive-nav *[class^='archive-nav-item'] {
5119 border-style: solid;
5120 border-color: #ddd;
5121 border-width: 1px 0 1px 1px;
5122 background-color: #eee;
5124 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5125 border-top-width: 0;
5126 border-bottom-width: 0;
5128 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5129 border-bottom-width: 1px;
5131 .archive-nav *[class^='archive-nav-item']:last-child {
5132 border-right-width: 1px;
5134 .archive-nav span[class^='archive-nav-item'] {
5135 font-weight: bold;
5136 background-color: #ddd;
5139 .archive-nav a:link,
5140 .archive-nav a:visited {
5141 color: rgba(0, 0, 238, 0.7);
5143 .archive-nav a:hover {
5144 text-decoration: none;
5145 color: #c00;
5146 background-color: #e0e0e0;
5147 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5149 .archive-nav a:active {
5150 transform: scale(0.9);
5152 .archive-nav a:focus:not(:hover) {
5153 transform: none;
5155 .archive-nav a.archive-nav-item-day:hover {
5156 background-color: #ddd;
5159 /*==========*/
5160 /* LISTINGS */
5161 /*==========*/
5163 h1.listing {
5164 margin: 0.7em 20px 0.1em 20px;
5165 max-width: calc(100% - 40px);
5166 font-family: Trade Gothic, Helvetica, sans-serif, 'Font Awesome';
5167 font-size: 1.375rem;
5168 line-height: 1.2;
5171 h1.listing a[href^="http"] {
5172 color: #00c;
5173 font-size: 0.75em;
5175 h1.listing a[href^="/posts"] {
5176 color: #000;
5177 font-weight: bold;
5180 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5181 h1.listing a:hover,
5182 h1.listing a:focus {
5183 color: #777;
5184 background-color: rgba(238,238,238,0.85);
5186 h1.listing:focus-within::before {
5187 color: #00f;
5188 left: -0.625em;
5189 top: 1px;
5191 h1.listing a[href^="http"]:hover {
5192 color: #4879ec;
5193 text-shadow:
5194 0.5px 0.5px 0 #fff,
5195 -0.5px -0.5px 0 #fff,
5196 0 0 2px #fff,
5197 0 0 3px #00c;
5201 h1.listing .edit-post-link {
5202 padding: 6px 3px 32px 0.5em;
5203 top: 0;
5204 right: 0;
5206 h1.listing .edit-post-link:hover {
5207 text-decoration: none;
5209 #content.user-page h1.listing .edit-post-link {
5210 background-color: #eee;
5213 /*===================*/
5214 /* LISTING POST-META */
5215 /*===================*/
5217 h1.listing + .post-meta {
5218 font-size: 0.875rem;
5221 h1.listing + .post-meta .karma-value {
5222 cursor: default;
5225 /*============*/
5226 /* USER PAGES */
5227 /*============*/
5229 #content.user-page h1.page-main-heading {
5230 border-bottom: 1px solid #ccc;
5233 #content.user-page h1.listing,
5234 #content.user-page h1.listing + .post-meta {
5235 border-style: solid;
5236 border-color: #ccc;
5238 #content.user-page h1.listing {
5239 padding: 0 6px;
5240 padding-top: 0.25em;
5241 border-width: 1px 1px 0 1px;
5242 margin: 1rem 0 0 0;
5243 max-width: 100%;
5245 #content.own-user-page h1.listing,
5246 h1.listing.own-post-listing {
5247 padding-right: 36px;
5249 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5250 #content.user-page h1.listing:focus-within::before {
5251 left: -0.625em;
5252 top: 6px;
5255 #content.user-page h1.listing + .post-meta {
5256 padding: 0.75em 6px 0.5em 32px;
5257 border-width: 0 1px 1px 1px;
5258 margin: 0 0 1rem 0;
5260 #content.user-page h1.listing + .post-meta .post-section::before {
5261 left: 0;
5264 #content.conversations-user-page h1.listing {
5265 padding: 6px 6px 4px 9px;
5266 font-size: 1.5rem;
5268 #content.conversations-user-page h1.listing + .post-meta {
5269 padding: 6px 4px;
5270 margin: 0;
5273 .user-stats .karma-total {
5274 font-weight: bold;
5277 /*===============*/
5278 /* CONVERSATIONS */
5279 /*===============*/
5281 /*============*/
5282 /* LOGIN PAGE */
5283 /*============*/
5285 .login-container form input[type='submit'] {
5286 font-weight: bold;
5287 background-color: #eee;
5288 border: 1px solid #ccc;
5290 .login-container form input[type='submit']:hover,
5291 .login-container form input[type='submit']:focus {
5292 background-color: #ddd;
5293 border: 1px solid #aaa;
5296 /* “Create account” form */
5298 #signup-form {
5299 background-color: #f3f3f3;
5300 border: 1px solid #ddd;
5302 #signup-form input[type='submit'] {
5303 background-color: #e4e4e4;
5304 border: 1px solid #ccc;
5306 #signup-form input[type='submit']:hover {
5307 background-color: #d8d8d8;
5308 border: 1px solid #aaa;
5311 /* Log in tip */
5313 .login-container .login-tip {
5314 border: 1px solid #eee;
5317 /* Message box */
5319 .error-box {
5320 border: 1px solid red;
5321 background-color: #faa;
5323 .success-box {
5324 border: 1px solid green;
5325 background-color: #afa;
5328 /*=====================*/
5329 /* PASSWORD RESET PAGE */
5330 /*=====================*/
5332 .reset-password-container input[type='submit'] {
5333 background-color: #e4e4e4;
5334 border: 1px solid #ccc;
5335 font-weight: bold;
5338 /*===================*/
5339 /* TABLE OF CONTENTS */
5340 /*===================*/
5342 .contents {
5343 font-family: Trade Gothic, Helvetica, sans-serif;
5344 background-color: #eee;
5346 .contents-head {
5347 font-weight: bold;
5349 .post-body .contents li::before {
5350 color: #999;
5351 font-feature-settings: "tnum";
5353 .post-body .contents a,
5354 .post-body .contents a:hover {
5355 border: none;
5357 .post-body .contents a:hover {
5358 text-decoration: underline;
5361 /*==================*/
5362 /* POSTS & COMMENTS */
5363 /*==================*/
5365 .post-body,
5366 .comment-body {
5367 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
5370 .post-body a,
5371 .comment-body a {
5372 border-bottom: 1px dotted #bbb;
5374 .post-body a:hover,
5375 .comment-body a:hover {
5376 text-decoration: none;
5377 border-bottom: 1px solid currentColor;
5380 /*=======*/
5381 /* POSTS */
5382 /*=======*/
5384 .post-body {
5385 font-size: 1.25rem;
5388 .post > h1:first-child {
5389 font-size: 2rem;
5390 line-height: 1.1;
5391 margin: 1em 0 0.25em 0;
5394 /*===========*/
5395 /* POST-META */
5396 /*===========*/
5398 .post-meta .post-section::before {
5399 color: #fff;
5400 text-shadow:
5401 1px 1px 0 #090,
5402 0 1px 0 #090,
5403 0 0 5px #090;
5405 a.post-section:hover {
5406 text-decoration: none;
5408 a.post-section:hover::before {
5409 color: #97ff7c;
5411 .post-meta .post-section.alignment-forum::before {
5412 text-shadow:
5413 1px 1px 0 #626dd7,
5414 0 1px 0 #626dd7,
5415 0 0 5px #626dd7;
5417 a.post-section.alignment-forum:hover::before {
5418 color: #e6e5ff;
5419 text-decoration: none;
5421 .post-meta .date {
5422 color: #888;
5424 .post-meta .author {
5425 color: #090;
5427 .bottom-post-meta {
5428 border-top: 1px solid #ddd;
5431 /*============*/
5432 /* LINK POSTS */
5433 /*============*/
5435 .post.link-post a.link-post-link {
5436 text-decoration: none;
5437 font-family: Trade Gothic, Helvetica, sans-serif;
5438 font-weight: 600;
5440 .post.link-post a.link-post-link:hover {
5441 color: #c00;
5443 .post.link-post a.link-post-link:hover::before {
5444 color: #4879ec;
5445 text-shadow:
5446 0.5px 0.5px 0 #fff,
5447 -0.5px -0.5px 0 #fff,
5448 0 0 2px #fff,
5449 0 0 3px #00c;
5451 .post.link-post a.link-post-link:focus {
5452 color: #999;
5453 border-bottom: 2px dotted #999;
5456 /*==========*/
5457 /* COMMENTS */
5458 /*==========*/
5460 #comments {
5461 border-top: 1px solid transparent;
5463 #content > .comment-thread .comment-meta a.date:focus,
5464 #content > .comment-thread .comment-meta a.permalink:focus {
5465 color: #888;
5466 outline: 2px dotted #999;
5467 position: relative;
5468 background-color: #fff;
5469 padding: 0 5px;
5470 left: -5px;
5472 #content > .comment-thread .comment-meta a.date:focus + *,
5473 #content > .comment-thread .comment-meta a.permalink:focus + * {
5474 margin-left: -10px;
5476 .comment-item {
5477 border: 1px solid #ccc;
5481 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5482 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5483 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5484 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5485 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5486 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5487 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5488 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5489 .comment-item .comment-item .comment-item .comment-item .comment-item,
5490 .comment-item .comment-item .comment-item,
5491 .comment-item {
5492 background-color: #eee;
5494 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5495 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5496 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5497 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5498 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5499 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5500 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5501 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5502 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5503 #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5504 .comment-item a.comment-parent-link::after {
5505 box-shadow:
5506 0 28px 16px -16px #fff inset,
5507 4px 16px 0 12px #ffd inset,
5508 4px 4px 0 12px #ffd inset;
5511 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5512 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5513 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5514 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5515 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5516 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5517 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5518 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5519 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5520 .comment-item .comment-item .comment-item .comment-item,
5521 .comment-item .comment-item {
5522 background-color: #fff;
5524 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5525 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5526 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5527 .comment-item .comment-item .comment-item .comment-item .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,
5528 .comment-item .comment-item .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,
5529 .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,
5530 .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,
5531 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5532 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5533 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5534 .comment-item .comment-item a.comment-parent-link::after {
5535 box-shadow:
5536 0 28px 16px -16px #eee inset,
5537 4px 16px 0 12px #ffd inset,
5538 4px 4px 0 12px #ffd inset;
5541 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5542 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5543 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5544 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5545 .comment-item .comment-item .comment-item .comment-item .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,
5546 .comment-item .comment-item .comment-item .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,
5547 .comment-item .comment-item .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,
5548 .comment-item .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,
5549 .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,
5550 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5551 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5552 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5553 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5554 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5555 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5556 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5557 .comment-item .comment-item .comment-item .comment-item:target,
5558 .comment-item .comment-item .comment-item:target,
5559 .comment-item .comment-item:target,
5560 .comment-item:target {
5561 background-color: #ffd;
5563 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5564 box-shadow:
5565 0 28px 16px -16px #ffd inset,
5566 4px 16px 0 12px #ffd inset,
5567 4px 4px 0 12px #ffd inset !important;
5570 .comment-body {
5571 font-size: 1.1875rem;
5574 /*================================*/
5575 /* DEEP COMMENT THREAD COLLAPSING */
5576 /*================================*/
5578 .comment-item input[id^="expand"] + label::after {
5579 color: #00e;
5580 font-weight: 600;
5582 .comment-item input[id^="expand"] + label:hover::after {
5583 color: #c00;
5585 .comment-item input[id^="expand"] + label:active::after,
5586 .comment-item input[id^="expand"] + label:focus::after{
5587 color: #c00;
5589 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5590 border-width: 1px 0 0 0;
5593 /*==============*/
5594 /* COMMENT-META */
5595 /*==============*/
5597 .comment-meta .author {
5598 font-size: 1.125em;
5599 color: #090;
5601 .comment-item .author:not(.redacted).original-poster::after {
5602 opacity: 0.6;
5603 filter: brightness(60%);
5606 .comment-item .karma.active-controls::after,
5607 .comment-item .karma .karma-value::after,
5608 .post .karma.active-controls::after,
5609 .post .karma .karma-value::after {
5610 background-color: #eee;
5611 color: #777;
5612 border-radius: 4px;
5613 box-shadow: 0 0 0 1px #bbb inset;
5615 .comment-item .karma.active-controls::after,
5616 .post .karma.active-controls::after {
5617 padding: 6px;
5618 bottom: -46px;
5620 .comment-item .karma .karma-value::after,
5621 .post .karma .karma-value::after {
5622 padding: 2px 8px;
5623 top: -26px;
5624 min-width: 60px;
5627 /*====================*/
5628 /* ANTI-KIBITZER MODE */
5629 /*====================*/
5631 .author.redacted,
5632 .inline-author.redacted {
5633 opacity: 0.6;
5634 font-weight: 400;
5637 .karma-value.redacted {
5638 opacity: 0.4;
5641 .link-post-domain.redacted {
5642 opacity: 0.4;
5645 /*===========================*/
5646 /* COMMENT THREAD NAVIGATION */
5647 /*===========================*/
5649 div.comment-parent-link {
5650 font-weight: bold;
5652 a.comment-parent-link {
5653 font-weight: normal;
5655 a.comment-parent-link::before {
5656 color: #bbb;
5658 a.comment-parent-link:hover::before {
5659 background-color: #ffd;
5660 color: #999;
5663 div.comment-child-links {
5664 font-weight: bold;
5666 div.comment-child-links a {
5667 font-weight: normal;
5669 .comment-child-link::before {
5670 color: #aaa;
5673 .comment-item-highlight {
5674 box-shadow:
5675 0 0 2px #e7b200,
5676 0 0 3px #e7b200,
5677 0 0 5px #e7b200,
5678 0 0 7px #e7b200,
5679 0 0 10px #e7b200;
5680 border: 1px solid #e7b200;
5682 .comment-item-highlight-faint {
5683 box-shadow:
5684 0 0 2px #f8e7b5,
5685 0 0 3px #f8e7b5,
5686 0 0 5px #f8e7b5,
5687 0 0 7px #f8e7b5,
5688 0 0 10px #f8e7b5;
5689 border: 1px solid #f8e7b5;
5692 .comment-popup {
5693 background-color: #fff;
5696 /*=======================*/
5697 /* COMMENTS COMPACT VIEW */
5698 /*=======================*/
5700 #comments-list-mode-selector button {
5701 box-shadow:
5702 0 0 0 4px #eee inset,
5703 0 0 0 5px #aaa inset;
5705 #comments-list-mode-selector button:hover,
5706 #comments-list-mode-selector button.selected {
5707 box-shadow:
5708 0 0 0 1px #eee inset,
5709 0 0 0 2px #aaa inset,
5710 0 0 0 4px #eee inset,
5711 0 0 0 5px #aaa inset;
5713 #content.compact > .comment-thread .comment-item {
5714 max-height: 58px;
5716 #content.compact > .comment-thread .comment-item::after {
5717 color: #00e;
5718 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
5721 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5722 #content.compact > .comment-thread .comment-item:hover .comment,
5723 #content.compact > .comment-thread .comment-item.expanded .comment {
5724 background-color: #fff;
5725 outline: 3px solid #00c;
5727 #content.compact > .comment-thread .comment-item:hover .comment::before,
5728 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5729 background-color: #fff;
5730 box-shadow:
5731 0 0 3px #fff,
5732 0 0 5px #fff,
5733 0 0 7px #fff,
5734 0 0 10px #fff,
5735 0 0 20px #fff,
5736 0 0 30px #fff,
5737 0 0 40px #fff;
5740 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
5741 #content.compact > .comment-thread.expanded .comment-item .comment {
5742 background-color: #fff;
5743 outline: 3px solid #00c;
5745 #content.compact > .comment-thread.expanded .comment-item .comment::before {
5746 background-color: #fff;
5747 box-shadow:
5748 0 0 3px #fff,
5749 0 0 5px #fff,
5750 0 0 7px #fff,
5751 0 0 10px #fff,
5752 0 0 20px #fff,
5753 0 0 30px #fff,
5754 0 0 40px #fff;
5758 #content.user-page.compact > h1.listing {
5759 margin-top: 0.5rem;
5761 #content.user-page.compact > h1.listing + .post-meta {
5762 margin-bottom: 0.5rem;
5765 /*===========================*/
5766 /* HIGHLIGHTING NEW COMMENTS */
5767 /*===========================*/
5769 .new-comment::before {
5770 display: none;
5772 .new-comment {
5773 border: 1px solid #e00;
5774 outline: 1px solid #e00;
5777 /*=================================*/
5778 /* COMMENT THREAD MINIMIZE BUTTONS */
5779 /*=================================*/
5781 .comment-minimize-button {
5782 color: #ccc;
5784 .comment-minimize-button:hover {
5785 color: #aaa;
5786 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5788 .comment-minimize-button::after {
5789 font-family: Trade Gothic, Helvetica, sans-serif;
5790 color: #777;
5792 .comment-minimize-button.maximized::after {
5793 color: #ccc;
5796 /*==============*/
5797 /* VOTE BUTTONS */
5798 /*==============*/
5800 .vote::before {
5801 content: "";
5802 border-radius: 50%;
5803 background-size: 17px 17px;
5804 width: 17px;
5805 height: 17px;
5806 display: inline-block;
5807 position: relative;
5808 top: 2.5px;
5810 .vote:active {
5811 transform: none;
5813 .vote:hover::before,
5814 .vote.selected::before,
5815 .vote.clicked-once::before,
5816 .vote.clicked-twice::before {
5817 filter: drop-shadow(0 0 1px #fff);
5820 .upvote::before,
5821 .waiting .upvote.big-vote.clicked-twice::before {
5822 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
5823 filter: grayscale(100%) brightness(128%);
5825 .downvote::before,
5826 .waiting .downvote.big-vote.clicked-twice::before {
5827 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
5828 filter: grayscale(100%) brightness(188%);
5831 .vote.clicked-once::before,
5832 .vote.big-vote.clicked-once::before {
5833 box-shadow:
5834 0 0 0 1px #fff,
5835 0 0 0 4px #c8c8c8,
5836 0 0 0 5px transparent;
5839 .vote.big-vote.clicked-twice::before,
5840 .waiting .vote.big-vote:not(.clicked-twice)::before,
5841 .waiting .vote:not(.big-vote).clicked-once::before {
5842 box-shadow: none;
5845 .upvote.clicked-twice::before,
5846 .upvote.big-vote::before {
5847 box-shadow:
5848 0 0 0 1px #fff,
5849 0 0 0 4px #00d800,
5850 0 0 0 5px transparent;
5853 .downvote.clicked-twice::before,
5854 .downvote.big-vote::before {
5855 box-shadow:
5856 0 0 0 1px #fff,
5857 0 0 0 4px #eb4c2a,
5858 0 0 0 5px transparent;
5861 /*===========================*/
5862 /* COMMENTING AND POSTING UI */
5863 /*===========================*/
5865 .posting-controls input[type='submit'] {
5866 background-color: #fff;
5867 border: 1px solid #aaa;
5868 font-weight: bold;
5870 .posting-controls input[type='submit']:hover,
5871 .posting-controls input[type='submit']:focus {
5872 background-color: #ddd;
5873 border: 1px solid #999;
5876 .comment-controls .cancel-comment-button {
5877 font-weight: 600;
5878 color: #c00;
5879 text-shadow:
5880 0 0 1px #fff,
5881 0 0 2px #fff;
5883 .comment-controls .cancel-comment-button:hover {
5884 color: #f00;
5885 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5888 .new-comment-button {
5889 font-weight: 600;
5892 .comment-controls .edit-button {
5893 color: #0b0;
5895 .comment-controls .edit-button:hover {
5896 color: #f00;
5899 .post-controls {
5900 margin: 0.25em -1em 0 0;
5902 h1.listing .edit-post-link,
5903 h1.listing .edit-post-link:visited,
5904 .post-controls .edit-post-link,
5905 .post-controls .edit-post-link:visited {
5906 color: #090;
5908 h1.listing .edit-post-link:hover,
5909 .post-controls .edit-post-link:hover {
5910 color: #d00;
5913 .posting-controls textarea {
5914 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
5915 color: #000;
5916 border-color: #00e;
5918 .posting-controls textarea:focus {
5919 border-width: 29px 1px 1px 1px;
5920 box-shadow: 0 0 0 1px #00e;
5922 .posting-controls.edit-existing-post textarea:focus,
5923 .posting-controls form.edit-existing-comment textarea:focus {
5924 border-color: #090;
5925 box-shadow: 0 0 0 1px #090;
5928 /*= Scroll bars =*/
5930 .posting-controls textarea::-webkit-scrollbar {
5931 width: 16px;
5932 background-color: transparent;
5934 .posting-controls textarea::-webkit-scrollbar-track {
5935 background-color: #fff;
5936 border-left: 1px solid #0040ff;
5937 border-top: 1px solid #eee;
5939 .posting-controls textarea:focus::-webkit-scrollbar-track {
5940 border-top: 1px solid #ddf;
5941 border-left: 2px solid #0040ff;
5943 .posting-controls textarea::-webkit-scrollbar-thumb {
5944 background-color: #acacff;
5945 box-shadow: 0 0 0 1px #eee inset;
5946 border-left: 1px solid #0040ff;
5948 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
5949 background-color: #0040ff;
5950 border-left: 2px solid #0040ff;
5951 box-shadow:
5952 0 1px 0 0 #ddf inset,
5953 0 0 0 1px #eee inset;
5956 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
5957 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
5958 border-left: 2px solid #090;
5960 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
5961 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
5962 border-left: 2px solid #090;
5963 background-color: #28a708;
5966 /* GUIEdit buttons */
5968 .guiedit-buttons-container {
5969 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
5972 .posting-controls.edit-existing-post .guiedit-buttons-container button,
5973 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
5974 color: #050;
5976 .guiedit-buttons-container button {
5977 font-family: Font Awesome, 'News Gothic BT', 'Helvetica', sans-serif;
5980 .guiedit::after {
5981 font-family: Trade Gothic, Helvetica, sans-serif;
5982 color: #777;
5983 text-shadow: none;
5986 /* Markdown hints */
5988 #markdown-hints-checkbox + label {
5989 color: #00e;
5991 #markdown-hints-checkbox + label:hover {
5992 color: #e00;
5993 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5995 .markdown-hints {
5996 border: 1px solid #c00;
5997 background-color: #ffa;
6000 /*================*/
6001 /* EDIT POST FORM */
6002 /*================*/
6004 #edit-post-form .link-post-checkbox + label {
6005 top: -2px;
6007 #edit-post-form .link-post-checkbox + label::before {
6008 border-radius: 3px;
6009 border: 1px solid #ddd;
6010 color: #777;
6012 #edit-post-form .link-post-checkbox + label:hover,
6013 #edit-post-form .link-post-checkbox:focus + label {
6014 text-shadow:
6015 0 0 1px #fff,
6016 0 0 2px #fff,
6017 0 0 2.5px #aaa;
6019 #edit-post-form .link-post-checkbox + label:hover::before,
6020 #edit-post-form .link-post-checkbox:focus + label::before {
6021 border-color: #aaa;
6023 #edit-post-form .link-post-checkbox:checked + label::before {
6024 content: "\F00C";
6026 #edit-post-form input[type='radio'] + label {
6027 color: #777;
6028 border-color: #ddd;
6030 #edit-post-form input[type='radio'][value='all'] + label {
6031 border-radius: 8px 0 0 8px;
6032 border-width: 1px;
6034 #edit-post-form input[type='radio'][value='drafts'] + label {
6035 border-radius: 0 8px 8px 0;
6037 #edit-post-form input[type='radio'] + label:hover,
6038 #edit-post-form input[type='radio']:focus + label {
6039 background-color: #ddd;
6040 color: #000;
6042 #edit-post-form input[type='radio']:focus + label {
6043 color: #000;
6044 box-shadow:
6045 0 0 0 1px #aaa;
6047 #edit-post-form input[type='radio']:checked + label {
6048 background-color: #ddd;
6049 border-color: #ddd;
6050 color: #000;
6051 text-shadow:
6052 0 -1px 0 #fff,
6053 0 0.5px 0.5px #000;
6056 /*=======*/
6057 /* LINKS */
6058 /*=======*/
6061 text-decoration: none;
6062 color: #00e;
6064 a:visited {
6065 color: #551a8b;
6067 a:hover {
6068 text-decoration: underline;
6071 /*=========*/
6072 /* BUTTONS */
6073 /*=========*/
6075 button,
6076 input[type='submit'] {
6077 color: #00e;
6080 button:hover,
6081 input[type='submit']:hover,
6082 button:focus,
6083 input[type='submit']:focus {
6084 color: #d00;
6085 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6087 button:active,
6088 input[type='submit']:active {
6089 color: #f00;
6090 transform: scale(0.9);
6092 .button:visited {
6093 color: #00e;
6095 .button:hover {
6096 color: #d00;
6097 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6098 text-decoration: none;
6100 .button:active {
6101 transform: scale(0.9);
6103 .button:focus:not(:hover) {
6104 transform: none;
6106 @-moz-document url-prefix() {
6107 .button:active {
6108 transform: none;
6112 /*==========*/
6113 /* HEADINGS */
6114 /*==========*/
6116 .post-body h1,
6117 .post-body h2,
6118 .post-body h3,
6119 .post-body h4,
6120 .post-body h5,
6121 .post-body h6,
6122 .comment-body h1,
6123 .comment-body h2,
6124 .comment-body h3,
6125 .comment-body h4,
6126 .comment-body h5,
6127 .comment-body h6 {
6128 font-family: Trade Gothic, Helvetica, sans-serif;
6130 .post-body h6,
6131 .comment-body h6 {
6132 color: #555;
6135 /*========*/
6136 /* QUOTES */
6137 /*========*/
6139 blockquote {
6140 border-left: 5px solid #ccc;
6143 /*========*/
6144 /* IMAGES */
6145 /*========*/
6147 .post-body img,
6148 .comment-body img {
6149 border: 1px solid #ccc;
6151 .post-body img[src$='.svg'],
6152 .comment-body img[src$='.svg'] {
6153 border: none;
6155 #content figure img {
6156 border: 1px solid #000;
6158 #content figure img[src$='.svg'] {
6159 border: none;
6162 /*========*/
6163 /* TABLES */
6164 /*========*/
6166 .post-body table,
6167 .comment-body table,
6168 .post-body table th,
6169 .post-body table td,
6170 .comment-body table th,
6171 .comment-body table td {
6172 border: 1px solid #ccc;
6175 /*======*/
6176 /* MISC */
6177 /*======*/
6179 hr {
6180 border-bottom: 1px solid #999;
6183 code {
6184 background-color: #f6f6ff;
6185 border: 1px solid #ddf;
6186 border-radius: 4px;
6189 input[type='text'],
6190 input[type='search'],
6191 input[type='password'] {
6192 border: 1px solid #999;
6193 color: #000;
6194 background-color: transparent;
6196 input[type='text']:focus,
6197 input[type='search']:focus,
6198 input[type='password']:focus {
6199 border: 1px solid #00e;
6200 outline: 1px solid #00e;
6203 select {
6204 color: #000;
6207 /*============*/
6208 /* ABOUT PAGE */
6209 /*============*/
6211 .about-page u {
6212 background-color: #e6e6e6;
6213 text-decoration: none;
6214 box-shadow:
6215 0 -1px 0 0 #000 inset,
6216 0 -3px 1px -2px #000 inset;
6217 padding: 0 1px;
6220 #content.about-page .accesskey-table {
6221 font-family: Trade Gothic, Helvetica, sans-serif;
6222 border-color: #ddd;
6225 #content.about-page img {
6226 border: 1px solid #000;
6229 /*========================*/
6230 /* QUALIFIED HYPERLINKING */
6231 /*========================*/
6233 #aux-about-link a {
6234 color: #777;
6236 #aux-about-link a:hover {
6237 opacity: 1.0;
6238 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6241 .qualified-linking label {
6242 color: #00e;
6244 .qualified-linking label:hover {
6245 text-shadow:
6246 0 0 1px #fff,
6247 0 0 3px #fff,
6248 0 0 5px #00e;
6251 .qualified-linking-toolbar {
6252 border: 1px solid #000;
6253 background-color: #fff;
6255 .qualified-linking-toolbar a {
6256 background-color: #eee;
6257 border: 1px solid #ccc;
6258 border-radius: 4px;
6260 .qualified-linking-toolbar a:visited {
6261 color: #00e;
6263 .qualified-linking-toolbar a:hover {
6264 text-decoration: none;
6265 background-color: #ddd;
6266 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6268 .qualified-linking label::after {
6269 background-color: #eee;
6270 opacity: 0.8;
6273 /*======*/
6274 /* MATH */
6275 /*======*/
6277 .mathjax-block-container::-webkit-scrollbar {
6278 height: 12px;
6279 background-color: #f6f6ff;
6280 border-radius: 6px;
6281 border: 1px solid #ddf;
6283 .mathjax-block-container::-webkit-scrollbar-thumb {
6284 background-color: #dde;
6285 border-radius: 6px;
6286 border: 1px solid #cce;
6288 .mathjax-inline-container::-webkit-scrollbar {
6289 height: 8px;
6290 background-color: #f6f6ff;
6291 border-radius: 4px;
6292 border: 1px solid #ddf;
6294 .mathjax-inline-container::-webkit-scrollbar-thumb {
6295 background-color: #dde;
6296 border-radius: 4px;
6297 border: 1px solid #cce;
6300 /*=================*/
6301 /* ALIGNMENT FORUM */
6302 /*=================*/
6304 #content.alignment-forum-index-page {
6305 background-color: #eaedff;
6307 #content.alignment-forum-index-page::before {
6308 font-family: "Concourse SmallCaps";
6309 font-weight: 600;
6310 background-color: #7f85b2;
6311 color: transparent;
6312 -webkit-background-clip: text;
6313 text-shadow:
6314 rgba(255,255,255,0.5) 0px 3px 3px;
6316 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6317 #content.alignment-forum-index-page h1.listing a:hover,
6318 #content.alignment-forum-index-page h1.listing a:focus {
6319 background-color: rgba(234,237,255,0.85);
6323 /*====================*/
6324 /* FOR NARROW SCREENS */
6325 /*====================*/
6327 @media only screen and (max-width: 1440px) {
6328 #hns-date-picker {
6329 background-color: #d8d8d8;
6330 opacity: 1.0;
6332 #hns-date-picker::before {
6333 border: 1px solid #999;
6334 border-width: 1px 0 1px 1px;
6337 @media only screen and (max-width: 1200px) {
6338 #hns-date-picker {
6339 background-color: #eee;
6341 #hns-date-picker::before {
6342 display: none;
6345 @media only screen and (max-width: 1080px) {
6346 #text-size-adjustment-ui button {
6347 border: 1px solid #999;
6348 padding: 0 0 0 1px;
6349 border-radius: 50%;
6350 box-shadow:
6351 0 0 6px #999 inset,
6352 0 0 0 1px transparent;
6354 #theme-tweaker-toggle button {
6355 border: 1px solid #999;
6356 box-shadow:
6357 0 0 10px #999 inset,
6358 0 0 0 1px transparent;
6359 border-radius: 50%;
6360 transform: scale(0.8);
6363 @media only screen and (max-width: 1020px) {
6364 #quick-nav-ui a {
6365 box-shadow:
6366 0 0 0 1px #999,
6367 0 0 0 2px transparent;
6369 #new-comment-nav-ui .new-comments-count::before {
6370 background-color: #d8d8d8;
6371 box-shadow:
6372 0 0 0 1px #999,
6373 0 0 0 2px transparent;
6374 border-radius: 8px;
6377 @media only screen and (max-width: 1000px) {
6378 #theme-selector {
6379 background-color: #eee;
6380 box-shadow:
6381 0 0 0 1px #999,
6382 0 0 0 2px transparent;
6384 #theme-selector:hover::after {
6385 background-color: #999;
6386 width: calc(6em - 3px);
6387 height: calc(100% - 5px);
6388 top: 3px;
6389 left: 100%;
6391 #text-size-adjustment-ui button {
6392 background-color: #ddd;
6394 #text-size-adjustment-ui button:hover {
6395 background-color: #eee;
6397 #theme-tweaker-toggle button {
6398 background-color: #ddd;
6402 /*========*/
6403 /* MOBILE */
6404 /*========*/
6406 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6407 #ui-elements-container > div[id$='-ui-toggle'] button,
6408 #theme-selector .theme-selector-close-button {
6409 color: #aaa;
6410 text-shadow:
6411 0 0 1px #fff,
6412 0 0 3px #fff,
6413 0 0 5px #fff,
6414 0 0 10px #fff,
6415 0 0 20px #fff,
6416 0 0 30px #fff;
6419 #theme-selector {
6420 background-color: #eee;
6421 box-shadow:
6422 0 0 0 1px #999,
6423 0 0 1px 3px #fff,
6424 0 0 3px 3px #fff,
6425 0 0 5px 3px #fff,
6426 0 0 10px 3px #fff,
6427 0 0 20px 3px #fff;
6428 border-radius: 12px;
6430 #theme-selector::before {
6431 color: #777;
6432 font-weight: normal;
6433 text-shadow: 0.5px 0.5px 0 #aaa;
6435 #theme-selector button {
6436 background-color: #e6e6e6;
6437 border-radius: 10px;
6439 #theme-selector button::after {
6440 color: #000;
6441 max-width: calc(100% - 3.5em);
6442 overflow: hidden;
6443 text-overflow: ellipsis;
6444 padding: 0 0 2px 0;
6446 #theme-selector button.selected::after {
6447 text-shadow:
6448 0 -1px 0 #fff,
6449 0 0.5px 0.5px #000;
6452 #quick-nav-ui {
6453 background-color: #fff;
6455 #quick-nav-ui,
6456 #new-comment-nav-ui,
6457 #hns-date-picker {
6458 box-shadow:
6459 0 0 1px 3px #fff,
6460 0 0 3px 3px #fff,
6461 0 0 5px 3px #fff,
6462 0 0 10px 3px #fff,
6463 0 0 20px 3px #fff;
6465 #quick-nav-ui a::after,
6466 #new-comment-nav-ui::before {
6467 font-family: Trade Gothic, Helvetica, sans-serif;
6468 font-weight: bold;
6469 box-shadow:
6470 0 0 1px 0 #fff,
6471 0 0 3px 0 #fff,
6472 0 0 5px 0 #fff;
6473 background-color: #fff;
6474 border-radius: 4px;
6476 #quick-nav-ui,
6477 #new-comment-nav-ui {
6478 border-radius: 8px;
6480 #new-comment-nav-ui {
6481 background-color: #fff;
6482 border: 1px solid #999;
6484 #new-comment-nav-ui::before {
6485 color: #777;
6486 font-weight: bold;
6488 #new-comment-nav-ui .new-comment-sequential-nav-button {
6489 box-shadow: 0 0 0 1px #999;
6490 color: #00c;
6492 #new-comment-nav-ui .new-comments-count {
6493 background-color: inherit;
6494 box-shadow: 0 -1px 0 0 #999;
6496 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6497 color: #bbb;
6499 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6500 border-radius: 7px 0 0 7px;
6502 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6503 border-radius: 0 7px 7px 0;
6505 #new-comment-nav-ui button::after {
6506 font-family: Trade Gothic, Helvetica, sans-serif;
6508 #hns-date-picker {
6509 background-color: #fff;
6510 border: 1px solid #999;
6513 /*****************************************/
6514 @media only screen and (max-width: 900px) {
6515 /*****************************************/
6516 h1.listing + .post-meta > * {
6517 line-height: 1.5;
6519 h1.listing + .post-meta .post-section {
6520 overflow: visible;
6521 order: 1;
6523 h1.listing + .post-meta .post-section::before {
6524 position: unset;
6527 #primary-bar .nav-inner {
6528 font-size: 1.375em;
6530 #secondary-bar .nav-inner {
6531 font-size: 1.125em;
6533 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
6534 padding: 6px 10px;
6537 .archive-nav *[class^='archive-nav-item-'] {
6538 border-width: 1px !important;
6540 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6541 background-color: #aaa;
6544 .comment-item .comment-item {
6545 margin: 0.75em 3px 3px 6px;
6547 .comment-item .comment-item + .comment-item {
6548 margin: 1.5em 3px 3px 6px;
6551 .sublevel-nav .sublevel-item,
6552 .sublevel-nav .sublevel-item:first-child,
6553 .sublevel-nav .sublevel-item:last-child {
6554 border-width: 1px;
6555 border-radius: 8px;
6557 /*******************************************/
6558 } @media only screen and (max-width: 720px) {
6559 /*******************************************/
6560 /*******************************************/
6561 } @media only screen and (max-width: 520px) {
6562 /*******************************************/
6563 h1.listing {
6564 font-size: 1.25rem;
6565 margin: 18px 6px 4px 6px;
6566 max-width: calc(100% - 12px);
6568 h1.listing + .post-meta {
6569 margin: 4px 6px;
6571 h1.listing a[href^='http'] {
6572 top: 2px;
6574 #content.conversations-user-page h1.listing::after {
6575 height: calc(100% + 2.25em);
6577 #content.conversations-user-page h1.listing + .post-meta .date {
6578 margin: 0 0 0 1em;
6581 .comment-body {
6582 font-size: 1.125rem;
6585 #content.compact > .comment-thread .comment-item {
6586 max-height: 105px;
6589 .textarea-container:focus-within textarea {
6590 background-color: #fff;
6592 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6593 padding: 5px 6px 6px 6px;
6594 font-weight: bold;
6596 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6597 box-shadow:
6598 0 0 0 2px #c00;
6599 color: #c00;
6601 .textarea-container:focus-within .guiedit-buttons-container {
6602 background-color: #fff;
6603 border-top: 1px solid #ddf;
6605 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
6606 box-shadow: none;
6608 #content.conversation-page .textarea-container:focus-within::after {
6609 background-color: #fff;
6611 .textarea-container:focus-within button.guiedit {
6612 border: 1px solid #00c;
6613 border-radius: 6px;
6615 .markdown-hints::after {
6616 color: #090;
6619 #edit-post-form label[for='section'] {
6620 width: 4.3em;
6622 #edit-post-form input[name='title'],
6623 #edit-post-form input[name='url'] {
6624 max-width: calc(100% - 6.75em);