Keyboard help, part XV
[lw2-viewer.git] / www / css / style-ultramodern.windows.css
blobaf87002244f032870f4f6b8b526d6aa8093a8397
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 body.no-scroll {
30 overflow-y: scroll;
31 position: fixed;
32 width: 100%;
35 /*=----------------------------=*/
36 /*= Immediate children of body =*/
37 /*=----------------------------=*/
39 body > * {
40 width: calc(100% - 300px);
41 min-width: 900px;
42 max-width: 900px;
44 #content {
45 margin: 0 auto;
46 padding: 0 30px;
47 position: relative;
48 overflow: visible;
49 display: grid;
50 grid-template-columns: repeat(3, 1fr);
51 grid-auto-flow: dense;
53 #content::before {
54 content: "";
55 display: block;
56 position: absolute;
57 top: 0;
58 left: 0;
59 width: 100%;
60 height: 100%;
61 z-index: -1;
62 pointer-events: none;
65 /*=---------=*/
66 /*= Content =*/
67 /*=---------=*/
69 #content > * {
70 grid-column: 1 / span 3;
73 /*=----------------------=*/
74 /*= Floating UI elements =*/
75 /*=----------------------=*/
77 #ui-elements-container {
78 position: fixed;
79 height: 100vh;
80 top: 0;
81 left: 0;
82 right: 0;
83 margin: auto;
84 z-index: 10000;
85 pointer-events: none;
87 #ui-elements-container > * {
88 pointer-events: auto;
91 /*=----------------=*/
92 /*= Images overlay =*/
93 /*=----------------=*/
94 /* (To exclude images in posts from theme tweaks) */
96 #images-overlay {
97 position: absolute;
98 z-index: 1;
99 left: 0;
100 right: 0;
101 margin: auto;
104 /***********/
105 /* NAV BAR */
106 /***********/
108 .nav-bar {
109 margin: 0 -30px;
111 .nav-bar {
112 display: flex;
115 /*=---------------=*/
116 /*= Nav bar items =*/
117 /*=---------------=*/
119 .nav-item {
120 flex: 1 1 auto;
122 .nav-item * {
123 text-overflow: ellipsis;
124 white-space: nowrap;
125 overflow: hidden;
127 .nav-inner {
128 padding: 12px 30px;
129 text-align: center;
130 display: block;
131 position: relative;
133 #secondary-bar .nav-inner {
134 padding: 4px 0;
137 /*=------------=*/
138 /*= Bottom bar =*/
139 /*=------------=*/
141 h1.listing ~ #bottom-bar {
142 margin-top: 1.25em;
144 #bottom-bar .nav-item {
145 flex: 1 1 0;
148 /*=-----------------=*/
149 /*= Accesskey hints =*/
150 /*=-----------------=*/
152 .nav-inner::after {
153 content: attr(accesskey);
154 display: none;
157 /*=---------------=*/
158 /*= Pagination UI =*/
159 /*=---------------=*/
161 #bottom-bar .nav-item a::before,
162 #top-nav-bar a::before {
163 font-family: Font Awesome;
164 font-weight: 900;
165 font-size: 0.8em;
166 position: relative;
167 bottom: 1px;
168 margin-right: 0.5em;
170 #bottom-bar #nav-item-first a::before,
171 #top-nav-bar a.nav-item-first::before {
172 content: "\F33e";
174 #bottom-bar #nav-item-top a::before {
175 content: "\F062";
177 #bottom-bar #nav-item-prev a::before,
178 #top-nav-bar a.nav-item-prev::before {
179 content: "\F060";
181 #bottom-bar #nav-item-next a::before,
182 #top-nav-bar a.nav-item-next::before {
183 content: "\F061";
185 #bottom-bar #nav-item-last a::before,
186 #top-nav-bar a.nav-item-last::before {
187 content: "\F340";
189 #bottom-bar #nav-item-next a::before {
190 margin-left: -2em;
191 margin-right: 0;
192 left: 3.8em;
194 #bottom-bar #nav-item-last a::before {
195 margin-left: -1.8em;
196 margin-right: 0;
197 left: 3.4em;
200 /*= Hover tooltips =*/
202 #top-nav-bar a {
203 position: relative;
205 #top-nav-bar a::after {
206 bottom: calc(100% - 3px);
207 content: attr(data-target-page);
209 #bottom-bar a:not([href='#top'])::after {
210 content: "Page " attr(data-target-page);
211 top: unset;
212 left: 0;
213 bottom: 4px;
215 #top-nav-bar a::after,
216 #bottom-bar a:not([href='#top'])::after {
217 display: block;
218 position: absolute;
219 font-size: 0.75rem;
220 width: 100%;
221 line-height: 1;
222 visibility: hidden;
224 #top-nav-bar a:hover::after,
225 #bottom-bar a:hover::after {
226 visibility: visible;
229 /*=-----------------------=*/
230 /*= Decorative bottom bar =*/
231 /*=-----------------------=*/
232 /* (On short pages with no pagination) */
234 #bottom-bar.decorative {
235 position: relative;
237 #bottom-bar.decorative .nav-item {
238 display: none;
241 /*=------------=*/
242 /*= Search tab =*/
243 /*=------------=*/
245 #nav-item-search {
246 flex: 4 1 auto;
248 #nav-item-search form::before {
249 content: "\F002";
250 font-family: Font Awesome;
251 font-weight: 900;
252 display: inline-block;
253 vertical-align: top;
254 height: 23px;
255 width: 23px;
257 #nav-item-search input {
258 height: 23px;
259 width: calc(95% - 80px);
260 padding: 1px 4px;
262 #nav-item-search button {
263 height: 21px;
266 /*=-----------=*/
267 /*= Login tab =*/
268 /*=-----------=*/
270 #nav-item-login {
271 position: relative;
272 padding-right: 0.5em;
275 /*******************/
276 /* INBOX INDICATOR */
277 /*******************/
279 #inbox-indicator {
280 position: absolute;
281 top: 1px;
282 right: 0;
283 height: 100%;
284 visibility: hidden;
286 #inbox-indicator::before {
287 content: "\F0E0";
288 font-family: "Font Awesome";
289 color: #bbb;
290 font-size: 1.1875rem;
291 position: absolute;
292 height: 100%;
293 right: 0;
294 top: 0;
295 padding: 0 0.45em;
296 visibility: visible;
297 font-weight: 900;
299 #inbox-indicator.new-messages::before {
300 color: #f00;
301 text-shadow:
302 0 0 1px #777,
303 0.5px 0.5px 1px #777;
305 a#inbox-indicator:hover::before {
306 color: #fff;
307 text-shadow:
308 0 0 1px #000,
309 0 0 2px #000,
310 0 0 4px #000,
311 0 0 1px #777,
312 0.5px 0.5px 1px #777;
314 a#inbox-indicator.new-messages:hover::before {
315 text-shadow:
316 0 0 1px #f00,
317 0 0 2px #f00,
318 0 0 4px #f00,
319 0 0 1px #777,
320 0.5px 0.5px 1px #777;
323 /****************/
324 /* PAGE TOOLBAR */
325 /****************/
327 .page-toolbar {
328 font-size: 0.9em;
329 line-height: 1.8;
330 text-align: right;
331 margin-right: -20px;
333 #content > .page-toolbar {
334 grid-column: 3;
336 #content.user-page > .page-toolbar {
337 grid-column: 2 / span 2;
340 /*=--------------------------=*/
341 /*= Page toolbar items (all) =*/
342 /*=--------------------------=*/
344 .page-toolbar > * {
345 display: inline-block;
346 margin-left: 1.5em;
348 .page-toolbar .button::before {
349 font-family: "Font Awesome";
350 font-size: 0.9em;
351 padding-right: 0.3em;
354 /*=-------------------------------=*/
355 /*= Page toolbar items (specific) =*/
356 /*=-------------------------------=*/
358 .new-post::before {
359 content: '\F067';
360 font-weight: 900;
362 .new-private-message::before {
363 content: '\F075';
364 font-weight: 400;
366 .logout-button::before {
367 content: '\F2F5';
368 font-weight: 900;
370 .rss::before {
371 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
372 display: inline-block;
373 width: 1em;
374 padding-right: 0.2em;
375 position: relative;
376 top: 1px;
379 /*********************/
380 /* TOP PAGINATION UI */
381 /*********************/
383 #top-nav-bar {
384 grid-column: 2;
385 margin: 0.25em 0 0 0;
386 padding: 0.75em 0 0 0;
387 text-align: center;
388 font-size: 1.25em;
389 display: flex;
390 justify-content: center;
392 #top-nav-bar a {
393 line-height: 1;
395 #top-nav-bar a.disabled {
396 pointer-events: none;
397 visibility: hidden;
399 #top-nav-bar .page-number {
400 position: relative;
401 display: inline-block;
402 width: 1.5em;
404 #top-nav-bar .page-number-label {
405 position: absolute;
406 font-size: 0.5em;
407 text-transform: uppercase;
408 width: 100%;
409 bottom: 90%;
410 left: 0;
412 #top-nav-bar a::before {
413 margin: 0.5em;
414 display: inline-block;
417 /****************/
418 /* SUBLEVEL NAV */
419 /****************/
421 .sublevel-nav {
422 text-align: center;
423 display: flex;
424 justify-content: center;
425 margin: 1em 0 0 0;
427 #content > .sublevel-nav:not(.sort) {
428 grid-row: 5;
429 grid-column: 2;
430 align-self: start;
432 .sublevel-nav .sublevel-item {
433 flex: 0 0 6em;
434 padding: 0.125em 0.5em;
435 font-size: 1.125rem;
437 .sublevel-nav .sublevel-item:active {
438 transform: none;
440 .sublevel-nav .sublevel-item.selected {
441 cursor: default;
444 /***********************/
445 /* SORT ORDER SELECTOR */
446 /***********************/
448 .sublevel-nav.sort {
449 position: relative;
450 margin-top: 8px;
451 font-size: 0.75em;
453 #content > .sublevel-nav.sort {
454 grid-column: 3;
455 grid-row: 5 / span 2;
456 justify-self: end;
457 align-self: start;
458 flex-flow: column;
460 #content.index-page > .sublevel-nav.sort {
461 grid-column: 1;
462 grid-row: 3 / span 1;
463 justify-self: start;
464 flex-flow: row;
467 .sublevel-nav.sort::before {
468 content: "Sort";
469 font-size: 0.75rem;
470 position: absolute;
471 top: 0;
472 left: 0;
473 width: 100%;
475 .sublevel-nav.sort .sublevel-item {
476 line-height: 1;
477 font-size: 0.875rem;
478 flex-basis: unset;
481 /*******************************/
482 /* COMMENTS SORT MODE SELECTOR */
483 /*******************************/
485 .comments > .sublevel-nav.sort {
486 margin: 1em auto 0 auto;
488 @supports (width: -moz-fit-content) {
489 .comments > .sublevel-nav.sort {
490 width: -moz-fit-content;
493 @supports (width: fit-content) {
494 .comments > .sublevel-nav.sort {
495 width: fit-content;
499 /******************/
500 /* WIDTH SELECTOR */
501 /******************/
503 #width-selector {
504 position: absolute;
505 top: 4px;
506 right: -78px;
508 #width-selector button {
509 width: 22px;
510 height: 22px;
511 padding: 6px;
512 margin: 1px;
513 overflow: hidden;
514 background-repeat: no-repeat;
515 background-size: 100%;
516 background-origin: content-box;
518 #width-selector button,
519 #width-selector button:active,
520 #width-selector button:focus {
521 text-shadow: none;
522 color: transparent;
524 #width-selector button:disabled {
525 cursor: auto;
527 #width-selector button.select-width-normal {
528 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
530 #width-selector button.select-width-wide {
531 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
533 #width-selector button.select-width-fluid {
534 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
537 /*=----------------=*/
538 /*= Hover tooltips =*/
539 /*=----------------=*/
541 #width-selector button::after {
542 content: attr(data-name);
543 position: absolute;
544 display: block;
545 left: 0;
546 width: 100%;
547 text-align: center;
548 top: 56px;
549 visibility: hidden;
551 #width-selector button.selected::after {
552 content: attr(data-name) " (selected)";
554 #width-selector button:hover:not(:active)::after {
555 visibility: visible;
558 head.content-width-normal + body > * {
559 max-width: 900px;
561 head.content-width-wide + body > * {
562 max-width: 1150px;
564 head.content-width-fluid + body > * {
565 max-width: calc(100% - 300px);
568 /******************/
569 /* THEME SELECTOR */
570 /******************/
572 #theme-selector {
573 position: absolute;
574 top: 3px;
575 left: -41px;
576 opacity: 0.4;
577 display: table;
578 max-width: 40px;
580 #theme-selector:hover {
581 opacity: 1.0;
584 /*=----------------------=*/
585 /*= Theme select buttons =*/
586 /*=----------------------=*/
588 .theme-selector button {
589 display: table-cell;
590 width: 26px;
591 height: 26px;
592 padding: 5px;
593 margin: 1px 7px 0 7px;
594 color: transparent;
595 background-size: 16px 16px;
596 background-origin: content-box;
598 .theme-selector button,
599 .theme-selector button:hover,
600 .theme-selector button:active,
601 .theme-selector button:focus {
602 text-shadow: none;
603 color: transparent;
605 .theme-selector button:disabled {
606 cursor: auto;
609 /*=----------------------------=*/
610 /*= Pre-rendered button images =*/
611 /*=----------------------------=*/
612 /* (Each is just a capital letter A through whatever) */
614 .theme-selector button:nth-of-type(1) {
615 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
617 .theme-selector button:nth-of-type(2) {
618 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
620 .theme-selector button:nth-of-type(3) {
621 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=');
623 .theme-selector button:nth-of-type(4) {
624 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
626 .theme-selector button:nth-of-type(5) {
627 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
629 .theme-selector button:nth-of-type(6) {
630 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
632 .theme-selector button:nth-of-type(7) {
633 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
635 .theme-selector button:nth-of-type(8) {
636 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
638 .theme-selector button:nth-of-type(9) {
639 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
642 /*=------------------------------=*/
643 /*= Theme select button tooltips =*/
644 /*=------------------------------=*/
645 /* (with the name & description of the theme that each button selects) */
647 #theme-selector button {
648 position: relative;
649 z-index: 1;
651 #theme-selector button::before {
652 content: attr(data-theme-name);
653 position: absolute;
654 top: 0;
655 right: 100%;
656 padding: 5px 6px 6px 6px;
657 line-height: 1;
658 width: 6em;
659 text-align: right;
660 z-index: 1;
661 visibility: hidden;
663 #theme-selector:hover button::before {
664 visibility: visible;
666 #theme-selector:hover ~ #theme-tweaker-toggle,
667 #theme-selector:active ~ #theme-tweaker-toggle {
668 z-index: -1;
671 /************************/
672 /* THEME TWEAKER TOGGLE */
673 /************************/
675 #theme-tweaker-toggle {
676 position: absolute;
677 top: 7px;
678 left: -75px;
680 #theme-tweaker-toggle button {
681 font-family: Font Awesome;
682 font-weight: 900;
683 font-size: 1.25rem;
684 opacity: 0.4;
685 z-index: 1;
687 #theme-tweaker-toggle button:hover {
688 opacity: 1.0;
691 /*******************/
692 /* QUICKNAV WIDGET */
693 /*******************/
695 #quick-nav-ui {
696 position: absolute;
697 right: -67px;
698 bottom: 20px;
700 #quick-nav-ui a {
701 font-family: 'Font Awesome';
702 font-weight: 900;
703 font-size: 1.5rem;
704 line-height: 1.7;
705 text-align: center;
706 display: block;
707 width: 40px;
708 height: 40px;
709 margin: 10px 0 0 0;
711 #quick-nav-ui a[href='#comments'].no-comments {
712 pointer-events: none;
714 #quick-nav-ui a {
715 visibility: hidden;
717 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
718 visibility: visible;
721 /************************/
722 /* NEW COMMENT QUICKNAV */
723 /************************/
725 #new-comment-nav-ui {
726 position: absolute;
727 right: -112px;
728 bottom: 42px;
730 #new-comment-nav-ui > * {
731 display: block;
732 position: relative;
734 #new-comment-nav-ui.no-comments {
735 display: none;
738 /*=--------------------=*/
739 /*= New comments count =*/
740 /*=--------------------=*/
742 #new-comment-nav-ui .new-comments-count {
743 width: 2em;
744 font-size: 1.25rem;
745 line-height: 1.1;
746 text-align: center;
747 left: 1px;
748 cursor: pointer;
750 #new-comment-nav-ui .new-comments-count::selection {
751 background-color: transparent;
753 #new-comment-nav-ui .new-comments-count::after {
754 content: "NEW";
755 display: block;
756 font-size: 0.625rem;
759 /*=-----------------------------------=*/
760 /*= Next/previous new comment buttons =*/
761 /*=-----------------------------------=*/
763 #new-comment-nav-ui .new-comment-sequential-nav-button {
764 font-size: 1.75rem;
765 font-family: 'Font Awesome';
766 font-weight: 900;
767 width: 1.5em;
768 z-index: 5001;
770 #new-comment-nav-ui .new-comment-previous {
771 top: 8px;
773 #new-comment-nav-ui .new-comment-next {
774 bottom: 6px;
776 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
777 cursor: auto;
778 pointer-events: none;
781 /*******************/
782 /* HNS DATE PICKER */
783 /*******************/
785 #hns-date-picker {
786 position: absolute;
787 bottom: 72px;
788 right: -253px;
789 opacity: 0.6;
791 #hns-date-picker:hover,
792 #hns-date-picker:focus-within {
793 opacity: 1.0;
795 #hns-date-picker.no-comments {
796 display: none;
799 /*=---------------=*/
800 /*= "Since" label =*/
801 /*=---------------=*/
803 #hns-date-picker span {
804 display: block;
805 font-size: 0.75rem;
806 text-transform: uppercase;
809 /*=--------------------=*/
810 /*= "Since" text field =*/
811 /*=--------------------=*/
813 #hns-date-picker input {
814 margin-top: 1px;
815 padding: 1px 3px;
816 width: 140px;
817 text-align: center;
818 box-shadow: 0 0 0 1px transparent;
821 /************************/
822 /* ANTI-KIBITZER TOGGLE */
823 /************************/
825 #anti-kibitzer-toggle {
826 position: absolute;
827 right: -67px;
828 bottom: 225px;
830 #anti-kibitzer-toggle button {
831 display: block;
832 width: 40px;
833 height: 54px;
834 padding: 0;
836 #anti-kibitzer-toggle button::before,
837 #anti-kibitzer-toggle button::after {
838 font-family: Font Awesome;
840 #anti-kibitzer-toggle button::before {
841 content: "\F06E";
842 display: block;
843 font-size: 1.75em;
844 font-weight: 400;
846 #anti-kibitzer-toggle button::after {
847 content: "\F007\2004\F164";
848 font-size: 0.875em;
849 font-weight: 900;
851 #anti-kibitzer-toggle.engaged button::before {
852 content: "\F070";
855 /************************/
856 /* TEXT SIZE ADJUSTMENT */
857 /************************/
859 #text-size-adjustment-ui {
860 position: absolute;
861 top: 30px;
862 right: -78px;
863 opacity: 0.4;
865 #text-size-adjustment-ui:hover {
866 opacity: 1.0;
869 /* This doesn't work in Mozilla browsers, so hide it */
870 @-moz-document url-prefix() {
871 #text-size-adjustment-ui {
872 display: none;
876 /*=---------=*/
877 /*= Buttons =*/
878 /*=---------=*/
880 #text-size-adjustment-ui button {
881 font-weight: 900;
882 font-family: Font Awesome;
883 font-size: 0.75rem;
884 width: 24px;
885 height: 24px;
886 padding: 0;
888 #text-size-adjustment-ui button.default {
889 font-family: inherit;
890 font-size: 1.125rem;
891 position: relative;
892 top: 1px;
894 #text-size-adjustment-ui button:disabled {
895 opacity: 0.5;
897 #text-size-adjustment-ui button:disabled:hover {
898 cursor: default;
901 /*=----------------=*/
902 /*= Hover tooltips =*/
903 /*=----------------=*/
905 #text-size-adjustment-ui::after {
906 content: "Adjust text size";
907 position: absolute;
908 display: block;
909 left: 0;
910 width: 100%;
911 text-align: center;
912 top: 32px;
913 visibility: hidden;
914 font-size: 0.9em;
916 #text-size-adjustment-ui:hover::after {
917 visibility: visible;
920 /*******************************/
921 /* COMMENTS VIEW MODE SELECTOR */
922 /*******************************/
924 #comments-view-mode-selector {
925 position: absolute;
926 bottom: 30px;
927 left: -40px;
928 opacity: 0.6;
930 #comments-view-mode-selector:hover {
931 opacity: 1.0;
934 /*=---------=*/
935 /*= Buttons =*/
936 /*=---------=*/
938 #comments-view-mode-selector a {
939 display: block;
940 font-family: Font Awesome;
941 font-size: 1.25rem;
942 text-align: center;
943 opacity: 0.4;
944 padding: 0.25em;
945 z-index: 1;
947 #comments-view-mode-selector a.threaded {
948 transform: scaleY(-1);
949 font-weight: 900;
951 #comments-view-mode-selector a.chrono {
952 font-weight: normal;
954 #comments-view-mode-selector a.selected,
955 #comments-view-mode-selector a:hover {
956 opacity: 1.0;
957 text-decoration: none;
959 #comments-view-mode-selector a.selected {
960 cursor: default;
963 /*****************/
964 /* KEYBOARD HELP */
965 /*****************/
967 #keyboard-help-overlay {
968 width: 100vw;
969 height: 100vh;
970 background-color: rgba(0,0,0,0.7);
971 position: fixed;
972 left: 0;
973 top: 0;
975 display: flex;
976 justify-content: center;
977 align-items: center;
978 padding: 20px 30px 30px 20px;
980 visibility: hidden;
983 #keyboard-help-overlay .keyboard-help-container {
984 background-color: #fff;
985 filter: drop-shadow(4px 4px 2px #000);
986 flex: 1 1 auto;
987 max-width: 1500px;
988 max-height: 100%;
989 overflow-y: auto;
991 #keyboard-help-overlay .keyboard-help-container h1 {
992 text-align: center;
993 border-bottom: 1px solid #ddd;
994 margin: 0;
995 padding: 10px 20px;
997 #keyboard-help-overlay .keyboard-help-container .note {
998 margin: 0.5em auto;
999 padding: 0 1em;
1000 width: fit-content;
1002 #keyboard-help-overlay .keyboard-help-container .keyboard-shortcuts-lists {
1003 column-width: 21em;
1004 column-count: auto;
1005 column-gap: 1.5em;
1006 border-top: 1px solid #ddd;
1007 padding: 15px 20px;
1009 #keyboard-help-overlay .keyboard-help-container ul {
1010 list-style-type: none;
1011 margin: 0;
1012 padding: 0;
1013 break-inside: avoid;
1015 #keyboard-help-overlay .keyboard-help-container ul:nth-of-type(n+2) {
1016 margin: 20px 0 0 0;
1018 #keyboard-help-overlay .keyboard-help-container ul li.section {
1019 font-weight: bold;
1020 font-size: 1.125rem;
1021 break-after: avoid;
1023 #keyboard-help-overlay .keyboard-help-container .keys {
1024 margin: 0 0.5em 0 0;
1025 min-width: 4.5em;
1026 display: inline-block;
1028 #keyboard-help-overlay .keyboard-help-container .keys code {
1029 margin: 0 6px 0 0;
1031 #keyboard-help-overlay .keyboard-help-container code {
1032 display: inline-block;
1033 background-color: #eee;
1034 border: 1px solid #ccc;
1035 padding: 3px 8px 4px 8px;
1036 margin: 0 1px;
1038 #keyboard-help-overlay .keyboard-help-container code.ak {
1039 background-color: #ffeb83;
1040 border-color: #d4a500;
1042 #keyboard-help-overlay .keyboard-help-container code.ak::before {
1043 content: "ak+";
1044 opacity: 0.3;
1047 #nav-item-about {
1048 position: relative;
1049 padding-right: 0.25em;
1051 #nav-item-about button.open-keyboard-help {
1052 font-family: Font Awesome;
1053 font-weight: 900;
1054 position: absolute;
1055 top: 0;
1056 right: 0;
1057 height: 100%;
1058 padding: 8px;
1061 #keyboard-help-overlay button.close-keyboard-help {
1062 position: absolute;
1063 right: 0;
1064 top: 0;
1065 font-family: Font Awesome;
1066 font-size: 1.5rem;
1067 padding: 10px 12px;
1070 /************/
1071 /* ARCHIVES */
1072 /************/
1074 .archive-nav {
1075 margin: 1.25em 0.5em 0 0.5em;
1076 padding: 0.25em;
1078 .archive-nav > * {
1079 display: flex;
1081 .archive-nav *[class^='archive-nav-item'] {
1082 line-height: 1;
1083 flex: 1 1 5%;
1084 text-align: center;
1085 padding: 6px 4px 4px 4px;
1086 max-width: 8%;
1088 @-moz-document url-prefix() {
1089 .archive-nav *[class^='archive-nav-item'] {
1090 padding: 5px 4px;
1093 .archive-nav-days .archive-nav-item-day {
1094 font-size: 0.8em;
1095 padding: 7px 0 5px 0;
1096 max-width: 4%;
1098 .archive-nav-days .archive-nav-item-day:first-child {
1099 flex-basis: 10%;
1102 /************/
1103 /* ARCHIVES */
1104 /************/
1106 .archive-nav {
1107 margin: 1.25em 0.5em 0 0.5em;
1108 padding: 0.25em;
1110 .archive-nav > * {
1111 display: flex;
1113 .archive-nav *[class^='archive-nav-item'] {
1114 line-height: 1;
1115 flex: 1 1 5%;
1116 text-align: center;
1117 padding: 6px 4px 4px 4px;
1118 max-width: 8%;
1120 @-moz-document url-prefix() {
1121 .archive-nav *[class^='archive-nav-item'] {
1122 padding: 5px 4px;
1125 .archive-nav-days .archive-nav-item-day {
1126 font-size: 0.8em;
1127 padding: 7px 0 5px 0;
1128 max-width: 4%;
1130 .archive-nav-days .archive-nav-item-day:first-child {
1131 flex-basis: 10%;
1134 /************/
1135 /* LISTINGS */
1136 /************/
1138 h1.listing {
1139 font-size: 1.875rem;
1140 line-height: 1.15;
1141 max-height: 1.15em;
1142 position: relative;
1145 h1.listing a {
1146 position: relative;
1149 /* Links to link-posts (not the link-post links themselves; that's below) */
1150 h1.listing a[href^='http'] + a {
1151 margin-left: 0.25em;
1153 /* Link-post links */
1154 h1.listing a[href^="http"] {
1155 font-size: 0.8em;
1156 display: inline;
1157 vertical-align: top;
1158 position: relative;
1159 top: 4px;
1162 /*=----------------------=*/
1163 /*= Listing hover reveal =*/
1164 /*=----------------------=*/
1165 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1167 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1168 h1.listing a {
1169 max-width: 100%;
1170 display: inline-block;
1171 white-space: nowrap;
1172 text-overflow: ellipsis;
1173 overflow: hidden;
1174 border-bottom: 1px solid transparent;
1175 -webkit-hyphens: auto;
1176 -moz-hyphens: auto;
1177 -ms-hyphens: auto;
1178 hyphens: auto;
1179 z-index: 1;
1180 padding: 0 0 1px 1px;
1182 h1.listing a[href^='http'] + a {
1183 max-width: calc(100% - 33px);
1185 h1.listing a:hover,
1186 h1.listing a:focus {
1187 text-decoration: dotted underline;
1188 white-space: initial;
1189 overflow: visible;
1190 z-index: 2;
1192 h1.listing:focus-within::before {
1193 content: "\F105";
1194 font-family: Font Awesome;
1195 display: block;
1196 position: absolute;
1197 left: -0.75em;
1200 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1201 mouse movements) */
1203 h1.listing a:not(.edit-post-link):hover::before {
1204 content: "";
1205 position: absolute;
1206 top: -10px;
1207 right: -10px;
1208 bottom: -10px;
1209 left: -10px;
1210 z-index: -1;
1212 h1.listing a[href^="http"]:hover {
1213 text-decoration: none;
1217 /*=-----------------------=*/
1218 /*= In-listing edit links =*/
1219 /*=-----------------------=*/
1221 h1.listing .edit-post-link {
1222 position: absolute;
1223 margin: 0;
1226 /*=---------------------------------=*/
1227 /*= Error messages on listing pages =*/
1228 /*=---------------------------------=*/
1230 .listing-message {
1231 width: 100%;
1232 text-align: center;
1233 padding: 1.25em 0 1.25em 0;
1234 font-size: 1.375em;
1237 /*********************/
1238 /* LISTING POST-META */
1239 /*********************/
1241 h1.listing + .post-meta {
1242 position: relative;
1243 justify-content: flex-start;
1244 margin: 0 20px 0 21px;
1247 h1.listing + .post-meta > * {
1248 margin: 0 1em 0 0;
1251 h1.listing + .post-meta .post-section {
1252 width: 0;
1253 margin: 0;
1254 overflow: hidden;
1256 h1.listing + .post-meta .post-section::before {
1257 position: absolute;
1258 left: -36px;
1261 h1.listing + .post-meta .read-time {
1262 cursor: default;
1265 /**************/
1266 /* USER PAGES */
1267 /**************/
1269 /*=------------=*/
1270 /*= Pagination =*/
1271 /*=------------=*/
1273 #content.user-page > #top-nav-bar {
1274 grid-row: 6;
1277 /*=---------------------=*/
1278 /*= User's display name =*/
1279 /*=---------------------=*/
1281 #content.user-page h1.page-main-heading {
1282 margin: 0.25em 0 0 0;
1283 line-height: 1.1;
1284 grid-row: 4;
1287 /*=--------------------=*/
1288 /*= User's karma total =*/
1289 /*=--------------------=*/
1291 #content.user-page .user-stats {
1292 grid-column: 3;
1293 grid-row: 4;
1294 text-align: right;
1295 align-self: end;
1298 /*=----------------------=*/
1299 /*= Expanded vs. compact =*/
1300 /*=----------------------=*/
1302 #content.user-page #comments-list-mode-selector {
1303 grid-row: 5 / span 2;
1305 #content.user-page #comments-list-mode-selector button {
1306 display: block;
1309 /*=----------------------------------------------------=*/
1310 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1311 /*=----------------------------------------------------=*/
1313 #content.user-page .sublevel-nav {
1314 margin-bottom: 0.5em;
1317 /*=--------------=*/
1318 /*= User's posts =*/
1319 /*=--------------=*/
1321 #content.user-page h1.listing {
1322 margin: 0.5em 0 0 0;
1325 /*****************/
1326 /* CONVERSATIONS */
1327 /*****************/
1329 /*=----------------------=*/
1330 /*= List of participants =*/
1331 /*=----------------------=*/
1333 #content.conversation-page .conversation-participants {
1334 grid-column: 2 / span 2;
1335 grid-row: 3;
1336 text-align: right;
1337 margin: 0.5em 0 0 0;
1340 .conversation-participants ul,
1341 .conversation-participants li {
1342 list-style-type: none;
1343 display: inline-block;
1344 margin: 0;
1345 padding: 0;
1347 .conversation-participants li {
1348 margin-left: 0.375em;
1350 .conversation-participants li:not(:last-of-type)::after {
1351 content: ",";
1354 /*=-------------------------=*/
1355 /*= Posting controls (form) =*/
1356 /*=-------------------------=*/
1358 #content.conversation-page .posting-controls {
1359 padding: 0 0 1em 0;
1361 #content.conversation-page .post-meta-fields {
1362 overflow: auto;
1363 display: flex;
1364 flex-flow: row wrap;
1366 #content.conversation-page textarea {
1367 margin-top: 0.375em;
1369 #conversation-form {
1370 padding: 0 1em 3em 1em;
1372 #conversation-form input[type='text'],
1373 #conversation-form label {
1374 margin: 0.25em 0;
1376 #conversation-form label {
1377 width: 4em;
1378 text-align: right;
1379 padding: 2px 6px;
1380 border: 1px solid transparent;
1382 #conversation-form input[type='text'] {
1383 width: calc(100% - 4em);
1384 padding: 0.25em;
1386 #conversation-form input[type='submit'] {
1387 float: right;
1389 #content.conversation-page #markdown-hints-checkbox ~ label {
1390 white-space: nowrap;
1392 #content.conversation-page #markdown-hints {
1393 top: calc(100% + 2em);
1396 /*=--------------------=*/
1397 /*= Conversation title =*/
1398 /*=--------------------=*/
1400 #content.conversation-page h1.page-main-heading {
1401 text-align: center;
1402 margin: 0.5em 0;
1403 line-height: 1.15;
1406 /*=----------=*/
1407 /*= Messages =*/
1408 /*=----------=*/
1410 #content.conversation-page > ul.comment-thread:last-of-type {
1411 margin-bottom: 2em;
1414 /******************/
1415 /* SEARCH RESULTS */
1416 /******************/
1418 #content.search-results-page h1.listing {
1419 font-size: 1.625em;
1422 /**************/
1423 /* LOGIN PAGE */
1424 /**************/
1426 .login-container {
1427 margin: 2em 0;
1428 padding: 1em;
1429 display: flex;
1430 flex-flow: row wrap;
1433 .login-container form {
1434 flex-basis: 50%;
1435 display: grid;
1436 grid-row-gap: 0.5em;
1437 align-content: start;
1439 .login-container form label {
1440 text-align: right;
1441 padding: 0.25em 0.5em;
1442 white-space: nowrap;
1443 grid-column: 1;
1445 .login-container form input {
1446 grid-column: 2;
1447 padding: 0.25em;
1449 .login-container form input[type='submit'],
1450 .login-container form a {
1451 grid-column: 2;
1452 justify-self: center;
1454 .login-container form input[type='submit'] {
1455 width: 10em;
1456 padding: 0.35em;
1457 line-height: 1;
1458 margin: 0.5em 0 0 0;
1460 .login-container form h1 {
1461 text-align: center;
1462 margin: 0;
1463 grid-column: 2;
1466 /* “Log in” form */
1468 #login-form {
1469 grid-template-columns: 5.5em 1fr;
1470 padding: 0.5em 2em 0.5em 0;
1473 /* “Create account” form */
1475 #signup-form {
1476 font-size: 0.9em;
1477 grid-template-columns: 8.5em 1fr;
1478 padding: 0.5em 1em 1em 1em;
1480 #signup-form h1 {
1481 font-size: 1.7em;
1483 #signup-form input[type='submit'] {
1484 padding: 0.4em 0.5em 0.5em 0.5em;
1487 /* Log in tip */
1489 .login-container .login-tip {
1490 padding: 0.5em 0.5em 0.5em 3em;
1491 margin: 2em 4em 0 4em;
1492 text-indent: -2em;
1493 line-height: 1.4;
1495 .login-container .login-tip span {
1496 font-weight: bold;
1499 /* Message box */
1501 #content.login-page .error-box {
1502 margin: 1.5em 0.875em -1.5em 0.875em;
1504 .error-box, .success-box {
1505 padding: 0.25em;
1506 text-align: center;
1509 /***********************/
1510 /* PASSWORD RESET PAGE */
1511 /***********************/
1513 .reset-password-container {
1514 margin-bottom: 2em;
1516 .reset-password-container input[type='submit'] {
1517 padding: 0.2em 0.5em;
1518 width: unset;
1520 .reset-password-container input {
1521 margin-left: 0.5em;
1522 width: 12em;
1524 .reset-password-container label {
1525 display: inline-block;
1526 width: 9em;
1528 .reset-password-container form > div {
1529 margin: 0.2em;
1531 .reset-password-container .action-container {
1532 padding-left: 11em;
1533 padding-top: 0.2em;
1535 .reset-password-container .error-box {
1536 margin: unset;
1539 /*********************/
1540 /* TABLE OF CONTENTS */
1541 /*********************/
1543 .contents {
1544 float: right;
1545 min-width: 6em;
1546 max-width: 40%;
1547 margin: 1.25em 0 0.75em 1.25em;
1548 padding: 7px 14px 10px 10px;
1549 position: relative;
1550 z-index: 1;
1553 .contents-head {
1554 text-align: center;
1555 margin-bottom: 0.25em;
1558 .post-body .contents ul {
1559 list-style-type: none;
1560 margin: 0 0 0 0.5em;
1561 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1562 padding-left: 1em;
1563 font-size: 0.75em;
1565 .post-body .contents li {
1566 margin: 0.15em 0 0.3em 1em;
1567 text-align: left;
1568 text-indent: -1em;
1569 line-height: 1.2;
1570 position: relative;
1572 .post-body .contents li::before {
1573 position: absolute;
1574 width: 3em;
1575 display: block;
1576 text-align: right;
1577 left: -4.5em;
1579 .contents .toc-item-1 {
1580 counter-increment: toc-item-1;
1581 counter-reset: toc-item-2 toc-item-3;
1583 .contents .toc-item-1::before {
1584 content: counter(toc-item-1);
1586 .contents .toc-item-1 ~ .toc-item-2 {
1587 margin-left: 2.9em;
1588 font-size: 0.95em;
1590 .contents .toc-item-2 {
1591 counter-increment: toc-item-2;
1592 counter-reset: toc-item-3;
1594 .contents .toc-item-1 ~ .toc-item-2::before {
1595 content: counter(toc-item-1) "." counter(toc-item-2);
1597 .contents .toc-item-2::before {
1598 content: counter(toc-item-2);
1600 .contents .toc-item-1 + .toc-item-3 {
1601 counter-increment: toc-item-2 toc-item-3;
1603 .contents .toc-item-2 ~ .toc-item-3,
1604 .contents .toc-item-1 ~ .toc-item-3 {
1605 margin-left: 2.9em;
1606 font-size: 0.95em;
1608 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1609 margin-left: 5.7em;
1610 font-size: 0.9em;
1612 .contents .toc-item-3 {
1613 counter-increment: toc-item-3;
1615 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1616 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1618 .contents .toc-item-1 ~ .toc-item-3::before {
1619 content: counter(toc-item-1) "." counter(toc-item-3);
1621 .contents .toc-item-2 ~ .toc-item-3::before {
1622 content: counter(toc-item-2) "." counter(toc-item-3);
1624 .contents .toc-item-3::before {
1625 content: counter(toc-item-3);
1627 .contents .toc-item-4,
1628 .contents .toc-item-5,
1629 .contents .toc-item-6 {
1630 display: none;
1633 /********************/
1634 /* POSTS & COMMENTS */
1635 /********************/
1637 .post-meta > *,
1638 .comment-meta > * {
1639 display: inline-block;
1640 margin-right: 1em;
1641 font-size: 1.0625em;
1642 white-space: nowrap;
1644 .post-body,
1645 .comment-body {
1646 overflow-wrap: break-word;
1647 text-align: justify;
1649 .post-body p,
1650 .comment-body p {
1651 margin: 1em 0;
1653 .retracted .post-body,
1654 .retracted .comment-body {
1655 text-decoration: line-through;
1658 .post-body a,
1659 .comment-body a {
1660 word-break: break-all;
1661 hyphens: auto;
1664 /*************/
1665 /* POST-META */
1666 /*************/
1668 .post-meta {
1669 display: flex;
1670 flex-flow: row wrap;
1671 justify-content: center;
1673 .post-meta .lw2-link {
1674 opacity: 0.5;
1675 order: 1;
1677 .post-meta > *,
1678 .post-meta .post-section::before {
1679 margin: 0 0.5em;
1681 .post-meta .post-section {
1682 order: -1;
1683 margin: 0;
1684 visibility: hidden;
1686 .post-meta .post-section::before {
1687 visibility: visible;
1688 font-family: "Font Awesome";
1689 font-weight: 900;
1691 .post-section.frontpage::before {
1692 content: "\F015";
1694 .post-section.featured::before {
1695 content: "\F005";
1697 .post-section.meta::before {
1698 content: "\F077";
1700 .post-section.personal::before {
1701 content: "\F007";
1703 .post-section.draft::before {
1704 content: "\F15B";
1706 .post-section.alignment-forum::before {
1707 content: "AF";
1708 font-family: Concourse;
1711 /*= Karma controls hover tooltips =*/
1713 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1714 .post .karma,
1715 .comment-item .karma {
1716 position: relative;
1718 .post .karma.active-controls::after,
1719 .comment-item .karma.active-controls::after {
1720 content: "Double-click for strong vote";
1721 position: absolute;
1722 pointer-events: none;
1723 display: block;
1724 left: 6px;
1725 max-width: calc(100% - 12px);
1726 line-height: 1.15;
1727 white-space: normal;
1728 text-align: center;
1729 font-size: 0.875rem;
1730 opacity: 0;
1731 transition: opacity 0.2s ease;
1733 .post .karma.active-controls:hover::after,
1734 .comment-item .karma.active-controls:hover::after {
1735 opacity: 1.0;
1738 .post .karma .karma-value::after,
1739 .comment-item .karma .karma-value::after {
1740 content: attr(title);
1741 position: absolute;
1742 pointer-events: none;
1743 display: block;
1744 left: 50%;
1745 transform: translateX(-50%);
1746 white-space: nowrap;
1747 text-align: center;
1748 font-size: 0.875rem;
1749 color: #bbb;
1750 opacity: 0;
1751 transition: opacity 0.2s ease;
1753 .post .karma .karma-value:hover::after,
1754 .comment-item .karma .karma-value:hover::after {
1755 opacity: 1.0;
1757 .comment-item .karma .karma-value:hover::after {
1758 z-index: 5001;
1762 /*********/
1763 /* POSTS */
1764 /*********/
1766 .post {
1767 max-width: 100%;
1770 .post-body {
1771 min-height: 8em;
1772 padding: 0 30px;
1773 line-height: 1.5;
1774 font-size: 1.3rem;
1775 overflow: auto;
1776 margin: 0.5em 0 0 0;
1778 h1.post-title {
1779 margin: 1.1em 0 0.35em 0;
1780 padding: 0 30px;
1781 text-align: center;
1782 font-size: 2.5em;
1783 line-height: 1;
1785 .post .post-meta {
1786 text-align: center;
1787 position: relative;
1788 z-index: 2;
1790 .post .top-post-meta:last-child {
1791 margin-bottom: 40px;
1793 .post .bottom-post-meta {
1794 margin: 0;
1795 padding: 20px 0 22px 0;
1798 /**************/
1799 /* LINK POSTS */
1800 /**************/
1802 .post.link-post > .post-body > p:first-child {
1803 text-align: center;
1804 font-size: 1.125em;
1805 margin: 0.5em 0 0 0;
1807 .post.link-post > .post-body > p:only-child {
1808 font-size: 1.5em;
1809 margin: 1em 0;
1811 .post.link-post a.link-post-link::before {
1812 content: "\F0C1";
1813 font-family: Font Awesome;
1814 font-weight: 900;
1815 font-size: 0.75em;
1816 position: relative;
1817 top: -2px;
1818 margin-right: 0.25em;
1821 /************/
1822 /* COMMENTS */
1823 /************/
1825 .comments {
1826 max-width: 100%;
1827 padding: 0 0 1px 0;
1828 position: relative;
1830 .comments::before {
1831 content: "";
1832 position: absolute;
1833 display: block;
1834 top: 0;
1835 left: 0;
1836 width: 100%;
1837 height: 100%;
1838 pointer-events: none;
1840 ul.comment-thread {
1841 list-style-type: none;
1842 padding: 0;
1843 max-width: 100%;
1845 .comments .comment-thread > li {
1846 position: relative;
1848 #content > #top-nav-bar + .comment-thread .comment-item {
1849 margin-top: 0;
1852 .comment-item {
1853 margin: 2em 0 0 0;
1855 .comment-item .comment-item {
1856 margin: 1em 8px 8px 16px;
1858 .comment-item .comment-item + .comment-item {
1859 margin: 2em 8px 8px 16px;
1862 .comment-body {
1863 line-height: 1.45;
1864 font-size: 1.2rem;
1865 padding: 10px;
1867 .comment-body ul {
1868 list-style-type: circle;
1870 .comment-body > *:first-child {
1871 margin-top: 0;
1873 .comment-body > *:last-child {
1874 margin-bottom: 0;
1877 .comments-empty-message {
1878 width: 100%;
1879 text-align: center;
1880 padding: 0.75em 0 0.9em 0;
1881 font-size: 1.375em;
1884 /**********************************/
1885 /* DEEP COMMENT THREAD COLLAPSING */
1886 /**********************************/
1888 .comment-item input[id^="expand"] {
1889 display: none;
1891 .comment-item input[id^="expand"] + label {
1892 display: block;
1893 visibility: hidden;
1894 position: relative;
1895 margin: 8px 9px;
1897 .comment-item input[id^="expand"] + label::after {
1898 content: "(Expand " attr(data-child-count) " below)";
1899 visibility: visible;
1900 position: absolute;
1901 left: 0;
1902 white-space: nowrap;
1903 cursor: pointer;
1905 .comment-item input[id^="expand"]:checked + label::after {
1906 content: "(Collapse " attr(data-child-count) " below)";
1908 .comment-item input[id^="expand"] ~ .comment-thread {
1909 max-height: 34px;
1910 overflow: hidden;
1912 .comment-item input[id^="expand"] ~ .comment-thread > li:first-child {
1913 margin-top: 0;
1915 .comment-item input[id^="expand"]:checked ~ .comment-thread {
1916 max-height: 1000000px;
1919 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
1920 margin: 0;
1922 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
1923 display: none;
1926 /****************/
1927 /* COMMENT-META */
1928 /****************/
1930 .comment-meta {
1931 padding: 2px 24px 2px 10px;
1932 margin: 0 -1px;
1933 border: none;
1934 display: flex;
1935 flex-flow: row wrap;
1936 align-items: baseline;
1938 .user-page .comment-meta,
1939 .conversation-page .comment-meta {
1940 padding-right: 10px;
1942 .comment-meta .comment-post-title {
1943 flex-basis: 100%;
1944 overflow: hidden;
1945 text-overflow: ellipsis;
1946 line-height: 1.3;
1948 .conversation-page .comment-meta .comment-post-title {
1949 margin: 0;
1950 flex-basis: unset;
1951 flex: 1 0 auto;
1952 text-align: right;
1953 display: none; /* Not sure if we need to display this... */
1955 .comment-item .author:not(.redacted).original-poster::after {
1956 content: "\2004(OP)";
1957 font-size: 0.75em;
1960 /*****************************/
1961 /* COMMENT THREAD NAVIGATION */
1962 /*****************************/
1964 a.comment-parent-link:not(.inline-author),
1965 a.comment-parent-link.inline-author::before {
1966 opacity: 0.5;
1968 a.comment-parent-link:hover {
1969 opacity: 1.0;
1971 a.comment-parent-link::before {
1972 content: "\F062";
1973 font-family: "Font Awesome";
1974 font-weight: 900;
1975 font-size: 0.75rem;
1976 line-height: 1;
1977 position: absolute;
1978 z-index: 1;
1979 display: block;
1980 padding: 3px 3px 0 3px;
1981 width: 16px;
1982 height: calc(100% + 2px);
1983 top: -1px;
1984 left: -17px;
1986 a.comment-parent-link::after {
1987 content: "";
1988 position: absolute;
1989 z-index: 0;
1990 display: block;
1991 width: calc(100% + 26px);
1992 height: calc(100% + 38px);
1993 top: -29px;
1994 left: -17px;
1995 pointer-events: none;
1996 overflow: hidden;
1997 visibility: hidden;
1999 a.comment-parent-link:hover::after {
2000 visibility: visible;
2003 .comment-child-links {
2004 flex-basis: 100%;
2006 .comment-child-link {
2007 margin: 0 0.25em;
2008 display: inline-block;
2010 .comment-child-link::before {
2011 content: ">";
2012 display: inline-block;
2013 margin: 0 2px 0 0;
2016 .comment-popup {
2017 position: fixed;
2018 top: 10%;
2019 right: 10%;
2020 max-width: 700px;
2021 z-index: 10001;
2022 font-size: 1rem;
2023 white-space: unset;
2024 pointer-events: none;
2026 .comment-popup .comment-parent-link {
2027 display: none;
2029 .comment-popup .comment-body {
2030 font-size: 1.0625rem;
2033 /**********************/
2034 /* COMMENT PERMALINKS */
2035 /**********************/
2036 /********************/
2037 /* COMMENT LW LINKS */
2038 /********************/
2040 .comment-meta .permalink::before,
2041 .comment-meta .lw2-link::before,
2042 .individual-thread-page a.comment-parent-link:empty::before {
2043 content: "";
2044 display: inline-block;
2045 width: 1rem;
2046 height: 1rem;
2047 border-radius: 3px;
2048 box-shadow:
2049 0 0 0 1px #fff,
2050 0 0 0 2px #00e,
2051 0 0 0 3px transparent;
2052 padding: 0 0 0 2px;
2053 background-size: 100%;
2054 position: relative;
2055 top: 2px;
2056 opacity: 0.5;
2058 .comment-meta .permalink::before {
2059 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');
2061 .comment-meta .lw2-link::before {
2062 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==');
2064 .individual-thread-page a.comment-parent-link:empty::before {
2065 left: unset;
2066 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==');
2068 .comment-meta .permalink:hover::before {
2069 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');
2071 .comment-meta .lw2-link:hover::before {
2072 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==');
2074 .individual-thread-page a.comment-parent-link:empty:hover::before {
2075 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=');
2077 .comment-meta .permalink:hover::before,
2078 .comment-meta .lw2-link:hover::before,
2079 .individual-thread-page a.comment-parent-link:empty:hover::before {
2080 box-shadow:
2081 0 0 0 2px #00e,
2082 0 0 0 3px transparent;
2083 opacity: 1.0;
2084 filter: unset;
2086 .comment-meta .permalink:active::before,
2087 .comment-meta .lw2-link:active::before,
2088 .individual-thread-page a.comment-parent-link:empty:active::before {
2089 transform: scale(0.9);
2092 .comment-meta .permalink,
2093 .comment-meta .lw2-link,
2094 .individual-thread-page .comment-parent-link:empty {
2095 position: relative;
2096 opacity: 1.0;
2098 .comment-meta .permalink::after,
2099 .comment-meta .lw2-link::after,
2100 .individual-thread-page .comment-parent-link:empty::after {
2101 content: "";
2102 width: 30px;
2103 height: 30px;
2104 display: block;
2105 position: absolute;
2106 top: -2px;
2107 left: -7px;
2108 box-shadow: none;
2109 pointer-events: auto;
2110 visibility: visible;
2113 /*************************/
2114 /* COMMENTS COMPACT VIEW */
2115 /*************************/
2117 #comments-list-mode-selector,
2118 #content.index-page #comments-list-mode-selector,
2119 #content.user-page #comments-list-mode-selector {
2120 padding-top: 6px;
2121 grid-column: 1;
2122 position: unset;
2123 z-index: 1;
2124 justify-self: start;
2125 align-self: start;
2127 #comments-list-mode-selector button {
2128 color: transparent;
2129 width: 32px;
2130 height: 32px;
2131 padding: 6px;
2132 margin: 1px;
2133 overflow: hidden;
2134 background-repeat: no-repeat;
2135 background-size: 100%;
2136 background-origin: content-box;
2138 #comments-list-mode-selector button:disabled {
2139 cursor: auto;
2141 #comments-list-mode-selector button.expanded {
2142 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
2144 #comments-list-mode-selector button.compact {
2145 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
2147 @media only screen and (max-resolution: 1dppx) {
2148 #comments-list-mode-selector button.expanded {
2149 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2151 #comments-list-mode-selector button.compact {
2152 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2156 #content > ul.comment-thread > li.comment-item,
2157 #content.compact > ul.comment-thread > li.comment-item {
2158 margin: 0;
2161 #content > .comment-thread {
2162 margin: 1em 0;
2164 #content.compact > .comment-thread {
2165 font-size: 0.9375rem;
2166 margin: 0.5em 0;
2168 #content.compact > .comment-thread:hover {
2169 z-index: 1;
2171 #content.compact > .comment-thread .comment-body {
2172 font-size: 1.0625rem;
2174 #content.compact > .comment-thread .comment-item {
2175 max-height: 61px;
2176 margin-top: 1em;
2177 overflow: hidden;
2178 position: relative;
2179 pointer-events: none;
2181 #content.compact > .comment-thread .comment-item::after {
2182 content: "…";
2183 position: absolute;
2184 right: 0;
2185 bottom: 0;
2186 font-size: 2rem;
2187 line-height: 1;
2188 padding: 0 16px 10px 64px;
2189 pointer-events: auto;
2191 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2192 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2193 #content.compact > .comment-thread .comment-item.expanded {
2194 overflow: visible;
2195 pointer-events: auto;
2196 z-index: 10;
2199 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2200 #content.compact > .comment-thread.expanded .comment-item {
2201 overflow: visible;
2202 pointer-events: auto;
2203 z-index: 10;
2206 #content.compact > .comment-thread .comment-item .comment-meta {
2207 white-space: nowrap;
2208 overflow: hidden;
2209 text-overflow: ellipsis;
2210 padding: 2px 10px;
2212 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2213 white-space: unset;
2215 #content.compact > .comment-thread .comment-item .comment-meta a {
2216 pointer-events: auto;
2218 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2219 display: inline;
2221 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2222 margin-left: 0.75em;
2224 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2225 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2226 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2227 max-height: unset;
2229 #content.compact > .comment-thread .comment-item:hover .comment,
2230 #content.compact > .comment-thread .comment-item.expanded .comment {
2231 position: relative;
2232 z-index: 1;
2233 margin-bottom: 2em;
2234 bottom: 0;
2236 #content.compact > .comment-thread .comment-item:hover .comment::before,
2237 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2238 content: "";
2239 position: absolute;
2240 display: block;
2241 width: calc(100% + 20px);
2242 height: calc(100% + 20px);
2243 z-index: -1;
2244 top: -10px;
2245 left: -10px;
2247 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2248 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2249 margin: 0;
2252 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2253 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2254 max-height: unset;
2256 #content.compact > .comment-thread.expanded .comment-item .comment {
2257 position: relative;
2258 z-index: 1;
2259 margin-bottom: 2em;
2260 bottom: 0;
2262 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2263 content: "";
2264 position: absolute;
2265 display: block;
2266 width: calc(100% + 14px);
2267 height: calc(100% + 20px);
2268 z-index: -1;
2269 top: -10px;
2270 left: -10px;
2272 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2273 margin: 0;
2275 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2276 content: "";
2277 display: block;
2278 position: fixed;
2279 top: 0;
2280 left: 0;
2281 width: 100%;
2282 height: 100%;
2283 z-index: -2;
2284 background-color: rgba(0,0,0,0.5);
2288 /*****************************/
2289 /* HIGHLIGHTING NEW COMMENTS */
2290 /*****************************/
2292 .new-comment::before {
2293 content: "";
2294 position: absolute;
2295 width: 100%;
2296 height: 100%;
2297 z-index: 5000;
2298 pointer-events: none;
2301 /***********************************/
2302 /* COMMENT THREAD MINIMIZE BUTTONS */
2303 /***********************************/
2305 .comment-minimize-button {
2306 font-family: Font Awesome;
2307 font-weight: 900;
2308 font-size: 1.25rem;
2309 line-height: 1;
2310 position: absolute;
2311 right: 1px;
2312 top: 1px;
2313 width: 18px;
2314 margin: 0;
2315 cursor: pointer;
2317 .comment-minimize-button:active {
2318 transform: scale(0.9);
2320 .comment-minimize-button::after {
2321 content: attr(data-child-count);
2322 font-weight: normal;
2323 font-size: 0.8125rem;
2324 position: absolute;
2325 left: 0;
2326 width: 100%;
2327 text-align: center;
2328 top: 21px;
2330 #content.individual-thread-page .comment-minimize-button {
2331 display: none;
2334 /***********************************/
2335 /* INDIVIDUAL COMMENT THREAD PAGES */
2336 /***********************************/
2338 .individual-thread-page > h1 {
2339 line-height: 1;
2340 margin: 0.75em 0 3px 0;
2342 .individual-thread-page .comments {
2343 border: none;
2346 /****************/
2347 /* VOTE BUTTONS */
2348 /****************/
2350 .vote {
2351 margin: 0;
2353 .vote {
2354 font-family: Font Awesome;
2355 font-weight: 900;
2356 border: none;
2358 .karma.waiting {
2359 opacity: 0.5;
2361 .karma.waiting button {
2362 pointer-events: none;
2365 /* Replicated karma controls at bottom of comments. */
2366 .comment-controls .karma {
2367 float: left;
2368 margin-left: -14px;
2369 font-size: 0.9375em;
2372 /*****************************/
2373 /* COMMENTING AND POSTING UI */
2374 /*****************************/
2376 .comment-controls {
2377 text-align: right;
2378 margin: 0 8px 8px 16px;
2379 position: relative;
2380 z-index: 9999;
2382 .comment-thread .comment-controls + .comment-thread > li:first-child {
2383 margin-top: 8px;
2385 .comments > .comment-controls {
2386 margin: 8px 0 0 0;
2388 .comments > .comment-controls:last-child {
2389 margin: 8px 0 16px 0;
2392 .posting-controls input[type='submit'] {
2393 margin: 6px;
2394 padding: 4px 10px;
2395 font-size: 1.125rem;
2398 .comment-controls .cancel-comment-button {
2399 position: absolute;
2400 right: 0;
2401 margin: 0;
2402 height: 27px;
2403 font-size: inherit;
2404 padding: 4px 8px 2px 4px;
2405 z-index: 1;
2407 .comment-controls .cancel-comment-button::before {
2408 font-family: Font Awesome;
2409 margin-right: 3px;
2410 content: '\F00D';
2411 font-weight: 900;
2412 font-size: 0.9em;
2413 opacity: 0.7;
2416 .comment + .comment-controls .action-button {
2417 font-weight: normal;
2418 font-size: 1.0625em;
2419 padding: 1px 6px;
2421 .comment-controls .action-button::before {
2422 font-family: Font Awesome;
2423 margin-right: 3px;
2425 .new-comment-button {
2426 font-size: 1.5rem;
2427 margin: 0 0.25em;
2429 .comment-controls .reply-button::before {
2430 content: '\F3E5';
2431 font-weight: 900;
2432 font-size: 0.9em;
2433 opacity: 0.6;
2436 .post-controls {
2437 text-align: right;
2438 margin: 0.75em 0 0 0;
2439 grid-row: 3;
2440 align-self: start;
2441 justify-self: end;
2443 .post {
2444 grid-row: 3;
2446 .edit-post-link {
2447 display: inline-block;
2448 margin-bottom: 0.25em;
2449 font-size: 1.125rem;
2451 .edit-post-link::before {
2452 margin-right: 0.3em;
2454 .comment-controls .edit-button::before,
2455 .edit-post-link::before {
2456 content: '\F303';
2457 font-family: "Font Awesome";
2458 font-weight: 900;
2459 font-size: 0.75em;
2460 position: relative;
2461 top: -1px;
2464 .comment-controls .delete-button {
2465 margin-right: 0.25em;
2467 .comment-controls .edit-button,
2468 .comment-controls .retract-button,
2469 .comment-controls .unretract-button {
2470 margin-right: 1em;
2472 .comment-controls .retract-button::before {
2473 content: '\F4B3';
2474 opacity: 0.6;
2476 .comment-controls .unretract-button::before {
2477 content: '\F075';
2478 opacity: 0.9;
2480 .comment-controls .delete-button::before {
2481 content: '\F05E';
2482 opacity: 0.7;
2484 .comment-controls .retract-button::before,
2485 .comment-controls .unretract-button::before,
2486 .comment-controls .delete-button::before {
2487 font-weight: 900;
2488 font-size: 0.9em;
2491 .comment-controls form {
2492 position: relative;
2494 .textarea-container {
2495 position: relative;
2497 .posting-controls textarea {
2498 display: block;
2499 width: 100%;
2500 height: 15em;
2501 min-height: 15em;
2502 max-height: calc(100vh - 6em);
2503 margin: 2px 0 0 0;
2504 padding: 4px 5px;
2505 font-size: 1.2rem;
2506 border-style: solid;
2507 border-width: 29px 1px 1px 1px;
2508 resize: none;
2511 /* GUIEdit buttons */
2513 .guiedit-buttons-container {
2514 position: absolute;
2515 left: 1px;
2516 top: 1px;
2517 width: calc(100% - 2px);
2518 height: 28px;
2519 text-align: left;
2520 padding: 1px 4px 0 4px;
2521 overflow: hidden;
2523 .comment-thread-page .guiedit-buttons-container {
2524 padding-right: 60px;
2526 .guiedit-buttons-container button {
2527 height: 26px;
2528 padding: 0 7px;
2529 font-weight: 900;
2530 font-size: 0.875rem;
2531 line-height: 1;
2532 position: static;
2534 .guiedit-buttons-container button:active {
2535 transform: none;
2537 .guiedit-buttons-container button:active div {
2538 transform: scale(0.9);
2540 .guiedit-buttons-container button sup {
2541 font-weight: bold;
2543 .guiedit::after {
2544 content: attr(data-tooltip);
2545 position: absolute;
2546 font-weight: normal;
2547 font-size: 1rem;
2548 top: 2px;
2549 left: 464px;
2550 height: 25px;
2551 padding: 4px 0;
2552 white-space: nowrap;
2553 visibility: hidden;
2555 .guiedit:hover::after {
2556 visibility: visible;
2559 /* Markdown hints */
2561 .posting-controls .markdown-reference-link {
2562 float: left;
2563 padding: 1px 0 0 6px;
2565 .posting-controls .markdown-reference-link a {
2566 padding-right: 1.5em;
2567 margin-right: 0.15em;
2568 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');
2569 background-size: 1.25em;
2570 background-repeat: no-repeat;
2571 background-position: right center;
2574 #markdown-hints-checkbox + label {
2575 float: left;
2576 margin: 2px 0 0 1em;
2577 line-height: 1.3;
2578 cursor: pointer;
2580 #edit-post-form #markdown-hints-checkbox + label {
2581 padding: 0;
2583 #markdown-hints-checkbox {
2584 visibility: hidden;
2585 float: left;
2587 #markdown-hints-checkbox + label::after {
2588 content: "(Show Markdown help)";
2590 #markdown-hints-checkbox:checked + label::after {
2591 content: "(Hide Markdown help)";
2593 #markdown-hints-checkbox + label::before {
2594 content: '\F059';
2595 font-family: Font Awesome;
2596 font-weight: 900;
2597 margin-right: 3px;
2599 #markdown-hints-checkbox:checked + label::before {
2600 font-weight: normal;
2602 #markdown-hints {
2603 margin: 4px 0 0 4px;
2604 padding: 4px 8px;
2605 position: absolute;
2606 text-align: left;
2607 top: calc(100% - 1em);
2608 z-index: 1;
2609 display: none;
2611 .comment-controls #markdown-hints {
2612 top: calc(100% + 1.75em);
2614 #markdown-hints-checkbox:checked ~ #markdown-hints {
2615 display: table;
2617 .markdown-hints-row {
2618 display: table-row;
2620 #markdown-hints .markdown-hints-row span,
2621 #markdown-hints .markdown-hints-row code {
2622 float: none;
2623 display: table-cell;
2624 border: none;
2625 background-color: inherit;
2626 padding: 0 12px 0 0;
2629 /******************/
2630 /* EDIT POST FORM */
2631 /******************/
2633 #edit-post-form {
2634 padding: 1em 1em 4em 1em;
2636 #edit-post-form .post-meta-fields {
2637 display: grid;
2638 grid-template-columns: 5em auto auto auto 1fr auto;
2639 margin-bottom: 0.625em;
2642 #edit-post-form label[for='title'],
2643 #edit-post-form label[for='url'],
2644 #edit-post-form label[for='section'] {
2645 grid-column: 1;
2647 #edit-post-form input[type='text'] {
2648 padding: 0.25em;
2649 grid-column: 2 / span 4;
2650 margin-bottom: 0.5em;
2653 #edit-post-form .link-post-checkbox,
2654 #edit-post-form .link-post-checkbox + label {
2655 grid-row: 1;
2656 grid-column: 6;
2658 #edit-post-form .question-checkbox,
2659 #edit-post-form .question-checkbox + label {
2660 grid-row: 3;
2661 grid-column: 5;
2662 justify-self: start;
2663 margin-left: 1.5em;
2666 #edit-post-form .post-meta-fields input[type='checkbox'] {
2667 height: 0;
2668 opacity: 0;
2669 pointer-events: none;
2671 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
2672 white-space: nowrap;
2673 position: relative;
2674 cursor: pointer;
2675 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
2676 align-self: start;
2678 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
2679 content: "";
2680 font-family: Font Awesome;
2681 font-size: 1.375rem;
2682 line-height: 0.7;
2683 text-indent: 1px;
2684 font-weight: 900;
2685 position: absolute;
2686 width: 20px;
2687 height: 20px;
2688 left: 5px;
2690 #edit-post-form label[for='url'],
2691 #edit-post-form input[name='url'] {
2692 display: none;
2694 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2695 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2696 display: initial;
2698 #edit-post-form label {
2699 line-height: normal;
2700 border: 1px solid transparent;
2701 text-align: right;
2702 padding: 0.25em 0.5em;
2703 white-space: nowrap;
2705 #edit-post-form input[type='radio'] {
2706 width: 0;
2707 margin: 0;
2708 opacity: 0;
2709 pointer-events: none;
2711 #edit-post-form input[type='radio'] + label {
2712 padding: 4px 12px;
2713 text-align: center;
2714 border-style: solid;
2715 border-width: 1px 1px 1px 0;
2716 cursor: pointer;
2718 #edit-post-form input[type='radio']:checked + label {
2719 cursor: default;
2722 #edit-post-form label[for='section'] {
2723 grid-row: 3;
2725 #edit-post-form input[type='radio'] + label {
2726 grid-row: 3;
2728 @supports (width: -moz-fit-content) {
2729 #edit-post-form input[type='radio'] + label {
2730 width: -moz-fit-content;
2733 @supports (width: fit-content) {
2734 #edit-post-form input[type='radio'] + label {
2735 width: fit-content;
2739 #edit-post-form textarea {
2740 min-height: 24em;
2743 #edit-post-form input[type='submit'] {
2744 padding: 6px 12px;
2745 float: right;
2747 #edit-post-form #markdown-hints {
2748 top: calc(100% + 2em);
2751 #edit-post-form button.guiedit div {
2752 overflow: visible;
2754 .guiedit-mobile-auxiliary-button {
2755 display: none;
2758 /***********/
2759 /* BUTTONS */
2760 /***********/
2762 button,
2763 input[type='submit'] {
2764 font-family: inherit;
2765 font-size: inherit;
2766 background-color: inherit;
2767 cursor: pointer;
2768 border: none;
2769 border-radius: 0;
2772 /************/
2773 /* HEADINGS */
2774 /************/
2776 .post-body h1,
2777 .post-body h2,
2778 .post-body h3,
2779 .post-body h4,
2780 .post-body h5,
2781 .post-body h6,
2782 .comment-body h1,
2783 .comment-body h2,
2784 .comment-body h3,
2785 .comment-body h4,
2786 .comment-body h5,
2787 .comment-body h6 {
2788 line-height: 1.1;
2789 margin: 1em 0 0.75em 0;
2790 text-align: left;
2793 .post-body h5,
2794 .post-body h6 {
2795 font-size: 1em;
2797 .post-body h4 {
2798 font-size: 1.2em;
2800 .post-body h3 {
2801 font-size: 1.4em;
2803 .post-body h2 {
2804 font-size: 1.75em;
2806 .post-body h1 {
2807 font-size: 2.1em;
2810 .comment-body h5,
2811 .comment-body h6 {
2812 font-size: 1em;
2814 .comment-body h4 {
2815 font-size: 1.15em;
2817 .comment-body h3 {
2818 font-size: 1.3em;
2820 .comment-body h2 {
2821 font-size: 1.5em;
2823 .comment-body h1 {
2824 font-size: 1.75em;
2827 /**********/
2828 /* QUOTES */
2829 /**********/
2831 blockquote,
2832 .post-body .comment-box .comment-body {
2833 font-size: 0.9em;
2834 margin: 1em 0;
2835 padding-left: 0.5em;
2836 margin-left: 1px;
2837 padding-bottom: 3px;
2839 blockquote *:first-child {
2840 margin-top: 0;
2842 blockquote *:last-child {
2843 margin-bottom: 0;
2845 blockquote blockquote {
2846 font-size: 0.95em;
2849 /* Pseudo-blockquotes that LW sometimes uses for some reason */
2851 .post-body .comment-box .user-name {
2852 font-style: italic;
2854 .post-body .comment-box .user-name::after {
2855 content: ":";
2857 .post-body .comment-box {
2858 zoom: 1.25;
2861 /**********/
2862 /* IMAGES */
2863 /**********/
2865 #content img {
2866 max-width: 100%;
2869 img.inline-latex {
2870 position: relative;
2871 top: 2.5px;
2872 margin: 0 2px;
2875 #content figure {
2876 text-align: center;
2877 margin: 1.5em auto;
2880 p.imgonly,
2881 div.imgonly {
2882 text-align: center;
2885 /**********/
2886 /* TABLES */
2887 /**********/
2889 .post-body table,
2890 .comment-body table {
2891 border-collapse: collapse;
2892 font-family: Inconsolata, Menlo, monospace;
2893 font-size: 0.875em;
2895 .post-body table th,
2896 .post-body table td,
2897 .comment-body table th,
2898 .comment-body table td {
2899 text-align: left;
2900 padding: 4px 6px;
2901 line-height: 1.3;
2903 .post-body table td:nth-of-type(n+2),
2904 .comment-body table td:nth-of-type(n+2) {
2905 text-align: right;
2907 .post-body table caption,
2908 .comment-body table caption {
2909 margin: 0 0 0.25em 0;
2910 font-weight: bold;
2911 font-size: 1.125em;
2914 /********/
2915 /* MISC */
2916 /********/
2918 /*= Superscripts & subscripts =*/
2920 /* Make sure superscripts and subscripts do not affect line spacing. */
2921 sup, sub {
2922 vertical-align: baseline;
2923 position: relative;
2924 top: -0.5em;
2925 left: 0.05em;
2926 font-size: 0.8em;
2928 sub {
2929 top: 0.3em;
2932 /*= Code blocks & other "unstyled" text. =*/
2934 pre,
2935 code {
2936 font-family: Inconsolata, Menlo, monospace;
2938 pre {
2939 white-space: pre-wrap;
2941 code {
2942 font-size: 0.95em;
2943 display: inline-block;
2944 padding: 0 4px 1px 5px;
2946 pre > code {
2947 display: block;
2948 border-radius: 0;
2949 padding: 3px 4px 5px 8px;
2952 /*= Fractions =*/
2954 .frac::after {
2955 content: "\200B";
2958 /*= Removing browser default styling of various elements =*/
2960 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
2961 :focus {
2962 outline: none;
2965 /* Remove "embossed" appearance of horizontal rules. */
2966 hr {
2967 border: none;
2970 input,
2971 button,
2972 textarea {
2973 -webkit-appearance: none;
2974 -moz-appearance: none;
2975 appearance: none;
2978 input {
2979 font-family: inherit;
2980 font-size: inherit;
2981 font-weight: inherit;
2984 /*************/
2985 /* FOOTNOTES */
2986 /*************/
2988 ol {
2989 counter-reset: ordered-list;
2991 .footnote-definition {
2992 font-size: 0.9em;
2993 list-style-type: none;
2994 counter-increment: ordered-list;
2995 position: relative;
2997 .footnote-definition p {
2998 font-size: inherit !important;
3000 .footnote-definition::before {
3001 content: counter(ordered-list) ".";
3002 position: absolute;
3003 left: -2.5em;
3004 font-weight: bold;
3005 text-align: right;
3006 width: 2em;
3009 /*********/
3010 /* LISTS */
3011 /*********/
3013 li {
3014 margin-bottom: 0.5em;
3017 .post-body ol p,
3018 .post-body ul p,
3019 .comment-body ol p,
3020 .comment-body ul p {
3021 margin: 0.5em 0;
3024 .post-body ol {
3025 list-style: none;
3026 padding: 0;
3027 counter-reset: ol;
3029 .post-body ol > li {
3030 position: relative;
3031 counter-increment: ol;
3032 padding: 0 0 0 2.5em;
3033 margin: 0.25em 0 0 0;
3035 .post-body ol > li::before {
3036 content: counter(ol) ".";
3037 position: absolute;
3038 width: 2em;
3039 text-align: right;
3040 left: 0;
3042 .post-body ul {
3043 list-style: none;
3044 padding: 0;
3046 .post-body ul:not(.contents-list) li {
3047 position: relative;
3048 padding: 0 0 0 2.5em;
3049 margin: 0.25em 0 0 0;
3051 .post-body ul:not(.contents-list) li::before {
3052 content: "•";
3053 position: absolute;
3054 width: 2em;
3055 text-align: right;
3056 left: 0;
3058 .post-body li > ul:first-child > li {
3059 padding-left: 0;
3061 .post-body li > ul:first-child > li::before {
3062 content: none;
3065 /**************/
3066 /* ERROR PAGE */
3067 /**************/
3069 .error-retry-form {
3070 margin: 0.5em 0;
3073 .error-retry-form input[type="submit"] {
3074 border: 1px solid #aaa;
3075 font-weight: bold;
3076 font-size: 1.125rem;
3077 padding: 0.5em 1.25em;
3080 /**************/
3081 /* ABOUT PAGE */
3082 /**************/
3084 #content.about-page .contents {
3085 margin-top: 0.25em;
3087 #content.about-page .accesskey-table {
3088 border-collapse: collapse;
3089 margin: auto;
3091 #content.about-page .accesskey-table th,
3092 #content.about-page .accesskey-table td {
3093 padding: 2px 6px;
3095 #content.about-page .accesskey-table td:first-child {
3096 padding-right: 1.5em;
3098 #content.about-page .accesskey-table td:last-child {
3099 text-align: center;
3100 font-family: Inconsolata, Menlo, monospace;
3102 #content.about-page h3:nth-of-type(n+2) {
3103 clear: both;
3106 /******************/
3107 /* IMAGES OVERLAY */
3108 /******************/
3110 #images-overlay + #content .post-body img {
3111 visibility: hidden;
3114 #images-overlay div {
3115 position: absolute;
3117 #images-overlay div::after {
3118 content: "Click to enlarge";
3119 display: block;
3120 position: absolute;
3121 margin: auto;
3122 left: 0;
3123 right: 0;
3124 bottom: 10px;
3125 padding: 6px 10px;
3126 font-size: 1.25rem;
3127 background-color: rgba(0,0,0,0.6);
3128 color: #fff;
3129 border-radius: 5px;
3130 opacity: 0.0;
3131 transition: opacity 0.15s ease;
3132 pointer-events: none;
3134 @supports (width: -moz-fit-content) {
3135 #images-overlay div::after {
3136 width: -moz-fit-content;
3139 @supports (width: fit-content) {
3140 #images-overlay div::after {
3141 width: fit-content;
3144 #images-overlay div:hover::after {
3145 opacity: 1.0;
3148 #images-overlay img {
3149 width: 100%;
3152 /***************/
3153 /* IMAGE FOCUS */
3154 /***************/
3156 #content img:hover,
3157 #images-overlay img:hover {
3158 filter: drop-shadow(0 0 3px #777);
3159 cursor: zoom-in;
3161 #content img:active,
3162 #images-overlay img:active {
3163 transform: scale(0.975);
3166 #image-focus-overlay {
3167 position: fixed;
3168 top: 0;
3169 right: 0;
3170 bottom: 0;
3171 left: 0;
3172 display: none;
3173 cursor: zoom-out;
3175 #image-focus-overlay::before {
3176 content: "";
3177 display: block;
3178 position: absolute;
3179 top: 0;
3180 right: 0;
3181 bottom: 0;
3182 left: 0;
3183 background-color: #000;
3184 opacity: 0.5;
3185 z-index: -1;
3187 #image-focus-overlay.engaged {
3188 display: initial;
3191 #image-focus-overlay img {
3192 margin: auto;
3193 position: absolute;
3194 left: 50%;
3195 top: 50%;
3196 transform: translateX(-50%) translateY(-50%);
3199 #image-focus-overlay .help-overlay {
3200 position: absolute;
3201 display: flex;
3202 flex-flow: column;
3203 z-index: 2;
3204 font-size: 1.5rem;
3205 padding: 1em;
3206 border-radius: 10px;
3207 bottom: 1em;
3208 right: 1em;
3209 overflow: hidden;
3210 white-space: nowrap;
3211 color: transparent;
3212 visibility: hidden;
3213 transition:
3214 visibility 1s ease,
3215 color 1s ease,
3216 background-color 1s ease,
3217 bottom 0.3s ease;
3219 #image-focus-overlay .help-overlay:hover {
3220 max-width: 420px;
3221 max-height: 300px;
3222 background-color: rgba(0,0,0,0.85);
3223 color: #fff;
3224 visibility: visible;
3225 transition:
3226 visibility 0.2s ease 0.3s,
3227 color 0.2s ease 0.3s,
3228 background-color 0.2s ease 0.3s;
3231 #image-focus-overlay .help-overlay::after {
3232 content: "\F128";
3233 font-family: Font Awesome;
3234 font-weight: 900;
3235 font-size: 2rem;
3236 position: absolute;
3237 right: 0;
3238 bottom: 0;
3239 padding: 10px;
3240 color: #000;
3241 filter: drop-shadow(0 0 6px #fff);
3242 visibility: visible;
3243 opacity: 0.85;
3244 transition:
3245 visibility 1s ease;
3247 #image-focus-overlay .help-overlay:hover::after {
3248 visibility: hidden;
3249 transition:
3250 visibility 0.2s ease 0.3s;
3253 #image-focus-overlay .help-overlay p {
3254 margin: 0;
3255 text-indent: -2em;
3256 padding-left: 2em;
3257 max-width: 100%;
3258 overflow: hidden;
3260 #image-focus-overlay .help-overlay p + p {
3261 margin: 0.75em 0 0 0;
3263 #image-focus-overlay .help-overlay.hidden {
3264 bottom: -2em;
3267 #image-focus-overlay .image-number {
3268 position: absolute;
3269 z-index: 2;
3270 font-size: 1.75rem;
3271 left: 1em;
3272 bottom: 1em;
3273 font-weight: 600;
3274 text-shadow:
3275 0 0 3px #fff,
3276 0 0 5px #fff,
3277 0 0 8px #fff,
3278 0 0 13px #fff;
3279 width: 1.5em;
3280 text-align: right;
3281 white-space: nowrap;
3282 transition: bottom 0.3s ease;
3284 #image-focus-overlay .image-number::before {
3285 content: "#";
3286 opacity: 0.3;
3288 #image-focus-overlay .image-number::after {
3289 content: " of " attr(data-number-of-images);
3290 opacity: 0.3;
3292 #image-focus-overlay .image-number:hover::before,
3293 #image-focus-overlay .image-number:hover::after {
3294 opacity: 1.0;
3296 #image-focus-overlay .image-number.hidden {
3297 bottom: -1.25em;
3300 #image-focus-overlay .slideshow-buttons {
3301 position: absolute;
3302 top: 0;
3303 left: 0;
3304 width: 100%;
3305 height: 100%;
3306 z-index: 1;
3307 display: flex;
3308 justify-content: space-between;
3309 pointer-events: none;
3311 #image-focus-overlay .slideshow-buttons button {
3312 font-family: Font Awesome;
3313 font-weight: 900;
3314 font-size: 3rem;
3315 padding: 0.5em;
3316 color: #ddd;
3317 position: relative;
3318 left: 0;
3319 transition:
3320 left 0.3s ease;
3321 pointer-events: auto;
3323 #image-focus-overlay .slideshow-buttons button::selection {
3324 background-color: transparent;
3326 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3327 #image-focus-overlay .slideshow-buttons button:hover {
3328 background-color: rgba(0,0,0,0.1);
3329 color: #777;
3332 #image-focus-overlay .slideshow-buttons button:active {
3333 transform: none;
3334 color: #888;
3336 #image-focus-overlay .slideshow-buttons button:disabled {
3337 text-shadow: none;
3338 background-color: transparent;
3339 color: #ddd;
3340 cursor: default;
3341 opacity: 0.4;
3343 #image-focus-overlay .slideshow-button.previous.hidden {
3344 left: -1.75em;
3346 #image-focus-overlay .slideshow-button.next.hidden {
3347 left: 1.75em;
3350 .blurred {
3351 filter: blur(3px);
3354 /**************************/
3355 /* QUALIFIED HYPERLINKING */
3356 /**************************/
3358 #content.no-comments .comments,
3359 #content.no-comments .post-meta .comment-count,
3360 #content.no-comments .post-meta .karma,
3361 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3362 #content.no-comments + #ui-elements-container #hns-date-picker,
3363 #content.no-comments + #ui-elements-container #quick-nav-ui {
3364 display: none;
3367 #content.no-nav-bars #primary-bar,
3368 #content.no-nav-bars #secondary-bar {
3369 display: none;
3371 #content.no-nav-bars {
3372 margin: 8px auto;
3374 #content.no-nav-bars + #ui-elements-container > * {
3375 padding-top: 8px;
3378 #aux-about-link {
3379 position: fixed;
3380 top: 40px;
3381 left: calc((100% - 900px) / 2 - 69px);
3382 width: 1.5em;
3383 height: 1.5em;
3384 text-align: center;
3385 display: table;
3387 #aux-about-link a {
3388 display: table-cell;
3389 width: 100%;
3390 vertical-align: middle;
3391 font-family: Font Awesome;
3392 font-weight: 900;
3393 font-size: 1.25rem;
3394 opacity: 0.4;
3395 z-index: 1;
3398 .qualified-linking {
3399 margin: 0;
3400 position: relative;
3402 .qualified-linking input[type='checkbox'] {
3403 visibility: hidden;
3404 width: 0;
3405 height: 0;
3406 margin: 0;
3408 .qualified-linking label {
3409 font-family: Font Awesome;
3410 font-weight: 900;
3411 font-size: 1rem;
3412 padding: 0 0.5em;
3413 display: inline-block;
3414 margin-left: 0.25em;
3416 .qualified-linking label:hover {
3417 cursor: pointer;
3419 .qualified-linking label:active span {
3420 display: inline-block;
3421 transform: scale(0.9);
3423 .qualified-linking label::selection {
3424 background-color: transparent;
3427 .qualified-linking label::after {
3428 content: "";
3429 width: 100vw;
3430 height: 0;
3431 left: 0;
3432 top: 0;
3433 position: fixed;
3434 z-index: 1;
3435 cursor: default;
3437 .qualified-linking input[type='checkbox']:checked + label::after {
3438 height: 100vh;
3441 .qualified-linking-toolbar {
3442 position: absolute;
3443 right: 0.25em;
3444 top: 110%;
3445 z-index: 1;
3447 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3448 display: none;
3450 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3451 display: block;
3453 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3454 top: unset;
3455 bottom: 125%;
3458 .qualified-linking-toolbar a {
3459 display: block;
3460 padding: 0 6px;
3461 margin: 4px;
3463 .qualified-linking-toolbar a::selection {
3464 background-color: transparent;
3467 /********/
3468 /* MATH */
3469 /********/
3471 .mathjax-block-container {
3472 overflow-y: hidden;
3473 border-radius: 6px;
3474 margin: 1em 0 1.5em 0;
3476 .mathjax-inline-container {
3477 max-width: 100%;
3478 display: inline-block;
3479 overflow-x: auto;
3480 overflow-y: hidden;
3481 position: relative;
3482 vertical-align: text-top;
3483 padding: 0 1px;
3485 .post .mathjax-inline-container {
3486 line-height: 1.1;
3487 top: 2px;
3489 .comment .mathjax-inline-container {
3490 top: 3px;
3491 line-height: 1;
3493 .mathjax-inline-container .mjx-chtml {
3494 padding: 0;
3497 /************/
3498 /* SPOILERS */
3499 /************/
3501 .spoiler {
3502 color: #000;
3503 background-color: currentColor;
3504 transition: none;
3505 text-shadow: none;
3506 margin: 1em 0;
3507 box-shadow: 0 0 0 1px currentColor inset;
3508 overflow: auto;
3510 .spoiler:not(:last-child) {
3511 margin-bottom: 0;
3513 #content .spoiler * {
3514 color: inherit;
3515 border: none;
3517 .spoiler:hover {
3518 color: unset;
3519 background-color: unset;
3520 text-shadow: unset;
3521 transition:
3522 color 0.1s ease-out 0.1s,
3523 background-color 0.1s ease-out 0.1s,
3524 text-shadow 0.1s ease-out 0.1s;
3526 .spoiler::selection,
3527 .spoiler ::selection {
3528 color: #fff;
3529 background-color: #000;
3531 .spoiler:not(:hover)::selection,
3532 .spoiler:not(:hover) ::selection {
3533 background-color: transparent;
3536 /*= Fix for LessWrong being weird =*/
3538 .spoiler > p {
3539 padding: 0 7px;
3541 .spoiler > p:first-child {
3542 margin-top: 0.25em;
3544 .spoiler > p:last-child {
3545 margin-bottom: 0;
3546 padding-bottom: 0.25em;
3548 .spoiler > p:hover ~ p {
3549 background-color: currentColor;
3551 .spoiler > p + p {
3552 margin-top: -1em;
3554 .spoiler > p:not(:first-child) {
3555 padding-top: 0.5em;
3557 .spoiler > p:not(:last-child) {
3558 padding-bottom: 0.5em;
3561 /*******************/
3562 /* ALIGNMENT FORUM */
3563 /*******************/
3565 #content.alignment-forum-index-page::after {
3566 content: "Alignment Forum";
3567 grid-row: 3;
3568 font-size: 1.5rem;
3569 margin: 0.375em 0 0 -0.375em;
3572 /**********************/
3573 /* FOR NARROW SCREENS */
3574 /**********************/
3576 @media only screen and (max-width: 1440px) {
3577 #hns-date-picker {
3578 right: -81px;
3579 padding: 8px 10px 10px 10px;
3580 bottom: 62px;
3581 display: none;
3583 #hns-date-picker::before {
3584 content: "";
3585 position: absolute;
3586 display: block;
3587 z-index: -1;
3588 height: calc(100% + 2px);
3589 top: -1px;
3590 left: -1px;
3591 width: 50%;
3594 @media only screen and (max-width: 1160px) {
3595 #new-comment-nav-ui {
3596 bottom: 180px;
3597 right: -68px;
3599 #hns-date-picker {
3600 bottom: 200px;
3601 right: -36px;
3603 #hns-date-picker::before {
3604 width: calc(100% - 35px);
3606 #theme-selector button::before {
3607 right: unset;
3608 left: 100%;
3610 #theme-selector:hover::after {
3611 content: "";
3612 display: block;
3613 position: absolute;
3614 width: calc(6em - 7px);
3615 height: calc(100% + 2px);
3616 top: 0;
3617 left: calc(100% + 1px);
3619 #anti-kibitzer-toggle {
3620 bottom: 330px;
3623 @media only screen and (max-width: 1080px) {
3624 #width-selector {
3625 right: -30px;
3627 #width-selector button {
3628 display: block;
3630 #text-size-adjustment-ui {
3631 top: 90px;
3632 right: -30px;
3634 #text-size-adjustment-ui button {
3635 display: block;
3636 position: relative;
3638 #text-size-adjustment-ui button.increase {
3639 bottom: 48px;
3641 #text-size-adjustment-ui button.decrease {
3642 top: 50px;
3644 #theme-selector {
3645 top: 46px;
3646 left: -44px;
3648 #theme-tweaker-toggle {
3649 left: -44px;
3650 top: 2px;
3652 #theme-tweaker-toggle button {
3653 height: 2em;
3654 width: 2em;
3655 padding: 7px;
3657 #quick-nav-ui {
3658 right: -54px;
3660 #new-comment-nav-ui {
3661 right: -55px;
3663 #hns-date-picker {
3664 right: -23px;
3666 #hns-date-picker::before {
3667 width: calc(100% - 22px);
3669 #anti-kibitzer-toggle {
3670 right: -54px;
3673 @media only screen and (max-width: 1040px) {
3674 #quick-nav-ui {
3675 right: -49px;
3677 #new-comment-nav-ui {
3678 right: -50px;
3680 #hns-date-picker {
3681 right: -18px;
3683 #hns-date-picker::before {
3684 width: calc(100% - 17px);
3686 #anti-kibitzer-toggle {
3687 right: -50px;
3690 @media only screen and (max-width: 1020px) {
3691 #quick-nav-ui {
3692 right: -20px;
3694 #new-comment-nav-ui {
3695 right: -21px;
3697 #new-comment-nav-ui .new-comments-count::before {
3698 content: "";
3699 position: absolute;
3700 width: 100%;
3701 height: calc(100% + 45px);
3702 z-index: -1;
3703 left: 0;
3704 top: -22px;
3706 #hns-date-picker {
3707 right: 19px;
3709 #hns-date-picker::before {
3710 width: 100%;
3712 #anti-kibitzer-toggle {
3713 right: -20px;
3716 @media only screen and (max-width: 1000px) {
3717 #theme-selector {
3718 left: -17px;
3719 top: 120px;
3720 padding: 3px 0;
3721 max-width: 32px;
3723 #theme-selector button {
3724 margin: 1px 4px;
3726 #text-size-adjustment-ui {
3727 top: 100px;
3728 right: -12px;
3730 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3731 #quick-nav-ui,
3732 #new-comment-nav-ui,
3733 #new-comment-nav-ui + #hns-date-picker,
3734 #anti-kibitzer-toggle {
3735 opacity: 0.4;
3737 #quick-nav-ui:hover,
3738 #new-comment-nav-ui:hover,
3739 #new-comment-nav-ui + #hns-date-picker:hover,
3740 #new-comment-nav-ui + #hns-date-picker:focus-within,
3741 #new-comment-nav-ui:hover + #hns-date-picker,
3742 #anti-kibitzer-toggle:hover {
3743 opacity: 1.0;
3746 #theme-tweaker-toggle {
3747 top: 70px;
3748 left: -21px;
3752 /**************/
3753 /* PRINT VIEW */
3754 /**************/
3756 @media only print {
3757 .nav-bar {
3758 visibility: hidden;
3759 max-height: 0;
3760 overflow: hidden;
3762 #ui-elements-container {
3763 display: none;
3765 #images-overlay {
3766 display: none;
3768 #images-overlay + #content .post-body img {
3769 visibility: visible;
3771 .comment-controls {
3772 display: none;
3774 #comments-sort-mode-selector {
3775 display: none;
3777 .comment-minimize-button {
3778 display: none;
3780 .post-meta .qualified-linking,
3781 .post-meta .lw2-link {
3782 display: none;
3784 .comment-meta .permalink,
3785 .comment-meta .lw2-link,
3786 .comment-meta .comment-parent-link {
3787 display: none;
3789 .new-comment::before {
3790 display: none;
3792 #content::before {
3793 box-shadow: none;
3797 /*****************/
3798 /* MOBILE LAYOUT */
3799 /*****************/
3801 /* Hide the mobile elements on desktop screens: */
3803 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3804 #post-nav-ui-toggle,
3805 #appearance-adjust-ui-toggle,
3806 #theme-selector .theme-selector-close-button {
3807 display: none;
3811 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
3813 /*====================*/
3814 /* MOBILE UI ELEMENTS */
3815 /*====================*/
3817 #ui-elements-container {
3818 height: unset;
3819 position: unset;
3821 #ui-elements-container > * {
3822 position: fixed;
3823 visibility: hidden;
3824 opacity: 1.0;
3825 z-index: 10000;
3828 #ui-elements-container > div[id$='-ui-toggle'] {
3829 visibility: visible;
3830 display: inline-block;
3831 border-radius: 50%;
3832 z-index: 10000;
3834 #ui-elements-container > div[id$='-ui-toggle'] button,
3835 #theme-selector .theme-selector-close-button {
3836 font-family: Font Awesome;
3837 font-weight: 900;
3838 font-size: 32px;
3839 padding: 10px;
3840 opacity: 0.8;
3841 -webkit-tap-highlight-color: transparent;
3842 transition: transform 0.2s ease;
3844 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
3845 #theme-selector .theme-selector-close-button::selection {
3846 background-color: transparent;
3848 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
3849 #theme-selector .theme-selector-close-button::-moz-focus-inner {
3850 border: none;
3852 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
3853 transform: rotate(-90deg);
3854 opacity: 1.0;
3857 #appearance-adjust-ui-toggle {
3858 bottom: 10px;
3859 left: 10px;
3862 #post-nav-ui-toggle {
3863 bottom: 10px;
3864 right: 10px;
3867 #theme-selector.engaged,
3868 #quick-nav-ui.engaged,
3869 #new-comment-nav-ui.engaged,
3870 #hns-date-picker.engaged {
3871 visibility: visible;
3874 #image-focus-overlay.engaged {
3875 visibility: visible;
3877 #image-focus-overlay .help-overlay {
3878 display: none;
3881 /*=========*/
3882 /* GENERAL */
3883 /*=========*/
3885 @media only screen and (max-width: 900px) {
3886 #content,
3887 #images-overlay,
3888 #ui-elements-container {
3889 min-width: unset;
3890 width: unset;
3892 #content {
3893 padding: 0 4px;
3897 /*================*/
3898 /* THEME SELECTOR */
3899 /*================*/
3901 #theme-selector {
3902 display: flex;
3903 flex-flow: column;
3904 width: calc(100vw - 20px);
3905 max-width: 360px;
3906 padding: 0 0 3px 0;
3907 overflow: hidden;
3908 max-height: 0;
3909 transition:
3910 top 0.2s ease,
3911 max-height 0.2s ease,
3912 visibility 0.2s ease;
3913 top: calc(100% + 10px);
3914 left: 0;
3915 right: 0;
3916 margin: auto;
3918 #theme-selector.engaged {
3919 max-height: 1000px;
3920 top: 10px;
3921 z-index: 10001;
3923 #theme-selector::before {
3924 content: "Select theme";
3925 white-space: nowrap;
3926 display: block;
3927 font-weight: 600;
3928 font-size: 2rem;
3929 margin: 0.375em 1em 0.5em 1em;
3930 text-align: center;
3932 #theme-selector button {
3933 width: calc(100% - 0.5em);
3934 background-repeat: no-repeat;
3935 padding: 1em 0.875em;
3936 margin: 1px 4px;
3937 line-height: 1;
3938 height: unset;
3939 position: relative;
3941 #theme-selector button::after {
3942 content: attr(data-theme-description);
3943 white-space: nowrap;
3944 position: absolute;
3945 text-align: left;
3946 left: 2.5em;
3947 top: 1em;
3949 @media only screen and (max-height: 675px) {
3950 #theme-selector button {
3951 padding: 0.875em;
3953 #theme-selector button::after {
3954 top: 0.875em;
3957 #theme-selector .theme-selector-close-button {
3958 position: absolute;
3959 width: unset;
3960 background-color: transparent;
3961 top: 0;
3962 right: -3px;
3964 #theme-selector .theme-selector-close-button,
3965 #theme-selector .theme-selector-close-button:focus,
3966 #theme-selector .theme-selector-close-button:active,
3967 #theme-selector .theme-selector-close-button:hover {
3968 box-shadow: none;
3971 /*===============*/
3972 /* THEME TWEAKER */
3973 /*===============*/
3975 #theme-selector {
3976 padding: 0 0 64px 0;
3978 #theme-selector ~ #theme-tweaker-toggle {
3979 top: 100%;
3981 #theme-selector ~ #theme-tweaker-toggle::after {
3982 content: "Open theme tweaker";
3983 position: absolute;
3984 font-size: 0.625em;
3985 white-space: nowrap;
3986 left: -50%;
3987 top: 100%;
3989 #theme-selector.engaged ~ #theme-tweaker-toggle {
3990 visibility: visible;
3991 top: 530px;
3992 left: 0;
3993 right: 0;
3994 margin: auto;
3995 z-index: 11111;
3996 transition:
3997 top 0.2s ease,
3998 visibility 0.2s ease;
4000 @media only screen and (max-height: 675px) {
4001 #theme-selector.engaged ~ #theme-tweaker-toggle {
4002 top: 492px;
4005 @supports (width: -moz-fit-content) {
4006 #theme-selector.engaged ~ #theme-tweaker-toggle {
4007 width: -moz-fit-content;
4010 @supports (width: fit-content) {
4011 #theme-selector.engaged ~ #theme-tweaker-toggle {
4012 width: fit-content;
4015 #theme-selector.engaged ~ #theme-tweaker-toggle button {
4016 opacity: 1.0;
4019 #theme-tweaker-ui {
4020 visibility: visible;
4023 /*======================*/
4024 /* ANTI-KIBITZER TOGGLE */
4025 /*======================*/
4027 #theme-selector ~ #anti-kibitzer-toggle {
4028 top: 100%;
4029 bottom: unset;
4030 left: 0;
4031 right: 0;
4032 margin: auto;
4033 box-shadow: none;
4034 width: calc(100vw - 44px);
4035 max-width: 330px;
4036 text-align: right;
4037 pointer-events: none;
4039 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4040 visibility: visible;
4041 z-index: 11110;
4042 top: 530px;
4043 transition:
4044 top 0.2s ease,
4045 visibility 0.2s ease;
4047 @media only screen and (max-height: 675px) {
4048 #theme-selector.engaged ~ #anti-kibitzer-toggle {
4049 top: 492px;
4052 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
4053 pointer-events: auto;
4054 display: inline-block;
4057 /*=================*/
4058 /* QUICKNAV WIDGET */
4059 /*=================*/
4061 #quick-nav-ui {
4062 max-width: 0px;
4063 transition:
4064 max-width 0.2s ease,
4065 visibility 0.2s ease;
4066 display: flex;
4067 right: 72px;
4068 bottom: 14px;
4070 #quick-nav-ui.engaged {
4071 max-width: 1000px;
4073 #quick-nav-ui a {
4074 position: relative;
4075 margin: 2px;
4077 #quick-nav-ui a + a {
4078 margin-left: 5px;
4080 #quick-nav-ui a::after {
4081 position: absolute;
4082 top: calc(100% + 2px);
4083 font-size: 0.375rem;
4084 left: 0;
4085 right: 0;
4086 margin: auto;
4087 line-height: 1;
4088 padding: 2px;
4089 text-transform: uppercase;
4090 z-index: -1;
4092 @supports (width: -moz-fit-content) {
4093 #quick-nav-ui a::after {
4094 width: -moz-fit-content;
4097 @supports (width: fit-content) {
4098 #quick-nav-ui a::after {
4099 width: fit-content;
4102 #quick-nav-ui a[href='#top']::after {
4103 content: "Top";
4104 left: -1px;
4106 #quick-nav-ui a[href='#comments']::after {
4107 content: "Comments";
4109 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
4110 visibility: hidden;
4111 transition: visibility 0.2s ease;
4113 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
4114 visibility: visible;
4116 #quick-nav-ui a[href='#bottom-bar']::after {
4117 content: "Bottom";
4120 /*======================*/
4121 /* NEW COMMENT QUICKNAV */
4122 /*======================*/
4124 #new-comment-nav-ui {
4125 max-width: 0px;
4126 max-height: 0px;
4127 transition:
4128 max-width 0.2s ease,
4129 max-height 0.2s ease,
4130 visibility 0.2s ease;
4131 display: flex;
4132 right: 78px;
4133 bottom: 70px;
4135 #new-comment-nav-ui::before {
4136 content: "New Comments";
4137 position: absolute;
4138 bottom: 100%;
4139 font-size: 0.5625rem;
4140 left: 0;
4141 right: 0;
4142 margin: auto;
4143 padding: 2px 3px;
4144 text-transform: uppercase;
4145 z-index: -1;
4147 @supports (width: -moz-fit-content) {
4148 #new-comment-nav-ui::before {
4149 width: -moz-fit-content;
4152 @supports (width: fit-content) {
4153 #new-comment-nav-ui::before {
4154 width: fit-content;
4157 #new-comment-nav-ui.engaged {
4158 max-width: 1000px;
4159 max-height: 1000px;
4161 #new-comment-nav-ui .new-comment-sequential-nav-button {
4162 top: unset;
4163 bottom: unset;
4164 padding: 2px 7px;
4166 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
4167 padding: 2px 7px 3px 7px;
4169 #new-comment-nav-ui .new-comments-count {
4170 padding: 4px 0 5px 0;
4172 #new-comment-nav-ui .new-comments-count::before {
4173 display: none;
4175 #new-comment-nav-ui button::after {
4176 position: absolute;
4177 font-size: 0.375rem;
4178 left: 0;
4179 right: 0;
4180 margin: auto;
4181 line-height: 1;
4182 text-transform: uppercase;
4183 pointer-events: none;
4185 #new-comment-nav-ui button.new-comment-previous::after {
4186 content: "Previous";
4187 bottom: 5px;
4189 #new-comment-nav-ui button.new-comment-next::after {
4190 content: "Next";
4191 top: 7px;
4194 /*=================*/
4195 /* HNS DATE PICKER */
4196 /*=================*/
4198 #hns-date-picker {
4199 max-height: 0px;
4200 bottom: 132px;
4201 right: 62px;
4202 transition:
4203 max-height 0.2s ease,
4204 visibility 0.2s ease;
4206 #hns-date-picker.engaged {
4207 max-height: 1000px;
4209 #hns-date-picker::before {
4210 width: calc(100% + 2px);
4211 border-width: 1px !important;
4214 /*=========*/
4215 /* NAV BAR */
4216 /*=========*/
4218 #bottom-bar {
4219 padding: 0 4.5rem;
4221 #bottom-bar .nav-item {
4222 box-shadow: none;
4223 position: relative;
4225 #bottom-bar .nav-inner {
4226 font-size: 2rem;
4227 padding: 1rem 0 1.25rem 0;
4228 visibility: hidden;
4229 position: static;
4230 width: 0;
4232 #content #bottom-bar .nav-item .nav-inner::before {
4233 margin: 0;
4234 visibility: visible;
4235 position: absolute;
4236 width: 100%;
4237 height: 100%;
4238 left: 0;
4239 top: 0;
4240 padding: 1rem 0;
4242 #bottom-bar .nav-inner::after {
4243 display: block;
4244 visibility: visible;
4245 text-transform: uppercase;
4246 color: unset;
4247 font-size: 0.75rem;
4248 top: unset;
4249 left: 0;
4250 bottom: 1rem;
4251 width: 100%;
4253 #bottom-bar #nav-item-first .nav-inner::after {
4254 content: "First Page";
4256 #bottom-bar #nav-item-prev .nav-inner::after {
4257 content: "Prev. Page";
4259 #bottom-bar #nav-item-top .nav-inner::after {
4260 content: "Top";
4262 #bottom-bar #nav-item-next .nav-inner::after {
4263 content: "Next Page";
4265 #bottom-bar #nav-item-last .nav-inner::after {
4266 content: "Last Page";
4269 @media only screen and (max-width: 900px) {
4270 #primary-bar,
4271 #secondary-bar {
4272 font-size: 0.75rem;
4274 .nav-bar {
4275 width: calc(100% + 8px);
4276 margin: 0 -4px;
4278 .nav-bar .nav-inner::after {
4279 display: none;
4282 #primary-bar .nav-item {
4283 flex: 1 1 100%;
4285 #secondary-bar .nav-item:not(#nav-item-search) {
4286 flex: 1 1 60px;
4288 #primary-bar .nav-inner,
4289 #secondary-bar .nav-inner {
4290 text-transform: uppercase;
4291 padding: 6px;
4293 #primary-bar .nav-inner::before,
4294 #secondary-bar .nav-inner::before {
4295 display: block;
4296 font-family: "Font Awesome";
4297 font-size: 2em;
4298 font-weight: 900;
4301 #nav-item-home .nav-inner::before {
4302 content: "\F015";
4304 #nav-item-featured .nav-inner::before {
4305 content: "\F005";
4307 #nav-item-all .nav-inner::before {
4308 content: "\F069";
4310 #nav-item-meta .nav-inner::before {
4311 content: "\F077";
4313 #nav-item-recent-comments > * > span {
4314 display: none;
4316 #nav-item-recent-comments .nav-inner::before {
4317 content: "\F036";
4319 #nav-item-archive .nav-inner::before {
4320 content: "\F187";
4322 #nav-item-about .nav-inner::before {
4323 content: "\F129";
4325 #nav-item-search {
4326 font-size: 2em;
4327 padding: 10px;
4329 #nav-item-search .nav-inner::before {
4330 content: none;
4332 #nav-item-search .nav-inner {
4333 height: 100%;
4334 display: flex;
4336 #nav-item-search input {
4337 width: 100%;
4338 height: 100%;
4340 #nav-item-search button {
4341 height: 100%;
4342 padding: 5px 5px 5px 10px;
4343 width: 40px;
4344 overflow: visible;
4345 visibility: hidden;
4347 #nav-item-search button::before {
4348 content: "\F002";
4349 font-family: Font Awesome;
4350 font-weight: 900;
4351 visibility: visible;
4353 #nav-item-login {
4354 padding: 0;
4356 #nav-item-login .nav-inner::before {
4357 content: "\F007";
4360 @media only screen and (max-width: 520px) {
4361 #primary-bar,
4362 #secondary-bar {
4363 font-size: 0.5rem;
4366 #nav-item-search .nav-inner {
4367 padding: 0;
4369 #nav-item-search button {
4370 width: 31px;
4373 #bottom-bar #nav-item-first .nav-inner::after {
4374 content: "First";
4376 #bottom-bar #nav-item-prev .nav-inner::after {
4377 content: "Prev";
4379 #bottom-bar #nav-item-next .nav-inner::after {
4380 content: "Next";
4382 #bottom-bar #nav-item-last .nav-inner::after {
4383 content: "Last";
4387 /*=================*/
4388 /* INBOX INDICATOR */
4389 /*=================*/
4391 @media only screen and (max-width: 900px) {
4392 #inbox-indicator {
4393 width: 100%;
4394 top: 0;
4395 pointer-events: none;
4397 #inbox-indicator::before {
4398 width: 100%;
4399 font-size: 1rem;
4400 text-align: right;
4401 padding: 1px 6px;
4403 #inbox-indicator.new-messages {
4404 pointer-events: auto;
4406 #inbox-indicator.new-messages::before {
4407 box-shadow: 0 0 8px 1px #f00 inset;
4410 @media only screen and (max-width: 520px) {
4411 #inbox-indicator::before {
4412 font-size: 0.75rem;
4413 padding: 2px 5px;
4416 @media only screen and (max-width: 374px) {
4417 #inbox-indicator::before {
4418 font-size: 0.625rem;
4422 /*===================*/
4423 /* TOP PAGINATION UI */
4424 /*===================*/
4426 #top-nav-bar {
4427 font-size: 1.75rem;
4430 /*==============*/
4431 /* PAGE TOOLBAR */
4432 /*==============*/
4434 @media only screen and (max-width: 900px) {
4435 #content > .page-toolbar {
4436 font-size: 1rem;
4437 margin-right: 0;
4439 #content.user-page > .page-toolbar {
4440 grid-column: 2 / span 2;
4441 margin: 0 0 6px 0;
4444 @media only screen and (max-width: 520px) {
4445 #content:not(.user-page) .page-toolbar {
4446 display: flex;
4447 flex-direction: column-reverse;
4448 text-align: right;
4449 align-self: start;
4450 padding: 4px 0 0 0;
4452 #content.user-page .page-toolbar {
4453 display: flex;
4454 flex-flow: row;
4455 justify-content: flex-end;
4456 padding: 2px 0 0 0;
4458 #content.user-page .page-toolbar > form,
4459 #content.user-page .page-toolbar > .button {
4460 text-align: center;
4461 flex-basis: 25%;
4462 margin-left: 1.5em;
4464 #content.user-page .page-toolbar .button {
4465 text-transform: uppercase;
4466 font-size: 0.625rem;
4468 #content.user-page .page-toolbar .button::before {
4469 font-size: 1.375rem;
4470 display: block;
4471 padding: 0;
4473 #content.user-page .page-toolbar .rss {
4474 white-space: nowrap;
4475 margin: 0 0 0 1.5em;
4477 .page-toolbar > * {
4478 line-height: 1.15;
4479 padding: 6px 0;
4480 margin: 0;
4484 /*==============*/
4485 /* SUBLEVEL NAV */
4486 /*==============*/
4488 @media only screen and (max-width: 900px) {
4489 .sublevel-nav:not(.sort) {
4490 flex-wrap: wrap;
4491 width: calc(100vw - 100px);
4493 .sublevel-nav:not(.sort) .sublevel-item {
4494 margin: 1px;
4495 flex-basis: 7em;
4498 @media only screen and (max-width: 720px) {
4499 .sublevel-nav:not(.sort) {
4500 width: calc(100vw - 200px);
4503 @media only screen and (max-width: 520px) {
4504 .sublevel-nav:not(.sort) {
4505 width: calc(100vw - 100px);
4507 .sublevel-nav:not(.sort) .sublevel-item {
4508 font-size: 1rem;
4512 /*=====================*/
4513 /* SORT ORDER SELECTOR */
4514 /*=====================*/
4516 @media only screen and (max-width: 720px) {
4517 #content.index-page > .sublevel-nav.sort {
4518 flex-flow: column;
4519 margin-left: 4px;
4523 /*==========*/
4524 /* ARCHIVES */
4525 /*==========*/
4527 @media only screen and (max-width: 900px) {
4528 div[class^='archive-nav-'] {
4529 flex-wrap: wrap;
4530 justify-content: flex-start;
4532 .archive-nav *[class^='archive-nav-item'],
4533 .archive-nav *[class^='archive-nav-item']:first-child {
4534 padding: 10px;
4535 margin: 2px;
4536 max-width: unset;
4537 flex: 0 1 calc((100% / 8) - 4px);
4539 .archive-nav .archive-nav-item-day,
4540 .archive-nav .archive-nav-item-day:first-child {
4541 flex-basis: calc((100% / 16) - 4px);
4543 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4544 margin-top: 8px;
4545 position: relative;
4547 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4548 content: "";
4549 display: block;
4550 position: absolute;
4551 height: 1px;
4552 width: calc(100% + 8px);
4553 left: -4px;
4554 top: -4px;
4557 @media only screen and (max-width: 720px) {
4558 .archive-nav .archive-nav-item-day,
4559 .archive-nav .archive-nav-item-day:first-child {
4560 flex-basis: calc((100% / 12) - 4px);
4563 @media only screen and (max-width: 520px) {
4564 .archive-nav *[class^='archive-nav-item'],
4565 .archive-nav *[class^='archive-nav-item']:first-child {
4566 flex-basis: calc((100% / 5) - 4px);
4568 .archive-nav .archive-nav-item-day,
4569 .archive-nav .archive-nav-item-day:first-child {
4570 flex-basis: calc((100% / 8) - 4px);
4574 /*==========*/
4575 /* LISTINGS */
4576 /*==========*/
4578 h1.listing {
4579 max-height: unset;
4582 /*============*/
4583 /* USER PAGES */
4584 /*============*/
4586 @media only screen and (max-width: 720px) {
4587 #content.user-page h1.page-main-heading {
4588 align-self: center;
4590 #content.user-page .user-stats {
4591 padding: 4px 0;
4592 line-height: 1.3;
4596 /*============*/
4597 /* LOGIN PAGE */
4598 /*============*/
4600 @media only screen and (max-width: 640px) {
4601 .login-container {
4602 flex-flow: column;
4603 margin: 0 auto 3em auto;
4604 max-width: 400px;
4606 .login-container #login-form,
4607 .login-container #signup-form {
4608 padding: 0 1em 1.25em 1em;
4609 grid-row-gap: 0;
4611 .login-container #signup-form {
4612 padding-top: 1em;
4614 .login-container #login-form > *,
4615 .login-container #signup-form > * {
4616 grid-column: 1 / span 2;
4618 .login-container form label {
4619 text-align: left;
4620 padding: 0;
4621 line-height: 1;
4623 .login-container form input {
4624 margin: 0.25em 0 0.75em 0;
4625 padding: 0.5em;
4627 .login-container form h1 {
4628 grid-column: 1 / span 2;
4629 margin: 0 0 0.25em 0;
4631 .login-container form a {
4632 margin: 0.75em 0 0 0;
4634 .login-container .login-tip {
4635 margin: 1.5em 1em 0 1em;
4639 /*==================*/
4640 /* POSTS & COMMENTS */
4641 /*==================*/
4643 /*===========*/
4644 /* POST-META */
4645 /*===========*/
4647 .post-meta {
4648 line-height: 1.9;
4650 @media only screen and (max-width: 720px) {
4651 .post-meta .lw2-link span,
4652 .post-meta .karma-value span,
4653 .post-meta .comment-count span {
4654 display: none;
4656 .post-meta .comment-count::before {
4657 content: "\F086";
4658 font-family: Font Awesome;
4659 font-size: 0.875em;
4660 margin: 0 0.25em 0 0;
4661 font-weight: 400;
4665 /*=======*/
4666 /* POSTS */
4667 /*=======*/
4669 @media only screen and (max-width: 900px) {
4670 .post-body,
4671 h1.post-title {
4672 padding: 0 6px;
4675 @media only screen and (max-width: 520px) {
4676 .post-body {
4677 font-size: 1.2rem;
4678 line-height: 1.45;
4680 h1.post-title {
4681 font-size: 2em;
4685 /*==========*/
4686 /* COMMENTS */
4687 /*==========*/
4689 @media only screen and (max-width: 900px) {
4690 .comment-body ul {
4691 padding-left: 30px;
4693 .comment-body ol {
4694 padding-left: 30px;
4698 /*==============*/
4699 /* COMMENT-META */
4700 /*==============*/
4702 a.comment-parent-link::after {
4703 display: none;
4705 @media only screen and (max-width: 900px) {
4706 .comment-meta {
4707 padding: 2px 40px 2px 10px;
4710 @media only screen and (max-width: 720px) {
4711 .comment-meta .karma-value span {
4712 display: none;
4714 .comment-meta .comment-parent-link {
4715 opacity: 1.0;
4718 @media only screen and (max-width: 520px) {
4719 .comment-meta {
4720 padding: 2px 10px;
4721 position: relative;
4723 .comment-meta .author {
4724 flex-basis: 100%;
4726 .comment-post-title2 {
4727 display: block;
4728 text-overflow: ellipsis;
4729 overflow: hidden;
4731 .comment-meta .lw2-link {
4732 display: none;
4736 /*=======================*/
4737 /* COMMENTS COMPACT VIEW */
4738 /*=======================*/
4740 /*===========================*/
4741 /* COMMENT THREAD NAVIGATION */
4742 /*===========================*/
4744 @media only screen and (max-width: 900px) {
4745 a.comment-parent-link {
4746 width: 0;
4747 visibility: hidden;
4748 position: relative;
4750 a.comment-parent-link::before {
4751 padding: 0;
4752 font-size: 1em;
4753 left: 0;
4754 top: 0;
4755 line-height: inherit;
4756 visibility: visible;
4757 content: "\F3BF";
4758 transform: scaleX(-1);
4759 width: 2em;
4760 text-align: center;
4763 @media only screen and (max-width: 520px) {
4764 a.comment-parent-link {
4765 position: static;
4767 a.comment-parent-link::before {
4768 padding: 6px;
4769 left: unset;
4770 right: 0;
4771 top: unset;
4772 bottom: 0;
4773 height: 2em;
4777 /*=================================*/
4778 /* COMMENT THREAD MINIMIZE BUTTONS */
4779 /*=================================*/
4781 @media only screen and (max-width: 520px) {
4782 .comment-minimize-button{
4783 right: 2px;
4787 /*===========================*/
4788 /* COMMENTING AND POSTING UI */
4789 /*===========================*/
4791 @media only screen and (max-width: 900px) {
4792 .comment-controls .cancel-comment-button {
4793 max-width: 1.3em;
4794 overflow: hidden;
4795 margin-right: 0.125em;
4797 .comment-controls .edit-button::before {
4798 font-size: 0.9375em;
4800 .comments > .comment-controls .cancel-comment-button {
4801 right: 8px;
4803 .comment-controls .cancel-comment-button::before {
4804 font-size: 1.25rem;
4807 @media only screen and (max-width: 520px) {
4808 .comment-controls {
4809 position: static;
4811 .comment-controls:focus-within {
4812 z-index: 10001;
4814 .comment-controls .cancel-comment-button {
4815 right: 10px;
4817 .textarea-container:focus-within textarea {
4818 position: fixed;
4819 top: 0;
4820 left: 2px;
4821 width: calc(100vw - 4px);
4822 height: calc(100% - 100px);
4823 min-height: unset;
4824 max-height: unset;
4825 border-width: 1px;
4826 z-index: 11001;
4828 #content.conversation-page .textarea-container:focus-within textarea {
4829 height: calc(100% - 54px);
4831 #content.conversation-page .textarea-container:focus-within::after {
4832 content: "";
4833 display: block;
4834 width: 100%;
4835 height: 50px;
4836 position: fixed;
4837 left: 0;
4838 bottom: 0;
4839 z-index: 11000;
4841 .textarea-container:focus-within .guiedit-buttons-container {
4842 position: fixed;
4843 z-index: 11002;
4844 left: 0;
4845 width: 100vw;
4846 height: auto;
4847 background-image: none;
4848 padding: 3px 4px 4px 4px;
4849 margin: 0;
4850 text-align: center;
4851 top: auto;
4852 bottom: 0;
4854 .textarea-container:focus-within button.guiedit {
4855 font-size: 0.9375rem;
4856 line-height: 1.5;
4857 height: auto;
4858 width: calc((100% / 10) - 2px);
4859 padding: 10px 1px 8px 0;
4860 position: relative;
4861 margin: 1px;
4863 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
4864 z-index: 11011;
4865 position: fixed;
4866 bottom: 7px;
4867 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
4868 font-size: 1.25rem;
4869 padding: 5px 5px 6px 5px;
4870 display: block;
4872 .textarea-container:focus-within button.guiedit sup {
4873 position: absolute;
4874 left: calc(50% + 0.65em);
4875 top: calc(50% - 1.3em);
4877 .textarea-container:focus-within .guiedit-mobile-help-button {
4878 left: 8px;
4880 .textarea-container:focus-within .guiedit-mobile-exit-button {
4881 right: 8px;
4883 .guiedit::after {
4884 display: none;
4887 #markdown-hints,
4888 #edit-post-form #markdown-hints {
4889 z-index: 11111;
4890 position: fixed;
4891 top: 40px;
4892 left: 0;
4893 right: 0;
4894 margin: auto;
4895 padding: 4px 0 4px 8px;
4896 width: 310px;
4897 border-width: 3px;
4898 border-style: double;
4899 pointer-events: none;
4901 #markdown-hints::after {
4902 content: "(Type to hide this help box.)";
4903 color: #090;
4904 display: block;
4905 margin: 12px 18px 13px 10px;
4906 padding: 5px;
4907 font-size: 0.9em;
4908 text-align: center;
4912 /*================*/
4913 /* EDIT POST FORM */
4914 /*================*/
4916 @media only screen and (max-width: 520px) {
4917 #edit-post-form {
4918 padding-bottom: 0;
4920 #edit-post-form .post-meta-fields {
4921 grid-template-columns: 4.5em auto auto auto 1fr auto;
4923 #edit-post-form label[for='url'],
4924 #edit-post-form label[for='section'],
4925 #edit-post-form label[for='title'] {
4926 padding-left: 0;
4928 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
4929 white-space: normal;
4930 line-height: 0.9;
4931 top: -1px;
4932 font-family: Font Awesome;
4933 font-weight: 900;
4934 justify-self: start;
4936 #edit-post-form .post-meta-fields .question-checkbox,
4937 #edit-post-form .post-meta-fields .question-checkbox + label {
4938 grid-column: 6;
4939 margin-left: unset;
4941 #edit-post-form .post-meta-fields input[type='radio'] + label {
4942 align-self: start;
4944 #edit-post-form .textarea-container:focus-within textarea {
4945 height: calc(100% - 101px);
4946 min-height: unset;
4949 #markdown-hints-checkbox,
4950 #markdown-hints-checkbox + label {
4951 display: none;
4954 #edit-post-form div:last-child {
4955 clear: both;
4956 overflow: auto;
4958 #edit-post-form input[type='submit'] {
4959 float: none;
4960 display: block;
4961 font-size: 1.5rem;
4962 margin: 1rem auto 1.5rem auto;
4963 padding: 6px 12px 8px 12px;
4967 /*===================*/
4968 /* TABLE OF CONTENTS */
4969 /*===================*/
4971 @media only screen and (max-width: 900px) {
4972 .contents {
4973 float: none;
4974 display: table;
4975 max-width: none;
4976 margin-left: auto;
4977 margin-right: auto;
4980 @media only screen and (max-width: 520px) {
4981 .contents {
4982 max-width: 100%;
4983 margin: 1em auto 0 auto;
4984 display: table;
4986 .contents-head {
4987 font-size: 1.2em;
4989 div.post-body .contents ul {
4990 font-size: unset;
4994 /*========================*/
4995 /* QUALIFIED HYPERLINKING */
4996 /*========================*/
4998 @media only screen and (max-width: 520px) {
4999 .qualified-linking-toolbar {
5000 right: -5em;
5004 } /* END MOBILE LAYOUT */
5007 /*********************/
5008 /* ULTRAMODERN THEME */
5009 /*********************/
5011 body {
5012 color: #444;
5013 background-color: #888;
5014 font-family: 'Proxima Nova';
5015 font-weight: 300;
5017 #content {
5018 line-height: 1.55;
5021 /*=========*/
5022 /* NAV BAR */
5023 /*=========*/
5025 .active-bar {
5026 border: 1px solid transparent;
5027 border-bottom-color: #666;
5028 box-shadow:
5029 0 1.5px 1.5px -1.5px #bbb,
5030 0 1px 1px -1px #777;
5031 margin: 0 -30px 0 -2px;
5034 .nav-inner {
5035 font-weight: normal;
5036 font-size: 1.1875em;
5037 padding: 11px 30px 13px 30px;
5039 .nav-current .nav-inner {
5040 font-weight: 300;
5041 color: #ccc;
5043 #secondary-bar .nav-inner {
5044 font-size: 0.875rem;
5046 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
5047 padding: 5px 0 3px 0;
5050 #bottom-bar.decorative::before,
5051 #bottom-bar.decorative::after {
5052 content: "GW";
5053 display: block;
5054 text-align: center;
5055 padding: 0.25em 0 1em 0;
5057 #bottom-bar.decorative::before {
5058 width: 100%;
5059 color: transparent;
5060 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5061 background-repeat: repeat-x;
5062 background-position: center 35%;
5063 margin: 0 30px;
5064 filter: brightness(50%) opacity(0.6);
5066 #bottom-bar.decorative::after {
5067 color: #777;
5068 position: absolute;
5069 left: 0;
5070 right: 0;
5071 margin: auto;
5072 background-color: #888;
5073 padding-right: 4px;
5074 padding-left: 4px;
5076 @supports (width: -moz-fit-content) {
5077 #bottom-bar.decorative::after {
5078 width: -moz-fit-content;
5081 @supports (width: fit-content) {
5082 #bottom-bar.decorative::after {
5083 width: fit-content;
5087 .nav-bar a:link,
5088 .nav-bar a:visited {
5089 color: #444;
5090 font-weight: 300;
5092 .nav-bar a:hover,
5093 .nav-bar a:focus {
5094 text-decoration: underline;
5097 /* Accesskey hints */
5099 .nav-inner::after {
5100 display: block;
5101 position: absolute;
5102 left: 5px;
5103 top: -2px;
5104 font-weight: 400;
5105 font-size: 0.7em;
5106 color: #7c7c7c;
5108 .inactive-bar .nav-inner::after {
5109 color: #777;
5110 top: 0;
5112 .nav-inner:hover::after {
5113 color: #666;
5116 /* Search tab */
5118 #nav-item-search form::before {
5119 opacity: 0.4;
5120 font-size: 0.9375rem;
5122 #nav-item-search button {
5123 border: none;
5124 font-weight: 300;
5126 #nav-item-search input::placeholder {
5127 color: #f00;
5128 font-weight: normal;
5131 /* Inbox indicator */
5133 #inbox-indicator {
5134 top: 0;
5137 /*= Top pagination UI =*/
5139 #top-nav-bar a::before {
5140 font-weight: 300;
5143 /*= Bottom pagination UI =*/
5145 #bottom-bar .nav-item a::before {
5146 font-weight: 400;
5149 /*= Pagination UI hover tooltips =*/
5151 #top-nav-bar a::after,
5152 #bottom-bar a::after {
5153 color: #222;
5156 /*==============*/
5157 /* PAGE TOOLBAR */
5158 /*==============*/
5160 .page-toolbar > * {
5161 color: #444;
5162 font-weight: 300;
5164 .new-post::before,
5165 .logout-button::before {
5166 opacity: 0.8;
5168 .page-toolbar .button:hover {
5169 text-decoration: none;
5172 /*==============*/
5173 /* SUBLEVEL NAV */
5174 /*==============*/
5176 .sublevel-nav .sublevel-item {
5177 color: #444;
5178 background-color: #888;
5180 .sublevel-nav .sublevel-item:not(.selected):hover {
5181 color: #000;
5182 text-decoration: none;
5184 .sublevel-nav .sublevel-item:hover,
5185 .sublevel-nav .sublevel-item.selected {
5186 background-color: #999;
5188 .sublevel-nav .sublevel-item:not(.selected):active,
5189 .sublevel-nav .sublevel-item.selected {
5190 color: #fff;
5193 .sublevel-nav:not(.sort) .sublevel-item {
5194 border-style: solid;
5195 border-color: #999;
5196 border-width: 1px 0 1px 1px;
5198 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5199 border-radius: 8px 0 0 8px;
5201 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5202 border-width: 1px;
5203 border-radius: 0 8px 8px 0;
5206 /*=====================*/
5207 /* SORT ORDER SELECTOR */
5208 /*=====================*/
5210 .sublevel-nav.sort .sublevel-item {
5211 font-family: 'Proxima Nova';
5212 padding: 8px 8px 6px 8px;
5213 text-transform: uppercase;
5214 pointer-events: auto;
5215 box-shadow: 1px 1px 0 0 #777 inset;
5217 .sublevel-nav.sort {
5218 border: 2px solid transparent;
5219 padding: 18px 0 0 0;
5220 border-radius: 8px;
5221 pointer-events: none;
5222 background-color: #999;
5224 .sublevel-nav.sort::before {
5225 text-transform: uppercase;
5226 font-weight: 600;
5227 color: #444;
5228 z-index: 1;
5230 .sublevel-nav.sort::after {
5231 content: "";
5232 position: absolute;
5233 display: block;
5234 top: 0;
5235 left: 0;
5236 width: 100%;
5237 height: 100%;
5238 border-radius: 6px;
5239 box-shadow:
5240 0 18px 0 0 #888 inset,
5241 0 0 0 1px #777 inset,
5242 0 18px 0 1px #777 inset,
5243 0 0 0 2px #888;
5246 /*================*/
5247 /* WIDTH SELECTOR */
5248 /*================*/
5250 #width-selector button {
5251 box-shadow:
5252 0 0 0 4px #888 inset,
5253 0 0 0 5px #ccc inset;
5255 #width-selector button:hover,
5256 #width-selector button.selected {
5257 box-shadow:
5258 0 0 0 1px #888 inset,
5259 0 0 0 2px #ccc inset,
5260 0 0 0 4px #888 inset,
5261 0 0 0 5px #ccc inset;
5263 #width-selector button::after {
5264 color: #ccc;
5265 font-weight: 300;
5268 /*================*/
5269 /* THEME SELECTOR */
5270 /*================*/
5272 #theme-selector button {
5273 box-shadow:
5274 0 0 0 5px #888 inset;
5276 #theme-selector button:hover,
5277 #theme-selector button.selected {
5278 box-shadow:
5279 0 0 0 2px #888 inset,
5280 0 0 0 3px #ccc inset,
5281 0 0 0 5px #888 inset;
5284 #theme-selector button::before {
5285 color: #aaa;
5286 background-color: #888;
5288 #theme-selector button:hover::before,
5289 #theme-selector button.selected::before {
5290 color: #ccc;
5293 /*======================*/
5294 /* THEME TWEAKER TOGGLE */
5295 /*======================*/
5297 #theme-tweaker-toggle button:hover {
5298 text-decoration: none;
5301 /*=================*/
5302 /* QUICKNAV WIDGET */
5303 /*=================*/
5305 #quick-nav-ui a {
5306 color: #666;
5307 border-radius: 4px;
5308 box-shadow: 0 0 0 1px #999;
5309 text-decoration: none;
5311 #quick-nav-ui a[href='#bottom-bar'] {
5312 line-height: 1.8;
5314 #quick-nav-ui a:active {
5315 transform: scale(0.9);
5317 #quick-nav-ui a[href='#comments'].no-comments {
5318 opacity: 0.4;
5319 color: #777;
5321 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5322 #quick-nav-ui a:hover {
5323 color: #444;
5324 box-shadow: 0 0 0 1px #ccc;
5326 #quick-nav-ui a:focus:not(:hover) {
5327 transform: none;
5328 text-shadow: none;
5332 /*======================*/
5333 /* NEW COMMENT QUICKNAV */
5334 /*======================*/
5336 #new-comment-nav-ui .new-comments-count {
5337 font-weight: 600;
5338 color: #666;
5340 #new-comment-nav-ui .new-comments-count::after {
5341 font-weight: 600;
5342 color: #666;
5344 #new-comment-nav-ui .new-comment-sequential-nav-button {
5345 color: #bbb;
5347 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5348 color: #929292;
5350 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5351 #new-comment-nav-ui .new-comments-count:hover {
5352 text-shadow:
5353 0 0 1px #fff,
5354 0 0 3px #fff,
5355 0 0 5px #fff,
5356 0 0 8px #fff,
5357 0.5px 0.5px 0 #fff;
5359 #new-comment-nav-ui .new-comment-sequential-nav-button:hover {
5360 color: #444;
5361 text-decoration: none;
5363 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5364 color: #d00;
5365 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5369 /*=================*/
5370 /* HNS DATE PICKER */
5371 /*=================*/
5373 #hns-date-picker span {
5374 color: #666;
5375 font-weight: 600;
5377 #hns-date-picker input {
5378 border: 1px solid #999;
5379 background-color: transparent;
5380 color: #666;
5382 #hns-date-picker input:focus {
5383 color: #000;
5384 border: 1px solid #ccc;
5387 /*======================*/
5388 /* ANTI-KIBITZER TOGGLE */
5389 /*======================*/
5391 #anti-kibitzer-toggle button::before,
5392 #anti-kibitzer-toggle button::after {
5393 background-color: #222;
5394 -webkit-background-clip: text;
5395 color: transparent;
5396 text-shadow: rgba(255,255,255,0.4) 0px 1px 1px;
5398 #anti-kibitzer-toggle button:hover::before,
5399 #anti-kibitzer-toggle button:hover::after {
5400 background-color: #000;
5403 /*======================*/
5404 /* TEXT SIZE ADJUSTMENT */
5405 /*======================*/
5407 #text-size-adjustment-ui button {
5408 color: #444;
5410 #text-size-adjustment-ui button.default {
5411 font-weight: 600;
5413 #text-size-adjustment-ui button:hover {
5414 text-decoration: none;
5415 color: #aaa;
5417 #text-size-adjustment-ui::after {
5418 color: #ccc;
5419 font-weight: 300;
5422 /*=============================*/
5423 /* COMMENTS VIEW MODE SELECTOR */
5424 /*=============================*/
5426 #comments-view-mode-selector a {
5427 color: #ccc;
5430 /*==========*/
5431 /* ARCHIVES */
5432 /*==========*/
5434 .archive-nav {
5435 border: 1px solid #ccc;
5437 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5438 border-top-width: 0;
5439 border-bottom-width: 0;
5441 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5442 border-bottom-width: 1px;
5444 .archive-nav *[class^='archive-nav-item']:last-child {
5445 border-right-width: 1px;
5447 .archive-nav span[class^='archive-nav-item'] {
5448 font-weight: bold;
5451 .archive-nav span[class^="archive-nav-item"],
5452 .archive-nav a:hover {
5453 color: #ffb359;
5454 box-shadow:
5455 0 0 0 3px #888 inset,
5456 0 0 0 4px #ccc inset,
5457 0 0 0 5px #888 inset;
5458 text-decoration: none;
5460 .archive-nav span[class^="archive-nav-item"] {
5461 font-weight: normal;
5462 box-shadow:
5463 0 0 0 1px #ccc inset,
5464 0 0 0 3px #888 inset,
5465 0 0 0 4px #ccc inset,
5466 0 0 0 5px #888 inset;
5468 .archive-nav a:active {
5469 transform: scale(0.9);
5471 .archive-nav a:focus:not(:hover) {
5472 transform: none;
5475 /*==========*/
5476 /* LISTINGS */
5477 /*==========*/
5479 h1.listing {
5480 margin: 0.7em 20px 0.1em 20px;
5481 max-width: calc(100% - 40px);
5482 font-family: 'Proxima Nova', 'Font Awesome';
5483 font-size: 1.5rem;
5485 h1.listing a[href^='/posts'] {
5486 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
5487 font-weight: 200;
5488 text-shadow:
5489 0px 0px 1px #777,
5490 0.5px 0.5px 1px #aaa,
5491 0.5px 0.5px 1px #bbb;
5493 h1.listing a[href^="http"] {
5494 color: #aaa;
5497 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5498 h1.listing a:hover,
5499 h1.listing a:focus {
5500 background-color: rgba(136,136,136,0.85);
5501 color: #f60;
5502 text-shadow:
5503 0px 0px 1px #777,
5504 0.5px 0.5px 1px #aaa,
5505 0.5px 0.5px 1px #bbb,
5506 0 0 1px #f60,
5507 0 0 2px #f60,
5508 0 0 3px #f60;
5510 h1.listing:focus-within::before {
5511 color: #f60;
5512 left: -0.625em;
5513 top: 1px;
5515 h1.listing a[href^="http"]:hover {
5516 color: #4879ec;
5517 text-shadow:
5518 0.5px 0.5px 0 #fff,
5519 -0.5px -0.5px 0 #fff,
5520 0 0 2px #fff,
5521 0 0 3px #00c;
5525 h1.listing .edit-post-link {
5526 padding: 10px 3px 30px 0.5em;
5527 top: 0;
5528 right: -1.5em;
5530 h1.listing .edit-post-link:hover {
5531 text-decoration: none;
5533 #content.user-page h1.listing .edit-post-link {
5534 background-color: #888;
5537 /*======*/
5538 /* SPAM */
5539 /*======*/
5541 h1.listing.spam {
5542 opacity: 0.35;
5544 h1.listing.spam + .post-meta {
5545 opacity: 0.3;
5547 h1.listing.spam:hover,
5548 h1.listing.spam + .post-meta:hover,
5549 h1.listing.spam:hover + .post-meta {
5550 opacity: 1.0;
5553 /*===================*/
5554 /* LISTING POST-META */
5555 /*===================*/
5557 h1.listing + .post-meta > * {
5558 color: #222;
5559 font-size: 1em;
5561 h1.listing + .post-meta .karma::after {
5562 content: " by";
5564 h1.listing + .post-meta .date::before {
5565 content: "on ";
5567 h1.listing + .post-meta .date::after {
5568 content: " — ";
5569 opacity: 0.5;
5570 margin: 0 0.5em 0 0.125em;
5572 h1.listing + .post-meta .comment-count.new-comments::before {
5573 color: #0f0;
5575 h1.listing:last-of-type + .post-meta {
5576 margin-bottom: 0;
5578 h1.listing + .post-meta .karma {
5579 order: -1;
5580 margin-right: 0.25em;
5582 h1.listing + .post-meta .author {
5583 margin-right: 0.25em;
5585 h1.listing + .post-meta .date {
5586 margin: 0;
5588 h1.listing + .post-meta .post-section {
5589 overflow: visible;
5590 order: 2;
5592 h1.listing + .post-meta .post-section::before {
5593 font-size: 0.9375em;
5594 left: -32px;
5596 h1.listing + .post-meta .link-post-domain {
5597 order: 1;
5600 /*============*/
5601 /* USER PAGES */
5602 /*============*/
5604 #content.user-page h1.page-main-heading {
5605 border-bottom: 1px solid #777;
5608 #content.user-page h1.listing,
5609 #content.user-page h1.listing + .post-meta {
5610 border-style: solid;
5611 border-color: #666;
5612 border-width: 0 0 0 1px;
5613 box-shadow:
5614 1.5px 0 1.5px -1.5px #bbb inset,
5615 1px 0 1px -1px #777 inset;
5617 #content.user-page h1.listing {
5618 max-width: 100%;
5619 margin: 1rem 0 0 0;
5620 padding: 6px;
5622 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5623 #content.user-page h1.listing:focus-within::before {
5624 left: -0.625em;
5625 top: 8px;
5628 #content.user-page h1.listing + .post-meta {
5629 margin: 0 0 1rem 0;
5630 padding: 0.5em 6px 6px 34px;
5632 #content.user-page h1.listing + .post-meta .post-section::before {
5633 left: 1px;
5636 #content.conversations-user-page h1.listing {
5637 padding: 6px 6px 4px 8px;
5638 font-size: 1.5rem;
5640 #content.conversations-user-page h1.listing + .post-meta {
5641 padding: 6px 4px;
5642 margin: 0 0 0.25rem 0;
5644 #content.conversations-user-page h1.listing + .post-meta .date::after {
5645 display: none;
5648 .user-stats .karma-total {
5649 font-weight: bold;
5652 /*===============*/
5653 /* CONVERSATIONS */
5654 /*===============*/
5656 #content.conversation-page h1.page-main-heading {
5657 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
5658 font-weight: 200;
5659 color: #000;
5660 text-shadow:
5661 0px 0px 1px #777,
5662 0.5px 0.5px 1px #aaa,
5663 0.5px 0.5px 1px #bbb;
5666 /*============*/
5667 /* LOGIN PAGE */
5668 /*============*/
5670 .login-container h1 {
5671 font-weight: 300;
5674 /* “Create account” form */
5676 #signup-form {
5677 border: 1px solid #aaa;
5680 /* Log in tip */
5682 .login-container .login-tip {
5683 border: 1px solid transparent;
5686 /* Message box */
5688 .error-box {
5689 border: 1px solid red;
5690 background-color: #faa;
5692 .success-box {
5693 border: 1px solid green;
5694 background-color: #afa;
5697 /*=====================*/
5698 /* PASSWORD RESET PAGE */
5699 /*=====================*/
5701 .reset-password-container input[type='submit'] {
5702 background-color: #e4e4e4;
5703 border: 1px solid #ccc;
5704 font-weight: 600;
5707 /*===================*/
5708 /* TABLE OF CONTENTS */
5709 /*===================*/
5711 .contents {
5712 background-color: #888;
5714 .contents-head {
5715 font-weight: 300;
5717 .post-body .contents ul {
5718 font-size: 0.85em;
5720 .post-body .contents li::before {
5721 color: #999;
5722 font-feature-settings: "tnum";
5725 /*==================*/
5726 /* POSTS & COMMENTS */
5727 /*==================*/
5729 .post-body,
5730 .comment-body {
5731 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
5732 font-weight: 400;
5733 color: #000;
5734 text-shadow:
5735 0px 0px 1px #777,
5736 0.5px 0.5px 1px #aaa,
5737 0.5px 0.5px 1px #bbb;
5739 .post-body strong,
5740 .comment-body strong {
5741 font-weight: 500;
5744 .post-body a:link,
5745 .comment-body a:link {
5746 color: inherit;
5747 text-shadow:
5748 0px 0px 1px #bd5984,
5749 0.5px 0.5px 1px #f68a84,
5750 0.5px 0.5px 1px #ff9b8c;
5752 .post-body a:visited,
5753 .comment-body a:visited {
5754 color: inherit;
5755 text-shadow:
5756 0px 0px 1px #a766dd,
5757 0.5px 0.5px 1px #d9f,
5758 0.5px 0.5px 1px #efa9ff;
5760 .post-body a:hover,
5761 .comment-body a:hover {
5762 color: #f60;
5763 text-shadow:
5764 0px 0px 1px #bd5984,
5765 0.5px 0.5px 1px #f68a84,
5766 0.5px 0.5px 1px #ff9b8c,
5767 0px 0px 5px #f60;
5770 h1.post-title {
5771 margin: 1.1em 0 0.25em 0;
5772 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
5773 font-weight: 200;
5774 color: #000;
5775 font-size: 3em;
5776 text-shadow:
5777 0px 0px 1px #777,
5778 0.5px 0.5px 1px #aaa,
5779 0.5px 0.5px 1px #bbb;
5782 .post-body {
5783 font-size: 1.1875rem;
5784 line-height: 1.6;
5786 @media (-webkit-max-device-pixel-ratio: 1), (max-resolution: 191dpi) {
5787 .post-body {
5788 font-size: 1.125rem;
5791 .comment-body {
5792 font-size: 1.125rem;
5795 /*===========*/
5796 /* POST-META */
5797 /*===========*/
5799 .post-meta a,
5800 .post-meta .date {
5801 color: #444;
5804 .post-meta > * {
5805 margin: 0;
5806 text-shadow:
5807 0px 0px 1px #777,
5808 0.5px 0.5px 1px #aaa,
5809 0.5px 0.5px 1px #bbb;
5811 .post-meta .comment-count span,
5812 .post-meta .read-time span,
5813 .post-meta .word-count span,
5814 .post-meta .lw2-link span {
5815 display: none;
5817 .post-meta .comment-count::before,
5818 .post-meta .read-time::before,
5819 .post-meta .word-count::before,
5820 .post-meta .lw2-link::before {
5821 font-family: Font Awesome;
5822 margin: 0 0.25em 0 0;
5823 font-size: 0.875em;
5824 color: #666;
5826 .post-meta .comment-count {
5827 margin: 0 0.25em 0 0;
5829 .post-meta .read-time,
5830 .post-meta .word-count,
5831 .post-meta .lw2-link {
5832 margin: 0 0.25em 0 0.5em;
5834 .post-meta .comment-count:hover,
5835 .post-meta .lw2-link:hover {
5836 text-decoration: none;
5837 text-shadow:
5838 0 0 0.5px #000,
5839 0 0 1px #fff,
5840 0 0 8px #000;
5842 .post-meta .comment-count:hover::before,
5843 .post-meta .lw2-link:hover::before,
5844 .post-meta .read-time:hover::before {
5845 color: #ccc;
5847 .post-meta .read-time:hover::before {
5848 cursor: pointer;
5850 .post-meta .comment-count::before {
5851 content: "\F086";
5853 .post-meta .read-time::before {
5854 content: "\F017";
5856 .post-meta .read-time::after {
5857 content: " min";
5859 .post-meta .word-count::before {
5860 content: "\F15C";
5862 .post-meta .word-count::after {
5863 content: "";
5865 .post-meta .lw2-link::before {
5866 content: "\F0C1";
5867 font-weight: 900;
5868 font-size: 0.75em;
5869 position: relative;
5870 bottom: 1px;
5873 .post .post-meta .author {
5874 margin: 0 0.75em 0 0;
5876 .post-meta .author:hover,
5877 .comment-meta .author:hover {
5878 text-decoration: none;
5879 color: #090;
5881 .post .post-meta .comment-count {
5882 margin: 0 0.5em;
5884 .post .post-meta .lw2-link {
5885 margin: 0 1em 0 0.5em;
5887 .post .post-meta .karma {
5888 margin: 0 0.5em 0 1em;
5891 .post-meta .post-section::before {
5892 color: #888;
5893 text-shadow:
5894 1px 1px 0 #ccc,
5895 0 1px 0 #ccc,
5896 0 0 5px #ccc;
5898 a.post-section:hover {
5899 text-decoration: none;
5901 a.post-section:hover::before {
5902 color: #999;
5904 .post-meta .post-section.alignment-forum::before {
5905 text-shadow:
5906 1px 1px 0 #b9bbff,
5907 0 1px 0 #b9bbff,
5908 0 0 5px #b9bbff;
5910 a.post-section.alignment-forum:hover::before {
5911 color: #9093d4;
5914 /*============*/
5915 /* LINK POSTS */
5916 /*============*/
5918 .post.link-post a.link-post-link {
5919 text-decoration: none;
5920 font-family: 'Proxima Nova';
5921 font-weight: 600;
5923 .post.link-post a.link-post-link:hover {
5924 color: #f60;
5926 .post.link-post a.link-post-link:hover::before {
5927 color: #4879ec;
5928 text-shadow:
5929 0.5px 0.5px 0 #fff,
5930 -0.5px -0.5px 0 #fff,
5931 0 0 2px #fff,
5932 0 0 3px #00c;
5934 .post.link-post a.link-post-link:focus {
5935 color: #f60;
5936 border-bottom: 2px dotted #f60;
5937 text-shadow:
5938 0px 0px 1px #777,
5939 0.5px 0.5px 1px #aaa,
5940 0.5px 0.5px 1px #bbb,
5941 0 0 1px #f60,
5942 0 0 2px #f60,
5943 0 0 3px #f60;
5946 /*==========*/
5947 /* COMMENTS */
5948 /*==========*/
5950 #content > .comment-thread .comment-meta a.date:focus,
5951 #content > .comment-thread .comment-meta a.permalink:focus {
5952 color: #ccc;
5953 outline: 2px dotted #ccc;
5954 position: relative;
5955 background-color: #444;
5957 #content > .comment-thread .comment-meta a.date:focus {
5958 padding: 0 6px;
5959 left: -6px;
5961 #content > .comment-thread .comment-meta a.date:focus + * {
5962 margin-left: -12px;
5964 #content > .comment-thread .comment-meta a.permalink:focus {
5965 padding: 0 5px;
5966 left: -5px;
5968 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5969 margin-left: -10px;
5971 .comment-item {
5972 border: 1px solid transparent;
5973 border-left-color: #666;
5974 box-shadow:
5975 1.5px 0 1.5px -1.5px #bbb inset,
5976 1px 0 1px -1px #777 inset;
5978 @-moz-document url-prefix() {
5979 .comment-item {
5980 box-shadow:
5981 1.5px 0 1.5px -1px #bbb inset,
5982 1px 0 1px -1px #777 inset;
5987 a.comment-parent-link::after {
5988 display: none;
5990 a.comment-parent-link::before {
5991 padding: 2px 3px 0 4px;
5994 /*================================*/
5995 /* DEEP COMMENT THREAD COLLAPSING */
5996 /*================================*/
5998 .comment-item input[id^="expand"] + label::after {
5999 color: #f60;
6000 font-weight: 600;
6002 .comment-item input[id^="expand"] + label:hover::after {
6003 color: #c00;
6005 .comment-item input[id^="expand"] + label:active::after,
6006 .comment-item input[id^="expand"] + label:focus::after{
6007 color: #c00;
6009 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6010 border-width: 1px 0 0 0;
6013 /*==============*/
6014 /* COMMENT-META */
6015 /*==============*/
6017 .comment-meta a {
6018 color: #222;
6020 .comment-meta .author {
6021 font-weight: 300;
6022 font-size: 1.125em;
6023 color: #444;
6024 font-weight: normal;
6026 .comment-item .author:not(.redacted).original-poster::after {
6027 opacity: 0.8;
6030 .comment-item .karma.active-controls::after,
6031 .comment-item .karma .karma-value::after,
6032 .post .karma.active-controls::after,
6033 .post .karma .karma-value::after {
6034 background-color: #888;
6035 color: #ccc;
6036 border-radius: 4px;
6037 box-shadow: 0 0 0 1px #bbb inset;
6039 .comment-item .karma.active-controls::after,
6040 .post .karma.active-controls::after {
6041 padding: 6px;
6042 bottom: -46px;
6044 .comment-item .karma .karma-value::after,
6045 .post .karma .karma-value::after {
6046 padding: 2px 8px;
6047 top: -28px;
6048 min-width: 64px;
6051 /*====================*/
6052 /* ANTI-KIBITZER MODE */
6053 /*====================*/
6055 .author.redacted,
6056 .inline-author.redacted {
6057 opacity: 0.8;
6058 font-weight: 300;
6061 .karma-value.redacted {
6062 opacity: 0.6;
6065 .link-post-domain.redacted {
6066 opacity: 0.6;
6069 /*===========================*/
6070 /* COMMENT THREAD NAVIGATION */
6071 /*===========================*/
6073 div.comment-parent-link {
6074 font-weight: 400;
6076 a.comment-parent-link {
6077 font-weight: 300;
6079 a.comment-parent-link::before {
6080 color: #666;
6082 a.comment-parent-link:hover::before {
6083 color: #aaa;
6086 div.comment-child-links {
6087 font-weight: 400;
6089 div.comment-child-links a {
6090 font-weight: 300;
6092 .comment-child-link::before {
6093 color: #666;
6096 .comment-item-highlight {
6097 box-shadow:
6098 0 0 2px #e7b200,
6099 0 0 3px #e7b200,
6100 0 0 5px #e7b200,
6101 0 0 7px #e7b200,
6102 0 0 10px #e7b200;
6103 border: 1px solid #e7b200;
6105 .comment-item-highlight-faint {
6106 box-shadow:
6107 0 0 2px #f8e7b5,
6108 0 0 3px #f8e7b5,
6109 0 0 5px #f8e7b5,
6110 0 0 7px #f8e7b5,
6111 0 0 10px #f8e7b5;
6112 border: 1px solid #f8e7b5;
6115 .comment-popup {
6116 background-color: #949494;
6119 /*=======================*/
6120 /* COMMENTS COMPACT VIEW */
6121 /*=======================*/
6123 #comments-list-mode-selector button {
6124 box-shadow:
6125 0 0 0 4px #888 inset,
6126 0 0 0 5px #ccc inset;
6128 #comments-list-mode-selector button:hover,
6129 #comments-list-mode-selector button.selected {
6130 box-shadow:
6131 0 0 0 1px #888 inset,
6132 0 0 0 2px #ccc inset,
6133 0 0 0 4px #888 inset,
6134 0 0 0 5px #ccc inset;
6136 #content.compact > .comment-thread .comment-item::after {
6137 color: #ccc;
6138 background: linear-gradient(to right, transparent 0%, #888 50%, #888 100%);
6141 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6142 #content.compact > .comment-thread .comment-item:hover .comment,
6143 #content.compact > .comment-thread .comment-item.expanded .comment {
6144 background-color: #999;
6145 outline: 3px solid #ccc;
6147 #content.compact > .comment-thread .comment-item:hover .comment::before,
6148 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6149 background-color: #999;
6150 box-shadow:
6151 0 0 3px #999,
6152 0 0 5px #999,
6153 0 0 7px #999,
6154 0 0 10px #999,
6155 0 0 20px #999,
6156 0 0 30px #999,
6157 0 0 40px #999;
6160 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6161 #content.compact > .comment-thread.expanded .comment-item .comment {
6162 background-color: #999;
6163 outline: 3px solid #ccc;
6165 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6166 background-color: #999;
6167 box-shadow:
6168 0 0 3px #999,
6169 0 0 5px #999,
6170 0 0 7px #999,
6171 0 0 10px #999,
6172 0 0 20px #999,
6173 0 0 30px #999,
6174 0 0 40px #999;
6178 #content.user-page.compact > h1.listing {
6179 margin-top: 0.5rem;
6181 #content.user-page.compact > h1.listing + .post-meta {
6182 margin-bottom: 0.5rem;
6185 /*===========================*/
6186 /* HIGHLIGHTING NEW COMMENTS */
6187 /*===========================*/
6189 .new-comment::before {
6190 display: none;
6192 .new-comment {
6193 border: 1px solid #e00;
6194 box-shadow:
6195 0 0 1px #f00,
6196 0 0 1px #f00 inset;
6199 /*=================================*/
6200 /* COMMENT THREAD MINIMIZE BUTTONS */
6201 /*=================================*/
6203 .comment-minimize-button {
6204 color: #777;
6206 .comment-minimize-button:hover {
6207 color: #aaa;
6208 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6210 .comment-minimize-button::after {
6211 font-family: 'Proxima Nova';
6212 color: #777;
6214 .comment-minimize-button.maximized::after {
6215 color: #ccc;
6218 /*====================*/
6219 /* COMMENT PERMALINKS */
6220 /*====================*/
6221 /*==================*/
6222 /* COMMENT LW LINKS */
6223 /*==================*/
6225 .comment-meta .permalink::before,
6226 .comment-meta .lw2-link::before,
6227 .individual-thread-page a.comment-parent-link:empty::before {
6228 opacity: 1.0;
6229 filter: saturate(10%) contrast(20%);
6232 /*=================================*/
6233 /* INDIVIDUAL COMMENT THREAD PAGES */
6234 /*=================================*/
6236 .individual-thread-page > h1 {
6237 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6238 font-weight: 300;
6241 /*==============*/
6242 /* VOTE BUTTONS */
6243 /*==============*/
6245 .upvote,
6246 .downvote {
6247 color: #666;
6248 position: relative;
6250 .vote::before {
6251 position: relative;
6252 z-index: 1;
6254 .upvote::before {
6255 content: "\F077";
6256 top: 1px;
6258 .downvote::before {
6259 content: "\F078";
6260 position: relative;
6261 left: -2px;
6263 .upvote:hover,
6264 .upvote.selected {
6265 text-shadow:
6266 0 0 0.5px #fff,
6267 0 0 8px #0f0;
6269 .downvote:hover,
6270 .downvote.selected {
6271 text-shadow:
6272 0 0 0.5px #fff,
6273 0 0 8px #f00;
6276 .vote::after {
6277 position: absolute;
6278 color: transparent;
6280 .vote:hover::after {
6281 color: #888;
6283 .vote:not(:hover)::after {
6284 text-shadow: none;
6286 .karma.waiting .vote.big-vote::after {
6287 color: #888;
6289 .vote.big-vote::after,
6290 .vote:not(.big-vote).clicked-twice::after {
6291 color: inherit;
6293 .karma:not(.waiting) .vote.clicked-once::after {
6294 color: #666;
6297 .upvote::after {
6298 content: "\F325";
6299 left: 7px;
6300 bottom: 4px;
6302 .downvote::after {
6303 content: "\F322";
6304 left: 5px;
6305 top: 4px;
6307 @-moz-document url-prefix() {
6308 .upvote::after {
6309 bottom: 3px;
6310 left: 8px;
6312 .downvote::after {
6313 top: 3px;
6314 left: 6px;
6318 /*===========================*/
6319 /* COMMENTING AND POSTING UI */
6320 /*===========================*/
6322 .comment-controls .cancel-comment-button {
6323 font-weight: normal;
6324 color: #f00;
6326 .comment-controls .cancel-comment-button:hover {
6327 color: #f00;
6328 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6331 .posting-controls .action-button,
6332 .posting-controls input[type='submit'] {
6333 font-weight: normal;
6335 .posting-controls .action-button:hover,
6336 .posting-controls input[type='submit']:hover {
6337 text-decoration: underline;
6338 color: #444;
6341 .comment-controls .delete-button,
6342 .comment-controls .retract-button {
6343 color: #900;
6345 .comment-controls .edit-button,
6346 .comment-controls .unretract-button {
6347 color: #070;
6349 .comment-controls .action-button:hover {
6350 color: #bbb;
6351 text-decoration: none;
6354 .edit-post-link,
6355 .edit-post-link:visited {
6356 color: #090;
6359 .posting-controls textarea {
6360 font-weight: 300;
6361 font-family: 'Raleway', 'Helvetica', 'Arial', 'Verdana', sans-serif;;
6362 color: #000;
6363 background-color: transparent;
6364 border-color: #999;
6365 text-shadow:
6366 0px 0px 1px #777,
6367 0.5px 0.5px 1px #aaa,
6368 0.5px 0.5px 1px #bbb;
6370 @-moz-document url-prefix() {
6371 .posting-controls textarea {
6372 font-weight: 300;
6375 .posting-controls textarea:focus {
6376 border-color: #ccc;
6379 /*= Scroll bars =*/
6381 .posting-controls textarea::-webkit-scrollbar {
6382 width: 16px;
6383 background-color: transparent;
6385 .posting-controls textarea::-webkit-scrollbar-track {
6386 border-left: 1px solid #999;
6388 .posting-controls textarea:focus::-webkit-scrollbar-track {
6389 border-left: 1px solid #999;
6391 .posting-controls textarea::-webkit-scrollbar-thumb {
6392 background-color: #999;
6393 box-shadow: 0 0 0 1px #888 inset;
6394 border-left: 1px solid #999;
6396 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
6397 border-left: 1px solid #999;
6398 background-color: #ccc;
6399 box-shadow: 0 0 0 1px #888 inset;
6402 /* GUIEdit buttons */
6404 .guiedit-buttons-container {
6405 background-color: #888;
6406 box-shadow: 0 -1px 0 0 #999 inset;
6408 .textarea-container:focus-within .guiedit-buttons-container {
6409 box-shadow: 0 -1px 0 0 #ccc inset;
6412 button.guiedit {
6413 color: #444;
6414 background-color: transparent;
6415 font-family: Font Awesome, Source Sans Pro, Trebuchet MS, Helvetica, Arial, Verdana, sans-serif;
6417 button.guiedit::after {
6418 font-family: Proxima Nova;
6419 font-weight: 300;
6420 color: #444;
6421 top: 2px;
6422 height: 25px;
6424 button.guiedit:hover {
6425 color: #ccc;
6428 /* Markdown hints */
6430 #markdown-hints-checkbox + label {
6431 color: #444;
6433 #markdown-hints-checkbox + label:hover {
6434 text-decoration: underline;
6436 #markdown-hints {
6437 background-color: #888;
6438 border: 1px solid #ccc;
6441 /*================*/
6442 /* EDIT POST FORM */
6443 /*================*/
6445 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6446 border-radius: 3px;
6447 border: 1px solid #999;
6448 color: #aaa;
6450 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6451 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6452 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6453 text-decoration: underline;
6455 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6456 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6457 border-color: #ccc;
6460 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6461 content: "\F00C";
6463 #edit-post-form input[type='radio'] + label {
6464 color: #444;
6465 border-color: #999;
6467 #edit-post-form input[type='radio'][value='all'] + label {
6468 border-radius: 8px 0 0 8px;
6469 border-width: 1px;
6471 #edit-post-form input[type='radio'][value='drafts'] + label {
6472 border-radius: 0 8px 8px 0;
6474 #edit-post-form input[type='radio'] + label:hover,
6475 #edit-post-form input[type='radio']:focus + label,
6476 #edit-post-form input[type='radio']:checked + label {
6477 background-color: #999;
6479 #edit-post-form input[type='radio'] + label:hover,
6480 #edit-post-form input[type='radio']:focus + label {
6481 color: #000;
6483 #edit-post-form input[type='radio']:active + label,
6484 #edit-post-form input[type='radio']:checked + label {
6485 color: #fff;
6488 /*=======*/
6489 /* LINKS */
6490 /*=======*/
6493 text-decoration: none;
6494 color: #f60;
6496 a:hover {
6497 text-decoration: underline;
6500 /*=========*/
6501 /* BUTTONS */
6502 /*=========*/
6504 button,
6505 input[type='submit'] {
6506 color: #444;
6507 font-weight: normal;
6510 .button,
6511 .button:visited {
6512 color: #444;
6515 button:hover,
6516 input[type='submit']:hover,
6517 button:focus,
6518 input[type='submit']:focus {
6519 color: #aaa;
6521 input[type='submit']:hover,
6522 input[type='submit']:focus {
6523 text-decoration: underline;
6525 button:active,
6526 input[type='submit']:active {
6527 color: #ccc;
6528 transform: scale(0.9);
6530 .button:hover {
6531 color: #aaa;
6533 .button:active {
6534 transform: scale(0.9);
6536 .button:focus:not(:hover) {
6537 transform: none;
6539 @-moz-document url-prefix() {
6540 .button:active {
6541 transform: none;
6545 /*==========*/
6546 /* HEADINGS */
6547 /*==========*/
6549 .post-body h1,
6550 .post-body h2,
6551 .post-body h3,
6552 .post-body h4,
6553 .post-body h5,
6554 .post-body h6,
6555 .comment-body h1,
6556 .comment-body h2,
6557 .comment-body h3,
6558 .comment-body h4,
6559 .comment-body h5,
6560 .comment-body h6 {
6561 font-weight: 200;
6562 text-shadow:
6563 0px 0px 1px #777,
6564 0.5px 0.5px 1px #aaa,
6565 0.5px 0.5px 1px #bbb;
6567 .post-body h1 strong,
6568 .post-body h2 strong,
6569 .post-body h3 strong,
6570 .post-body h4 strong,
6571 .post-body h5 strong,
6572 .post-body h6 strong {
6573 font-weight: normal;
6575 .post-body h6,
6576 .comment-body h6 {
6577 color: #555;
6579 .post-body h1,
6580 .comment-body h1 {
6581 padding-bottom: 2px;
6582 border-bottom-color: #777;
6584 .post-body h2 {
6585 border-bottom: 1px dotted #ccc;
6588 /*========*/
6589 /* QUOTES */
6590 /*========*/
6592 blockquote {
6593 border-left: 5px solid #777;
6596 /*========*/
6597 /* IMAGES */
6598 /*========*/
6600 #content img,
6601 #content figure.image img {
6602 border: 1px solid #666;
6604 #content figure img {
6605 border: 1px solid #000;
6607 #content img[src$='.svg'],
6608 #content figure img[src$='.svg'] {
6609 border: none;
6611 #content img[style^='float'] {
6612 border: 1px solid transparent;
6615 /*========*/
6616 /* TABLES */
6617 /*========*/
6619 .post-body table,
6620 .comment-body table,
6621 .post-body table th,
6622 .post-body table td,
6623 .comment-body table th,
6624 .comment-body table td {
6625 border: 1px solid #ccc;
6628 /*======*/
6629 /* MISC */
6630 /*======*/
6632 hr {
6633 border-bottom: 1px solid #999;
6636 code,
6637 pre {
6638 font-family: 'Tired of Courier', Courier, Courier New, monospace;
6639 font-size: 0.9375em;
6642 pre {
6643 border: 1px solid #444;
6644 box-shadow:
6645 0px 0px 1px #777,
6646 1px 1px 1px #aaa inset,
6647 1px 1px 1px #bbb;
6650 input[type='text'],
6651 input[type='search'],
6652 input[type='password'] {
6653 border: 1px solid #999;
6654 color: #000;
6655 background-color: transparent;
6657 input[type='text']:focus,
6658 input[type='search']:focus,
6659 input[type='password']:focus {
6660 border: 1px solid #ccc;
6663 select {
6664 color: #000;
6667 .frac {
6668 padding-left: 2px;
6669 font-feature-settings: 'lnum';
6670 font-size: 0.95em;
6672 .frac sup {
6673 position: relative;
6674 left: -1px;
6676 .frac sub {
6677 position: relative;
6678 left: -0.5px;
6681 .post-body *::selection,
6682 .comment-body *::selection,
6683 textarea::selection,
6684 input::selection {
6685 background-color: #d8d8d8;
6688 /*============*/
6689 /* ABOUT PAGE */
6690 /*============*/
6692 .about-page mark {
6693 background-color: #e6e6e6;
6694 text-decoration: none;
6695 box-shadow:
6696 0 -1px 0 0 #000 inset,
6697 0 -3px 1px -2px #000 inset;
6698 padding: 0 1px;
6701 #content.about-page .accesskey-table {
6702 font-family: 'Proxima Nova';
6703 border-color: #ddd;
6706 #content.about-page img {
6707 border: 1px solid #000;
6710 /*========================*/
6711 /* QUALIFIED HYPERLINKING */
6712 /*========================*/
6714 #aux-about-link a {
6715 color: #444;
6717 #aux-about-link a:hover {
6718 opacity: 1.0;
6719 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6722 .qualified-linking label:hover {
6723 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6726 .qualified-linking-toolbar {
6727 border: 1px solid #000;
6728 background-color: #777;
6730 .qualified-linking-toolbar a {
6731 border: 1px solid #888;
6732 border-radius: 4px;
6733 color: #444;
6735 .qualified-linking-toolbar a:hover {
6736 border: 1px solid #999;
6737 text-decoration: none;
6738 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6740 .qualified-linking label::after {
6741 background-color: #888;
6742 opacity: 0.8;
6745 /*======*/
6746 /* MATH */
6747 /*======*/
6749 .mathjax-block-container::-webkit-scrollbar {
6750 height: 12px;
6751 background-color: #f6f6ff;
6752 border-radius: 6px;
6753 border: 1px solid #ddf;
6755 .mathjax-block-container::-webkit-scrollbar-thumb {
6756 background-color: #dde;
6757 border-radius: 6px;
6758 border: 1px solid #cce;
6760 .mathjax-inline-container::-webkit-scrollbar {
6761 height: 8px;
6762 background-color: #f6f6ff;
6763 border-radius: 4px;
6764 border: 1px solid #ddf;
6766 .mathjax-inline-container::-webkit-scrollbar-thumb {
6767 background-color: #dde;
6768 border-radius: 4px;
6769 border: 1px solid #cce;
6772 /*=================*/
6773 /* ALIGNMENT FORUM */
6774 /*=================*/
6776 #content.alignment-forum-index-page::before {
6777 background-color: #878a9f;
6779 #content.alignment-forum-index-page::after {
6780 font-family: "Concourse SmallCaps";
6781 font-weight: 600;
6782 background-color: #222d4b;
6783 color: transparent;
6784 -webkit-background-clip: text;
6785 text-shadow:
6786 rgba(136,136,136,0.5) 0px 3px 3px;
6788 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6789 #content.alignment-forum-index-page h1.listing a:hover,
6790 #content.alignment-forum-index-page h1.listing a:focus {
6791 background-color: rgba(135,138,159,0.85);
6795 /*====================*/
6796 /* FOR NARROW SCREENS */
6797 /*====================*/
6799 @media only screen and (max-width: 1440px) {
6800 #hns-date-picker {
6801 background-color: #888;
6802 bottom: 61px;
6803 opacity: 1.0;
6804 right: -77px;
6806 #hns-date-picker::before {
6807 display: none;
6810 @media only screen and (max-width: 1160px) {
6811 #hns-date-picker {
6812 bottom: 204px;
6813 right: -30px;
6816 @media only screen and (max-width: 1080px) {
6817 #text-size-adjustment-ui button {
6818 border: 1px solid #999;
6819 padding: 0 0 0 1px;
6820 border-radius: 50%;
6821 box-shadow:
6822 0 0 6px #999 inset,
6823 0 0 0 1px transparent;
6825 #hns-date-picker {
6826 right: -18px;
6829 @media only screen and (max-width: 1040px) {
6830 #hns-date-picker {
6831 right: -13px;
6834 @media only screen and (max-width: 1020px) {
6835 #hns-date-picker {
6836 right: 15px;
6839 @media only screen and (max-width: 1000px) {
6840 #theme-tweaker-toggle {
6841 left: -19px;
6843 #quick-nav-ui,
6844 #new-comment-nav-ui,
6845 #new-comment-nav-ui + #hns-date-picker {
6846 opacity: 1.0;
6850 /*========*/
6851 /* MOBILE */
6852 /*========*/
6854 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6855 #ui-elements-container > div[id$='-ui-toggle'] button,
6856 #theme-selector .theme-selector-close-button {
6857 color: #444;
6858 text-shadow:
6859 0 0 1px #999,
6860 0 0 3px #999,
6861 0 0 5px #999,
6862 0 0 10px #999,
6863 0 0 20px #999,
6864 0 0 30px #999;
6867 #theme-selector {
6868 background-color: #888;
6869 box-shadow:
6870 0 0 0 1px #444,
6871 0 0 1px 3px #999,
6872 0 0 3px 3px #999,
6873 0 0 5px 3px #999,
6874 0 0 10px 3px #999,
6875 0 0 20px 3px #999;
6876 border-radius: 12px;
6878 #theme-selector::before {
6879 color: #222;
6880 font-weight: 300;
6881 text-shadow:
6882 0px 0px 1px #777,
6883 0.5px 0.5px 1px #aaa,
6884 0.5px 0.5px 1px #bbb;
6886 #theme-selector button {
6887 border-radius: 10px;
6889 #theme-selector button::after {
6890 color: #444;
6891 max-width: calc(100% - 3.5em);
6892 overflow: hidden;
6893 text-overflow: ellipsis;
6895 #theme-selector button.selected::after {
6896 color: #000;
6897 text-shadow:
6898 0 -1px 0 #fff,
6899 0 0.5px 0.5px #000;
6902 #quick-nav-ui {
6903 background-color: #999;
6905 #quick-nav-ui a {
6906 background-color: #888;
6907 box-shadow: 0 0 0 1px #444;
6908 color: #444;
6910 #quick-nav-ui,
6911 #new-comment-nav-ui,
6912 #hns-date-picker {
6913 box-shadow:
6914 0 0 1px 3px #999,
6915 0 0 3px 3px #999,
6916 0 0 5px 3px #999,
6917 0 0 10px 3px #999,
6918 0 0 20px 3px #999;
6920 #quick-nav-ui a::after,
6921 #new-comment-nav-ui::before {
6922 font-family: 'Proxima Nova';
6923 font-weight: bold;
6924 box-shadow:
6925 0 0 1px 0 #999,
6926 0 0 3px 0 #999,
6927 0 0 5px 0 #999;
6928 background-color: #999;
6929 border-radius: 4px;
6931 #quick-nav-ui,
6932 #new-comment-nav-ui {
6933 border-radius: 8px;
6935 #new-comment-nav-ui {
6936 background-color: #888;
6937 border: 1px solid #444;
6939 #new-comment-nav-ui::before {
6940 color: #444;
6941 font-weight: bold;
6943 #new-comment-nav-ui .new-comments-count,
6944 #new-comment-nav-ui .new-comments-count::after {
6945 color: #444;
6947 #new-comment-nav-ui .new-comment-sequential-nav-button {
6948 box-shadow: 0 0 0 1px #444;
6949 color: #444;
6951 #new-comment-nav-ui .new-comments-count {
6952 background-color: inherit;
6953 box-shadow: 0 -1px 0 0 #444;
6955 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6956 color: #999;
6958 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6959 border-radius: 7px 0 0 7px;
6961 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6962 border-radius: 0 7px 7px 0;
6964 #new-comment-nav-ui button::after {
6965 font-family: 'Proxima Nova';
6968 #hns-date-picker.engaged {
6969 bottom: 124px;
6970 right: 61px;
6971 border: 1px solid #444;
6973 #hns-date-picker span,
6974 #hns-date-picker input {
6975 color: #444;
6978 /*****************************************/
6979 @media only screen and (max-width: 900px) {
6980 /*****************************************/
6981 h1.listing + .post-meta .post-section::before {
6982 position: unset;
6985 #secondary-bar .nav-inner {
6986 font-size: 1em;
6988 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
6989 padding: 6px 10px;
6992 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6993 background-color: #ccc;
6996 .comment-item .comment-item {
6997 margin: 0.75em 0 4px 6px;
6999 .comment-item .comment-item + .comment-item {
7000 margin: 1.5em 0 4px 6px;
7003 .comment-controls .cancel-comment-button::before {
7004 text-shadow:
7005 0 0 1px #fff,
7006 0 0 3px #fff;
7009 .sublevel-nav:not(.sort) .sublevel-item,
7010 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7011 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7012 border-radius: 8px;
7013 border-width: 1px;
7014 margin: 2px;
7016 /*****************************************/
7017 } @media only screen and (max-width: 720px) {
7018 /*****************************************/
7019 /*******************************************/
7020 } @media only screen and (max-width: 520px) {
7021 /*******************************************/
7022 h1.listing {
7023 font-size: 1.25rem;
7024 margin: 18px 6px 4px 6px;
7025 max-width: calc(100% - 12px);
7027 h1.listing + .post-meta {
7028 margin: 4px 6px;
7030 h1.listing + .post-meta > * {
7031 line-height: 1.5;
7033 h1.listing a[href^='http'] {
7034 top: 3px;
7037 #content.compact > .comment-thread .comment-item {
7038 max-height: 105px;
7041 .textarea-container:focus-within textarea {
7042 background-color: #888;
7044 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7045 border: 1px solid transparent;
7046 padding: 6px;
7048 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7049 box-shadow:
7050 0 0 0 1px #ccc,
7051 0 0 0 2px #888,
7052 0 0 0 3px #ccc;
7053 color: #ccc;
7054 font-weight: 600;
7056 .textarea-container:focus-within .guiedit-buttons-container {
7057 background-color: #888;
7058 border-top: 1px solid #ddf;
7060 #content.conversation-page .textarea-container:focus-within::after {
7061 background-color: #888;
7063 .textarea-container:focus-within button.guiedit {
7064 border: 1px solid transparent;
7066 #markdown-hints::after {
7067 color: #0f0;
7070 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7071 top: 2px;
7073 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7074 top: 1px;
7079 /*************/
7080 /* ACCORDIUS */
7081 /*************/
7083 /*======*/
7084 /* TAGS */
7085 /*======*/
7087 #tags {
7088 order: 12;
7089 display: flex;
7090 flex-basis: 100%;
7091 justify-content: center;
7092 margin: 0;
7094 #tags a {
7095 display: inline-block;
7098 /*===================*/
7099 /* ULTRAMODERN THEME */
7100 /*===================*/
7102 /*++++++*/
7103 /* TAGS */
7104 /*++++++*/
7106 #tags {
7107 padding: 0.5em;
7108 align-items: center;
7110 #tags::before {
7111 content: "\F02C";
7112 font-family: Font Awesome;
7113 font-weight: 400;
7114 font-size: 0.875em;
7115 display: inline-block;
7116 margin: 0 0.5em 0 0;
7117 opacity: 0.6;
7119 #tags a {
7120 margin: 0 0.375em 0 0;
7122 #tags a:not(:last-of-type)::after {
7123 content: ","