Keyboard help, part XV
[lw2-viewer.git] / www / css / style-less.linux.css
blobd2792a8eb5fb39ae8655a354053ddc0af39f7897
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 /* THEME LESS */
5009 /**************/
5011 body {
5012 color: #000;
5013 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
5014 font-weight: 300;
5015 background-color: #fff;
5017 #content {
5018 line-height: 1.55;
5019 padding: 30px 20px 0 90px;
5021 #content.comment-thread-page {
5022 padding: 0 0 0 60px;
5024 #ui-elements-container {
5025 visibility: hidden;
5028 /* Compensating for Linux/Windows being terrible. */
5030 .post-meta > *:not(.post-section),
5031 .comment-meta > *,
5032 #primary-bar a,
5033 #bottom-bar a,
5034 #secondary-bar a,
5035 #secondary-bar button,
5036 #nav-item-search > *,
5037 .page-toolbar > *,
5038 #top-nav-bar > *,
5039 .post-body a,
5040 .comment-body a {
5041 text-shadow: 0 0 0 #aaa;
5044 /* Compensating for Safari being terrible. */
5046 @media not all and (min-resolution:.001dpcm) { @media {
5047 .post-meta > *:not(.post-section),
5048 .comment-meta > *,
5049 #primary-bar a,
5050 #secondary-bar a,
5051 #secondary-bar button,
5052 #bottom-bar a,
5053 #nav-item-search > *,
5054 .page-toolbar > *,
5055 #top-nav-bar > *,
5056 .post-body a,
5057 .comment-body a {
5058 text-shadow: 0 0 1px #888;
5062 /*=========*/
5063 /* NAV BAR */
5064 /*=========*/
5066 /*= Layout (desktop) =*/
5068 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
5069 .nav-inner {
5070 font-size: 1.125em;
5071 padding: 0.5rem 0.75rem;
5072 text-align: right;
5074 #secondary-bar .nav-inner {
5075 font-size: 0.875em;
5076 padding: 0.5rem 0.75rem;
5078 #primary-bar,
5079 #secondary-bar {
5080 margin: 0;
5081 flex-flow: column;
5082 line-height: 1;
5084 #primary-bar {
5085 position: fixed;
5086 width: inherit;
5087 min-width: inherit;
5088 max-width: inherit;
5089 left: 0;
5090 right: 0;
5091 margin: auto;
5092 align-items: flex-start;
5093 pointer-events: none;
5095 #primary-bar > * {
5096 position: relative;
5097 right: 47px;
5098 width: 112px;
5099 pointer-events: auto;
5101 #nav-item-archive,
5102 #nav-item-about {
5103 position: fixed;
5104 transform: translateX(-106px);
5105 width: 80px;
5107 #content.comment-thread-page #nav-item-archive,
5108 #content.comment-thread-page #nav-item-about {
5109 transform: translateX(-76px);
5112 #nav-item-home {
5113 padding-top: 0.5em;
5116 #bottom-bar .nav-inner {
5117 text-align: center;
5118 padding: 0.75em;
5122 /*= Styling =*/
5124 #bottom-bar .nav-item a::before {
5125 font-weight: 300;
5128 .nav-bar a,
5129 .nav-bar a:visited {
5130 color: #acd2af;
5132 .nav-bar a:hover {
5133 color: #79a97e;
5136 /* Accesskey hints */
5138 .nav-inner::after {
5139 display: none;
5142 /* "Tabs" */
5144 .nav-current {
5145 font-weight: 500;
5148 #nav-item-recent-comments .nav-inner span {
5149 display: none;
5151 #nav-item-login {
5152 position: absolute;
5153 top: 0;
5154 right: 0;
5155 padding-right: 1.5em;
5158 /* Search tab */
5160 #nav-item-search {
5161 position: absolute;
5162 top: 0;
5163 left: 4.75em;
5164 width: 400px;
5166 #nav-item-search .nav-inner {
5167 padding: 1px;
5168 display: flex;
5170 #nav-item-search form::before {
5171 font-size: 1.125em;
5172 color: #e6e6e6;
5173 font-weight: 400;
5174 padding: 5px;
5175 transition: color 0.15s ease;
5177 #nav-item-search form:focus-within::before {
5178 color: #92c396;
5180 #nav-item-search button {
5181 border: none;
5182 font-weight: 300;
5183 padding: 6px;
5184 height: 23px;
5186 #nav-item-search form:not(:focus-within) button:not(:hover) {
5187 color: #ddd;
5189 #nav-item-search input {
5190 width: unset;
5191 flex: 1 0 auto;
5192 font-family: Inconsolata, monospace;
5193 padding: 2px 1px;
5194 margin: 0 0 0 2px;
5196 #nav-item-search input::placeholder {
5197 color: #d00;
5198 font-weight: normal;
5201 /* Inbox indicator */
5203 #inbox-indicator::before {
5204 color: #eaeaea;
5205 top: 3px;
5206 font-size: 1.125em;
5209 /* Decorative bottom bar */
5211 #bottom-bar.decorative {
5212 margin-top: 0.25em;
5214 #bottom-bar.decorative::before,
5215 #bottom-bar.decorative::after {
5216 content: "GW";
5217 display: block;
5218 text-align: center;
5219 padding: 0.25em 0 1em 0;
5221 #bottom-bar.decorative::before {
5222 width: 100%;
5223 color: transparent;
5224 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5225 background-repeat: repeat-x;
5226 background-position: center 35%;
5227 margin: 0 30px;
5228 filter: opacity(0.5);
5230 #bottom-bar.decorative::after {
5231 color: #eee;
5232 position: absolute;
5233 left: 0;
5234 right: 0;
5235 margin: auto;
5236 background-color: #fff;
5237 padding-right: 4px;
5238 padding-left: 4px;
5240 @supports (width: -moz-fit-content) {
5241 #bottom-bar.decorative::after {
5242 width: -moz-fit-content;
5245 @supports (width: fit-content) {
5246 #bottom-bar.decorative::after {
5247 width: fit-content;
5251 /*= Top pagination UI hover tooltips =*/
5253 #top-nav-bar a::after,
5254 #bottom-bar a::after {
5255 color: #000;
5258 /*==============*/
5259 /* PAGE TOOLBAR */
5260 /*==============*/
5262 .page-toolbar {
5263 padding: 0 0 0 0;
5264 margin: 0;
5265 white-space: nowrap;
5266 position: fixed;
5267 width: 120px;
5269 .page-toolbar > * {
5270 display: block;
5271 text-align: right;
5272 line-height: 1;
5273 padding: 0.5rem 0.75rem;
5274 position: relative;
5275 right: 56px;
5277 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
5278 .page-toolbar {
5279 width: inherit;
5280 min-width: inherit;
5281 max-width: inherit;
5282 left: 0;
5283 right: 0;
5284 margin-right: unset;
5285 margin: auto;
5286 align-items: flex-start;
5287 pointer-events: none;
5289 .page-toolbar > * {
5290 right: 47px;
5291 width: 112px;
5292 margin-left: unset;
5293 pointer-events: auto;
5297 .page-toolbar button {
5298 padding: 0;
5301 .page-toolbar .button::before {
5302 font-size: 0.875em;
5303 font-weight: 400;
5306 .new-private-message {
5307 white-space: normal;
5308 line-height: 1.15;
5310 .new-private-message::before {
5311 opacity: 0.7;
5314 .logout-button {
5315 color: #d33;
5316 font-weight: 300;
5319 /*===================*/
5320 /* TOP PAGINATION UI */
5321 /*===================*/
5323 #top-nav-bar {
5324 justify-content: flex-start;
5325 padding: 1em 0 0.25em 0;
5326 font-size: 1em;
5327 margin: 0 0 0 -4px;
5328 grid-column: 1;
5330 #top-nav-bar .page-number {
5331 line-height: 1.5;
5333 #top-nav-bar .page-number span {
5334 display: none;
5336 #top-nav-bar a::before {
5337 font-weight: 400;
5339 #top-nav-bar a.disabled {
5340 visibility: visible;
5341 opacity: 0.4;
5344 #content.user-page > #top-nav-bar {
5345 justify-content: center;
5346 grid-column: 2;
5347 padding: 0;
5349 .archive-nav + #top-nav-bar {
5350 margin: 0.5em 0 0 -4px;
5351 padding: 0 0 0.25em 0;
5354 /*==============*/
5355 /* SUBLEVEL NAV */
5356 /*==============*/
5358 .sublevel-nav .sublevel-item {
5359 color: #92c396;
5360 padding: 4px 10px 1px 10px;
5361 background-color: #fff;
5363 .sublevel-nav .sublevel-item:hover,
5364 .sublevel-nav .sublevel-item.selected {
5365 background-color: #c4dbc4;
5366 color: #fff;
5368 .sublevel-nav .sublevel-item:not(.selected):active {
5369 background-color: #92c396;
5372 .sublevel-nav:not(.sort) .sublevel-item {
5373 border-style: solid;
5374 border-color: #c4dbc4;
5375 border-width: 1px 0 1px 1px;
5377 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5378 border-radius: 8px 0 0 8px;
5380 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5381 border-width: 1px;
5382 border-radius: 0 8px 8px 0;
5385 /*=====================*/
5386 /* SORT ORDER SELECTOR */
5387 /*=====================*/
5388 #content.index-page .sublevel-nav.sort {
5389 grid-row: 2;
5390 grid-column: 3;
5391 justify-self: right;
5394 .sublevel-nav.sort {
5395 padding: 18px 0 0 0;
5396 border-radius: 8px;
5397 pointer-events: none;
5399 .sublevel-nav.sort .sublevel-item {
5400 padding: 7px 8px 3px 7px;
5401 text-transform: uppercase;
5402 pointer-events: auto;
5404 .sublevel-nav.sort::before {
5405 text-transform: uppercase;
5406 color: #444;
5407 z-index: 1;
5409 .sublevel-nav.sort::after {
5410 content: "";
5411 position: absolute;
5412 display: block;
5413 top: 0;
5414 left: 0;
5415 width: 100%;
5416 height: 100%;
5417 border-radius: 6px;
5418 box-shadow:
5419 0 18px 0 0 #fff inset,
5420 0 0 0 1px #c4dbc4 inset,
5421 0 18px 0 1px #c4dbc4 inset,
5422 0 0 0 4px #fff;
5425 /*============*/
5426 /* UI TOGGLES */
5427 /*============*/
5429 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
5430 #site-nav-ui-toggle,
5431 #post-nav-ui-toggle,
5432 #appearance-adjust-ui-toggle {
5433 visibility: visible;
5434 position: absolute;
5435 display: inline-block;
5436 border-radius: 50%;
5437 z-index: 1;
5439 #site-nav-ui-toggle button,
5440 #post-nav-ui-toggle button,
5441 #appearance-adjust-ui-toggle button {
5442 font-family: Font Awesome;
5443 font-weight: 400;
5444 font-size: 32px;
5445 padding: 10px;
5446 opacity: 0.4;
5447 -webkit-tap-highlight-color: transparent;
5448 transition:
5449 transform 0.2s ease,
5450 opacity 0.15s ease;
5452 #site-nav-ui-toggle button:hover,
5453 #post-nav-ui-toggle button:hover,
5454 #appearance-adjust-ui-toggle button:hover {
5455 opacity: 1.0;
5457 #site-nav-ui-toggle button::selection,
5458 #post-nav-ui-toggle button::selection,
5459 #appearance-adjust-ui-toggle button::selection {
5460 background-color: transparent;
5462 #site-nav-ui-toggle button::-moz-focus-inner,
5463 #post-nav-ui-toggle button::-moz-focus-inner,
5464 #appearance-adjust-ui-toggle button::-moz-focus-inner {
5465 border: none;
5467 #post-nav-ui-toggle.highlighted,
5468 #appearance-adjust-ui-toggle.highlighted {
5469 transform: scale(1.33);
5471 #site-nav-ui-toggle.highlighted button {
5472 transform: scale(1.33);
5474 #site-nav-ui-toggle.highlighted button,
5475 #post-nav-ui-toggle.highlighted button,
5476 #appearance-adjust-ui-toggle.highlighted button {
5477 opacity: 1.0;
5478 text-shadow:
5479 0 0 1px #fff,
5480 0 0 1px #64ff4c,
5481 0 0 3px #64ff4c,
5482 0 0 5px #64ff4c,
5483 0 0 8px #64ff4c;
5486 #site-nav-ui-toggle {
5487 top: 0;
5488 left: 12px;
5489 pointer-events: none;
5491 #site-nav-ui-toggle button {
5492 font-weight: 300;
5493 position: relative;
5494 left: 0;
5495 transition:
5496 left 0.2s ease,
5497 opacity 0.2s ease,
5498 width 0.2s ease;
5499 pointer-events: auto;
5501 #site-nav-ui-toggle button:active {
5502 transform: none;
5504 #site-nav-ui-toggle button.engaged {
5505 left: -92px;
5506 width: 2.125rem;
5507 overflow: hidden;
5509 #site-nav-ui-toggle button.engaged::before {
5510 content: "\F00D";
5511 padding: 0 0.25em 0 0;
5514 #primary-bar,
5515 #secondary-bar #nav-item-archive,
5516 #secondary-bar #nav-item-about,
5517 .page-toolbar {
5518 visibility: hidden;
5519 top: 0;
5520 max-height: 0px;
5522 #primary-bar,
5523 #secondary-bar #nav-item-archive,
5524 #secondary-bar #nav-item-about,
5525 .page-toolbar {
5526 opacity: 0.0;
5528 #primary-bar,
5529 #secondary-bar #nav-item-archive,
5530 #secondary-bar #nav-item-about,
5531 .page-toolbar {
5532 transition:
5533 top 0.2s ease,
5534 max-height 0.2s ease,
5535 visibility 0.2s ease,
5536 opacity 0.2s ease;
5538 #nav-item-search,
5539 #nav-item-login {
5540 visibility: visible;
5542 #primary-bar.engaged,
5543 #secondary-bar.engaged #nav-item-archive,
5544 #secondary-bar.engaged #nav-item-about,
5545 .page-toolbar.engaged {
5546 visibility: visible;
5547 max-height: 1000px;
5549 #primary-bar.engaged,
5550 #secondary-bar.engaged #nav-item-archive,
5551 #secondary-bar.engaged #nav-item-about,
5552 .page-toolbar.engaged {
5553 opacity: 1.0;
5555 #primary-bar.engaged {
5556 top: 0;
5558 #secondary-bar.engaged #nav-item-archive {
5559 top: 196px;
5561 #secondary-bar.engaged #nav-item-about {
5562 top: 230px;
5564 .page-toolbar.engaged {
5565 top: 280px;
5568 #post-nav-ui-toggle {
5569 bottom: 10px;
5570 right: -30px;
5572 #content.comment-thread-page ~ #ui-elements-container #post-nav-ui-toggle {
5573 right: -54px;
5575 #post-nav-ui-toggle button.engaged {
5576 transform: rotate(-90deg);
5579 #quick-nav-ui,
5580 #new-comment-nav-ui,
5581 #hns-date-picker {
5582 bottom: 0;
5583 max-height: 0px;
5584 opacity: 0.0;
5585 transition:
5586 bottom 0.2s ease,
5587 max-height 0.2s ease,
5588 opacity 0.2s ease,
5589 visibility 0.2s ease;
5591 #quick-nav-ui.engaged,
5592 #new-comment-nav-ui.engaged,
5593 #hns-date-picker.engaged {
5594 visibility: visible;
5595 max-height: 1000px;
5596 opacity: 1.0;
5599 #quick-nav-ui {
5600 right: -24px;
5602 #content.post-page ~ #ui-elements-container #quick-nav-ui {
5603 right: -48px;
5605 #quick-nav-ui.engaged {
5606 bottom: 64px;
5608 #quick-nav-ui a {
5609 font-weight: 400;
5612 #new-comment-nav-ui {
5613 right: -49px;
5615 #new-comment-nav-ui.engaged {
5616 bottom: 216px;
5619 #hns-date-picker {
5620 right: -186px;
5622 #hns-date-picker.engaged {
5623 bottom: 247px;
5625 @media only screen and (max-width: 1440px) {
5626 #hns-date-picker {
5627 background-color: rgba(255,255,255,0.95);
5628 right: -18px;
5630 #hns-date-picker::before {
5631 display: none;
5633 #hns-date-picker input {
5634 background-color: #fff;
5636 #hns-date-picker span {
5637 text-shadow:
5638 0 0 1px #fff,
5639 0 0 3px #fff,
5640 0 0 5px #fff,
5641 0 0 8px #fff,
5642 0 0 13px #fff,
5643 0 0 21px #fff;
5645 #hns-date-picker.engaged {
5646 bottom: 238px;
5650 #appearance-adjust-ui-toggle {
5651 bottom: 10px;
5652 left: 10px;
5654 #appearance-adjust-ui-toggle button.engaged {
5655 transform: rotate(-90deg);
5658 #comments-view-mode-selector,
5659 #theme-selector,
5660 #width-selector,
5661 #text-size-adjustment-ui,
5662 #theme-tweaker-toggle {
5663 pointer-events: none;
5664 visibility: visible;
5665 opacity: 0.0;
5666 transition:
5667 opacity 0.35s ease;
5669 @supports (width: -moz-fit-content) {
5670 #theme-tweaker-toggle {
5671 width: -moz-fit-content;
5674 @supports (width: fit-content) {
5675 #theme-tweaker-toggle {
5676 width: fit-content;
5679 #comments-view-mode-selector::after,
5680 #theme-selector::after,
5681 #theme-selector::before,
5682 #width-selector::after,
5683 #text-size-adjustment-ui::after {
5684 content: "";
5685 background-color: #fff;
5686 display: block;
5687 position: absolute;
5688 width: 100%;
5689 height: 100%;
5690 top: 0;
5691 left: 0;
5693 #comments-view-mode-selector.engaged,
5694 #theme-selector.engaged,
5695 #width-selector.engaged,
5696 #text-size-adjustment-ui.engaged,
5697 #theme-tweaker-toggle.engaged {
5698 pointer-events: auto;
5699 opacity: 1.0;
5702 #comments-view-mode-selector {
5703 left: -45px;
5704 top: calc(100% - 180px);
5706 #comments-view-mode-selector::after {
5707 max-height: 1000px;
5708 transition:
5709 max-height 0.2s ease;
5711 #comments-view-mode-selector.engaged::after {
5712 max-height: 0px;
5715 #theme-selector {
5716 display: block;
5717 left: 16px;
5718 top: calc(100% - 316px);
5719 opacity: 1.0;
5720 visibility: hidden;
5721 transition:
5722 visibility 0.2s ease;
5724 #theme-selector.engaged {
5725 visibility: visible;
5727 #theme-selector::after,
5728 #theme-selector::before {
5729 top: -50px;
5730 height: calc(100% + 60px);
5731 max-height: 300px;
5732 transition:
5733 max-height 0.2s ease;
5734 z-index: 1;
5736 #theme-selector.engaged::after,
5737 #theme-selector.engaged::before {
5738 max-height: 0px;
5740 #theme-selector::before {
5741 z-index: 0;
5744 #width-selector {
5745 display: table;
5746 left: -68px;
5747 top: calc(100% - 48px);
5749 #width-selector::after {
5750 max-width: 100px;
5751 transition:
5752 max-width 0.15s ease;
5754 #width-selector.engaged::after {
5755 max-width: 0px;
5758 #text-size-adjustment-ui {
5759 left: -67px;
5760 top: calc(100% - 80px);
5762 #text-size-adjustment-ui::after {
5763 max-width: 1000px;
5764 max-height: 1000px;
5765 transition:
5766 max-width 0.2s ease,
5767 max-height 0.2s ease;
5769 #text-size-adjustment-ui.engaged::after {
5770 max-width: 0px;
5771 max-height: 0px;
5774 #theme-tweaker-toggle {
5775 left: 19px;
5776 top: calc(100% - 356px);
5777 visibility: hidden;
5778 transition:
5779 visibility 0.5s ease-out;
5781 #theme-tweaker-toggle.engaged {
5782 visibility: visible;
5784 @-moz-document url-prefix() {
5785 #theme-tweaker-toggle {
5786 left: 18px;
5789 #theme-tweaker-toggle button {
5790 font-weight: 400;
5793 #theme-tweaker-ui {
5794 visibility: visible;
5798 /*================*/
5799 /* WIDTH SELECTOR */
5800 /*================*/
5802 #width-selector button {
5803 box-shadow:
5804 0 0 0 4px #fff inset,
5805 0 0 0 5px #aaa inset;
5807 #width-selector button:hover,
5808 #width-selector button.selected {
5809 box-shadow:
5810 0 0 0 1px #fff inset,
5811 0 0 0 2px #aaa inset,
5812 0 0 0 4px #fff inset,
5813 0 0 0 5px #aaa inset;
5816 /*================*/
5817 /* THEME SELECTOR */
5818 /*================*/
5820 #theme-selector button {
5821 box-shadow:
5822 0 0 0 4px #fff inset,
5823 0 0 0 5px #999 inset;
5825 #theme-selector button:hover,
5826 #theme-selector button.selected {
5827 box-shadow:
5828 0 0 0 1px #fff inset,
5829 0 0 0 2px #999 inset,
5830 0 0 0 4px #fff inset,
5831 0 0 0 5px #999 inset;
5834 #theme-selector button::before {
5835 font-size: 0.9375em;
5836 font-weight: 300;
5837 padding: 6px;
5838 color: #aaa;
5839 background-color: #fff;
5841 #theme-selector button:hover::before,
5842 #theme-selector button.selected::before {
5843 color: #000;
5846 /*======================*/
5847 /* THEME TWEAKER TOGGLE */
5848 /*======================*/
5850 #theme-tweaker-toggle button {
5851 color: #777;
5854 /*=================*/
5855 /* QUICKNAV WIDGET */
5856 /*=================*/
5858 #quick-nav-ui a {
5859 color: #acd2af;
5860 border-radius: 4px;
5861 text-decoration: none;
5862 transition:
5863 color 0.15s ease,
5864 box-shadow 0.15s ease-out;
5866 #quick-nav-ui a[href='#bottom-bar'] {
5867 line-height: 1.8;
5869 #quick-nav-ui a:active {
5870 transform: scale(0.9);
5872 #quick-nav-ui a[href='#comments'].no-comments {
5873 opacity: 0.4;
5874 color: #ddd;
5876 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5877 #quick-nav-ui a:hover {
5878 color: #79a97e;
5879 box-shadow:
5880 0 0 0 1px rgba(121, 169, 126, 0.3),
5881 0 0 0 2px #fff;
5883 #quick-nav-ui a:focus:not(:hover) {
5884 transform: none;
5885 text-shadow: none;
5889 /*======================*/
5890 /* NEW COMMENT QUICKNAV */
5891 /*======================*/
5893 #new-comment-nav-ui .new-comments-count {
5894 color: #888;
5895 text-shadow: 0.5px 0.5px 0 #fff;
5896 top: 2px;
5898 #new-comment-nav-ui .new-comments-count::after {
5899 color: #777;
5901 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5902 color: #e6e6e6;
5905 /*=================*/
5906 /* HNS DATE PICKER */
5907 /*=================*/
5909 #hns-date-picker span {
5910 color: #999;
5911 font-weight: 400;
5913 #hns-date-picker input {
5914 border: 1px solid #ddd;
5915 color: #999;
5916 padding: 3px 3px 0 3px;
5918 #hns-date-picker input:focus {
5919 color: #000;
5922 /*======================*/
5923 /* ANTI-KIBITZER TOGGLE */
5924 /*======================*/
5926 #anti-kibitzer-toggle {
5927 bottom: unset;
5928 top: 30px;
5929 visibility: visible;
5930 right: -48px;
5932 #anti-kibitzer-toggle button::before {
5933 font-weight: 300;
5935 #anti-kibitzer-toggle button::before,
5936 #anti-kibitzer-toggle button::after {
5937 opacity: 0.2;
5939 #anti-kibitzer-toggle button:hover::before,
5940 #anti-kibitzer-toggle button:hover::after {
5941 opacity: 1.0;
5944 /*======================*/
5945 /* TEXT SIZE ADJUSTMENT */
5946 /*======================*/
5948 #text-size-adjustment-ui button {
5949 font-weight: 400;
5952 /*=============================*/
5953 /* COMMENTS VIEW MODE SELECTOR */
5954 /*=============================*/
5956 #comments-view-mode-selector a {
5957 color: #acd2af;
5958 opacity: 0.5;
5961 /*==========*/
5962 /* ARCHIVES */
5963 /*==========*/
5965 .archive-nav {
5966 border: 1px solid transparent;
5967 margin: 1.25em 0 0 0;
5968 padding: 0;
5970 .archive-nav *[class^='archive-nav-item'] {
5971 color: #92c396;
5972 border-style: solid;
5973 border-color: #c4dbc4;
5974 border-width: 1px 0 1px 1px;
5976 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5977 border-top-width: 0;
5978 border-bottom-width: 0;
5980 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5981 border-bottom-width: 1px;
5983 .archive-nav *[class^='archive-nav-item']:last-child {
5984 border-right-width: 1px;
5986 .archive-nav a:hover,
5987 .archive-nav span[class^='archive-nav-item'] {
5988 background-color: #c4dbc4;
5989 color: #fff;
5992 .archive-nav a:active {
5993 background-color: #92c396;
5996 /*==========*/
5997 /* LISTINGS */
5998 /*==========*/
6000 h1.listing,
6001 #content.search-results-page h1.listing {
6002 margin: 0.7em 20px 0.1em 0;
6003 max-width: calc(100% - 20px);
6004 font-family: 'Caecilia', 'Helvetica', sans-serif, 'Font Awesome';
6005 font-size: 1.25rem;
6006 line-height: 1.2;
6009 h1.listing a[href^="http"] {
6010 color: #bbb;
6011 font-weight: 400;
6012 font-size: 0.8125em;
6013 top: 3px;
6015 h1.listing a[href^="/posts"] {
6016 font-weight: 300;
6017 text-shadow: 0 0 0 #444;
6018 color: #000;
6020 @-moz-document url-prefix() {
6021 h1.listing a[href^="/posts"] {
6022 text-shadow: none;
6025 @media not all and (min-resolution:.001dpcm) { @media {
6026 h1.listing a[href^="/posts"] {
6027 color: #000;
6031 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6032 h1.listing a:hover,
6033 h1.listing a:focus {
6034 color: #92c396;
6035 background-color: rgba(255,255,255,0.85);
6037 h1.listing:focus-within::before {
6038 color: #79a97e;
6039 font-weight: 400;
6040 left: -0.625em;
6042 h1.listing a[href^="http"]:hover {
6043 color: #79a97e;
6045 h1.listing a[href^="http"]:focus {
6046 color: #a0d3a2;
6047 text-decoration: none;
6048 border-bottom: 2px dotted #a0d3a2;
6052 h1.listing .edit-post-link {
6053 padding: 5px 3px 24px 0.5em;
6054 top: 0;
6055 right: 0;
6057 h1.listing .edit-post-link:hover {
6058 text-decoration: none;
6060 #content.user-page h1.listing .edit-post-link {
6061 background-color: #fff;
6064 /*======*/
6065 /* SPAM */
6066 /*======*/
6068 h1.listing.spam {
6069 opacity: 0.15;
6071 h1.listing.spam + .post-meta {
6072 opacity: 0.35;
6074 h1.listing.spam:hover,
6075 h1.listing.spam + .post-meta:hover,
6076 h1.listing.spam:hover + .post-meta {
6077 opacity: 1.0;
6080 /*===================*/
6081 /* LISTING POST-META */
6082 /*===================*/
6084 h1.listing + .post-meta {
6085 font-size: 0.875rem;
6086 margin: 0 20px 0 1px;
6089 h1.listing + .post-meta > * {
6090 color: #bbb;
6091 margin: 0 1.25em 0 0;
6093 h1.listing + .post-meta a {
6094 color: #92c396;
6096 h1.listing + .post-meta a:hover {
6097 color: #79a97e;
6099 h1.listing + .post-meta .karma-value {
6100 cursor: default;
6102 h1.listing + .post-meta .lw2-link {
6103 display: none;
6105 h1.listing + .post-meta .post-section {
6106 overflow: visible;
6107 order: 1;
6109 h1.listing + .post-meta .post-section::before {
6110 position: relative;
6111 left: unset;
6112 top: -1px;
6115 /*============*/
6116 /* USER PAGES */
6117 /*============*/
6119 #content.user-page h1.page-main-heading,
6120 #content.user-page .user-stats {
6121 grid-row: 1;
6123 #content.user-page #comments-list-mode-selector,
6124 #content.user-page .sublevel-nav.sort {
6125 grid-row: 2 / span 2;
6127 #content.user-page .sublevel-nav {
6128 grid-row: 2;
6129 margin-bottom: 1em;
6131 #content.user-page #top-nav-bar {
6132 grid-row: 3;
6135 #content.user-page h1.page-main-heading,
6136 #content.conversation-page h1.page-main-heading {
6137 font-family: 'Caecilia', 'Helvetica', sans-serif;
6138 font-weight: normal;
6139 margin: 0.5em 0 0 0;
6141 #content.user-page h1.page-main-heading {
6142 border-bottom: 1px solid #e6e6e6;
6143 line-height: 1;
6146 #content.user-page h1.listing,
6147 #content.user-page h1.listing + .post-meta {
6148 border-color: #ddd;
6149 border-style: solid;
6151 #content.user-page h1.listing {
6152 max-width: 100%;
6153 padding: 6px 8px 0 8px;
6154 border-width: 1px 1px 0 1px;
6155 margin: 1rem 0 0 0;
6157 #content.own-user-page h1.listing,
6158 h1.listing.own-post-listing {
6159 padding-right: 36px;
6161 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6162 #content.user-page h1.listing:focus-within::before {
6163 left: -0.625em;
6166 #content.user-page h1.listing + .post-meta {
6167 margin: 0 0 1rem 0;
6168 padding: 12px 8px 3px 8px;
6169 border-width: 0 1px 1px 1px;
6170 line-height: 1;
6173 #content.conversations-user-page h1.listing {
6174 padding: 8px 6px 28px 10px;
6175 font-size: 1.25rem;
6177 #content.conversations-user-page h1.listing + .post-meta {
6178 padding: 4px 10px 0.5em 6px;
6179 margin: 0;
6182 .user-stats .karma-total {
6183 font-weight: 500;
6186 /*===============*/
6187 /* CONVERSATIONS */
6188 /*===============*/
6190 /*============*/
6191 /* LOGIN PAGE */
6192 /*============*/
6194 .login-container form h1 {
6195 font-family: 'Caecilia', 'Helvetica', sans-serif;
6196 font-weight: 300;
6199 .login-container form label {
6200 color: #aaa;
6203 /* “Create account” form */
6205 #signup-form {
6206 border: 1px solid #e4e4e4;
6208 #signup-form input[type='submit'] {
6209 padding: 8px 12px 6px 12px;
6212 /* Log in tip */
6214 .login-container .login-tip {
6215 border: 1px solid #eee;
6218 /* Message box */
6220 .error-box {
6221 border: 1px solid red;
6222 background-color: #faa;
6224 .success-box {
6225 border: 1px solid green;
6226 background-color: #afa;
6229 /*=====================*/
6230 /* PASSWORD RESET PAGE */
6231 /*=====================*/
6233 .reset-password-container input[type='submit'] {
6234 background-color: #e4e4e4;
6235 border: 1px solid #ccc;
6236 font-weight: bold;
6239 /*===================*/
6240 /* TABLE OF CONTENTS */
6241 /*===================*/
6243 .contents {
6244 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
6245 padding-top: 0;
6246 margin-top: 1em;
6247 background-color: #fff;
6249 .post-body .contents ul {
6250 font-size: 0.8125em;
6252 .post-body .contents li::before {
6253 color: #bbb;
6256 /*==================*/
6257 /* POSTS & COMMENTS */
6258 /*==================*/
6260 .post-body,
6261 .comment-body {
6262 font-family: 'Source Serif Pro', 'Helvetica', sans-serif;
6263 text-shadow: none;
6264 font-weight: 400;
6267 /*=======*/
6268 /* POSTS */
6269 /*=======*/
6271 .post {
6272 overflow: visible;
6273 padding: 2em 0 0 0;
6276 .post-body {
6277 font-size: 1.25rem;
6280 h1.post-title {
6281 font-size: 2.75rem;
6282 font-family: 'Caecilia', 'Helvetica', sans-serif;
6283 font-weight: 300;
6284 line-height: 1.1;
6285 margin: 1.375em 0 0.5em 0;
6288 /*===========*/
6289 /* POST-META */
6290 /*===========*/
6292 .post-meta .post-section::before {
6293 color: #dfdfdf;
6294 font-weight: 400;
6295 padding: 1px;
6297 .post-meta .post-section.alignment-forum::before {
6298 color: #d6d7ff;
6300 .post .post-meta .post-section::before {
6301 position: relative;
6302 top: -3px;
6305 a.post-section::before {
6306 transition: color 0.15s ease;
6308 a.post-section:hover::before {
6309 color: #79a97e;
6311 a.post-section.alignment-forum:hover::before {
6312 color: #999bc1;
6315 .post-meta > * {
6316 color: #bbb;
6318 .post-meta a,
6319 .post-meta a:visited {
6320 color: #92c396;
6322 .post-meta a:hover {
6323 color: #79a97e;
6325 .post-meta .lw2-link:hover {
6326 opacity: 1;
6329 .post .top-post-meta {
6330 flex-flow: column;
6331 position: relative;
6333 .post .top-post-meta .karma,
6334 .post .top-post-meta .author,
6335 .post .top-post-meta .qualified-linking {
6336 margin: auto;
6338 @supports (width: -moz-fit-content) {
6339 .post .top-post-meta .karma, .post .top-post-meta .author, .post .top-post-meta .qualified-linking {
6340 width: -moz-fit-content;
6343 @supports (width: fit-content) {
6344 .post .top-post-meta .karma, .post .top-post-meta .author, .post .top-post-meta .qualified-linking {
6345 width: fit-content;
6349 .post .top-post-meta .karma {
6350 order: -1;
6351 display: flex;
6352 flex-flow: column;
6354 .post .top-post-meta .karma .karma-value {
6355 padding: 5px 0 0 0;
6356 color: #999;
6357 font-size: 1.125em;
6358 position: relative;
6359 background-color: #fff;
6360 width: 2.25em;
6362 .post .top-post-meta .karma .karma-value::before {
6363 content: "";
6364 position: absolute;
6365 display: block;
6366 background-color: #ccc;
6367 height: 1px;
6368 width: 244px;
6369 top: 50%;
6370 left: -100px;
6371 z-index: -1;
6373 .post .top-post-meta .karma .karma-value span {
6374 display: none;
6377 .post .post-meta .karma.active-controls::after {
6378 bottom: -32px;
6379 padding: 0 4px;
6381 .post .post-meta .karma.active-controls:hover::after {
6382 opacity: 0.7;
6384 .post .top-post-meta .karma.active-controls::after {
6385 bottom: 0;
6386 left: calc(100% + 16px);
6387 max-width: unset;
6388 padding: 0;
6389 white-space: nowrap;
6391 .post .post-meta .karma .karma-value::after {
6392 top: -20px;
6394 .post .post-meta .karma .karma-value:hover::after {
6395 opacity: 0.7;
6397 .post .top-post-meta .karma .karma-value::after {
6398 top: -6px;
6399 left: unset;
6400 width: unset;
6401 right: calc(100% + 8px);
6404 .post .top-post-meta .author {
6405 padding: 4px 0 0 0;
6406 margin: 0.25em auto;
6408 .post .top-post-meta .qualified-linking {
6409 z-index: 1;
6411 .post .top-post-meta .qualified-linking label {
6412 margin: 0;
6415 .post .top-post-meta .post-section,
6416 .post .top-post-meta .lw2-link {
6417 display: none;
6420 .post .top-post-meta .date,
6421 .post .top-post-meta .comment-count {
6422 position: absolute;
6423 right: 100%;
6425 .post .top-post-meta .date {
6426 top: calc(100% + 34px);
6428 .post .top-post-meta .comment-count {
6429 top: calc(100% + 60px);
6431 .post .top-post-meta .date > span,
6432 .post .top-post-meta .comment-count > span {
6433 position: fixed;
6434 transform: translateX(-100%);
6437 .post .bottom-post-meta {
6438 padding: 1.75em 0 0 0;
6439 margin: 0.5em 0 1.5em 0;
6440 position: relative;
6442 .post .bottom-post-meta::before {
6443 content: "";
6444 position: absolute;
6445 display: block;
6446 background-color: #ddd;
6447 height: 1px;
6448 width: calc(100% - 60px);
6449 top: 0;
6452 /*============*/
6453 /* LINK POSTS */
6454 /*============*/
6456 .post.link-post a.link-post-link {
6457 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
6459 .post.link-post a.link-post-link::before {
6460 opacity: 0.6;
6462 .post.link-post a.link-post-link:hover::before {
6463 opacity: 1;
6465 .post.link-post a.link-post-link:focus {
6466 color: #79a97e;
6467 border-bottom: 2px dotted #79a97e;
6470 /*==========*/
6471 /* COMMENTS */
6472 /*==========*/
6474 .comments {
6475 padding: 0 0 0 10px;
6477 #content > .comment-thread .comment-meta a.date:focus,
6478 #content > .comment-thread .comment-meta a.permalink:focus {
6479 color: #888;
6480 outline: 1px dotted #999;
6481 position: relative;
6482 background-color: #fff;
6483 padding: 0 5px;
6484 left: -5px;
6486 #content > .comment-thread .comment-meta a.date:focus + *,
6487 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
6488 margin-left: -10px;
6490 #content > .comment-thread .comment-meta a.permalink:focus {
6491 outline: 2px dotted #999;
6493 .comment-item {
6494 border: 1px solid #ddd;
6498 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6499 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6500 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6501 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6502 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6503 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6504 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6505 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6506 .comment-item .comment-item .comment-item .comment-item .comment-item,
6507 .comment-item .comment-item .comment-item,
6508 .comment-item {
6509 background-color: #f6f6f6;
6511 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6512 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6513 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6514 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6515 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6516 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6517 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6518 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6519 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6520 .comment-item .comment-item .comment-item a.comment-parent-link::after,
6521 .comment-item a.comment-parent-link::after {
6522 box-shadow:
6523 0 28px 16px -16px #fff inset,
6524 4px 16px 0 12px #ffd inset,
6525 4px 4px 0 12px #ffd inset;
6528 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6529 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6530 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6531 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6532 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6533 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6534 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6535 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6536 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6537 .comment-item .comment-item .comment-item .comment-item,
6538 .comment-item .comment-item {
6539 background-color: #fff;
6541 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6542 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6543 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6544 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6545 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6546 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6547 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6548 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6549 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6550 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6551 .comment-item .comment-item a.comment-parent-link::after {
6552 box-shadow:
6553 0 28px 16px -16px #f6f6f6 inset,
6554 4px 16px 0 12px #ffd inset,
6555 4px 4px 0 12px #ffd inset;
6558 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6559 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6560 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6561 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6562 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6563 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6564 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6565 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6566 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6567 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6568 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6569 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6570 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6571 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6572 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6573 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6574 .comment-item .comment-item .comment-item .comment-item:target,
6575 .comment-item .comment-item .comment-item:target,
6576 .comment-item .comment-item:target,
6577 .comment-item:target {
6578 background-color: #ffd;
6580 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
6581 box-shadow:
6582 0 28px 16px -16px #ffd inset,
6583 4px 16px 0 12px #ffd inset,
6584 4px 4px 0 12px #ffd inset !important;
6587 .comment-body {
6588 font-size: 1.1875rem;
6590 #content.user-page .comment-body,
6591 #content.index-page .comment-body {
6592 font-size: 1.125rem;
6595 /*================================*/
6596 /* DEEP COMMENT THREAD COLLAPSING */
6597 /*================================*/
6599 .comment-item input[id^="expand"] + label::after {
6600 color: #92c396;
6601 font-weight: 400;
6603 .comment-item input[id^="expand"] + label:hover::after {
6604 color: #c00;
6606 .comment-item input[id^="expand"] + label:active::after,
6607 .comment-item input[id^="expand"] + label:focus::after{
6608 color: #c00;
6610 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6611 border-width: 1px 0 0 0;
6614 /*==============*/
6615 /* COMMENT-META */
6616 /*==============*/
6618 .comment-meta {
6619 padding-top: 4px;
6621 .comment-meta > * {
6622 color: #bbb;
6624 .comment-meta a,
6625 .comment-meta a:visited {
6626 color: #92c396;
6628 .comment-meta a:hover {
6629 color: #79a97e;
6631 .comment-meta .author {
6632 font-size: 1.125em;
6633 font-weight: normal;
6636 .comment-controls .karma {
6637 color: #bbb;
6640 .comment-item .karma.active-controls::after,
6641 .comment-item .karma .karma-value::after {
6642 background-color: #fff;
6643 color: #bbb;
6644 border-radius: 4px;
6645 box-shadow: 0 0 0 1px #eee inset;
6647 .comment-item .karma.active-controls::after {
6648 padding: 6px 4px 4px 4px;
6649 bottom: -42px;
6651 .comment-item .karma .karma-value::after {
6652 padding: 4px 8px 0 8px;
6653 top: -30px;
6656 /*====================*/
6657 /* ANTI-KIBITZER MODE */
6658 /*====================*/
6660 .author.redacted,
6661 .inline-author.redacted {
6662 opacity: 0.9;
6663 font-weight: 300;
6666 .karma-value.redacted {
6667 opacity: 0.7;
6670 .link-post-domain.redacted {
6671 opacity: 0.6;
6674 /*===========================*/
6675 /* COMMENT THREAD NAVIGATION */
6676 /*===========================*/
6678 div.comment-parent-link {
6679 font-weight: 400;
6681 a.comment-parent-link {
6682 font-weight: 300;
6684 a.comment-parent-link::before {
6685 color: #bbb;
6686 font-weight: 400;
6688 a.comment-parent-link:hover::before {
6689 background-color: #ffd;
6690 color: #999;
6693 div.comment-child-links {
6694 font-weight: 400;
6696 div.comment-child-links a {
6697 font-weight: 300;
6699 .comment-child-link::before {
6700 color: #ccc;
6703 .comment-item-highlight {
6704 box-shadow:
6705 0 0 2px #e7b200,
6706 0 0 3px #e7b200,
6707 0 0 5px #e7b200,
6708 0 0 7px #e7b200,
6709 0 0 10px #e7b200;
6710 border: 1px solid #e7b200;
6712 .comment-item-highlight-faint {
6713 box-shadow:
6714 0 0 2px #f8e7b5,
6715 0 0 3px #f8e7b5,
6716 0 0 5px #f8e7b5,
6717 0 0 7px #f8e7b5,
6718 0 0 10px #f8e7b5;
6719 border: 1px solid #f8e7b5;
6722 .comment-popup {
6723 background-color: #fff;
6726 /*====================*/
6727 /* COMMENT PERMALINKS */
6728 /*====================*/
6730 .comment-meta .permalink::before {
6731 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');
6733 .comment-meta .lw2-link::before {
6734 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==');
6736 .individual-thread-page a.comment-parent-link:empty::before {
6737 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=');
6739 .comment-meta .permalink:hover::before {
6740 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');
6742 .comment-meta .lw2-link:hover::before {
6743 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==');
6745 .individual-thread-page a.comment-parent-link:hover:empty::before {
6746 left: unset;
6747 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==');
6750 .comment-meta .permalink,
6751 .comment-meta .lw2-link,
6752 .individual-thread-page .comment-parent-link:empty {
6753 filter: hue-rotate(270deg);
6754 opacity: 0.4;
6756 .comment-meta .permalink:hover,
6757 .comment-meta .lw2-link:hover,
6758 .individual-thread-page .comment-parent-link:empty:hover {
6759 opacity: 1.0;
6762 /*=======================*/
6763 /* COMMENTS COMPACT VIEW */
6764 /*=======================*/
6766 #comments-list-mode-selector {
6767 opacity: 0.4;
6768 transition: opacity 0.15s ease;
6770 #content.index-page #comments-list-mode-selector {
6771 grid-column: 3;
6772 justify-self: end;
6774 #comments-list-mode-selector:hover {
6775 opacity: 1.0;
6778 #comments-list-mode-selector button {
6779 border: none;
6780 background-color: transparent;
6781 box-shadow:
6782 0 0 0 4px #fff inset,
6783 0 0 0 5px #aaa inset;
6785 #comments-list-mode-selector button:hover,
6786 #comments-list-mode-selector button.selected {
6787 box-shadow:
6788 0 0 0 1px #fff inset,
6789 0 0 0 2px #aaa inset,
6790 0 0 0 4px #fff inset,
6791 0 0 0 5px #aaa inset;
6794 #content.compact > .comment-thread .comment-item {
6795 max-height: 53px;
6797 #content.compact > .comment-thread .comment-item::after {
6798 color: #92c396;
6799 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6802 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6803 #content.compact > .comment-thread .comment-item:hover .comment,
6804 #content.compact > .comment-thread .comment-item.expanded .comment {
6805 background-color: #fff;
6806 outline: 1px solid #92c396;
6808 #content.compact > .comment-thread .comment-item:hover .comment::before,
6809 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6810 background-color: #fff;
6811 box-shadow:
6812 0 0 3px #fff,
6813 0 0 5px #fff,
6814 0 0 7px #fff,
6815 0 0 10px #fff,
6816 0 0 20px #fff,
6817 0 0 30px #fff,
6818 0 0 40px #fff;
6821 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6822 #content.compact > .comment-thread.expanded .comment-item .comment {
6823 background-color: #fff;
6824 outline: 1px solid #92c396;
6826 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6827 background-color: #fff;
6828 box-shadow:
6829 0 0 3px #fff,
6830 0 0 5px #fff,
6831 0 0 7px #fff,
6832 0 0 10px #fff,
6833 0 0 20px #fff,
6834 0 0 30px #fff,
6835 0 0 40px #fff;
6838 #content.compact > .comment-thread .comment-item:hover .comment {
6839 background-color: #fff;
6840 outline: 1px solid #92c396;
6842 #content.compact > .comment-thread .comment-item:hover .comment::before {
6843 background-color: #fff;
6844 box-shadow:
6845 0 0 3px #fff,
6846 0 0 5px #fff,
6847 0 0 7px #fff,
6848 0 0 10px #fff,
6849 0 0 20px #fff,
6850 0 0 30px #fff,
6851 0 0 40px #fff;
6854 #content.user-page.compact > h1.listing {
6855 margin-top: 0.5rem;
6857 #content.user-page.compact > h1.listing + .post-meta {
6858 margin-bottom: 1rem;
6861 /*===========================*/
6862 /* HIGHLIGHTING NEW COMMENTS */
6863 /*===========================*/
6865 .new-comment::before {
6866 outline: 1px solid #5a5;
6867 box-shadow:
6868 0 0 6px -2px #5a5 inset,
6869 0 0 4px #5a5;
6872 /*=================================*/
6873 /* COMMENT THREAD MINIMIZE BUTTONS */
6874 /*=================================*/
6876 .comment-minimize-button {
6877 color: #ddd;
6878 font-weight: 300;
6879 box-shadow: 0 0 0 1px transparent;
6881 .comment-minimize-button:hover {
6882 color: #bbb;
6883 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6885 .comment-minimize-button::after {
6886 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
6887 color: #999;
6889 .comment-minimize-button.maximized::after {
6890 color: #ccc;
6893 /*=================================*/
6894 /* INDIVIDUAL COMMENT THREAD PAGES */
6895 /*=================================*/
6897 .individual-thread-page > h1 {
6898 margin: 2em 0 0 30px;
6899 font-weight: 300;
6900 font-family: 'Caecilia', 'Helvetica', sans-serif;
6902 .individual-thread-page > .comments {
6903 padding: 0 0 0 30px;
6905 .individual-thread-page > #bottom-bar.decorative::before {
6906 margin: 0 30px 0 60px;
6909 /*==============*/
6910 /* VOTE BUTTONS */
6911 /*==============*/
6913 .upvote,
6914 .downvote {
6915 color: #ddd;
6916 font-weight: 400;
6917 position: relative;
6919 .vote::before {
6920 position: relative;
6921 z-index: 1;
6923 .upvote::before {
6924 content: "\F077";
6926 .downvote::before {
6927 content: "\F078";
6928 position: relative;
6929 top: 1px;
6931 .upvote:hover,
6932 .upvote.selected {
6933 text-shadow:
6934 0 0 0.5px #fff,
6935 0 0 8px #0f0;
6937 .downvote:hover,
6938 .downvote.selected {
6939 text-shadow:
6940 0 0 0.5px #fff,
6941 0 0 8px #f00;
6944 .vote::after {
6945 position: absolute;
6946 color: transparent;
6948 .vote:not(:hover)::after {
6949 text-shadow: none;
6951 .karma.waiting .vote.big-vote::after {
6952 color: transparent;
6954 .vote.big-vote::after,
6955 .vote:not(.big-vote).clicked-twice::after {
6956 color: inherit;
6958 .karma:not(.waiting) .vote.clicked-once::after {
6959 color: #ddd;
6962 .upvote::after {
6963 content: "\F325";
6964 bottom: 5px;
6965 left: 7px;
6967 .downvote::after {
6968 content: "\F322";
6969 top: 5px;
6970 left: 7px;
6972 @-moz-document url-prefix() {
6973 .upvote::after {
6974 bottom: 3px;
6975 left: 8px;
6977 .downvote::after {
6978 top: 4px;
6979 left: 8px;
6983 .post .top-post-meta .upvote::after,
6984 .post .top-post-meta .downvote::after {
6985 left: 14px;
6988 /*===========================*/
6989 /* COMMENTING AND POSTING UI */
6990 /*===========================*/
6992 .posting-controls input[type='submit'] {
6993 padding: 6px 12px 3px 12px;
6996 .comment-controls {
6997 margin: 0 4px 4px 16px;
6999 .comment + .comment-controls .action-button {
7000 font-weight: 300;
7003 .new-comment-button {
7004 margin: 0;
7005 padding: 0.125em;
7008 .comment-controls .cancel-comment-button {
7009 color: #c00;
7010 text-shadow:
7011 0 0 1px #fff,
7012 0 0 2px #fff;
7013 padding: 6px 8px 1px 4px;
7015 .comment-controls .cancel-comment-button:hover {
7016 color: #f00;
7019 .comment-controls .delete-button,
7020 .comment-controls .retract-button {
7021 color: #fd7354;
7023 .comment-controls .delete-button::before,
7024 .comment-controls .unretract-button::before {
7025 font-weight: 300;
7027 .comment-controls .retract-button::before {
7028 font-weight: 400;
7030 .comment-controls .edit-button,
7031 .comment-controls .unretract-button {
7032 color: #0b0;
7034 .comment-controls .edit-button::before {
7035 font-weight: 300;
7037 .comment-controls .action-button:hover {
7038 color: #f00;
7039 text-shadow: 0 0 0.5px #faa;
7042 .post-controls {
7043 margin: 3em 2.5em 0 0;
7044 grid-row: 2;
7046 .post {
7047 grid-row: 2;
7049 .edit-post-link,
7050 .edit-post-link:visited {
7051 color: #090;
7054 .posting-controls textarea {
7055 font-family: 'Source Serif Pro', 'Helvetica', sans-serif;
7056 font-weight: 300;
7057 color: #000;
7058 text-shadow: 0 0 0 #000;
7059 border-color: #eee;
7060 transition: border-color 0.15s ease;
7062 .posting-controls textarea:focus {
7063 border-width: 29px 1px 1px 1px;
7064 border-color: #92c396;
7066 .posting-controls.edit-existing-post textarea:focus,
7067 .posting-controls form.edit-existing-comment textarea:focus {
7068 border-color: #090;
7071 /*= Scroll bars =*/
7073 .posting-controls textarea::-webkit-scrollbar {
7074 width: 16px;
7075 background-color: transparent;
7077 .posting-controls textarea::-webkit-scrollbar-track {
7078 background-color: #fff;
7080 .posting-controls textarea::-webkit-scrollbar-thumb {
7081 background-color: #eee;
7082 box-shadow: 0 0 0 1px #fff inset;
7084 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
7085 background-color: #c4dbc4;
7086 box-shadow: 0 0 0 1px #fff inset;
7089 /* GUIEdit buttons */
7091 .guiedit-buttons-container {
7092 background-color: #fff;
7093 border-bottom: 1px solid #eee;
7096 .posting-controls.edit-existing-post .guiedit-buttons-container button,
7097 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
7098 color: #050;
7100 .guiedit-buttons-container button {
7101 font-family: Font Awesome, 'Source Serif Pro', 'Helvetica', sans-serif;
7102 border: 1px solid transparent;
7105 .guiedit::after {
7106 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
7107 color: #999;
7108 font-weight: 300;
7109 text-shadow: 0 0 0 #999;
7110 top: 3px;
7113 .posting-controls .markdown-reference-link a {
7114 background-position: right 70%;
7116 .markdown-reference-link {
7117 color: #999;
7120 /* Markdown hints */
7122 #markdown-hints-checkbox + label {
7123 color: #92c396;
7125 #markdown-hints-checkbox + label:hover {
7126 color: #79a97e;
7128 #markdown-hints {
7129 border: 1px solid #faa;
7130 background-color: #fff;
7132 #markdown-hints .markdown-hints-row span,
7133 #markdown-hints .markdown-hints-row code {
7134 padding: 2px 12px 2px 2px;
7137 /*================*/
7138 /* EDIT POST FORM */
7139 /*================*/
7141 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7142 top: 2px;
7143 color: #acd2af;
7144 transition: color 0.15s ease;
7146 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover {
7147 color: #79a97e;
7149 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7150 top: 2px;
7151 border: 1px solid #eee;
7152 color: #bbb;
7153 transition:
7154 box-shadow 0.3s ease,
7155 border-color 0.15s ease;
7157 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
7158 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before {
7159 border-color: #c4dbc4;
7162 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
7163 border-color: #c4dbc4;
7164 box-shadow:
7165 0 0 0 4px #fff inset,
7166 0 0 0 1em #c4dbc4 inset;
7169 #edit-post-form label[for='url'],
7170 #edit-post-form input[name='url'] {
7171 display: block;
7172 transition:
7173 max-height 0.15s ease,
7174 overflow 0.15s ease,
7175 margin-top 0.15s ease,
7176 margin-bottom 0.15s ease,
7177 padding 0.15s ease,
7178 border-color 0.15s ease;
7181 #edit-post-form .link-post-checkbox:not(:checked) ~ label[for='url'],
7182 #edit-post-form .link-post-checkbox:not(:checked) ~ input[name='url'] {
7183 max-height: 0;
7184 overflow: hidden;
7185 margin-top: 0;
7186 margin-bottom: 0;
7187 padding: 0;
7188 border-color: transparent;
7191 #edit-post-form label[for='title'],
7192 #edit-post-form label[for='url'],
7193 #edit-post-form label[for='section'] {
7194 color: #aaa;
7195 text-shadow: 0 0 0 #aaa;
7198 #edit-post-form input[type='radio'] + label {
7199 color: #92c396;
7200 border-color: #c4dbc4;
7201 padding: 6px 12px 3px 12px;
7202 position: relative;
7203 top: -2px;
7204 transition:
7205 background-color 0.15s ease,
7206 color 0.15s ease,
7207 border-color 0.15s ease;
7209 #edit-post-form input[type='radio'][value='all'] + label {
7210 border-radius: 8px 0 0 8px;
7211 border-width: 1px;
7213 #edit-post-form input[type='radio'][value='drafts'] + label {
7214 border-radius: 0 8px 8px 0;
7215 padding-right: 13px;
7217 #edit-post-form input[type='radio'] + label:hover,
7218 #edit-post-form input[type='radio']:focus + label,
7219 #edit-post-form input[type='radio']:checked + label {
7220 background-color: #c4dbc4;
7221 color: #fff;
7223 #edit-post-form input[type='radio']:active + label {
7224 border-color: #92c396;
7225 background-color: #92c396;
7228 #edit-post-form input[type='submit'] {
7229 padding: 7px 14px 4px 14px;
7232 /*=======*/
7233 /* LINKS */
7234 /*=======*/
7237 text-decoration: none;
7238 color: #92c396;
7239 transition: color 0.15s ease;
7241 a:visited {
7242 color: #bebb84;
7244 a:hover {
7245 color: #bbb;
7248 /*=========*/
7249 /* BUTTONS */
7250 /*=========*/
7252 button,
7253 input[type='submit'] {
7254 color: #92c396;
7256 input[type='submit'] {
7257 color: #92c396;
7258 background-color: #fff;
7259 border: 1px solid #c4dbc4;
7260 transition:
7261 color 0.15s ease,
7262 background-color 0.15s ease,
7263 border-color 0.15s ease;
7266 input[type='submit']:hover,
7267 input[type='submit']:focus {
7268 background-color: #c4dbc4;
7269 color: #fff;
7271 input[type='submit']:active {
7272 background-color: #92c396;
7273 border-color: #92c396;
7275 .button:visited {
7276 color: #92c396;
7278 button:hover,
7279 .button:hover {
7280 color: #79a97e;
7281 text-decoration: none;
7283 button:active,
7284 .button:active {
7285 transform: scale(0.9);
7287 button:focus:not(:hover),
7288 .button:focus:not(:hover) {
7289 transform: none;
7291 @-moz-document url-prefix() {
7292 .button:active {
7293 transform: none;
7297 /*==========*/
7298 /* HEADINGS */
7299 /*==========*/
7301 .post-body h1,
7302 .post-body h2,
7303 .post-body h3,
7304 .post-body h4,
7305 .post-body h5,
7306 .post-body h6,
7307 .comment-body h1,
7308 .comment-body h2,
7309 .comment-body h3,
7310 .comment-body h4,
7311 .comment-body h5,
7312 .comment-body h6 {
7313 font-family: 'Caecilia', 'Helvetica', sans-serif;
7314 font-weight: 300;
7316 .post-body h1,
7317 .comment-body h1 {
7318 margin-top: 1.25em;
7319 box-shadow:
7320 0 -7px 0 0 #fff inset,
7321 0 -8px 0 0 #eee inset;
7323 .post-body h6,
7324 .comment-body h6 {
7325 color: #555;
7328 /*========*/
7329 /* QUOTES */
7330 /*========*/
7332 blockquote {
7333 border-left: 5px solid #e6e6e6;
7336 /*========*/
7337 /* IMAGES */
7338 /*========*/
7340 #content img,
7341 #content figure.image img {
7342 border: 1px solid #ccc;
7344 #content figure img {
7345 border: 1px solid #000;
7347 #content img[src$='.svg'],
7348 #content figure img[src$='.svg'] {
7349 border: none;
7351 #content img[style^='float'] {
7352 border: 1px solid transparent;
7355 /*=============*/
7356 /* IMAGE FOCUS */
7357 /*=============*/
7359 #image-focus-overlay {
7360 visibility: visible;
7363 /*======*/
7364 /* MISC */
7365 /*======*/
7367 hr {
7368 margin: 1em 0;
7370 hr::before {
7371 content: "• • •";
7372 letter-spacing: 7px;
7373 color: #aaa;
7374 text-align: center;
7375 display: block;
7376 font-size: 0.875em;
7379 code,
7380 pre {
7381 font-family: 'Source Code Pro', Inconsolata, monospace;
7382 font-size: 0.9375em;
7383 font-feature-settings: 'ss04';
7385 code {
7386 background-color: #eee;
7387 padding: 0 5px 1px 5px;
7388 box-shadow: 0 0 0 1px #fff inset;
7391 input[type='text'],
7392 input[type='search'],
7393 input[type='password'] {
7394 border: 1px solid #999;
7395 color: #000;
7396 background-color: transparent;
7397 border-color: transparent;
7398 border-bottom-color: #eee;
7399 transition: border-color 0.15s ease;
7401 input[type='text']:focus,
7402 input[type='search']:focus,
7403 input[type='password']:focus {
7404 border-bottom-color: #c4dbc4;
7407 select {
7408 color: #000;
7411 strong, b {
7412 font-weight: 600;
7415 /*============*/
7416 /* ABOUT PAGE */
7417 /*============*/
7419 .about-page mark {
7420 background-color: #e6e6e6;
7421 text-decoration: none;
7422 box-shadow:
7423 0 -1px 0 0 #000 inset,
7424 0 -3px 1px -2px #000 inset;
7425 padding: 0 1px;
7428 #content.about-page .accesskey-table {
7429 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
7430 border-color: #ddd;
7433 #content.about-page img {
7434 border: 1px solid #000;
7437 /*========================*/
7438 /* QUALIFIED HYPERLINKING */
7439 /*========================*/
7441 #content.no-nav-bars ~ #ui-elements-container #site-nav-ui-toggle {
7442 display: none;
7444 #content.no-comments ~ #ui-elements-container #post-nav-ui-toggle {
7445 display: none;
7448 #aux-about-link a {
7449 color: #777;
7451 #aux-about-link a:hover {
7452 opacity: 1.0;
7453 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
7456 .qualified-linking label {
7457 color: #ccc;
7458 font-weight: 400;
7460 .qualified-linking label:hover {
7461 color: #92c396;
7464 .qualified-linking-toolbar {
7465 border: 1px solid #ccc;
7466 background-color: #fff;
7468 .qualified-linking-toolbar a {
7469 padding: 3px 6px 0 6px;
7471 .qualified-linking-toolbar a,
7472 .qualified-linking-toolbar a:visited {
7473 color: #acd2af;
7475 .qualified-linking-toolbar a:hover {
7476 color: #92c396;
7477 text-decoration: none;
7478 background-color: #e4f1e5;
7480 .qualified-linking label::after {
7481 background-color: #fff;
7482 opacity: 0.8;
7485 /*======*/
7486 /* MATH */
7487 /*======*/
7489 .mathjax-block-container::-webkit-scrollbar {
7490 height: 12px;
7491 background-color: #f6f6ff;
7492 border-radius: 6px;
7493 border: 1px solid #ddf;
7495 .mathjax-block-container::-webkit-scrollbar-thumb {
7496 background-color: #dde;
7497 border-radius: 6px;
7498 border: 1px solid #cce;
7500 .mathjax-inline-container::-webkit-scrollbar {
7501 height: 8px;
7502 background-color: #f6f6ff;
7503 border-radius: 4px;
7504 border: 1px solid #ddf;
7506 .mathjax-inline-container::-webkit-scrollbar-thumb {
7507 background-color: #dde;
7508 border-radius: 4px;
7509 border: 1px solid #cce;
7512 /*=================*/
7513 /* ALIGNMENT FORUM */
7514 /*=================*/
7516 #content.alignment-forum-index-page::after {
7517 margin: -0.25em 0 0.25em 0;
7518 text-align: center;
7519 grid-column: 2;
7520 font-family: "Concourse SmallCaps";
7521 font-weight: 600;
7522 background-color: #7f85b2;
7523 color: transparent;
7524 -webkit-background-clip: text;
7525 text-shadow:
7526 rgba(255,255,255,0.5) 0px 3px 3px;
7529 /*====================*/
7530 /* FOR NARROW SCREENS */
7531 /*====================*/
7533 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
7534 @media only screen and (max-width: 1080px) {
7535 #site-nav-ui-toggle button.engaged {
7536 left: -72px;
7538 #text-size-adjustment-ui {
7539 left: -22px;
7540 top: calc(100% - 240px);
7542 #width-selector {
7543 left: -23px;
7544 top: calc(100% - 140px);
7546 #theme-tweaker-toggle button {
7547 width: unset;
7548 height: unset;
7551 @media only screen and (max-width: 1020px) {
7553 @media only screen and (max-width: 1000px) {
7554 #site-nav-ui-toggle button.engaged {
7555 left: -56px;
7557 #theme-selector {
7558 padding: 0;
7560 #theme-selector button {
7561 margin: 1px 7px 0 7px;
7566 /*========*/
7567 /* MOBILE */
7568 /*========*/
7570 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
7571 #site-nav-ui-toggle {
7572 top: 10px;
7573 left: 10px;
7575 #site-nav-ui-toggle button.engaged {
7576 width: 1.125em;
7577 overflow: hidden;
7578 position: relative;
7579 left: 5px;
7580 top: -3px;
7582 #site-nav-ui-toggle button.engaged::before {
7583 content: "\F00D";
7584 font-size: 34px;
7585 padding: 0 0.25em 0 0;
7587 #ui-elements-container > #site-nav-ui-toggle button.engaged {
7588 transform: rotate(90deg);
7591 #ui-elements-container > div[id$='-ui-toggle'] button,
7592 #theme-selector .theme-selector-close-button {
7593 color: #bbb;
7594 text-shadow:
7595 0 0 1px #fff,
7596 0 0 3px #fff,
7597 0 0 5px #fff,
7598 0 0 10px #fff,
7599 0 0 20px #fff,
7600 0 0 30px #fff;
7602 #ui-elements-container > div[id$='-ui-toggle'] button {
7603 font-weight: 400;
7605 #theme-selector .theme-selector-close-button {
7606 font-weight: 300;
7609 #theme-selector {
7610 background-color: #fff;
7611 box-shadow:
7612 0 0 0 1px #999,
7613 0 0 1px 3px #fff,
7614 0 0 3px 3px #fff,
7615 0 0 5px 3px #fff,
7616 0 0 10px 3px #fff,
7617 0 0 20px 3px #fff;
7618 border-radius: 12px;
7620 #theme-selector::before {
7621 color: #999;
7622 font-weight: 300;
7623 position: relative;
7624 top: 6px;
7626 #theme-selector button,
7627 #theme-selector button.selected {
7628 background-color: #fff;
7629 border-radius: 10px;
7630 box-shadow:
7631 0 0 0 4px #fff inset,
7632 0 0 0 5px #999 inset;
7634 #theme-selector button.selected {
7635 background-color: #c4dbc4;
7637 #theme-selector button::after {
7638 color: #819681;
7639 font-weight: 300;
7640 max-width: calc(100% - 3.5em);
7641 overflow: hidden;
7642 text-overflow: ellipsis;
7643 padding: 1px 0 0 0;
7645 #theme-selector button.selected::after {
7646 color: #fff;
7649 #theme-tweaker-toggle button {
7650 color: #999;
7651 font-weight: 400;
7654 #quick-nav-ui {
7655 background-color: #fff;
7657 #quick-nav-ui,
7658 #new-comment-nav-ui,
7659 #hns-date-picker {
7660 box-shadow:
7661 0 0 1px 3px #fff,
7662 0 0 3px 3px #fff,
7663 0 0 5px 3px #fff,
7664 0 0 10px 3px #fff,
7665 0 0 20px 3px #fff;
7667 #quick-nav-ui a::after,
7668 #new-comment-nav-ui::before {
7669 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
7670 font-weight: bold;
7671 box-shadow:
7672 0 0 1px 0 #fff,
7673 0 0 3px 0 #fff,
7674 0 0 5px 0 #fff;
7675 background-color: #fff;
7676 border-radius: 4px;
7678 #quick-nav-ui,
7679 #new-comment-nav-ui {
7680 border-radius: 8px;
7682 #new-comment-nav-ui {
7683 background-color: #fff;
7684 border: 1px solid #fff;
7686 #new-comment-nav-ui::before {
7687 color: #aaa;
7688 font-weight: 500;
7690 #new-comment-nav-ui .new-comment-sequential-nav-button {
7691 color: #79a97e;
7693 #new-comment-nav-ui .new-comments-count {
7694 background-color: inherit;
7695 top: 0;
7697 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7698 color: #e6e6e6;
7700 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7701 border-radius: 7px 0 0 7px;
7703 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7704 border-radius: 0 7px 7px 0;
7706 #new-comment-nav-ui button::after {
7707 font-family: 'Mundo Sans', 'Helvetica', sans-serif;
7709 #hns-date-picker {
7710 background-color: #fff;
7711 border: 1px solid #fff;
7714 #top-nav-bar {
7715 padding: 1.25em 0 0.25em 0;
7716 font-size: 1.625rem;
7717 margin: 0;
7718 grid-row: 2;
7719 grid-column: 2;
7721 #top-nav-bar .page-number {
7722 line-height: 1.7;
7724 #top-nav-bar .page-number span {
7725 display: block;
7727 #top-nav-bar a.disabled {
7728 opacity: 0.2;
7731 /*****************************************/
7732 @media only screen and (max-width: 900px) {
7733 /*****************************************/
7734 #theme-less-mobile-first-row-placeholder {
7735 grid-row: 1;
7736 grid-column: 2 / span 2;
7737 height: 50px;
7740 #primary-bar,
7741 #secondary-bar {
7742 position: static;
7743 width: 0;
7744 height: 0;
7747 #primary-bar {
7748 position: fixed;
7749 left: 0;
7750 margin: 0;
7751 padding: 5px 0 5px 0;
7752 height: unset;
7753 background-color: #fff;
7754 border-bottom: 1px solid #ddd;
7755 box-shadow: 0 0 0 1px #fff;
7756 z-index: 2;
7757 visibility: hidden;
7758 transition:
7759 visibility 0.2s ease,
7760 width 0.2s ease,
7761 opacity 0.2s ease,
7762 filter 0.2s ease;
7764 #primary-bar.engaged {
7765 width: 100%;
7766 visibility: visible;
7767 padding: 5px 4px 75px 60px;
7769 #secondary-bar #nav-item-archive,
7770 #secondary-bar #nav-item-about {
7771 opacity: 0.0;
7772 transition:
7773 opacity 0.3s ease,
7774 filter 0.2s ease;
7776 #secondary-bar.engaged #nav-item-archive,
7777 #secondary-bar.engaged #nav-item-about {
7778 opacity: 1.0;
7779 position: fixed;
7780 top: 80px;
7781 z-index: 3;
7782 width: 64px;
7784 #secondary-bar.engaged #nav-item-archive {
7785 left: 8px;
7787 #secondary-bar.engaged #nav-item-about {
7788 left: 72px;
7791 #primary-bar.engaged.translucent-on-scroll,
7792 #secondary-bar.engaged.translucent-on-scroll #nav-item-archive,
7793 #secondary-bar.engaged.translucent-on-scroll #nav-item-about,
7794 .page-toolbar.engaged.translucent-on-scroll {
7795 opacity: 0.6;
7796 filter: blur(2px);
7797 pointer-events: none;
7800 .page-toolbar {
7801 position: fixed;
7802 height: unset;
7803 width: unset;
7804 z-index: 4;
7805 right: 100%;
7806 top: 80px;
7807 transition:
7808 right 0.2s ease,
7809 opacity 0.2s ease,
7810 filter 0.2s ease;
7812 .page-toolbar.engaged {
7813 right: 0;
7815 .page-toolbar,
7816 #content:not(.user-page) .page-toolbar {
7817 display: flex;
7818 flex-flow: row;
7819 justify-content: flex-end;
7820 padding: 0 8px 0 0;
7822 .page-toolbar > * {
7823 right: unset;
7824 line-height: 1.15;
7825 padding: 6px 0;
7826 margin: 0;
7828 .page-toolbar > form,
7829 .page-toolbar > .button {
7830 text-align: center;
7831 flex-basis: 25%;
7832 margin-left: 1.5em;
7834 .page-toolbar .button {
7835 text-transform: uppercase;
7836 font-size: 0.625rem;
7838 .page-toolbar .button::before,
7839 #content.user-page .page-toolbar .button::before,
7840 .page-toolbar form::before,
7841 #content.user-page .page-toolbar form::before {
7842 font-size: 1.375rem;
7843 display: block;
7844 padding: 2px;
7845 font-size: 1.375rem;
7846 display: block;
7848 .page-toolbar .rss {
7849 white-space: nowrap;
7850 position: fixed;
7851 top: 143px;
7852 left: -60px;
7853 padding: 6px 10px 5px 10px;
7854 visibility: hidden;
7855 background-color: #fff;
7856 border-style: solid;
7857 border-color: #ddd;
7858 border-width: 0 1px 1px 0;
7859 box-shadow:
7860 0 1px 0 0 #fff,
7861 1px 1px 0 0 #fff;
7862 transition: left 0.2s ease;
7864 .page-toolbar .rss,
7865 #content.user-page .page-toolbar .rss {
7866 margin: 0;
7868 .page-toolbar.engaged .rss {
7869 visibility: visible;
7870 left: 0;
7873 #primary-bar .nav-inner {
7874 font-size: 1.375em;
7876 #secondary-bar .nav-inner {
7877 font-size: 1.125em;
7879 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
7880 padding: 6px 10px;
7883 #nav-item-search {
7884 max-width: calc(100% - 180px);
7885 top: 4px;
7886 left: 68px;
7888 #nav-item-search input {
7889 width: calc(100% - 32px);
7891 #nav-item-search button {
7892 position: relative;
7893 bottom: 5px;
7894 visibility: visible;
7895 height: 32px;
7896 width: 40px;
7897 padding: 9px 15px 3px 5px;
7899 #nav-item-search form:not(:focus-within) button:not(:hover) {
7900 color: transparent;
7902 #nav-item-search button::before {
7903 color: #ddd;
7906 #nav-item-login {
7907 top: 16px;
7908 right: 8px;
7910 #nav-item-login .nav-inner {
7911 text-transform: none;
7912 font-size: 1.75em;
7914 #nav-item-login .nav-inner::before {
7915 display: none;
7917 #inbox-indicator::before {
7918 font-size: 1.75em;
7919 left: 2px;
7922 #bottom-bar .nav-inner {
7923 padding: 1rem 0 1.25rem 0;
7925 #bottom-bar .nav-inner::after {
7926 position: absolute;
7929 #content.search-results-page #comments-list-mode-selector {
7930 grid-column: 3;
7931 grid-row: 2;
7932 justify-self: end;
7935 #content,
7936 #content.comment-thread-page {
7937 padding: 0 4px;
7940 h1.listing + .post-meta > * {
7941 line-height: 1.5;
7943 h1.listing + .post-meta .post-section {
7944 overflow: visible;
7945 order: 1;
7946 width: unset;
7948 h1.listing + .post-meta .post-section::before {
7949 position: unset;
7952 .archive-nav *[class^='archive-nav-item-'] {
7953 border-width: 1px !important;
7955 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7956 background-color: #aaa;
7959 .post {
7960 padding: 0;
7962 .post .top-post-meta .author {
7963 margin: 1em auto 0 auto;
7965 .post .top-post-meta .date,
7966 .post .top-post-meta .comment-count {
7967 position: static;
7969 .post .top-post-meta .date {
7970 margin: 1.5em auto 0 auto;
7972 .post .top-post-meta .comment-count span {
7973 display: initial;
7974 position: static;
7976 h1.post-title {
7977 line-height: 1.3;
7980 .comments {
7981 padding: 0;
7983 .comment-item .comment-item {
7984 margin: 0.75em 3px 3px 6px;
7986 .comment-item .comment-item + .comment-item {
7987 margin: 1.5em 3px 3px 6px;
7990 .comment-controls {
7991 position: relative;
7993 .comment-controls .cancel-comment-button,
7994 .comments > .comment-controls .cancel-comment-button {
7995 right: 4px;
7998 .sublevel-nav:not(.sort) .sublevel-item,
7999 .sublevel-nav:not(.sort) .sublevel-item:first-child,
8000 .sublevel-nav:not(.sort) .sublevel-item:last-child {
8001 border-radius: 8px;
8002 border-width: 1px;
8003 margin: 2px;
8006 #content.user-page #theme-less-mobile-first-row-placeholder {
8007 height: 60px;
8009 #content.user-page h1.page-main-heading,
8010 #content.user-page .user-stats {
8011 grid-row: 2;
8013 #content.user-page h1.page-main-heading {
8014 margin: 0.5em 0 0 0.125em;
8016 #content.user-page #comments-list-mode-selector,
8017 #content.user-page .sublevel-nav.sort {
8018 grid-row: 3 / span 2;
8020 #content.user-page .sublevel-nav {
8021 grid-row: 3;
8022 margin-bottom: 1em;
8024 #content.user-page #top-nav-bar {
8025 grid-row: 4;
8026 margin: 0.5em 0 0 0;
8029 #content.conversation-page #theme-less-mobile-first-row-placeholder {
8030 height: 64px;
8032 #content.conversation-page #comments-list-mode-selector {
8033 grid-row: 6;
8034 margin-top: -32px;
8036 #content.conversation-page .conversation-participants {
8037 grid-row: 4;
8038 align-self: end;
8040 /*******************************************/
8041 } @media only screen and (max-width: 720px) {
8042 /*******************************************/
8043 #content.index-page > .sublevel-nav.sort {
8044 flex-flow: column;
8045 margin-right: 4px;
8047 /*******************************************/
8048 } @media only screen and (max-width: 520px) {
8049 /*******************************************/
8050 h1.listing,
8051 #content.search-results-page h1.listing {
8052 font-size: 1.25rem;
8053 margin: 18px 6px 4px 6px;
8054 max-width: calc(100% - 12px);
8056 h1.listing + .post-meta {
8057 margin: 4px 6px;
8059 #content.conversations-user-page h1.listing::after {
8060 height: calc(100% + 2.25em);
8062 #content.conversations-user-page h1.listing + .post-meta .date {
8063 margin: 0 0 0 1em;
8066 .comment-body {
8067 font-size: 1.125rem;
8070 #content.compact > .comment-thread .comment-item {
8071 max-height: 105px;
8074 .textarea-container:focus-within textarea {
8075 background-color: #fff;
8076 border-width: 1px;
8077 box-shadow: 0 0 0 2px #fff;
8079 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
8080 padding: 5px 6px 6px 6px;
8081 font-weight: bold;
8083 .textarea-container:focus-within .guiedit-mobile-help-button.active {
8084 color: #c00;
8086 .textarea-container:focus-within .guiedit-buttons-container {
8087 background-color: #fff;
8088 border-top: 1px solid #ddf;
8090 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
8091 box-shadow: none;
8093 #content.conversation-page .textarea-container:focus-within::after {
8094 background-color: #fff;
8096 #markdown-hints::after {
8097 color: #090;
8100 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
8101 top: 2px;
8102 font-weight: 400;
8104 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
8105 top: 1px;
8111 /*************/
8112 /* ACCORDIUS */
8113 /*************/
8115 /*======*/
8116 /* TAGS */
8117 /*======*/
8119 #tags {
8120 order: 12;
8121 display: flex;
8122 flex-basis: 100%;
8123 justify-content: center;
8124 margin: 0;
8126 #tags a {
8127 display: inline-block;
8130 /*============*/
8131 /* LESS THEME */
8132 /*============*/
8134 /*++++++*/
8135 /* TAGS */
8136 /*++++++*/
8138 #tags {
8139 padding: 0.25em 0 0.5em 0;
8140 align-items: center;
8142 #tags::before {
8143 content: "\F02C";
8144 font-family: Font Awesome;
8145 font-weight: 300;
8146 font-size: 0.875em;
8147 display: inline-block;
8148 margin: 0 0.5em 0 0;
8149 opacity: 0.6;
8150 position: relative;
8151 top: -2px;
8153 #tags a {
8154 margin: 0 0.375em 0 0;
8156 #tags a:not(:last-of-type)::after {
8157 content: ","
8160 .top-post-meta #tags {
8161 display: none;