Keyboard help, part XV
[lw2-viewer.git] / www / css / style-classic.linux.css
blob76d5ca22eb9f08b6305bccd39f7c0e4caff6bf62
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 /* CLASSIC THEME */
5009 /*****************/
5011 body {
5012 color: #000;
5013 background-color: #d8d8d8;
5014 font-family: 'Arial', sans-serif;
5016 #content {
5017 line-height: 1.5;
5019 #content::before {
5020 background-color: #fff;
5021 box-shadow: 0px 0px 10px #555;
5024 /*=========*/
5025 /* NAV BAR */
5026 /*=========*/
5028 .nav-inner {
5029 font-size: 1.125em;
5030 font-weight: bold;
5032 .nav-inner,
5033 #primary-bar.inactive-bar .nav-inner {
5034 padding: 13px 30px 11px 30px;
5036 #secondary-bar .nav-inner {
5037 font-size: 0.875em;
5039 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
5040 padding: 6px 0 4px 0;
5043 #bottom-bar.decorative {
5044 background-color: #fff;
5046 #bottom-bar.decorative::before,
5047 #bottom-bar.decorative::after {
5048 content: "GW";
5049 font-weight: 200;
5050 display: block;
5051 text-align: center;
5052 padding: 0.5em 0 0.75em 0;
5054 #bottom-bar.decorative::before {
5055 width: 100%;
5056 color: transparent;
5057 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
5058 background-repeat: repeat-x;
5059 background-position: center 44%;
5060 margin: 0 30px;
5061 filter: opacity(0.7);
5063 #bottom-bar.decorative::after {
5064 color: #eee;
5065 position: absolute;
5066 left: 0;
5067 right: 0;
5068 margin: auto;
5069 background-color: #fff;
5070 padding-right: 4px;
5071 padding-left: 4px;
5073 @supports (width: -moz-fit-content) {
5074 #bottom-bar.decorative::after {
5075 width: -moz-fit-content;
5078 @supports (width: fit-content) {
5079 #bottom-bar.decorative::after {
5080 width: fit-content;
5084 /* Accesskey hints */
5086 .nav-inner::after {
5087 display: block;
5088 position: absolute;
5089 left: 5px;
5090 top: 0;
5091 font-weight: normal;
5092 font-size: 0.7em;
5093 color: #ddd;
5095 .nav-inner:hover::after {
5096 color: #bbb;
5099 /* This makes the navbar items look like tabs: */
5101 .active-bar {
5102 position: relative;
5104 .nav-bar {
5105 background-color: #f5f5f5;
5107 .nav-bar {
5108 border-bottom: 1px solid #d6d5d6;
5110 .nav-bar a,
5111 .nav-bar a:visited {
5112 color: #999;
5114 .nav-bar a:hover {
5115 color: #777;
5116 text-decoration: none;
5118 .nav-bar .nav-current {
5119 color: #666;
5121 .nav-item:nth-of-type(n+2) {
5122 box-shadow: -9px 0 0 -8px #d6d5d6;
5125 /* Search tab */
5127 #nav-item-search form::before {
5128 position: relative;
5129 top: 2px;
5130 opacity: 0.3;
5132 #nav-item-search button {
5133 border: none;
5134 font-weight: inherit;
5136 #nav-item-search input::placeholder {
5137 color: #d00;
5138 font-weight: normal;
5141 /*= User/login tab =*/
5143 #inbox-indicator::before {
5144 top: 1px;
5145 color: #ccc;
5148 /*= Pagination UI =*/
5150 #bottom-bar #nav-item-next a::before {
5151 margin-left: -2.2em;
5152 left: 4.0em;
5154 #bottom-bar #nav-item-last a::before {
5155 margin-left: -2.3em;
5156 left: 3.9em;
5159 /*= Top pagination UI hover tooltips =*/
5161 #top-nav-bar a::after,
5162 #bottom-bar a::after {
5163 color: #000;
5166 /*==============*/
5167 /* PAGE TOOLBAR */
5168 /*==============*/
5170 .new-post,
5171 .new-post:visited,
5172 .new-private-message,
5173 .new-private-message:visited {
5174 color: #090;
5176 .logout-button {
5177 color: #d33;
5180 /*==============*/
5181 /* SUBLEVEL NAV */
5182 /*==============*/
5184 .sublevel-nav .sublevel-item {
5185 color: #777;
5186 background-color: #fff;
5188 .sublevel-nav .sublevel-item:not(.selected):hover {
5189 background-color: #ddd;
5190 color: #000;
5191 text-decoration: none;
5192 text-shadow: none;
5194 .sublevel-nav .sublevel-item:not(.selected):active,
5195 .sublevel-nav .sublevel-item.selected {
5196 background-color: #ddd;
5197 color: #000;
5198 text-shadow:
5199 0 -1px 0 #fff,
5200 0 0.5px 0.5px #000;
5203 .sublevel-nav:not(.sort) .sublevel-item {
5204 border-style: solid;
5205 border-color: #ddd;
5206 border-width: 1px 0 1px 1px;
5208 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5209 border-radius: 8px 0 0 8px;
5211 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5212 border-width: 1px;
5213 border-radius: 0 8px 8px 0;
5216 /*=====================*/
5217 /* SORT ORDER SELECTOR */
5218 /*=====================*/
5220 .sublevel-nav.sort .sublevel-item {
5221 letter-spacing: 0.5px;
5222 padding: 7px 7px 6px 8px;
5223 text-transform: uppercase;
5224 pointer-events: auto;
5225 box-shadow: 1px 1px 0 0 #aaa inset;
5227 .sublevel-nav.sort {
5228 border: 2px solid transparent;
5229 padding: 18px 0 0 0;
5230 border-radius: 8px;
5231 pointer-events: none;
5232 background-color: #bbb;
5234 .sublevel-nav.sort::before {
5235 text-transform: uppercase;
5236 font-weight: 600;
5237 color: #444;
5238 text-shadow: 0.5px 0.5px 0 #fff;
5239 z-index: 1;
5241 .sublevel-nav.sort::after {
5242 content: "";
5243 position: absolute;
5244 display: block;
5245 top: 0;
5246 left: 0;
5247 width: 100%;
5248 height: 100%;
5249 border-radius: 6px;
5250 box-shadow:
5251 0 18px 0 0 #bbb inset,
5252 0 0 0 1px #aaa inset,
5253 0 18px 0 1px #aaa inset,
5254 0 0 0 2px #bbb;
5257 /*================*/
5258 /* WIDTH SELECTOR */
5259 /*================*/
5260 /* THEME SELECTOR */
5261 /*================*/
5263 #width-selector button,
5264 #theme-selector button {
5265 box-shadow:
5266 0 0 0 4px #d8d8d8 inset,
5267 0 0 0 5px #bbb inset;
5269 #width-selector button:hover,
5270 #width-selector button.selected,
5271 #theme-selector button:hover,
5272 #theme-selector button.selected {
5273 box-shadow:
5274 0 0 0 5px #bbb inset;
5277 #theme-selector button::before {
5278 font-size: 0.9375em;
5279 padding: 5px 6px 7px 6px;
5280 color: #999;
5281 background-color: #d8d8d8;
5283 #theme-selector button:hover::before,
5284 #theme-selector button.selected::before {
5285 color: #222;
5287 #width-selector button::after {
5288 color: #999;
5289 font-size: 0.9em;
5292 /*======================*/
5293 /* THEME TWEAKER TOGGLE */
5294 /*======================*/
5296 #theme-tweaker-toggle button {
5297 color: #777;
5300 /*=================*/
5301 /* QUICKNAV WIDGET */
5302 /*=================*/
5304 #quick-nav-ui a {
5305 color: #999;
5306 background-color: #e4e4e4;
5307 border-radius: 4px;
5309 #quick-nav-ui a[href='#bottom-bar'] {
5310 line-height: 1.8;
5312 #quick-nav-ui a:active {
5313 transform: scale(0.9);
5315 #quick-nav-ui a[href='#comments'].no-comments {
5316 opacity: 0.4;
5317 color: #bbb;
5319 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5320 #quick-nav-ui a:hover {
5321 color: #000;
5322 background-color: #eee;
5324 #quick-nav-ui a:focus:not(:hover) {
5325 transform: none;
5326 text-shadow: none;
5330 /*======================*/
5331 /* NEW COMMENT QUICKNAV */
5332 /*======================*/
5334 #new-comment-nav-ui .new-comments-count {
5335 font-weight: 600;
5336 color: #666;
5337 text-shadow: 0.5px 0.5px 0 #fff;
5339 #new-comment-nav-ui .new-comments-count::after {
5340 font-weight: 600;
5341 color: #777;
5343 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5344 color: #bbb;
5345 text-shadow: none;
5347 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5348 #new-comment-nav-ui .new-comments-count:hover {
5349 text-shadow:
5350 0 0 1px #fff,
5351 0 0 3px #fff,
5352 0 0 5px #fff,
5353 0 0 8px #fff,
5354 0.5px 0.5px 0 #fff;
5356 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5357 color: #d00;
5361 /*=================*/
5362 /* HNS DATE PICKER */
5363 /*=================*/
5365 #hns-date-picker span {
5366 color: #777;
5367 text-shadow: 0.5px 0.5px 0 #fff;
5368 font-weight: 600;
5370 #hns-date-picker input {
5371 border: 1px solid #777;
5372 background-color: transparent;
5373 color: #666;
5375 #hns-date-picker input:focus {
5376 color: #000;
5379 /*======================*/
5380 /* ANTI-KIBITZER TOGGLE */
5381 /*======================*/
5383 #anti-kibitzer-toggle button::before,
5384 #anti-kibitzer-toggle button::after {
5385 background-color: #888;
5386 -webkit-background-clip: text;
5387 color: transparent;
5388 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5390 #anti-kibitzer-toggle button:hover::before,
5391 #anti-kibitzer-toggle button:hover::after {
5392 background-color: #444;
5395 /*======================*/
5396 /* TEXT SIZE ADJUSTMENT */
5397 /*======================*/
5399 #text-size-adjustment-ui button {
5400 color: #777;
5402 #text-size-adjustment-ui button:hover {
5403 color: #222;
5405 #text-size-adjustment-ui button.default {
5406 font-weight: 600;
5408 #text-size-adjustment-ui button:disabled:hover {
5409 text-shadow: none;
5411 #text-size-adjustment-ui::after {
5412 color: #999;
5415 /*=============================*/
5416 /* COMMENTS VIEW MODE SELECTOR */
5417 /*=============================*/
5419 #comments-view-mode-selector a {
5420 color: #777;
5423 /*==========*/
5424 /* ARCHIVES */
5425 /*==========*/
5427 .archive-nav {
5428 border: 1px solid #aaa;
5430 .archive-nav *[class^='archive-nav-item'] {
5431 border-style: solid;
5432 border-color: #ddd;
5433 border-width: 1px 0 1px 1px;
5434 background-color: #eee;
5436 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5437 border-top-width: 0;
5438 border-bottom-width: 0;
5440 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5441 border-bottom-width: 1px;
5443 .archive-nav *[class^='archive-nav-item']:last-child {
5444 border-right-width: 1px;
5446 .archive-nav span[class^='archive-nav-item'] {
5447 font-weight: bold;
5448 background-color: #ddd;
5451 .archive-nav a:link,
5452 .archive-nav a:visited {
5453 color: rgba(0, 0, 238, 0.7);
5455 .archive-nav a:hover {
5456 text-decoration: none;
5457 color: #c00;
5458 background-color: #e0e0e0;
5460 .archive-nav a:active {
5461 transform: scale(0.9);
5463 .archive-nav a:focus:not(:hover) {
5464 transform: none;
5466 .archive-nav a.archive-nav-item-day:hover {
5467 background-color: #ddd;
5470 /*==========*/
5471 /* LISTINGS */
5472 /*==========*/
5474 h1.listing {
5475 margin: 1.125em 20px 0.25em 20px;
5476 max-width: calc(100% - 40px);
5477 font-family: 'Arial', sans-serif, 'Font Awesome';
5478 font-size: 1.125rem;
5479 padding-left: 30px;
5480 max-height: unset;
5483 h1.listing a[href^='/posts'] {
5484 color: #538d4d;
5485 white-space: unset;
5486 display: inline;
5488 h1.listing a[href^='/posts']:visited {
5489 color: #5a5a5b;
5491 h1.listing a[href^="http"] {
5492 top: 2px;
5495 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5496 h1.listing a:hover,
5497 h1.listing a:focus {
5498 color: #3d3d3e;
5499 text-decoration: none;
5501 h1.listing a:focus {
5502 border-bottom: 1px dotted #999;
5504 h1.listing:focus-within::before {
5505 display: none;
5507 h1.listing:focus-within + .post-meta .karma-value {
5508 box-shadow:
5509 0 0 0 3px #fff,
5510 0 0 0 6px #3d3d3e;
5512 h1.listing a[href^="http"]:hover,
5513 h1.listing a[href^="http"]:focus {
5514 color: #4879ec;
5515 text-shadow:
5516 0.5px 0.5px 0 #fff,
5517 -0.5px -0.5px 0 #fff,
5518 0 0 2px #fff,
5519 0 0 3px #00c;
5520 border: none;
5524 h1.listing .edit-post-link {
5525 padding: 5px 3px 12px 0.5em;
5526 top: 0;
5527 right: 0;
5529 h1.listing .edit-post-link:hover {
5530 text-decoration: none;
5532 #content.user-page h1.listing .edit-post-link {
5533 background-color: #f7f7f8;
5536 /*======*/
5537 /* SPAM */
5538 /*======*/
5540 h1.listing.spam {
5541 opacity: 0.15;
5543 h1.listing.spam + .post-meta {
5544 opacity: 0.2;
5546 h1.listing.spam:hover,
5547 h1.listing.spam + .post-meta:hover,
5548 h1.listing.spam:hover + .post-meta {
5549 opacity: 1.0;
5552 /*===================*/
5553 /* LISTING POST-META */
5554 /*===================*/
5556 h1.listing + .post-meta {
5557 font-size: 0.8125rem;
5558 padding-left: 30px;
5559 display: flex;
5560 justify-content: flex-end;
5563 h1.listing + .post-meta .author {
5564 font-weight: bold;
5565 color: #6a8a6b;
5566 text-decoration: none;
5567 margin: 0 0 0 1.5em;
5568 order: 0;
5570 h1.listing + .post-meta .author:hover {
5571 color: #3d3d3e;
5573 h1.listing + .post-meta .date,
5574 h1.listing + .post-meta .read-time {
5575 color: #999;
5576 font-style: italic;
5578 h1.listing + .post-meta a {
5579 color: #8a8a8b;
5580 text-decoration: underline;
5582 h1.listing + .post-meta a:hover {
5583 color: #3d3d3e;
5586 h1.listing + .post-meta .karma-value {
5587 background-color: #538d4d;
5588 color: #fff;
5589 font-weight: bold;
5590 font-size: 0.8125rem;
5591 border-radius: 1.0625em;
5592 padding: 2px 6px 1px 6px;
5593 text-align: center;
5594 display: block;
5595 min-width: 2.125em;
5596 position: absolute;
5597 right: calc(100% - 1.75em);
5598 top: -2.1em;
5600 h1.listing + .post-meta .karma-value span,
5601 h1.listing + .post-meta .lw2-link span,
5602 h1.listing + .post-meta .comment-count span {
5603 display: none;
5606 h1.listing + .post-meta > * {
5607 text-align: right;
5608 margin: 0 0 0 0.5em;
5610 h1.listing + .post-meta .read-time {
5611 width: 6.5em;
5612 order: 2;
5614 h1.listing + .post-meta .comment-count {
5615 order: -1;
5617 h1.listing + .post-meta .comment-count::before {
5618 content: "Comments ("
5620 h1.listing + .post-meta .comment-count::after {
5621 content: ")"
5623 h1.listing + .post-meta .date {
5624 width: 11em;
5625 order: 1;
5627 h1.listing + .post-meta .lw2-link {
5628 margin: 0 0 0 1em;
5629 order: 3;
5631 h1.listing + .post-meta .post-section {
5632 margin: 0;
5633 text-decoration: none;
5635 h1.listing + .post-meta .post-section::before {
5636 left: unset;
5637 right: calc(100% + 1.15em);
5638 top: -1.95em;
5640 h1.listing + .post-meta .link-post-domain {
5641 order: -2;
5642 margin: 0 1em 0 0;
5645 /*============*/
5646 /* USER PAGES */
5647 /*============*/
5649 #content.user-page h1.page-main-heading {
5650 border-bottom: 1px solid #ccc;
5653 #content.user-page h1.listing,
5654 #content.user-page h1.listing + .post-meta {
5655 background-color: #f7f7f8;
5656 border-style: solid;
5657 border-color: #bbbcbf;
5660 #content.user-page h1.listing {
5661 padding: 0.5em 6px 0 48px;
5662 border-width: 1px 1px 0 1px;
5663 margin: 1rem 0 0 0;
5664 max-width: 100%;
5666 #content.own-user-page h1.listing,
5667 h1.listing.own-post-listing {
5668 padding-right: 36px;
5670 #content.user-page h1.listing a:hover {
5671 background-color: #f7f7f8;
5674 #content.user-page h1.listing + .post-meta {
5675 padding: 0.25em 10px 0.5em 32px;
5676 border-width: 0 1px 1px 1px;
5677 margin: 0 0 1rem 0;
5679 #content.user-page h1.listing + .post-meta .karma-value {
5680 right: calc(100% - 3.25em);
5681 top: -1.8em;
5683 #content.user-page h1.listing + .post-meta .post-section::before {
5684 right: calc(100% - 5.1em);
5685 top: 4px;
5688 #content.conversations-user-page h1.listing {
5689 padding: 8px 6px 8px 10px;
5690 font-size: 1.25rem;
5692 #content.conversations-user-page h1.listing + .post-meta {
5693 padding: 0 10px 6px 4px;
5694 margin: 0;
5697 .user-stats .karma-total {
5698 font-weight: bold;
5701 /*================*/
5702 /* SEARCH RESULTS */
5703 /*================*/
5705 #content.search-results-page h1.listing {
5706 font-size: 1.125rem;
5709 /*===============*/
5710 /* CONVERSATIONS */
5711 /*===============*/
5713 #content.conversation-page h1.page-main-heading {
5714 font-size: 1.375em;
5715 text-align: left;
5718 /*============*/
5719 /* LOGIN PAGE */
5720 /*============*/
5722 .login-container form input[type='submit'] {
5723 font-weight: bold;
5724 background-color: #eee;
5725 border: 1px solid #ccc;
5727 .login-container form input[type='submit']:hover,
5728 .login-container form input[type='submit']:focus {
5729 background-color: #ddd;
5730 border: 1px solid #aaa;
5733 /* “Create account” form */
5735 #signup-form {
5736 background-color: #f3f3f3;
5737 border: 1px solid #ddd;
5739 #signup-form input[type='submit'] {
5740 background-color: #e4e4e4;
5741 border: 1px solid #ccc;
5743 #signup-form input[type='submit']:hover {
5744 background-color: #d8d8d8;
5745 border: 1px solid #aaa;
5748 /* Log in tip */
5750 .login-container .login-tip {
5751 border: 1px solid #eee;
5754 /* Message box */
5756 .error-box {
5757 border: 1px solid red;
5758 background-color: #faa;
5760 .success-box {
5761 border: 1px solid green;
5762 background-color: #afa;
5765 /*=====================*/
5766 /* PASSWORD RESET PAGE */
5767 /*=====================*/
5769 .reset-password-container input[type='submit'] {
5770 background-color: #e4e4e4;
5771 border: 1px solid #ccc;
5772 font-weight: bold;
5775 /*===================*/
5776 /* TABLE OF CONTENTS */
5777 /*===================*/
5779 .contents {
5780 font-family: 'Arial', sans-serif;
5781 border: 1px solid #ddd;
5782 background-color: #eee;
5783 padding: 0.75em 0.5em 0.5em 0.5em;
5785 .contents-head {
5786 font-weight: bold;
5787 font-size: 1.25em;
5789 .post-body .contents ul {
5790 font-size: 1em;
5792 .post-body .contents li::before {
5793 color: #999;
5794 font-feature-settings: "tnum";
5797 /*==================*/
5798 /* POSTS & COMMENTS */
5799 /*==================*/
5801 .post-body,
5802 .comment-body {
5803 font-family: 'Arial', sans-serif;
5804 font-size: 1rem;
5806 .post-body a,
5807 .comment-body a {
5808 text-decoration: underline;
5810 .post-meta > *,
5811 .comment-meta > * {
5812 white-space: unset;
5815 /*===========*/
5816 /* POST-META */
5817 /*===========*/
5819 .post-meta {
5820 line-height: 1.9;
5822 .post-meta .post-section::before {
5823 color: #fff;
5824 text-shadow:
5825 1px 1px 0 #090,
5826 0 1px 0 #090,
5827 0 0 5px #090;
5829 a.post-section:hover::before {
5830 color: #97ff7c;
5832 .post-meta .post-section.alignment-forum::before {
5833 text-shadow:
5834 1px 1px 0 #626dd7,
5835 0 1px 0 #626dd7,
5836 0 0 5px #626dd7;
5838 a.post-section.alignment-forum:hover::before {
5839 color: #e6e5ff;
5842 .bottom-post-meta {
5843 border-top: 1px solid #ddd;
5846 .post .post-meta {
5847 position: relative;
5848 font-size: 0.875rem;
5849 justify-content: flex-start;
5850 padding-left: 30px;
5852 .post .post-meta .author {
5853 font-weight: bold;
5854 color: #6a8a6b;
5855 text-decoration: none;
5857 .post .post-meta .author:hover {
5858 color: #3d3d3e;
5860 .post .post-meta .date{
5861 color: #999;
5862 font-style: italic;
5864 .post .post-meta a {
5865 color: #8a8a8b;
5866 text-decoration: underline;
5868 .post .post-meta a:hover {
5869 color: #3d3d3e;
5872 .post .post-meta .karma {
5873 order: -1;
5875 .post .post-meta .karma-value {
5876 background-color: #538d4d;
5877 color: #fff;
5878 font-weight: bold;
5879 font-size: 0.8125rem;
5880 border-radius: 1.125em;
5881 padding: 2px 6px 1px 6px;
5882 text-align: center;
5883 min-width: 2.125em;
5884 display: block;
5885 float: left;
5886 margin: 0 0.5em 0 0;
5888 .post .post-meta .karma-value span,
5889 .post .post-meta .lw2-link span,
5890 .post .post-meta .comment-count span {
5891 display: none;
5894 .post .post-meta .comment-count::before {
5895 content: "Comments ("
5897 .post .post-meta .comment-count::after {
5898 content: ")"
5901 .post .post-meta .post-section::before {
5902 position: absolute;
5903 top: 1px;
5904 left: 0;
5906 .post .bottom-post-meta .post-section::before {
5907 top: 21px;
5910 /*============*/
5911 /* LINK POSTS */
5912 /*============*/
5914 .post.link-post > .post-body > p:first-child {
5915 margin: 0;
5917 .post.link-post a.link-post-link {
5918 text-decoration: none;
5919 font-family: 'Arial', sans-serif;
5920 font-weight: 600;
5922 .post.link-post a.link-post-link:hover {
5923 color: #c00;
5925 .post.link-post a.link-post-link:hover::before {
5926 color: #4879ec;
5927 text-shadow:
5928 0.5px 0.5px 0 #fff,
5929 -0.5px -0.5px 0 #fff,
5930 0 0 2px #fff,
5931 0 0 3px #00c;
5933 .post.link-post a.link-post-link:focus {
5934 color: #aaa;
5935 border-bottom: 2px dotted #aaa;
5938 /*=======*/
5939 /* POSTS */
5940 /*=======*/
5942 h1.post-title {
5943 font-size: 1.375rem;
5944 text-align: left;
5945 margin: 2em 0 0.5em 0;
5946 line-height: 1.2;
5949 /*==========*/
5950 /* COMMENTS */
5951 /*==========*/
5953 #comments::before {
5954 border-top: 1px solid #000;
5955 box-shadow: 0 3px 4px -4px #000 inset;
5957 @-moz-document url-prefix() {
5958 #comments::before {
5959 box-shadow: 0 3px 3px -4px #000 inset;
5962 #content > .comment-thread .comment-meta a.date:focus,
5963 #content > .comment-thread .comment-meta a.permalink:focus {
5964 color: #444;
5965 outline: 2px dotted #444;
5966 position: relative;
5967 background-color: #fff;
5968 padding: 0 5px;
5969 left: -5px;
5971 #content > .comment-thread .comment-meta a.date:focus + *,
5972 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5973 margin-left: -10px;
5975 .comment-item {
5976 border: 1px solid #bbbcbf;
5978 .comment-item .comment-item {
5979 margin: 1em -1px 8px 16px;
5981 .comment-item .comment-item + .comment-item {
5982 margin: 2em -1px 8px 16px;
5986 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5987 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5988 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5989 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5990 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5991 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5992 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5993 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5994 .comment-item .comment-item .comment-item .comment-item .comment-item,
5995 .comment-item .comment-item .comment-item,
5996 .comment-item {
5997 background-color: #f7f7f8;
5999 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6000 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6001 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6002 .comment-item .comment-item .comment-item .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,
6003 .comment-item .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,
6004 .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,
6005 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6006 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6007 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6008 .comment-item .comment-item .comment-item a.comment-parent-link::after,
6009 .comment-item a.comment-parent-link::after {
6010 box-shadow:
6011 0 28px 16px -16px #fff inset,
6012 4px 16px 0 12px #ffd inset,
6013 4px 4px 0 12px #ffd inset;
6016 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6017 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6018 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6019 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6020 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6021 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6022 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6023 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6024 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
6025 .comment-item .comment-item .comment-item .comment-item,
6026 .comment-item .comment-item {
6027 background-color: #fff;
6029 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6030 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6031 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6032 .comment-item .comment-item .comment-item .comment-item .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,
6033 .comment-item .comment-item .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,
6034 .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,
6035 .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,
6036 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6037 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6038 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
6039 .comment-item .comment-item a.comment-parent-link::after {
6040 box-shadow:
6041 0 28px 16px -16px #eee inset,
6042 4px 16px 0 12px #ffd inset,
6043 4px 4px 0 12px #ffd inset;
6046 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6047 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6048 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6049 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
6050 .comment-item .comment-item .comment-item .comment-item .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,
6051 .comment-item .comment-item .comment-item .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,
6052 .comment-item .comment-item .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,
6053 .comment-item .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,
6054 .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,
6055 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6056 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6057 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6058 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6059 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6060 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6061 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
6062 .comment-item .comment-item .comment-item .comment-item:target,
6063 .comment-item .comment-item .comment-item:target,
6064 .comment-item .comment-item:target,
6065 .comment-item:target {
6066 background-color: #ffd;
6068 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
6069 box-shadow:
6070 0 28px 16px -16px #ffd inset,
6071 4px 16px 0 12px #ffd inset,
6072 4px 4px 0 12px #ffd inset !important;
6075 a.comment-parent-link::after {
6076 display: none;
6079 /*================================*/
6080 /* DEEP COMMENT THREAD COLLAPSING */
6081 /*================================*/
6083 .comment-item input[id^="expand"] + label::after {
6084 color: #6a8a6b;
6085 font-weight: 600;
6087 .comment-item input[id^="expand"] + label:hover::after {
6088 color: #c00;
6090 .comment-item input[id^="expand"] + label:active::after,
6091 .comment-item input[id^="expand"] + label:focus::after{
6092 color: #c00;
6094 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
6095 border-width: 1px 0 0 0;
6098 /*==============*/
6099 /* COMMENT-META */
6100 /*==============*/
6102 .comment-meta > * {
6103 font-size: 0.9375rem;
6104 padding-top: 2px;
6106 .comment-meta .author {
6107 font-weight: bold;
6108 color: #538d4d;
6110 .comment-meta .date {
6111 color: #999;
6112 font-style: italic;
6114 .comment-meta .date:hover {
6115 color: #777;
6117 .comment-meta .karma-value,
6118 .comment-controls .karma .karma-value {
6119 color: #666;
6120 float: left;
6121 margin-right: 0.5em;
6123 .comment-meta .karma-value:only-child {
6124 float: none;
6126 .comment-item .author:not(.redacted).original-poster::after {
6127 opacity: 0.8;
6130 .comment-item .karma.active-controls::after,
6131 .comment-item .karma .karma-value::after,
6132 .post .karma.active-controls::after,
6133 .post .karma .karma-value::after {
6134 background-color: #fff;
6135 color: #888;
6136 box-shadow: 0 0 0 1px #ccc inset;
6137 border-radius: 4px;
6139 .comment-item .karma.active-controls::after,
6140 .post .karma.active-controls::after {
6141 padding: 6px;
6142 max-width: unset;
6143 bottom: -46px;
6144 width: 110px;
6146 .comment-item .karma .karma-value::after,
6147 .post .karma .karma-value::after {
6148 padding: 2px 8px;
6149 top: -36px;
6150 min-width: 64px;
6151 font-weight: normal;
6154 /*====================*/
6155 /* COMMENT PERMALINKS */
6156 /*====================*/
6158 .comment-meta .permalink,
6159 .comment-meta .lw2-link,
6160 .individual-thread-page .comment-parent-link:empty {
6161 top: 1px;
6162 filter: grayscale(50%);
6164 .comment-meta .permalink,
6165 .comment-meta .lw2-link,
6166 .individual-thread-page .comment-parent-link:empty {
6167 filter: unset;
6170 /*====================*/
6171 /* ANTI-KIBITZER MODE */
6172 /*====================*/
6174 .author.redacted,
6175 .inline-author.redacted {
6176 opacity: 0.8;
6177 font-weight: 400;
6180 .karma-value.redacted {
6181 opacity: 0.5;
6184 .link-post-domain.redacted {
6185 opacity: 0.5;
6188 /*===========================*/
6189 /* COMMENT THREAD NAVIGATION */
6190 /*===========================*/
6192 div.comment-parent-link {
6193 font-weight: bold;
6195 a.comment-parent-link {
6196 font-weight: normal;
6198 a.comment-parent-link::before {
6199 color: #bbb;
6201 a.comment-parent-link:hover::before {
6202 background-color: #ffd;
6203 color: #999;
6206 div.comment-child-links {
6207 font-weight: bold;
6209 div.comment-child-links a {
6210 font-weight: normal;
6212 .comment-child-link::before {
6213 color: #bbb;
6216 .comment-item-highlight {
6217 box-shadow:
6218 0 0 2px #e7b200,
6219 0 0 3px #e7b200,
6220 0 0 5px #e7b200,
6221 0 0 7px #e7b200,
6222 0 0 10px #e7b200;
6223 border: 1px solid #e7b200;
6225 .comment-item-highlight-faint {
6226 box-shadow:
6227 0 0 2px #f8e7b5,
6228 0 0 3px #f8e7b5,
6229 0 0 5px #f8e7b5,
6230 0 0 7px #f8e7b5,
6231 0 0 10px #f8e7b5;
6232 border: 1px solid #f8e7b5;
6235 .comment-popup {
6236 background-color: #fff;
6239 /*=======================*/
6240 /* COMMENTS COMPACT VIEW */
6241 /*=======================*/
6243 #comments-list-mode-selector button {
6244 box-shadow:
6245 0 0 0 4px #fff inset,
6246 0 0 0 5px #bbb inset;
6248 #comments-list-mode-selector button:hover,
6249 #comments-list-mode-selector button.selected {
6250 box-shadow:
6251 0 0 0 5px #bbb inset;
6253 #content.compact > .comment-thread .comment-item {
6254 max-height: 57px;
6256 #content.compact > .comment-thread .comment-item::after {
6257 color: #6a8a6b;
6258 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6261 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6262 #content.compact > .comment-thread .comment-item:hover .comment,
6263 #content.compact > .comment-thread .comment-item.expanded .comment {
6264 background-color: #fff;
6265 outline: 3px solid #6a8a6b;
6267 #content.compact > .comment-thread .comment-item:hover .comment::before,
6268 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6269 background-color: #fff;
6270 box-shadow:
6271 0 0 3px #fff,
6272 0 0 5px #fff,
6273 0 0 7px #fff,
6274 0 0 10px #fff,
6275 0 0 20px #fff,
6276 0 0 30px #fff,
6277 0 0 40px #fff;
6280 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6281 #content.compact > .comment-thread.expanded .comment-item .comment {
6282 background-color: #fff;
6283 outline: 3px solid #6a8a6b;
6285 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6286 background-color: #fff;
6287 box-shadow:
6288 0 0 3px #fff,
6289 0 0 5px #fff,
6290 0 0 7px #fff,
6291 0 0 10px #fff,
6292 0 0 20px #fff,
6293 0 0 30px #fff,
6294 0 0 40px #fff;
6298 #content.user-page.compact > h1.listing {
6299 margin-top: 0.5rem;
6301 #content.user-page.compact > h1.listing + .post-meta {
6302 margin-bottom: 0.5rem;
6305 /*===========================*/
6306 /* HIGHLIGHTING NEW COMMENTS */
6307 /*===========================*/
6309 .new-comment::before {
6310 outline: 2px solid #5a5;
6311 box-shadow:
6312 0 0 6px -2px #5a5 inset,
6313 0 0 4px #5a5,
6314 0 0 6px #5a5;
6317 /*=================================*/
6318 /* COMMENT THREAD MINIMIZE BUTTONS */
6319 /*=================================*/
6321 .comment-meta .comment-minimize-button {
6322 font-size: 1.25rem;
6323 top: -1px;
6325 .comment-meta .comment-minimize-button::after {
6326 top: 23px;
6328 .comment-minimize-button {
6329 color: #ccc;
6331 .comment-minimize-button:hover {
6332 color: #aaa;
6334 .comment-minimize-button::after {
6335 font-family: 'Arial', sans-serif;
6336 color: #777;
6338 .comment-minimize-button.maximized::after {
6339 color: #ccc;
6342 /*==============*/
6343 /* VOTE BUTTONS */
6344 /*==============*/
6346 .upvote,
6347 .downvote {
6348 color: #c8c8c8;
6349 padding: 0 5px;
6350 position: relative;
6352 .vote::before {
6353 position: relative;
6355 .upvote::before {
6356 content: '\F164';
6358 .downvote::before {
6359 content: '\F165';
6360 top: 2px;
6363 .vote {
6364 text-shadow:
6365 1px 1px 0 #aaa,
6366 -1px 1px 0 #aaa,
6367 1px -1px 0 #aaa,
6368 -1px -1px 0 #aaa;
6370 .upvote.selected,
6371 .upvote:hover {
6372 text-shadow:
6373 1px 1px 0 #080,
6374 -1px 1px 0 #080,
6375 1px -1px 0 #080,
6376 -1px -1px 0 #080;
6379 .downvote.selected,
6380 .downvote:hover {
6381 text-shadow:
6382 1px 1px 0 #b00,
6383 -1px 1px 0 #a00,
6384 1px -1px 0 #b00,
6385 -1px -1px 0 #b00;
6387 @media only screen and (min-resolution: 192dpi) {
6388 .vote {
6389 text-shadow:
6390 0.5px 0.5px 0 #aaa,
6391 -0.5px 0.5px 0 #aaa,
6392 0.5px -0.5px 0 #aaa,
6393 -0.5px -0.5px 0 #aaa;
6395 .upvote.selected,
6396 .upvote:hover {
6397 text-shadow:
6398 0.5px 0.5px 0 #060,
6399 -0.5px 0.5px 0 #060,
6400 0.5px -0.5px 0 #060,
6401 -0.5px -0.5px 0 #060;
6404 .downvote.selected,
6405 .downvote:hover {
6406 text-shadow:
6407 0.5px 0.5px 0 #900,
6408 -0.5px 0.5px 0 #900,
6409 0.5px -0.5px 0 #900,
6410 -0.5px -0.5px 0 #900;
6414 .vote::before {
6415 z-index: 1;
6418 .vote::after {
6419 position: absolute;
6420 color: #fff;
6421 visibility: hidden;
6423 .vote:hover::after,
6424 .vote.big-vote::after,
6425 .vote:not(.big-vote).clicked-twice::after {
6426 visibility: visible;
6428 .vote.big-vote::after,
6429 .vote:not(.big-vote).clicked-twice::after {
6430 color: inherit;
6432 .karma:not(.waiting) .vote.clicked-once::after {
6433 color: #c8c8c8;
6436 .upvote::after {
6437 content: "\F164";
6438 left: -1px;
6439 top: -3px;
6442 .downvote::after {
6443 content: "\F165";
6444 left: -1px;
6445 top: 5px;
6448 .comment-controls .karma {
6449 margin-left: -6px;
6452 /*===========================*/
6453 /* COMMENTING AND POSTING UI */
6454 /*===========================*/
6456 .posting-controls input[type='submit'] {
6457 background-color: #fff;
6458 border: 1px solid #aaa;
6459 font-weight: bold;
6461 .posting-controls input[type='submit']:hover,
6462 .posting-controls input[type='submit']:focus {
6463 background-color: #ddd;
6464 border: 1px solid #999;
6467 .comment-controls .cancel-comment-button {
6468 font-weight: 600;
6469 color: #c00;
6470 text-shadow:
6471 0 0 1px #fff,
6472 0 0 2px #fff;
6473 max-width: 1.2em;
6474 overflow: hidden;
6475 margin-right: 0.375em;
6477 .comment-controls .cancel-comment-button::before {
6478 font-size: 1.25em;
6480 .comment-controls .cancel-comment-button:hover {
6481 color: #f00;
6484 .new-comment-button {
6485 font-weight: 600;
6488 .comment-controls .action-button::before {
6489 font-size: 1em;
6491 .comment-controls .action-button::after {
6492 content: attr(data-label);
6493 display: block;
6494 position: absolute;
6495 font-size: 0.5em;
6496 text-transform: uppercase;
6497 visibility: hidden;
6498 text-shadow: none;
6500 .comment-controls .action-button:hover::after {
6501 visibility: visible;
6503 .comment-controls .delete-button::before,
6504 .comment-controls .retract-button::before {
6505 color: #ca3232;
6507 .comment-controls .delete-button::after {
6508 transform: translateX(-8px);
6510 .comment-controls .retract-button::after {
6511 transform: translateX(-8px);
6513 .comment-controls .unretract-button::after {
6514 transform: translateX(-18px);
6516 .comment-controls .reply-button::before {
6517 content: "\F086";
6518 font-weight: 400;
6519 font-size: 1.125rem;
6520 color: #6a8a6b;
6522 .comment-controls .reply-button::after {
6523 transform: translateX(-4px);
6525 .comment-controls .edit-button::before {
6526 font-size: 0.9375em;
6527 color: #0b0;
6529 .comment-controls .unretract-button::before {
6530 font-size: 1.125rem;
6531 color: #0b0;
6533 .comment-controls .edit-button::after {
6534 transform: translateX(-1px);
6536 .comment-item .comment-controls .action-button:hover::before {
6537 color: #f00;
6538 text-shadow:
6539 0.5px 0.5px 0.5px #f77;
6542 h1.listing .edit-post-link,
6543 h1.listing .edit-post-link:visited,
6544 .post-controls .edit-post-link,
6545 .post-controls .edit-post-link:visited {
6546 color: #090;
6548 h1.listing .edit-post-link:hover,
6549 .post-controls .edit-post-link:hover {
6550 color: #d00;
6553 .posting-controls textarea {
6554 font-family: 'Arial', sans-serif;
6555 font-size: 1rem;
6556 color: #000;
6557 background-color: #fff;
6558 border-color: #aaa;
6559 box-shadow:
6560 0 0 0 1px #eee inset;
6562 .posting-controls textarea:focus {
6563 background-color: #ffd;
6564 border-color: #6a8a6b;
6565 box-shadow:
6566 0 0 0 1px #ddf inset,
6567 0 0 0 1px #fff,
6568 0 0 0 2px #6a8a6b;
6570 .posting-controls.edit-existing-post textarea:focus,
6571 .posting-controls form.edit-existing-comment textarea:focus {
6572 border-color: #090;
6573 box-shadow:
6574 0 0 0 1px #81ff7f inset,
6575 0 0 0 1px #fff,
6576 0 0 0 2px #090;
6579 /* GUIEdit buttons */
6581 .guiedit-buttons-container {
6582 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6585 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6586 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6587 color: #050;
6589 .guiedit-buttons-container button {
6590 font-family: Font Awesome, 'Arial', sans-serif;
6593 .guiedit::after {
6594 font-family: 'Arial', sans-serif;
6595 color: #777;
6596 text-shadow: none;
6597 top: 4px;
6600 /* Markdown hints */
6602 #markdown-hints-checkbox + label {
6603 color: #6a8a6b;
6605 #markdown-hints-checkbox + label:hover {
6606 color: #e00;
6608 #markdown-hints {
6609 border: 1px solid #c00;
6610 background-color: #ffa;
6613 /*================*/
6614 /* EDIT POST FORM */
6615 /*================*/
6617 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6618 border-radius: 3px;
6619 border: 1px solid #ddd;
6620 color: #777;
6621 top: 2px;
6623 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6624 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6625 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6626 text-shadow:
6627 0 0 1px #fff,
6628 0 0 2px #fff,
6629 0 0 2.5px #aaa;
6631 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6632 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6633 border-color: #aaa;
6636 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6637 content: "\F00C";
6639 #edit-post-form input[type='radio'] + label {
6640 color: #777;
6641 border-color: #ddd;
6643 #edit-post-form input[type='radio'][value='all'] + label {
6644 border-radius: 8px 0 0 8px;
6645 border-width: 1px;
6647 #edit-post-form input[type='radio'][value='drafts'] + label {
6648 border-radius: 0 8px 8px 0;
6650 #edit-post-form input[type='radio'] + label:hover,
6651 #edit-post-form input[type='radio']:focus + label {
6652 background-color: #ddd;
6653 color: #000;
6655 #edit-post-form input[type='radio']:focus + label {
6656 color: #000;
6657 box-shadow:
6658 0 0 0 1px #aaa;
6660 #edit-post-form input[type='radio']:checked + label {
6661 background-color: #ddd;
6662 border-color: #ddd;
6663 color: #000;
6664 text-shadow:
6665 0 -1px 0 #fff,
6666 0 0.5px 0.5px #000;
6668 #edit-post-form #markdown-hints-checkbox + label {
6669 padding: 3px 0 0 14px;
6672 /*=======*/
6673 /* LINKS */
6674 /*=======*/
6677 text-decoration: none;
6678 color: #6a8a6b;
6680 a:visited {
6681 color: #8a8a8b;
6683 a:hover {
6684 color: #3d3d3e;
6687 /*=========*/
6688 /* BUTTONS */
6689 /*=========*/
6691 button,
6692 input[type='submit'] {
6693 color: #6a8a6b;
6696 button:hover,
6697 input[type='submit']:hover,
6698 button:focus,
6699 input[type='submit']:focus {
6700 color: #d00;
6702 button:active,
6703 input[type='submit']:active {
6704 color: #f00;
6705 transform: scale(0.9);
6707 .button:visited {
6708 color: #6a8a6b;
6710 .button:hover {
6711 color: #f00;
6712 text-decoration: none;
6714 .button:active {
6715 transform: scale(0.9);
6717 .button:focus:not(:hover) {
6718 transform: none;
6720 @-moz-document url-prefix() {
6721 .button:active {
6722 transform: none;
6726 /*==========*/
6727 /* HEADINGS */
6728 /*==========*/
6730 .post-body h1,
6731 .post-body h2,
6732 .post-body h4,
6733 .comment-body h1,
6734 .comment-body h2,
6735 .comment-body h4 {
6736 font-family: 'Arial', sans-serif;
6738 .post-body h3,
6739 .comment-body h3,
6740 .post-body h5,
6741 .post-body h6,
6742 .comment-body h5,
6743 .comment-body h6 {
6744 font-weight: 600;
6746 .post-body h6,
6747 .comment-body h6 {
6748 color: #555;
6750 .post-body h1,
6751 .comment-body h1 {
6752 border-bottom: 1px solid #aaa;
6755 /*========*/
6756 /* QUOTES */
6757 /*========*/
6759 blockquote {
6760 border-left: 5px solid #ccc;
6763 /*========*/
6764 /* IMAGES */
6765 /*========*/
6767 #content img,
6768 #content figure.image img {
6769 border: 1px solid #ccc;
6771 #content figure img {
6772 border: 1px solid #000;
6774 #content img[src$='.svg'],
6775 #content figure img[src$='.svg'] {
6776 border: none;
6778 #content img[style^='float'] {
6779 border: 1px solid transparent;
6782 /*========*/
6783 /* TABLES */
6784 /*========*/
6786 .post-body table,
6787 .comment-body table,
6788 .post-body table th,
6789 .post-body table td,
6790 .comment-body table th,
6791 .comment-body table td {
6792 border: 1px solid #bbb;
6795 /*======*/
6796 /* MISC */
6797 /*======*/
6799 hr {
6800 border-bottom: 1px solid #999;
6803 code {
6804 background-color: #f6f6ff;
6805 border: 1px solid #ddf;
6806 border-radius: 4px;
6809 input[type='text'],
6810 input[type='search'],
6811 input[type='password'] {
6812 background-color: #fff;
6813 border: 1px solid #ddd;
6814 color: #000;
6816 input[type='text']:focus,
6817 input[type='search']:focus,
6818 input[type='password']:focus {
6819 background-color: #ffd;
6820 border: 1px solid #bbb;
6821 box-shadow: 0 0 1px #bbb;
6824 select {
6825 color: #000;
6828 /*============*/
6829 /* ABOUT PAGE */
6830 /*============*/
6832 .about-page mark {
6833 background-color: #e6e6e6;
6834 text-decoration: none;
6835 box-shadow:
6836 0 -1px 0 0 #000 inset,
6837 0 -3px 1px -2px #000 inset;
6838 padding: 0 1px;
6841 #content.about-page .accesskey-table {
6842 font-family: 'Arial', sans-serif;
6843 border-color: #ddd;
6846 #content.about-page img {
6847 border: 1px solid #000;
6850 /*========================*/
6851 /* QUALIFIED HYPERLINKING */
6852 /*========================*/
6854 #aux-about-link a {
6855 color: #777;
6857 #aux-about-link a:hover {
6858 opacity: 1.0;
6861 .qualified-linking label {
6862 color: #6a8a6b;
6864 .qualified-linking label:hover {
6865 text-shadow:
6866 0 0 1px #fff,
6867 0 0 3px #fff,
6868 0 0 5px #00e;
6871 .qualified-linking-toolbar {
6872 border: 1px solid #000;
6873 background-color: #fff;
6875 .qualified-linking-toolbar a {
6876 background-color: #eee;
6877 border: 1px solid #ccc;
6878 border-radius: 4px;
6879 padding: 2px 12px;
6880 white-space: nowrap;
6882 .qualified-linking-toolbar a:visited {
6883 color: #6a8a6b;
6885 .qualified-linking-toolbar a:hover {
6886 text-decoration: none;
6887 background-color: #ddd;
6889 .qualified-linking label::after {
6890 background-color: #d8d8d8;
6891 opacity: 0.8;
6894 /*======*/
6895 /* MATH */
6896 /*======*/
6898 .mathjax-block-container::-webkit-scrollbar {
6899 height: 12px;
6900 background-color: #f6f6ff;
6901 border-radius: 6px;
6902 border: 1px solid #ddf;
6904 .mathjax-block-container::-webkit-scrollbar-thumb {
6905 background-color: #dde;
6906 border-radius: 6px;
6907 border: 1px solid #cce;
6909 .mathjax-inline-container::-webkit-scrollbar {
6910 height: 8px;
6911 background-color: #f6f6ff;
6912 border-radius: 4px;
6913 border: 1px solid #ddf;
6915 .mathjax-inline-container::-webkit-scrollbar-thumb {
6916 background-color: #dde;
6917 border-radius: 4px;
6918 border: 1px solid #cce;
6921 /*=================*/
6922 /* ALIGNMENT FORUM */
6923 /*=================*/
6925 #content.alignment-forum-index-page::before {
6926 background-color: #f4f5ff;
6928 #content.alignment-forum-index-page::after {
6929 font-family: "Concourse SmallCaps";
6930 font-weight: 600;
6931 background-color: #7f85b2;
6932 color: transparent;
6933 -webkit-background-clip: text;
6934 text-shadow:
6935 rgba(255,255,255,0.5) 0px 3px 3px;
6937 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6938 #content.alignment-forum-index-page h1.listing a:hover,
6939 #content.alignment-forum-index-page h1.listing a:focus {
6940 background-color: rgba(244,245,255,0.85);
6944 /*====================*/
6945 /* FOR NARROW SCREENS */
6946 /*====================*/
6948 @media only screen and (max-width: 1440px) {
6949 #hns-date-picker {
6950 background-color: #d8d8d8;
6951 opacity: 1.0;
6953 #hns-date-picker::before {
6954 border: 1px solid #999;
6955 border-width: 1px 0 1px 1px;
6958 @media only screen and (max-width: 1160px) {
6959 #theme-selector:hover::after {
6960 background-color: #999;
6961 width: calc(6em - 13px);
6964 @media only screen and (max-width: 1080px) {
6965 #text-size-adjustment-ui button {
6966 border: 1px solid #999;
6967 padding: 0 0 0 1px;
6968 border-radius: 50%;
6969 box-shadow:
6970 0 0 6px #999 inset,
6971 0 0 0 1px transparent;
6973 #theme-tweaker-toggle button {
6974 border: 1px solid #999;
6975 box-shadow:
6976 0 0 10px #999 inset,
6977 0 0 0 1px transparent;
6978 border-radius: 50%;
6979 transform: scale(0.8);
6982 @media only screen and (max-width: 1020px) {
6983 #quick-nav-ui a {
6984 box-shadow:
6985 0 0 0 1px #999,
6986 0 0 0 2px transparent;
6988 #new-comment-nav-ui .new-comments-count::before {
6989 background-color: #d8d8d8;
6990 box-shadow:
6991 0 0 0 1px #999,
6992 0 0 0 2px transparent;
6993 border-radius: 8px;
6995 #anti-kibitzer-toggle {
6996 background-color: #d8d8d8;
6997 box-shadow:
6998 0 0 0 1px #999,
6999 0 0 0 2px transparent;
7000 border-radius: 6px;
7001 overflow: hidden;
7004 @media only screen and (max-width: 1000px) {
7005 #theme-selector {
7006 background-color: #d8d8d8;
7007 box-shadow:
7008 0 0 0 1px #999,
7009 0 0 0 2px transparent;
7011 #theme-selector:hover::after {
7012 width: calc(6em - 9px);
7013 height: calc(100% - 5px);
7014 top: 3px;
7015 left: 100%;
7017 #text-size-adjustment-ui button {
7018 background-color: #ddd;
7020 #text-size-adjustment-ui button:hover {
7021 background-color: #eee;
7023 #theme-tweaker-toggle button {
7024 background-color: #ddd;
7028 /*========*/
7029 /* MOBILE */
7030 /*========*/
7032 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
7033 #ui-elements-container > div[id$='-ui-toggle'] button {
7034 color: #aaa;
7035 text-shadow:
7036 0 0 1px #fff,
7037 0 0 3px #fff,
7038 0 0 5px #fff,
7039 0 0 10px #fff,
7040 0 0 20px #fff,
7041 0 0 30px #fff;
7044 #theme-selector {
7045 background-color: #d8d8d8;
7046 box-shadow:
7047 0 0 0 1px #999,
7048 0 0 1px 3px #fff,
7049 0 0 3px 3px #fff,
7050 0 0 5px 3px #fff,
7051 0 0 10px 3px #fff,
7052 0 0 20px 3px #fff;
7053 border-radius: 12px;
7055 #theme-selector::before,
7056 #theme-selector .theme-selector-close-button {
7057 color: #000;
7058 font-weight: normal;
7060 #theme-selector button {
7061 background-color: #e6e6e6;
7062 border-radius: 10px;
7064 #theme-selector button::after {
7065 color: #444;
7066 max-width: calc(100% - 3.5em);
7067 overflow: hidden;
7068 text-overflow: ellipsis;
7069 padding-bottom: 1px;
7071 #theme-selector button.selected::after {
7072 color: #000;
7073 text-shadow:
7074 0 -1px 0 #fff,
7075 0 0.5px 0.5px #000;
7078 #quick-nav-ui {
7079 background-color: #fff;
7081 #quick-nav-ui,
7082 #new-comment-nav-ui,
7083 #hns-date-picker {
7084 box-shadow:
7085 0 0 1px 3px #fff,
7086 0 0 3px 3px #fff,
7087 0 0 5px 3px #fff,
7088 0 0 10px 3px #fff,
7089 0 0 20px 3px #fff;
7091 #quick-nav-ui a::after,
7092 #new-comment-nav-ui::before {
7093 font-family: 'Arial', sans-serif;
7094 font-weight: bold;
7095 box-shadow:
7096 0 0 1px 0 #fff,
7097 0 0 3px 0 #fff,
7098 0 0 5px 0 #fff;
7099 background-color: #fff;
7100 border-radius: 4px;
7102 #quick-nav-ui,
7103 #new-comment-nav-ui {
7104 border-radius: 8px;
7106 #new-comment-nav-ui {
7107 background-color: #e4e4e4;
7108 border: 1px solid #999;
7110 #new-comment-nav-ui::before {
7111 color: #777;
7112 font-weight: bold;
7114 #new-comment-nav-ui .new-comment-sequential-nav-button {
7115 box-shadow: 0 0 0 1px #999;
7116 color: #538d4d;
7118 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
7119 color: #bbb;
7121 #new-comment-nav-ui .new-comments-count {
7122 background-color: inherit;
7123 box-shadow: 0 -1px 0 0 #999;
7125 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
7126 border-radius: 7px 0 0 7px;
7128 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
7129 border-radius: 0 7px 7px 0;
7131 #new-comment-nav-ui button::after {
7132 font-family: 'Arial', sans-serif;
7134 #hns-date-picker {
7135 background-color: #e4e4e4;
7136 border: 1px solid #999;
7139 /*****************************************/
7140 @media only screen and (max-width: 900px) {
7141 /*****************************************/
7142 h1.listing + .post-meta .post-section {
7143 overflow: visible;
7144 order: -2;
7145 width: unset;
7147 h1.listing + .post-meta .post-section::before {
7148 position: unset;
7151 #primary-bar .nav-inner {
7152 font-size: 1.25em;
7154 #secondary-bar .nav-inner {
7155 font-size: 1.125em;
7157 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
7158 padding: 6px 10px;
7161 .archive-nav *[class^='archive-nav-item-'] {
7162 border-width: 1px !important;
7164 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
7165 background-color: #aaa;
7168 .comment-item .comment-item {
7169 margin: 0.75em 0 3px 6px;
7171 .comment-item .comment-item + .comment-item {
7172 margin: 1.5em 0 3px 6px;
7175 .sublevel-nav:not(.sort) .sublevel-item,
7176 .sublevel-nav:not(.sort) .sublevel-item:first-child,
7177 .sublevel-nav:not(.sort) .sublevel-item:last-child {
7178 border-radius: 8px;
7179 border-width: 1px;
7180 margin: 2px;
7182 /*******************************************/
7183 } @media only screen and (max-width: 720px) {
7184 /*******************************************/
7185 .post-meta .comment-count::before {
7186 font-family: inherit;
7187 font-size: inherit;
7188 margin: 0;
7190 /*******************************************/
7191 } @media only screen and (max-width: 520px) {
7192 /*******************************************/
7193 #primary-bar.inactive-bar .nav-inner {
7194 padding: 6px 10px;
7195 font-size: 1.375em;
7198 h1.listing {
7199 margin: 18px 6px 4px 6px;
7200 max-width: calc(100% - 12px);
7201 padding: 0;
7203 h1.listing a[href^='http'] {
7204 top: 2px;
7206 h1.listing + .post-meta {
7207 margin: 4px 6px;
7209 h1.listing + .post-meta > *:not(.karma) {
7210 line-height: 1.5;
7211 width: unset;
7213 h1.listing + .post-meta .karma-value {
7214 top: 0;
7215 right: calc(100% - 2.25em);
7218 #content.compact > .comment-thread .comment-item {
7219 max-height: 104px;
7222 .textarea-container:focus-within textarea {
7223 background-color: #fff;
7225 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7226 padding: 6px;
7227 font-weight: bold;
7229 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7230 box-shadow:
7231 0 0 0 2px #c00;
7232 color: #c00;
7234 .textarea-container:focus-within .guiedit-buttons-container {
7235 background-color: #fff;
7236 border-top: 1px solid #ddf;
7238 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
7239 box-shadow: none;
7241 #content.conversation-page .textarea-container:focus-within::after {
7242 background-color: #fff;
7244 .textarea-container:focus-within button.guiedit {
7245 border: 1px solid #6a8a6b;
7246 border-radius: 6px;
7249 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7250 top: 1px;
7252 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7253 top: 1px;
7256 #edit-post-form textarea {
7257 min-height: calc(100vh - 345px);
7262 /*************/
7263 /* ACCORDIUS */
7264 /*************/
7266 /*======*/
7267 /* TAGS */
7268 /*======*/
7270 #tags {
7271 order: 12;
7272 display: flex;
7273 flex-basis: 100%;
7274 justify-content: center;
7275 margin: 0;
7277 #tags a {
7278 display: inline-block;
7281 /*===============*/
7282 /* CLASSIC THEME */
7283 /*===============*/
7285 /*++++++*/
7286 /* TAGS */
7287 /*++++++*/
7289 #tags {
7290 padding: 0.25em 0.5em;
7291 line-height: 1;
7292 justify-content: flex-start;
7293 margin: 0.5em 0 0 0;
7295 #tags::before {
7296 content: "Tags:";
7297 display: inline-block;
7298 margin: 0 0.25em 0 0;
7299 padding: 3px 0;
7300 color: #999;
7302 #tags a {
7303 border-radius: 6px;
7304 background-color: #fffec2;
7305 border: 1px solid #d9b600;
7306 padding: 3px 6px;
7307 line-height: 1;
7308 margin: 0 0.25em;
7309 font-size: 0.9375em;
7310 text-decoration: none;
7311 color: #537254;
7313 #tags a:hover {
7314 text-decoration: none;
7315 background-color: #ecc700;
7316 color: #000;
7318 #tags a:active {
7319 color: #d00;