Further edit-post-form layout fixing, V
[lw2-viewer.git] / www / style.windows.css
bloba5ec8d8f3487f769b9f067fb78f3ce9fe2627942
2 /***************/
3 /* BASE LAYOUT */
4 /***************/
6 html {
7 box-sizing: border-box;
8 font-size: 16px;
10 *, *::before, *::after {
11 box-sizing: inherit;
14 /*=------=*/
15 /*= Body =*/
16 /*=------=*/
18 body {
19 padding: 0;
20 margin: 0;
22 body::before {
23 background-color: inherit;
24 position: fixed;
25 width: 100%;
26 height: 100%;
29 /*=----------------------------=*/
30 /*= Immediate children of body =*/
31 /*=----------------------------=*/
33 body > * {
34 width: calc(100% - 300px);
35 min-width: 900px;
36 max-width: 900px;
38 #content {
39 margin: 0 auto;
40 padding: 0 30px;
41 position: relative;
42 overflow: visible;
43 display: grid;
44 grid-template-columns: repeat(3, 1fr);
45 grid-auto-flow: dense;
47 #content::before {
48 content: "";
49 display: block;
50 position: absolute;
51 top: 0;
52 left: 0;
53 width: 100%;
54 height: 100%;
55 z-index: -1;
56 pointer-events: none;
59 /*=---------=*/
60 /*= Content =*/
61 /*=---------=*/
63 #content > * {
64 grid-column: 1 / span 3;
67 /*=----------------------=*/
68 /*= Floating UI elements =*/
69 /*=----------------------=*/
71 #ui-elements-container {
72 position: fixed;
73 height: 100vh;
74 top: 0;
75 left: 0;
76 right: 0;
77 margin: auto;
78 z-index: 10000;
79 pointer-events: none;
81 #ui-elements-container > * {
82 pointer-events: auto;
85 /*=----------------=*/
86 /*= Images overlay =*/
87 /*=----------------=*/
88 /* (To exclude images in posts from theme tweaks) */
90 #images-overlay {
91 position: absolute;
92 z-index: 1;
93 left: 0;
94 right: 0;
95 margin: auto;
98 /***********/
99 /* NAV BAR */
100 /***********/
102 .nav-bar {
103 margin: 0 -30px;
105 .nav-bar {
106 display: flex;
109 /*=---------------=*/
110 /*= Nav bar items =*/
111 /*=---------------=*/
113 .nav-item {
114 flex: 1 1 auto;
116 .nav-item * {
117 text-overflow: ellipsis;
118 white-space: nowrap;
119 overflow: hidden;
121 .nav-inner {
122 padding: 12px 30px;
123 text-align: center;
124 display: block;
125 position: relative;
127 #secondary-bar .nav-inner {
128 padding: 4px 0;
131 /*=------------=*/
132 /*= Bottom bar =*/
133 /*=------------=*/
135 h1.listing ~ #bottom-bar {
136 margin-top: 1.25em;
138 #bottom-bar .nav-item {
139 flex: 1 1 0;
142 /*=-----------------=*/
143 /*= Accesskey hints =*/
144 /*=-----------------=*/
146 .nav-inner::after {
147 content: attr(accesskey);
148 display: none;
151 /*=---------------=*/
152 /*= Pagination UI =*/
153 /*=---------------=*/
155 #bottom-bar .nav-item a::before,
156 #top-nav-bar a::before {
157 font-family: Font Awesome;
158 font-weight: 900;
159 font-size: 0.8em;
160 position: relative;
161 bottom: 1px;
162 margin-right: 0.5em;
164 #bottom-bar #nav-item-first a::before,
165 #top-nav-bar a.nav-item-first::before {
166 content: "\F33e";
168 #bottom-bar #nav-item-top a::before {
169 content: "\F062";
171 #bottom-bar #nav-item-prev a::before,
172 #top-nav-bar a.nav-item-prev::before {
173 content: "\F060";
175 #bottom-bar #nav-item-next a::before,
176 #top-nav-bar a.nav-item-next::before {
177 content: "\F061";
179 #bottom-bar #nav-item-last a::before,
180 #top-nav-bar a.nav-item-last::before {
181 content: "\F340";
183 #bottom-bar #nav-item-next a::before {
184 margin-left: -2em;
185 margin-right: 0;
186 left: 3.8em;
188 #bottom-bar #nav-item-last a::before {
189 margin-left: -1.8em;
190 margin-right: 0;
191 left: 3.4em;
194 /*= Hover tooltips =*/
196 #top-nav-bar a {
197 position: relative;
199 #top-nav-bar a::after {
200 bottom: calc(100% - 3px);
201 content: attr(data-target-page);
203 #bottom-bar a:not([href='#top'])::after {
204 content: "Page " attr(data-target-page);
205 top: unset;
206 left: 0;
207 bottom: 4px;
209 #top-nav-bar a::after,
210 #bottom-bar a:not([href='#top'])::after {
211 display: block;
212 position: absolute;
213 font-size: 0.75rem;
214 width: 100%;
215 line-height: 1;
216 visibility: hidden;
218 #top-nav-bar a:hover::after,
219 #bottom-bar a:hover::after {
220 visibility: visible;
223 /*=-----------------------=*/
224 /*= Decorative bottom bar =*/
225 /*=-----------------------=*/
226 /* (On short pages with no pagination) */
228 #bottom-bar.decorative {
229 position: relative;
231 #bottom-bar.decorative .nav-item {
232 display: none;
235 /*=------------=*/
236 /*= Search tab =*/
237 /*=------------=*/
239 #nav-item-search {
240 flex: 4 1 auto;
242 #nav-item-search form::before {
243 content: "\F002";
244 font-family: Font Awesome;
245 font-weight: 900;
246 display: inline-block;
247 vertical-align: top;
248 height: 23px;
249 width: 23px;
251 #nav-item-search input {
252 height: 23px;
253 width: calc(95% - 80px);
254 padding: 1px 4px;
256 #nav-item-search button {
257 height: 21px;
260 /*=-----------=*/
261 /*= Login tab =*/
262 /*=-----------=*/
264 #nav-item-login {
265 position: relative;
266 padding-right: 0.5em;
269 /*******************/
270 /* INBOX INDICATOR */
271 /*******************/
273 #inbox-indicator {
274 position: absolute;
275 top: 1px;
276 right: 0;
277 height: 100%;
278 visibility: hidden;
280 #inbox-indicator::before {
281 content: "\F0E0";
282 font-family: "Font Awesome";
283 color: #bbb;
284 font-size: 1.1875rem;
285 position: absolute;
286 height: 100%;
287 right: 0;
288 top: 0;
289 padding: 0 0.45em;
290 visibility: visible;
291 font-weight: 900;
293 #inbox-indicator.new-messages::before {
294 color: #f00;
295 text-shadow:
296 0 0 1px #777,
297 0.5px 0.5px 1px #777;
299 a#inbox-indicator:hover::before {
300 color: #fff;
301 text-shadow:
302 0 0 1px #000,
303 0 0 2px #000,
304 0 0 4px #000,
305 0 0 1px #777,
306 0.5px 0.5px 1px #777;
308 a#inbox-indicator.new-messages:hover::before {
309 text-shadow:
310 0 0 1px #f00,
311 0 0 2px #f00,
312 0 0 4px #f00,
313 0 0 1px #777,
314 0.5px 0.5px 1px #777;
317 /****************/
318 /* PAGE TOOLBAR */
319 /****************/
321 #content > .page-toolbar {
322 grid-column: 3;
323 text-align: right;
324 margin-right: -20px;
326 #content.user-page > .page-toolbar {
327 grid-column: 2 / span 2;
329 .page-toolbar {
330 font-size: 0.9em;
331 line-height: 1.8;
334 /*=--------------------------=*/
335 /*= Page toolbar items (all) =*/
336 /*=--------------------------=*/
338 .page-toolbar > * {
339 display: inline-block;
340 margin-left: 1.5em;
342 .page-toolbar .button::before {
343 font-family: "Font Awesome";
344 font-size: 0.9em;
345 padding-right: 0.3em;
348 /*=-------------------------------=*/
349 /*= Page toolbar items (specific) =*/
350 /*=-------------------------------=*/
352 .new-post::before {
353 content: '\F067';
354 font-weight: 900;
356 .new-private-message::before {
357 content: '\F075';
358 font-weight: 400;
360 .logout-button::before {
361 content: '\F2F5';
362 font-weight: 900;
364 .rss::before {
365 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
366 display: inline-block;
367 width: 1em;
368 padding-right: 0.2em;
369 position: relative;
370 top: 1px;
373 /*********************/
374 /* TOP PAGINATION UI */
375 /*********************/
377 #top-nav-bar {
378 grid-column: 2;
379 margin: 0.25em 0 0 0;
380 padding: 0.75em 0 0 0;
381 text-align: center;
382 font-size: 1.25em;
383 display: flex;
384 justify-content: center;
386 #top-nav-bar a {
387 line-height: 1;
389 #top-nav-bar a.disabled {
390 pointer-events: none;
391 visibility: hidden;
393 #top-nav-bar .page-number {
394 position: relative;
395 display: inline-block;
396 width: 1.5em;
398 #top-nav-bar .page-number-label {
399 position: absolute;
400 font-size: 0.5em;
401 text-transform: uppercase;
402 width: 100%;
403 bottom: 90%;
404 left: 0;
406 #top-nav-bar a::before {
407 margin: 0.5em;
408 display: inline-block;
411 /****************/
412 /* SUBLEVEL NAV */
413 /****************/
415 .sublevel-nav {
416 text-align: center;
417 display: flex;
418 justify-content: center;
419 margin: 1em 0 0 0;
421 #content > .sublevel-nav:not(.sort) {
422 grid-row: 5;
423 grid-column: 2;
424 align-self: start;
426 .sublevel-nav .sublevel-item {
427 flex: 0 0 6em;
428 padding: 0.125em 0.5em;
429 font-size: 1.125rem;
431 .sublevel-nav .sublevel-item:active {
432 transform: none;
434 .sublevel-nav .sublevel-item.selected {
435 cursor: default;
438 /***********************/
439 /* SORT ORDER SELECTOR */
440 /***********************/
442 .sublevel-nav.sort {
443 position: relative;
444 margin-top: 8px;
445 font-size: 0.75em;
447 #content > .sublevel-nav.sort {
448 grid-column: 3;
449 grid-row: 5 / span 2;
450 justify-self: end;
451 align-self: start;
452 flex-flow: column;
454 #content.index-page > .sublevel-nav.sort {
455 grid-column: 1;
456 grid-row: 3 / span 1;
457 justify-self: start;
458 flex-flow: row;
461 .sublevel-nav.sort::before {
462 content: "Sort";
463 font-size: 0.75rem;
464 position: absolute;
465 top: 0;
466 left: 0;
467 width: 100%;
469 .sublevel-nav.sort .sublevel-item {
470 line-height: 1;
471 font-size: 0.875rem;
472 flex-basis: unset;
475 /*******************************/
476 /* COMMENTS SORT MODE SELECTOR */
477 /*******************************/
479 .comments > .sublevel-nav.sort {
480 margin: 1em auto 0 auto;
482 @supports (width: -moz-fit-content) {
483 .comments > .sublevel-nav.sort {
484 width: -moz-fit-content;
487 @supports (width: fit-content) {
488 .comments > .sublevel-nav.sort {
489 width: fit-content;
493 /******************/
494 /* WIDTH SELECTOR */
495 /******************/
497 #width-selector {
498 position: absolute;
499 top: 4px;
500 right: -78px;
502 #width-selector button {
503 width: 22px;
504 height: 22px;
505 padding: 6px;
506 margin: 1px;
507 overflow: hidden;
508 background-repeat: no-repeat;
509 background-size: 100%;
510 background-origin: content-box;
512 #width-selector button,
513 #width-selector button:active,
514 #width-selector button:focus {
515 text-shadow: none;
516 color: transparent;
518 #width-selector button:disabled {
519 cursor: auto;
521 #width-selector button.select-width-normal {
522 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
524 #width-selector button.select-width-wide {
525 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
527 #width-selector button.select-width-fluid {
528 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
531 /*=----------------=*/
532 /*= Hover tooltips =*/
533 /*=----------------=*/
535 #width-selector button::after {
536 content: attr(data-name);
537 position: absolute;
538 display: block;
539 left: 0;
540 width: 100%;
541 text-align: center;
542 top: 56px;
543 visibility: hidden;
545 #width-selector button.selected::after {
546 content: attr(data-name) " (selected)";
548 #width-selector button:hover:not(:active)::after {
549 visibility: visible;
552 head.content-width-normal + body > * {
553 max-width: 900px;
555 head.content-width-wide + body > * {
556 max-width: 1150px;
558 head.content-width-fluid + body > * {
559 max-width: calc(100% - 300px);
562 /******************/
563 /* THEME SELECTOR */
564 /******************/
566 #theme-selector {
567 position: absolute;
568 top: 3px;
569 left: -41px;
570 opacity: 0.4;
571 display: table;
572 max-width: 40px;
574 #theme-selector:hover {
575 opacity: 1.0;
578 /*=----------------------=*/
579 /*= Theme select buttons =*/
580 /*=----------------------=*/
582 .theme-selector button {
583 display: table-cell;
584 width: 26px;
585 height: 26px;
586 padding: 5px;
587 margin: 1px 7px 0 7px;
588 color: transparent;
589 background-size: 16px 16px;
590 background-origin: content-box;
592 .theme-selector button,
593 .theme-selector button:hover,
594 .theme-selector button:active,
595 .theme-selector button:focus {
596 text-shadow: none;
597 color: transparent;
599 .theme-selector button:disabled {
600 cursor: auto;
603 /*=----------------------------=*/
604 /*= Pre-rendered button images =*/
605 /*=----------------------------=*/
606 /* (Each is just a capital letter A through whatever) */
608 .theme-selector button:nth-of-type(1) {
609 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
611 .theme-selector button:nth-of-type(2) {
612 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
614 .theme-selector button:nth-of-type(3) {
615 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=');
617 .theme-selector button:nth-of-type(4) {
618 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
620 .theme-selector button:nth-of-type(5) {
621 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
623 .theme-selector button:nth-of-type(6) {
624 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
626 .theme-selector button:nth-of-type(7) {
627 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
629 .theme-selector button:nth-of-type(8) {
630 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
632 .theme-selector button:nth-of-type(9) {
633 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
636 /*=------------------------------=*/
637 /*= Theme select button tooltips =*/
638 /*=------------------------------=*/
639 /* (with the name & description of the theme that each button selects) */
641 #theme-selector button {
642 position: relative;
643 z-index: 1;
645 #theme-selector button::before {
646 content: attr(data-theme-name);
647 position: absolute;
648 top: 0;
649 right: 100%;
650 padding: 5px 6px 6px 6px;
651 line-height: 1;
652 width: 6em;
653 text-align: right;
654 z-index: 1;
655 visibility: hidden;
657 #theme-selector:hover button::before {
658 visibility: visible;
660 #theme-selector:hover ~ #theme-tweaker-toggle,
661 #theme-selector:active ~ #theme-tweaker-toggle {
662 z-index: -1;
665 /************************/
666 /* THEME TWEAKER TOGGLE */
667 /************************/
669 #theme-tweaker-toggle {
670 position: absolute;
671 top: 7px;
672 left: -75px;
674 #theme-tweaker-toggle button {
675 font-family: Font Awesome;
676 font-weight: 900;
677 font-size: 1.25rem;
678 opacity: 0.4;
679 z-index: 1;
681 #theme-tweaker-toggle button:hover {
682 opacity: 1.0;
685 /*******************/
686 /* QUICKNAV WIDGET */
687 /*******************/
689 #quick-nav-ui {
690 position: absolute;
691 right: -67px;
692 bottom: 20px;
694 #quick-nav-ui a {
695 font-family: 'Font Awesome';
696 font-weight: 900;
697 font-size: 1.5rem;
698 line-height: 1.7;
699 text-align: center;
700 display: block;
701 width: 40px;
702 height: 40px;
703 margin: 10px 0 0 0;
705 #quick-nav-ui a[href='#comments'].no-comments {
706 pointer-events: none;
708 #quick-nav-ui a {
709 visibility: hidden;
711 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
712 visibility: visible;
715 /************************/
716 /* NEW COMMENT QUICKNAV */
717 /************************/
719 #new-comment-nav-ui {
720 position: absolute;
721 right: -112px;
722 bottom: 42px;
724 #new-comment-nav-ui > * {
725 display: block;
726 position: relative;
728 #new-comment-nav-ui.no-comments {
729 display: none;
732 /*=--------------------=*/
733 /*= New comments count =*/
734 /*=--------------------=*/
736 #new-comment-nav-ui .new-comments-count {
737 width: 2em;
738 font-size: 1.25rem;
739 line-height: 1.1;
740 text-align: center;
741 left: 1px;
742 cursor: pointer;
744 #new-comment-nav-ui .new-comments-count::selection {
745 background-color: transparent;
747 #new-comment-nav-ui .new-comments-count::after {
748 content: "NEW";
749 display: block;
750 font-size: 0.625rem;
753 /*=-----------------------------------=*/
754 /*= Next/previous new comment buttons =*/
755 /*=-----------------------------------=*/
757 #new-comment-nav-ui .new-comment-sequential-nav-button {
758 font-size: 1.75rem;
759 font-family: 'Font Awesome';
760 font-weight: 900;
761 width: 1.5em;
762 z-index: 5001;
764 #new-comment-nav-ui .new-comment-previous {
765 top: 8px;
767 #new-comment-nav-ui .new-comment-next {
768 bottom: 6px;
770 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
771 cursor: auto;
772 pointer-events: none;
775 /*******************/
776 /* HNS DATE PICKER */
777 /*******************/
779 #hns-date-picker {
780 position: absolute;
781 bottom: 72px;
782 right: -253px;
783 opacity: 0.6;
785 #hns-date-picker:hover,
786 #hns-date-picker:focus-within {
787 opacity: 1.0;
789 #hns-date-picker.no-comments {
790 display: none;
793 /*=---------------=*/
794 /*= "Since" label =*/
795 /*=---------------=*/
797 #hns-date-picker span {
798 display: block;
799 font-size: 0.75rem;
800 text-transform: uppercase;
803 /*=--------------------=*/
804 /*= "Since" text field =*/
805 /*=--------------------=*/
807 #hns-date-picker input {
808 margin-top: 1px;
809 padding: 1px 3px;
810 width: 140px;
811 text-align: center;
812 box-shadow: 0 0 0 1px transparent;
815 /************************/
816 /* ANTI-KIBITZER TOGGLE */
817 /************************/
819 #anti-kibitzer-toggle {
820 position: absolute;
821 right: -67px;
822 bottom: 225px;
824 #anti-kibitzer-toggle button {
825 display: block;
826 width: 40px;
827 height: 54px;
828 padding: 0;
830 #anti-kibitzer-toggle button::before,
831 #anti-kibitzer-toggle button::after {
832 font-family: Font Awesome;
834 #anti-kibitzer-toggle button::before {
835 content: "\F06E";
836 display: block;
837 font-size: 1.75em;
838 font-weight: 400;
840 #anti-kibitzer-toggle button::after {
841 content: "\F007\2004\F164";
842 font-size: 0.875em;
843 font-weight: 900;
845 #anti-kibitzer-toggle.engaged button::before {
846 content: "\F070";
849 /************************/
850 /* TEXT SIZE ADJUSTMENT */
851 /************************/
853 #text-size-adjustment-ui {
854 position: absolute;
855 top: 30px;
856 right: -78px;
857 opacity: 0.4;
859 #text-size-adjustment-ui:hover {
860 opacity: 1.0;
863 /* This doesn't work in Mozilla browsers, so hide it */
864 @-moz-document url-prefix() {
865 #text-size-adjustment-ui {
866 display: none;
870 /*=---------=*/
871 /*= Buttons =*/
872 /*=---------=*/
874 #text-size-adjustment-ui button {
875 font-weight: 900;
876 font-family: Font Awesome;
877 font-size: 0.75rem;
878 width: 24px;
879 height: 24px;
880 padding: 0;
882 #text-size-adjustment-ui button.default {
883 font-family: inherit;
884 font-size: 1.125rem;
885 position: relative;
886 top: 1px;
888 #text-size-adjustment-ui button:disabled {
889 opacity: 0.5;
891 #text-size-adjustment-ui button:disabled:hover {
892 cursor: default;
895 /*=----------------=*/
896 /*= Hover tooltips =*/
897 /*=----------------=*/
899 #text-size-adjustment-ui::after {
900 content: "Adjust text size";
901 position: absolute;
902 display: block;
903 left: 0;
904 width: 100%;
905 text-align: center;
906 top: 32px;
907 visibility: hidden;
908 font-size: 0.9em;
910 #text-size-adjustment-ui:hover::after {
911 visibility: visible;
914 /*******************************/
915 /* COMMENTS VIEW MODE SELECTOR */
916 /*******************************/
918 #comments-view-mode-selector {
919 position: absolute;
920 bottom: 30px;
921 left: -40px;
922 opacity: 0.6;
924 #comments-view-mode-selector:hover {
925 opacity: 1.0;
928 /*=---------=*/
929 /*= Buttons =*/
930 /*=---------=*/
932 #comments-view-mode-selector a {
933 display: block;
934 font-family: Font Awesome;
935 font-size: 1.25rem;
936 text-align: center;
937 opacity: 0.4;
938 padding: 0.25em;
939 z-index: 1;
941 #comments-view-mode-selector a.threaded {
942 transform: scaleY(-1);
943 font-weight: 900;
945 #comments-view-mode-selector a.chrono {
946 font-weight: normal;
948 #comments-view-mode-selector a.selected,
949 #comments-view-mode-selector a:hover {
950 opacity: 1.0;
951 text-decoration: none;
953 #comments-view-mode-selector a.selected {
954 cursor: default;
957 /************/
958 /* ARCHIVES */
959 /************/
961 .archive-nav {
962 margin: 1.25em 0.5em 0 0.5em;
963 padding: 0.25em;
965 .archive-nav > * {
966 display: flex;
968 .archive-nav *[class^='archive-nav-item'] {
969 line-height: 1;
970 flex: 1 1 5%;
971 text-align: center;
972 padding: 6px 4px 4px 4px;
973 max-width: 8%;
975 @-moz-document url-prefix() {
976 .archive-nav *[class^='archive-nav-item'] {
977 padding: 5px 4px;
980 .archive-nav-days .archive-nav-item-day {
981 font-size: 0.8em;
982 padding: 7px 0 5px 0;
983 max-width: 4%;
985 .archive-nav-days .archive-nav-item-day:first-child {
986 flex-basis: 10%;
989 /************/
990 /* LISTINGS */
991 /************/
993 h1.listing {
994 font-size: 1.875rem;
995 line-height: 1.15;
996 max-height: 1.15em;
997 position: relative;
1000 h1.listing a {
1001 position: relative;
1004 /* Links to link-posts (not the link-post links themselves; that's below) */
1005 h1.listing a[href^='http'] + a {
1006 margin-left: 0.25em;
1008 /* Link-post links */
1009 h1.listing a[href^="http"] {
1010 font-size: 0.8em;
1011 display: inline;
1012 vertical-align: top;
1013 position: relative;
1014 top: 4px;
1017 /*=----------------------=*/
1018 /*= Listing hover reveal =*/
1019 /*=----------------------=*/
1020 /* (On desktops, hover over a multi-line listing to reveal all of it) */
1022 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1023 h1.listing a {
1024 max-width: 100%;
1025 display: inline-block;
1026 white-space: nowrap;
1027 text-overflow: ellipsis;
1028 overflow: hidden;
1029 border-bottom: 1px solid transparent;
1030 -webkit-hyphens: auto;
1031 -moz-hyphens: auto;
1032 -ms-hyphens: auto;
1033 hyphens: auto;
1034 z-index: 1;
1035 padding: 0 0 1px 1px;
1037 h1.listing a[href^='http'] + a {
1038 max-width: calc(100% - 33px);
1040 h1.listing a:hover,
1041 h1.listing a:focus {
1042 text-decoration: dotted underline;
1043 white-space: initial;
1044 overflow: visible;
1045 z-index: 2;
1047 h1.listing:focus-within::before {
1048 content: "\F105";
1049 font-family: Font Awesome;
1050 display: block;
1051 position: absolute;
1052 left: -0.75em;
1055 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1056 mouse movements) */
1058 h1.listing a:not(.edit-post-link):hover::before {
1059 content: "";
1060 position: absolute;
1061 top: -10px;
1062 right: -10px;
1063 bottom: -10px;
1064 left: -10px;
1065 z-index: -1;
1067 h1.listing a[href^="http"]:hover {
1068 text-decoration: none;
1072 /*=-----------------------=*/
1073 /*= In-listing edit links =*/
1074 /*=-----------------------=*/
1076 h1.listing .edit-post-link {
1077 position: absolute;
1078 margin: 0;
1081 /*=---------------------------------=*/
1082 /*= Error messages on listing pages =*/
1083 /*=---------------------------------=*/
1085 .listing-message {
1086 width: 100%;
1087 text-align: center;
1088 padding: 1.25em 0 1.25em 0;
1089 font-size: 1.375em;
1092 /*********************/
1093 /* LISTING POST-META */
1094 /*********************/
1096 h1.listing + .post-meta {
1097 position: relative;
1098 justify-content: flex-start;
1099 margin: 0 20px 0 21px;
1102 h1.listing + .post-meta > * {
1103 margin: 0 1em 0 0;
1106 h1.listing + .post-meta .post-section {
1107 width: 0;
1108 margin: 0;
1109 overflow: hidden;
1111 h1.listing + .post-meta .post-section::before {
1112 position: absolute;
1113 left: -36px;
1116 h1.listing + .post-meta .read-time {
1117 cursor: default;
1120 /**************/
1121 /* USER PAGES */
1122 /**************/
1124 /*=------------=*/
1125 /*= Pagination =*/
1126 /*=------------=*/
1128 #content.user-page > #top-nav-bar {
1129 grid-row: 6;
1132 /*=---------------------=*/
1133 /*= User's display name =*/
1134 /*=---------------------=*/
1136 #content.user-page h1.page-main-heading {
1137 margin: 0.25em 0 0 0;
1138 line-height: 1.1;
1139 grid-row: 4;
1142 /*=--------------------=*/
1143 /*= User's karma total =*/
1144 /*=--------------------=*/
1146 #content.user-page .user-stats {
1147 grid-column: 3;
1148 grid-row: 4;
1149 text-align: right;
1150 align-self: end;
1153 /*=----------------------=*/
1154 /*= Expanded vs. compact =*/
1155 /*=----------------------=*/
1157 #content.user-page #comments-list-mode-selector {
1158 grid-row: 5 / span 2;
1160 #content.user-page #comments-list-mode-selector button {
1161 display: block;
1164 /*=----------------------------------------------------=*/
1165 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1166 /*=----------------------------------------------------=*/
1168 #content.user-page .sublevel-nav {
1169 margin-bottom: 0.5em;
1172 /*=--------------=*/
1173 /*= User's posts =*/
1174 /*=--------------=*/
1176 #content.user-page h1.listing {
1177 margin: 0.5em 0 0 0;
1180 /*****************/
1181 /* CONVERSATIONS */
1182 /*****************/
1184 /*=----------------------=*/
1185 /*= List of participants =*/
1186 /*=----------------------=*/
1188 #content.conversation-page .conversation-participants {
1189 grid-column: 2 / span 2;
1190 grid-row: 3;
1191 text-align: right;
1192 margin: 0.5em 0 0 0;
1195 .conversation-participants ul,
1196 .conversation-participants li {
1197 list-style-type: none;
1198 display: inline-block;
1199 margin: 0;
1200 padding: 0;
1202 .conversation-participants li {
1203 margin-left: 0.375em;
1205 .conversation-participants li:not(:last-of-type)::after {
1206 content: ",";
1209 /*=-------------------------=*/
1210 /*= Posting controls (form) =*/
1211 /*=-------------------------=*/
1213 #content.conversation-page .posting-controls {
1214 padding: 0 0 1em 0;
1216 #content.conversation-page .post-meta-fields {
1217 overflow: auto;
1218 display: flex;
1219 flex-flow: row wrap;
1221 #content.conversation-page textarea {
1222 margin-top: 0.375em;
1224 #conversation-form {
1225 padding: 0 1em 3em 1em;
1227 #conversation-form input[type='text'],
1228 #conversation-form label {
1229 margin: 0.25em 0;
1231 #conversation-form label {
1232 width: 4em;
1233 text-align: right;
1234 padding: 2px 6px;
1235 border: 1px solid transparent;
1237 #conversation-form input[type='text'] {
1238 width: calc(100% - 4em);
1239 padding: 0.25em;
1241 #conversation-form input[type='submit'] {
1242 float: right;
1244 #content.conversation-page #markdown-hints-checkbox ~ label {
1245 white-space: nowrap;
1247 #content.conversation-page #markdown-hints {
1248 top: calc(100% + 2em);
1251 /*=--------------------=*/
1252 /*= Conversation title =*/
1253 /*=--------------------=*/
1255 #content.conversation-page h1.page-main-heading {
1256 text-align: center;
1257 margin: 0.5em 0;
1258 line-height: 1.15;
1261 /*=----------=*/
1262 /*= Messages =*/
1263 /*=----------=*/
1265 #content.conversation-page > ul.comment-thread:last-of-type {
1266 margin-bottom: 2em;
1269 /******************/
1270 /* SEARCH RESULTS */
1271 /******************/
1273 #content.search-results-page h1.listing {
1274 font-size: 1.625em;
1277 /**************/
1278 /* LOGIN PAGE */
1279 /**************/
1281 .login-container {
1282 margin: 2em 0;
1283 padding: 1em;
1284 display: flex;
1285 flex-flow: row wrap;
1288 .login-container form {
1289 flex-basis: 50%;
1290 display: grid;
1291 grid-row-gap: 0.5em;
1292 align-content: start;
1294 .login-container form label {
1295 text-align: right;
1296 padding: 0.25em 0.5em;
1297 white-space: nowrap;
1298 grid-column: 1;
1300 .login-container form input {
1301 grid-column: 2;
1302 padding: 0.25em;
1304 .login-container form input[type='submit'],
1305 .login-container form a {
1306 grid-column: 2;
1307 justify-self: center;
1309 .login-container form input[type='submit'] {
1310 width: 10em;
1311 padding: 0.35em;
1312 line-height: 1;
1313 margin: 0.5em 0 0 0;
1315 .login-container form h1 {
1316 text-align: center;
1317 margin: 0;
1318 grid-column: 2;
1321 /* “Log in” form */
1323 #login-form {
1324 grid-template-columns: 5.5em 1fr;
1325 padding: 0.5em 2em 0.5em 0;
1328 /* “Create account” form */
1330 #signup-form {
1331 font-size: 0.9em;
1332 grid-template-columns: 8.5em 1fr;
1333 padding: 0.5em 1em 1em 1em;
1335 #signup-form h1 {
1336 font-size: 1.7em;
1338 #signup-form input[type='submit'] {
1339 padding: 0.4em 0.5em 0.5em 0.5em;
1342 /* Log in tip */
1344 .login-container .login-tip {
1345 padding: 0.5em 0.5em 0.5em 3em;
1346 margin: 2em 4em 0 4em;
1347 text-indent: -2em;
1348 line-height: 1.4;
1350 .login-container .login-tip span {
1351 font-weight: bold;
1354 /* Message box */
1356 #content.login-page .error-box {
1357 margin: 1.5em 0.875em -1.5em 0.875em;
1359 .error-box, .success-box {
1360 padding: 0.25em;
1361 text-align: center;
1364 /***********************/
1365 /* PASSWORD RESET PAGE */
1366 /***********************/
1368 .reset-password-container {
1369 margin-bottom: 2em;
1371 .reset-password-container input[type='submit'] {
1372 padding: 0.2em 0.5em;
1373 width: unset;
1375 .reset-password-container input {
1376 margin-left: 0.5em;
1377 width: 12em;
1379 .reset-password-container label {
1380 display: inline-block;
1381 width: 9em;
1383 .reset-password-container form > div {
1384 margin: 0.2em;
1386 .reset-password-container .action-container {
1387 padding-left: 11em;
1388 padding-top: 0.2em;
1390 .reset-password-container .error-box {
1391 margin: unset;
1394 /*********************/
1395 /* TABLE OF CONTENTS */
1396 /*********************/
1398 .contents {
1399 float: right;
1400 min-width: 6em;
1401 max-width: 40%;
1402 margin: 1.25em 0 0.75em 1.25em;
1403 padding: 7px 14px 10px 10px;
1404 position: relative;
1405 z-index: 1;
1408 .contents-head {
1409 text-align: center;
1410 margin-bottom: 0.25em;
1413 .post-body .contents ul {
1414 list-style-type: none;
1415 margin: 0 0 0 0.5em;
1416 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1417 padding-left: 1em;
1418 font-size: 0.75em;
1420 .post-body .contents li {
1421 margin: 0.15em 0 0.3em 1em;
1422 text-align: left;
1423 text-indent: -1em;
1424 line-height: 1.2;
1425 position: relative;
1427 .post-body .contents li::before {
1428 position: absolute;
1429 width: 3em;
1430 display: block;
1431 text-align: right;
1432 left: -4.5em;
1434 .contents .toc-item-1 {
1435 counter-increment: toc-item-1;
1436 counter-reset: toc-item-2 toc-item-3;
1438 .contents .toc-item-1::before {
1439 content: counter(toc-item-1);
1441 .contents .toc-item-1 ~ .toc-item-2 {
1442 margin-left: 2.9em;
1443 font-size: 0.95em;
1445 .contents .toc-item-2 {
1446 counter-increment: toc-item-2;
1447 counter-reset: toc-item-3;
1449 .contents .toc-item-1 ~ .toc-item-2::before {
1450 content: counter(toc-item-1) "." counter(toc-item-2);
1452 .contents .toc-item-2::before {
1453 content: counter(toc-item-2);
1455 .contents .toc-item-1 + .toc-item-3 {
1456 counter-increment: toc-item-2 toc-item-3;
1458 .contents .toc-item-2 ~ .toc-item-3,
1459 .contents .toc-item-1 ~ .toc-item-3 {
1460 margin-left: 2.9em;
1461 font-size: 0.95em;
1463 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1464 margin-left: 5.7em;
1465 font-size: 0.9em;
1467 .contents .toc-item-3 {
1468 counter-increment: toc-item-3;
1470 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1471 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1473 .contents .toc-item-1 ~ .toc-item-3::before {
1474 content: counter(toc-item-1) "." counter(toc-item-3);
1476 .contents .toc-item-2 ~ .toc-item-3::before {
1477 content: counter(toc-item-2) "." counter(toc-item-3);
1479 .contents .toc-item-3::before {
1480 content: counter(toc-item-3);
1482 .contents .toc-item-4,
1483 .contents .toc-item-5,
1484 .contents .toc-item-6 {
1485 display: none;
1488 /********************/
1489 /* POSTS & COMMENTS */
1490 /********************/
1492 .post-meta > *,
1493 .comment-meta > * {
1494 display: inline-block;
1495 margin-right: 1em;
1496 font-size: 1.0625em;
1497 white-space: nowrap;
1499 .post-body,
1500 .comment-body {
1501 overflow-wrap: break-word;
1502 text-align: justify;
1504 .post-body p,
1505 .comment-body p {
1506 margin: 1em 0;
1508 .retracted .post-body,
1509 .retracted .comment-body {
1510 text-decoration: line-through;
1513 /*************/
1514 /* POST-META */
1515 /*************/
1517 .post-meta {
1518 display: flex;
1519 flex-flow: row wrap;
1520 justify-content: center;
1522 .post-meta .lw2-link {
1523 opacity: 0.5;
1524 order: 1;
1526 .post-meta > *,
1527 .post-meta .post-section::before {
1528 margin: 0 0.5em;
1530 .post-meta .post-section {
1531 order: -1;
1532 margin: 0;
1533 visibility: hidden;
1535 .post-meta .post-section::before {
1536 visibility: visible;
1537 font-family: "Font Awesome";
1538 font-weight: 900;
1540 .post-section.frontpage::before {
1541 content: "\F015";
1543 .post-section.featured::before {
1544 content: "\F005";
1546 .post-section.meta::before {
1547 content: "\F077";
1549 .post-section.personal::before {
1550 content: "\F007";
1552 .post-section.draft::before {
1553 content: "\F15B";
1555 .post-section.alignment-forum::before {
1556 content: "AF";
1557 font-family: Concourse;
1560 /*= Karma controls hover tooltips =*/
1562 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1563 .post .karma,
1564 .comment-item .karma {
1565 position: relative;
1567 .post .karma.active-controls::after,
1568 .comment-item .karma.active-controls::after {
1569 content: "Double-click for strong vote";
1570 position: absolute;
1571 pointer-events: none;
1572 display: block;
1573 left: 6px;
1574 max-width: calc(100% - 12px);
1575 line-height: 1.15;
1576 white-space: normal;
1577 text-align: center;
1578 font-size: 0.875rem;
1579 opacity: 0;
1580 transition: opacity 0.2s ease;
1582 .post .karma.active-controls:hover::after,
1583 .comment-item .karma.active-controls:hover::after {
1584 opacity: 1.0;
1587 .post .karma .karma-value::after,
1588 .comment-item .karma .karma-value::after {
1589 content: attr(title);
1590 position: absolute;
1591 pointer-events: none;
1592 display: block;
1593 left: 50%;
1594 transform: translateX(-50%);
1595 white-space: nowrap;
1596 text-align: center;
1597 font-size: 0.875rem;
1598 color: #bbb;
1599 opacity: 0;
1600 transition: opacity 0.2s ease;
1602 .post .karma .karma-value:hover::after,
1603 .comment-item .karma .karma-value:hover::after {
1604 opacity: 1.0;
1606 .comment-item .karma .karma-value:hover::after {
1607 z-index: 5001;
1611 /*********/
1612 /* POSTS */
1613 /*********/
1615 .post {
1616 max-width: 100%;
1619 .post-body {
1620 min-height: 8em;
1621 padding: 0 30px;
1622 line-height: 1.5;
1623 font-size: 1.3rem;
1624 overflow: auto;
1625 margin: 0.5em 0 0 0;
1627 h1.post-title {
1628 margin: 1.1em 0 0.35em 0;
1629 padding: 0 30px;
1630 text-align: center;
1631 font-size: 2.5em;
1632 line-height: 1;
1634 .post .post-meta {
1635 text-align: center;
1636 position: relative;
1637 z-index: 2;
1639 .post .top-post-meta:last-child {
1640 margin-bottom: 40px;
1642 .post .bottom-post-meta {
1643 margin: 0;
1644 padding: 20px 0 22px 0;
1647 /**************/
1648 /* LINK POSTS */
1649 /**************/
1651 .post.link-post > .post-body > p:first-child {
1652 text-align: center;
1653 font-size: 1.125em;
1654 margin: 0.5em 0 0 0;
1656 .post.link-post > .post-body > p:only-child {
1657 font-size: 1.5em;
1658 margin: 1em 0;
1660 .post.link-post a.link-post-link::before {
1661 content: "\F0C1";
1662 font-family: Font Awesome;
1663 font-weight: 900;
1664 font-size: 0.75em;
1665 position: relative;
1666 top: -2px;
1667 margin-right: 0.25em;
1670 /************/
1671 /* COMMENTS */
1672 /************/
1674 .comments {
1675 max-width: 100%;
1676 padding: 0 0 1px 0;
1677 position: relative;
1679 .comments::before {
1680 content: "";
1681 position: absolute;
1682 display: block;
1683 top: 0;
1684 left: 0;
1685 width: 100%;
1686 height: 100%;
1687 pointer-events: none;
1689 ul.comment-thread {
1690 list-style-type: none;
1691 padding: 0;
1692 max-width: 100%;
1694 .comments .comment-thread > li {
1695 position: relative;
1697 #content > #top-nav-bar + .comment-thread .comment-item {
1698 margin-top: 0;
1701 .comment-item {
1702 margin: 2em 0 0 0;
1704 .comment-item .comment-item {
1705 margin: 1em 8px 8px 16px;
1707 .comment-item .comment-item + .comment-item {
1708 margin: 2em 8px 8px 16px;
1711 .comment-body {
1712 line-height: 1.45;
1713 font-size: 1.2rem;
1714 padding: 10px;
1716 .comment-body ul {
1717 list-style-type: circle;
1719 .comment-body > *:first-child {
1720 margin-top: 0;
1722 .comment-body > *:last-child {
1723 margin-bottom: 0;
1726 .comments:empty::after,
1727 .comments > .comment-controls:last-child::after {
1728 content: "No comments.";
1729 display: block;
1730 width: 100%;
1731 text-align: center;
1732 padding: 0.75em 0 0.9em 0;
1733 font-size: 1.375em;
1736 /**********************************/
1737 /* DEEP COMMENT THREAD COLLAPSING */
1738 /**********************************/
1740 .comment-item input[id^="expand"] {
1741 display: none;
1743 .comment-item input[id^="expand"] + label {
1744 display: block;
1745 visibility: hidden;
1746 position: relative;
1747 margin: 8px 9px;
1749 .comment-item input[id^="expand"] + label::after {
1750 content: "(Expand " attr(data-child-count) " below)";
1751 visibility: visible;
1752 position: absolute;
1753 left: 0;
1754 white-space: nowrap;
1755 cursor: pointer;
1757 .comment-item input[id^="expand"]:checked + label::after {
1758 content: "(Collapse " attr(data-child-count) " below)";
1760 .comment-item input[id^="expand"] ~ .comment-thread {
1761 max-height: 34px;
1762 overflow: hidden;
1764 .comment-item input[id^="expand"] ~ .comment-thread > li:first-child {
1765 margin-top: 0;
1767 .comment-item input[id^="expand"]:checked ~ .comment-thread {
1768 max-height: 1000000px;
1771 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
1772 margin: 0;
1774 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
1775 display: none;
1778 /****************/
1779 /* COMMENT-META */
1780 /****************/
1782 .comment-meta {
1783 padding: 2px 24px 2px 10px;
1784 margin: 0 -1px;
1785 border: none;
1786 display: flex;
1787 flex-flow: row wrap;
1788 align-items: baseline;
1790 .user-page .comment-meta,
1791 .conversation-page .comment-meta {
1792 padding-right: 10px;
1794 .comment-meta .comment-post-title {
1795 flex-basis: 100%;
1796 overflow: hidden;
1797 text-overflow: ellipsis;
1798 line-height: 1.3;
1800 .conversation-page .comment-meta .comment-post-title {
1801 margin: 0;
1802 flex-basis: unset;
1803 flex: 1 0 auto;
1804 text-align: right;
1805 display: none; /* Not sure if we need to display this... */
1807 .comment-item .author:not(.redacted).original-poster::after {
1808 content: "\2004(OP)";
1809 font-size: 0.75em;
1812 /*****************************/
1813 /* COMMENT THREAD NAVIGATION */
1814 /*****************************/
1816 a.comment-parent-link:not(.inline-author),
1817 a.comment-parent-link.inline-author::before {
1818 opacity: 0.5;
1820 a.comment-parent-link:hover {
1821 opacity: 1.0;
1823 a.comment-parent-link::before {
1824 content: "\F062";
1825 font-family: "Font Awesome";
1826 font-weight: 900;
1827 font-size: 0.75rem;
1828 line-height: 1;
1829 position: absolute;
1830 z-index: 1;
1831 display: block;
1832 padding: 3px 3px 0 3px;
1833 width: 16px;
1834 height: calc(100% + 2px);
1835 top: -1px;
1836 left: -17px;
1838 a.comment-parent-link::after {
1839 content: "";
1840 position: absolute;
1841 z-index: 0;
1842 display: block;
1843 width: calc(100% + 26px);
1844 height: calc(100% + 38px);
1845 top: -29px;
1846 left: -17px;
1847 pointer-events: none;
1848 overflow: hidden;
1849 visibility: hidden;
1851 a.comment-parent-link:hover::after {
1852 visibility: visible;
1855 .comment-child-links {
1856 flex-basis: 100%;
1858 .comment-child-link {
1859 margin: 0 0.25em;
1860 display: inline-block;
1862 .comment-child-link::before {
1863 content: ">";
1864 display: inline-block;
1865 margin: 0 2px 0 0;
1868 .comment-popup {
1869 position: fixed;
1870 top: 10%;
1871 right: 10%;
1872 max-width: 700px;
1873 z-index: 10001;
1874 font-size: 1rem;
1875 white-space: unset;
1876 pointer-events: none;
1878 .comment-popup .comment-parent-link {
1879 display: none;
1881 .comment-popup .comment-body {
1882 font-size: 1.0625rem;
1885 /**********************/
1886 /* COMMENT PERMALINKS */
1887 /**********************/
1888 /********************/
1889 /* COMMENT LW LINKS */
1890 /********************/
1892 .comment-meta .permalink::before,
1893 .comment-meta .lw2-link::before,
1894 .individual-thread-page a.comment-parent-link:empty::before {
1895 content: "";
1896 display: inline-block;
1897 width: 1rem;
1898 height: 1rem;
1899 border-radius: 3px;
1900 box-shadow:
1901 0 0 0 1px #fff,
1902 0 0 0 2px #00e,
1903 0 0 0 3px transparent;
1904 padding: 0 0 0 2px;
1905 background-size: 100%;
1906 position: relative;
1907 top: 2px;
1908 opacity: 0.5;
1910 .comment-meta .permalink::before {
1911 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');
1913 .comment-meta .lw2-link::before {
1914 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==');
1916 .individual-thread-page a.comment-parent-link:empty::before {
1917 left: unset;
1918 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==');
1920 .comment-meta .permalink:hover::before {
1921 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');
1923 .comment-meta .lw2-link:hover::before {
1924 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==');
1926 .individual-thread-page a.comment-parent-link:empty:hover::before {
1927 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=');
1929 .comment-meta .permalink:hover::before,
1930 .comment-meta .lw2-link:hover::before,
1931 .individual-thread-page a.comment-parent-link:empty:hover::before {
1932 box-shadow:
1933 0 0 0 2px #00e,
1934 0 0 0 3px transparent;
1935 opacity: 1.0;
1936 filter: unset;
1938 .comment-meta .permalink:active::before,
1939 .comment-meta .lw2-link:active::before,
1940 .individual-thread-page a.comment-parent-link:empty:active::before {
1941 transform: scale(0.9);
1944 .comment-meta .permalink,
1945 .comment-meta .lw2-link,
1946 .individual-thread-page .comment-parent-link:empty {
1947 position: relative;
1948 opacity: 1.0;
1950 .comment-meta .permalink::after,
1951 .comment-meta .lw2-link::after,
1952 .individual-thread-page .comment-parent-link:empty::after {
1953 content: "";
1954 width: 30px;
1955 height: 30px;
1956 display: block;
1957 position: absolute;
1958 top: -2px;
1959 left: -7px;
1960 box-shadow: none;
1961 pointer-events: auto;
1962 visibility: visible;
1965 /*************************/
1966 /* COMMENTS COMPACT VIEW */
1967 /*************************/
1969 #comments-list-mode-selector,
1970 #content.index-page #comments-list-mode-selector,
1971 #content.user-page #comments-list-mode-selector {
1972 padding-top: 6px;
1973 grid-column: 1;
1974 position: unset;
1975 z-index: 1;
1976 justify-self: start;
1977 align-self: start;
1979 #comments-list-mode-selector button {
1980 color: transparent;
1981 width: 32px;
1982 height: 32px;
1983 padding: 6px;
1984 margin: 1px;
1985 overflow: hidden;
1986 background-repeat: no-repeat;
1987 background-size: 100%;
1988 background-origin: content-box;
1990 #comments-list-mode-selector button:disabled {
1991 cursor: auto;
1993 #comments-list-mode-selector button.expanded {
1994 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
1996 #comments-list-mode-selector button.compact {
1997 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
1999 @media only screen and (max-resolution: 1dppx) {
2000 #comments-list-mode-selector button.expanded {
2001 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
2003 #comments-list-mode-selector button.compact {
2004 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
2008 #content > ul.comment-thread > li.comment-item,
2009 #content.compact > ul.comment-thread > li.comment-item {
2010 margin: 0;
2013 #content > .comment-thread {
2014 margin: 1em 0;
2016 #content.compact > .comment-thread {
2017 font-size: 0.9375rem;
2018 margin: 0.5em 0;
2020 #content.compact > .comment-thread:hover {
2021 z-index: 1;
2023 #content.compact > .comment-thread .comment-body {
2024 font-size: 1.0625rem;
2026 #content.compact > .comment-thread .comment-item {
2027 max-height: 61px;
2028 margin-top: 1em;
2029 overflow: hidden;
2030 position: relative;
2031 pointer-events: none;
2033 #content.compact > .comment-thread .comment-item::after {
2034 content: "…";
2035 position: absolute;
2036 right: 0;
2037 bottom: 0;
2038 font-size: 2rem;
2039 line-height: 1;
2040 padding: 0 16px 10px 64px;
2041 pointer-events: auto;
2043 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2044 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
2045 #content.compact > .comment-thread .comment-item.expanded {
2046 overflow: visible;
2047 pointer-events: auto;
2048 z-index: 10;
2051 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2052 #content.compact > .comment-thread.expanded .comment-item {
2053 overflow: visible;
2054 pointer-events: auto;
2055 z-index: 10;
2058 #content.compact > .comment-thread .comment-item .comment-meta {
2059 white-space: nowrap;
2060 overflow: hidden;
2061 text-overflow: ellipsis;
2062 padding: 2px 10px;
2064 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2065 white-space: unset;
2067 #content.compact > .comment-thread .comment-item .comment-meta a {
2068 pointer-events: auto;
2070 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2071 display: inline;
2073 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2074 margin-left: 0.75em;
2076 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2077 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2078 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2079 max-height: unset;
2081 #content.compact > .comment-thread .comment-item:hover .comment,
2082 #content.compact > .comment-thread .comment-item.expanded .comment {
2083 position: relative;
2084 z-index: 1;
2085 margin-bottom: 2em;
2086 bottom: 0;
2088 #content.compact > .comment-thread .comment-item:hover .comment::before,
2089 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2090 content: "";
2091 position: absolute;
2092 display: block;
2093 width: calc(100% + 20px);
2094 height: calc(100% + 20px);
2095 z-index: -1;
2096 top: -10px;
2097 left: -10px;
2099 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2100 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2101 margin: 0;
2104 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2105 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2106 max-height: unset;
2108 #content.compact > .comment-thread.expanded .comment-item .comment {
2109 position: relative;
2110 z-index: 1;
2111 margin-bottom: 2em;
2112 bottom: 0;
2114 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2115 content: "";
2116 position: absolute;
2117 display: block;
2118 width: calc(100% + 14px);
2119 height: calc(100% + 20px);
2120 z-index: -1;
2121 top: -10px;
2122 left: -10px;
2124 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2125 margin: 0;
2127 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2128 content: "";
2129 display: block;
2130 position: fixed;
2131 top: 0;
2132 left: 0;
2133 width: 100%;
2134 height: 100%;
2135 z-index: -2;
2136 background-color: rgba(0,0,0,0.5);
2140 /*****************************/
2141 /* HIGHLIGHTING NEW COMMENTS */
2142 /*****************************/
2144 .new-comment::before {
2145 content: "";
2146 position: absolute;
2147 width: 100%;
2148 height: 100%;
2149 z-index: 5000;
2150 pointer-events: none;
2153 /***********************************/
2154 /* COMMENT THREAD MINIMIZE BUTTONS */
2155 /***********************************/
2157 .comment-minimize-button {
2158 font-family: Font Awesome;
2159 font-weight: 900;
2160 font-size: 1.25rem;
2161 line-height: 1;
2162 position: absolute;
2163 right: 1px;
2164 top: 1px;
2165 width: 18px;
2166 margin: 0;
2167 cursor: pointer;
2169 .comment-minimize-button:active {
2170 transform: scale(0.9);
2172 .comment-minimize-button::after {
2173 content: attr(data-child-count);
2174 font-weight: normal;
2175 font-size: 0.8125rem;
2176 position: absolute;
2177 left: 0;
2178 width: 100%;
2179 text-align: center;
2180 top: 21px;
2182 #content.individual-thread-page .comment-minimize-button {
2183 display: none;
2186 /***********************************/
2187 /* INDIVIDUAL COMMENT THREAD PAGES */
2188 /***********************************/
2190 .individual-thread-page > h1 {
2191 line-height: 1;
2192 margin: 0.75em 0 3px 0;
2194 .individual-thread-page .comments {
2195 border: none;
2198 /****************/
2199 /* VOTE BUTTONS */
2200 /****************/
2202 .vote {
2203 margin: 0;
2205 .vote {
2206 font-family: Font Awesome;
2207 font-weight: 900;
2208 border: none;
2210 .karma.waiting {
2211 opacity: 0.5;
2213 .karma.waiting button {
2214 pointer-events: none;
2217 /* Replicated karma controls at bottom of comments. */
2218 .comment-controls .karma {
2219 float: left;
2220 margin-left: -14px;
2221 font-size: 0.9375em;
2224 /*****************************/
2225 /* COMMENTING AND POSTING UI */
2226 /*****************************/
2228 .comment-controls {
2229 text-align: right;
2230 margin: 0 8px 8px 16px;
2231 position: relative;
2232 z-index: 9999;
2234 .comment-thread .comment-controls + .comment-thread > li:first-child {
2235 margin-top: 8px;
2237 .comments > .comment-controls {
2238 margin: 8px 0 0 0;
2240 .comments > .comment-controls:last-child {
2241 margin: 8px 0 16px 0;
2244 .posting-controls input[type='submit'] {
2245 margin: 6px;
2246 padding: 4px 10px;
2247 font-size: 1.125rem;
2250 .comment-controls .cancel-comment-button {
2251 position: absolute;
2252 right: 0;
2253 margin: 0;
2254 height: 27px;
2255 font-size: inherit;
2256 padding: 4px 8px 2px 4px;
2257 z-index: 1;
2259 .comment-controls .cancel-comment-button::before {
2260 font-family: Font Awesome;
2261 margin-right: 3px;
2262 content: '\F00D';
2263 font-weight: 900;
2264 font-size: 0.9em;
2265 opacity: 0.7;
2268 .comment + .comment-controls .action-button {
2269 font-weight: normal;
2270 font-size: 1.0625em;
2271 padding: 1px 6px;
2273 .comment-controls .action-button::before {
2274 font-family: Font Awesome;
2275 margin-right: 3px;
2277 .new-comment-button {
2278 font-size: 1.5rem;
2279 margin: 0 0.25em;
2281 .comment-controls .reply-button::before {
2282 content: '\F3E5';
2283 font-weight: 900;
2284 font-size: 0.9em;
2285 opacity: 0.6;
2288 .post-controls {
2289 text-align: right;
2290 margin: 0.75em 0 0 0;
2291 grid-row: 3;
2292 align-self: start;
2293 justify-self: end;
2295 .post {
2296 grid-row: 3;
2298 .edit-post-link {
2299 display: inline-block;
2300 margin-bottom: 0.25em;
2301 font-size: 1.125rem;
2303 .edit-post-link::before {
2304 margin-right: 0.3em;
2306 .comment-controls .edit-button::before,
2307 .edit-post-link::before {
2308 content: '\F303';
2309 font-family: "Font Awesome";
2310 font-weight: 900;
2311 font-size: 0.75em;
2312 position: relative;
2313 top: -1px;
2316 .comment-controls .delete-button {
2317 margin-right: 0.25em;
2319 .comment-controls .edit-button,
2320 .comment-controls .retract-button,
2321 .comment-controls .unretract-button {
2322 margin-right: 1em;
2324 .comment-controls .retract-button::before {
2325 content: '\F4B3';
2326 opacity: 0.6;
2328 .comment-controls .unretract-button::before {
2329 content: '\F075';
2330 opacity: 0.9;
2332 .comment-controls .delete-button::before {
2333 content: '\F05E';
2334 opacity: 0.7;
2336 .comment-controls .retract-button::before,
2337 .comment-controls .unretract-button::before,
2338 .comment-controls .delete-button::before {
2339 font-weight: 900;
2340 font-size: 0.9em;
2343 .comment-controls form {
2344 position: relative;
2346 .textarea-container {
2347 position: relative;
2349 .posting-controls textarea {
2350 display: block;
2351 width: 100%;
2352 height: 15em;
2353 min-height: 15em;
2354 max-height: calc(100vh - 6em);
2355 margin: 2px 0 0 0;
2356 padding: 4px 5px;
2357 font-size: 1.2rem;
2358 border-style: solid;
2359 border-width: 29px 1px 1px 1px;
2360 resize: none;
2363 /* GUIEdit buttons */
2365 .guiedit-buttons-container {
2366 position: absolute;
2367 left: 1px;
2368 top: 1px;
2369 width: calc(100% - 2px);
2370 height: 28px;
2371 text-align: left;
2372 padding: 1px 4px 0 4px;
2373 overflow: hidden;
2375 .comment-thread-page .guiedit-buttons-container {
2376 padding-right: 60px;
2378 .guiedit-buttons-container button {
2379 height: 26px;
2380 padding: 0 7px;
2381 font-weight: 900;
2382 font-size: 0.875rem;
2383 line-height: 1;
2384 position: static;
2386 .guiedit-buttons-container button:active {
2387 transform: none;
2389 .guiedit-buttons-container button:active div {
2390 transform: scale(0.9);
2392 .guiedit-buttons-container button sup {
2393 font-weight: bold;
2395 .guiedit::after {
2396 content: attr(data-tooltip);
2397 position: absolute;
2398 font-weight: normal;
2399 font-size: 1rem;
2400 top: 2px;
2401 left: 464px;
2402 height: 25px;
2403 padding: 4px 0;
2404 white-space: nowrap;
2405 visibility: hidden;
2407 .guiedit:hover::after {
2408 visibility: visible;
2411 /* Markdown hints */
2413 .posting-controls .markdown-reference-link {
2414 float: left;
2415 padding: 1px 0 0 6px;
2417 .posting-controls .markdown-reference-link a {
2418 padding-right: 1.5em;
2419 margin-right: 0.15em;
2420 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');
2421 background-size: 1.25em;
2422 background-repeat: no-repeat;
2423 background-position: right center;
2426 #markdown-hints-checkbox + label {
2427 float: left;
2428 margin: 2px 0 0 1em;
2429 line-height: 1.3;
2430 cursor: pointer;
2432 #edit-post-form #markdown-hints-checkbox + label {
2433 padding: 0;
2435 #markdown-hints-checkbox {
2436 visibility: hidden;
2437 float: left;
2439 #markdown-hints-checkbox + label::after {
2440 content: "(Show Markdown help)";
2442 #markdown-hints-checkbox:checked + label::after {
2443 content: "(Hide Markdown help)";
2445 #markdown-hints-checkbox + label::before {
2446 content: '\F059';
2447 font-family: Font Awesome;
2448 font-weight: 900;
2449 margin-right: 3px;
2451 #markdown-hints-checkbox:checked + label::before {
2452 font-weight: normal;
2454 #markdown-hints {
2455 margin: 4px 0 0 4px;
2456 padding: 4px 8px;
2457 position: absolute;
2458 text-align: left;
2459 top: calc(100% - 1em);
2460 z-index: 1;
2461 display: none;
2463 .comment-controls #markdown-hints {
2464 top: calc(100% + 1.75em);
2466 #markdown-hints-checkbox:checked ~ #markdown-hints {
2467 display: table;
2469 .markdown-hints-row {
2470 display: table-row;
2472 #markdown-hints .markdown-hints-row span,
2473 #markdown-hints .markdown-hints-row code {
2474 float: none;
2475 display: table-cell;
2476 border: none;
2477 background-color: inherit;
2478 padding: 0 12px 0 0;
2481 /******************/
2482 /* EDIT POST FORM */
2483 /******************/
2485 #edit-post-form {
2486 padding: 1em 1em 4em 1em;
2488 #edit-post-form .post-meta-fields {
2489 display: grid;
2490 grid-template-columns: 5em auto auto auto 1fr auto;
2491 margin-bottom: 0.625em;
2494 #edit-post-form label[for='title'],
2495 #edit-post-form label[for='url'],
2496 #edit-post-form label[for='section'] {
2497 grid-column: 1;
2499 #edit-post-form input[type='text'] {
2500 padding: 0.25em;
2501 grid-column: 2 / span 4;
2502 margin-bottom: 0.5em;
2505 #edit-post-form .link-post-checkbox,
2506 #edit-post-form .link-post-checkbox + label {
2507 grid-row: 1;
2508 grid-column: 6;
2510 #edit-post-form .question-checkbox,
2511 #edit-post-form .question-checkbox + label {
2512 grid-row: 3;
2513 grid-column: 5;
2514 justify-self: end;
2517 #edit-post-form .post-meta-fields input[type='checkbox'] {
2518 height: 0;
2519 opacity: 0;
2520 pointer-events: none;
2522 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
2523 white-space: nowrap;
2524 position: relative;
2525 cursor: pointer;
2526 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
2528 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
2529 content: "";
2530 font-family: Font Awesome;
2531 font-size: 1.375rem;
2532 line-height: 0.7;
2533 text-indent: 1px;
2534 font-weight: 900;
2535 position: absolute;
2536 width: 20px;
2537 height: 20px;
2538 left: 5px;
2540 #edit-post-form label[for='url'],
2541 #edit-post-form input[name='url'] {
2542 display: none;
2544 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2545 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2546 display: initial;
2548 #edit-post-form label {
2549 line-height: normal;
2550 border: 1px solid transparent;
2551 text-align: right;
2552 padding: 0.25em 0.5em;
2553 white-space: nowrap;
2555 #edit-post-form input[type='radio'] {
2556 width: 0;
2557 margin: 0;
2558 opacity: 0;
2559 pointer-events: none;
2561 #edit-post-form input[type='radio'] + label {
2562 padding: 4px 12px;
2563 text-align: center;
2564 border-style: solid;
2565 border-width: 1px 1px 1px 0;
2566 cursor: pointer;
2568 #edit-post-form input[type='radio']:checked + label {
2569 cursor: default;
2572 #edit-post-form label[for='section'] {
2573 grid-row: 3;
2575 #edit-post-form input[type='radio'] + label {
2576 grid-row: 3;
2578 @supports (width: -moz-fit-content) {
2579 #edit-post-form input[type='radio'] + label {
2580 width: -moz-fit-content;
2583 @supports (width: fit-content) {
2584 #edit-post-form input[type='radio'] + label {
2585 width: fit-content;
2589 #edit-post-form textarea {
2590 min-height: 24em;
2593 #edit-post-form input[type='submit'] {
2594 padding: 6px 12px;
2595 float: right;
2597 #edit-post-form #markdown-hints {
2598 top: calc(100% + 2em);
2601 #edit-post-form button.guiedit div {
2602 overflow: visible;
2604 .guiedit-mobile-auxiliary-button {
2605 display: none;
2608 /***********/
2609 /* BUTTONS */
2610 /***********/
2612 button,
2613 input[type='submit'] {
2614 font-family: inherit;
2615 font-size: inherit;
2616 background-color: inherit;
2617 cursor: pointer;
2618 border: none;
2619 border-radius: 0;
2622 /************/
2623 /* HEADINGS */
2624 /************/
2626 .post-body h1,
2627 .post-body h2,
2628 .post-body h3,
2629 .post-body h4,
2630 .post-body h5,
2631 .post-body h6,
2632 .comment-body h1,
2633 .comment-body h2,
2634 .comment-body h3,
2635 .comment-body h4,
2636 .comment-body h5,
2637 .comment-body h6 {
2638 line-height: 1.1;
2639 margin: 1em 0 0.75em 0;
2640 text-align: left;
2643 .post-body h5,
2644 .post-body h6,
2645 .comment-body h5,
2646 .comment-body h6 {
2647 font-size: 1em;
2649 .post-body h4,
2650 .comment-body h4 {
2651 font-size: 1.2em;
2653 .post-body h3,
2654 .comment-body h3 {
2655 font-size: 1.4em;
2657 .post-body h2,
2658 .comment-body h2 {
2659 font-size: 1.75em;
2661 .post-body h1,
2662 .comment-body h1 {
2663 font-size: 2.1em;
2666 /**********/
2667 /* QUOTES */
2668 /**********/
2670 blockquote,
2671 .post-body .comment-box .comment-body {
2672 font-size: 0.9em;
2673 margin: 1em 0;
2674 padding-left: 0.5em;
2675 margin-left: 1px;
2676 padding-bottom: 3px;
2678 blockquote *:first-child {
2679 margin-top: 0;
2681 blockquote *:last-child {
2682 margin-bottom: 0;
2684 blockquote blockquote {
2685 font-size: 0.95em;
2688 /* Pseudo-blockquotes that LW sometimes uses for some reason */
2690 .post-body .comment-box .user-name {
2691 font-style: italic;
2693 .post-body .comment-box .user-name::after {
2694 content: ":";
2696 .post-body .comment-box {
2697 zoom: 1.25;
2700 /**********/
2701 /* IMAGES */
2702 /**********/
2704 #content img {
2705 max-width: 100%;
2708 img.inline-latex {
2709 position: relative;
2710 top: 2.5px;
2711 margin: 0 2px;
2714 #content figure {
2715 text-align: center;
2716 margin: 1.5em auto;
2719 p.imgonly,
2720 div.imgonly {
2721 text-align: center;
2724 /**********/
2725 /* TABLES */
2726 /**********/
2728 .post-body table,
2729 .comment-body table {
2730 border-collapse: collapse;
2731 font-family: Inconsolata, Menlo, monospace;
2732 font-size: 0.875em;
2734 .post-body table th,
2735 .post-body table td,
2736 .comment-body table th,
2737 .comment-body table td {
2738 text-align: left;
2739 padding: 4px 6px;
2740 line-height: 1.3;
2742 .post-body table td:nth-of-type(n+2),
2743 .comment-body table td:nth-of-type(n+2) {
2744 text-align: right;
2746 .post-body table caption,
2747 .comment-body table caption {
2748 margin: 0 0 0.25em 0;
2749 font-weight: bold;
2750 font-size: 1.125em;
2753 /********/
2754 /* MISC */
2755 /********/
2757 /*= Superscripts & subscripts =*/
2759 /* Make sure superscripts and subscripts do not affect line spacing. */
2760 sup, sub {
2761 vertical-align: baseline;
2762 position: relative;
2763 top: -0.5em;
2764 left: 0.05em;
2765 font-size: 0.8em;
2767 sub {
2768 top: 0.3em;
2771 /*= Code blocks & other "unstyled" text. =*/
2773 pre,
2774 code {
2775 font-family: Inconsolata, Menlo, monospace;
2777 pre {
2778 white-space: pre-wrap;
2780 code {
2781 font-size: 0.95em;
2782 display: inline-block;
2783 padding: 0 4px 1px 5px;
2785 pre > code {
2786 display: block;
2787 border-radius: 0;
2788 padding: 3px 4px 5px 8px;
2791 /*= Fractions =*/
2793 .frac::after {
2794 content: "\200B";
2797 /*= Removing browser default styling of various elements =*/
2799 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
2800 :focus {
2801 outline: none;
2804 /* Remove "embossed" appearance of horizontal rules. */
2805 hr {
2806 border: none;
2809 input,
2810 button,
2811 textarea {
2812 -webkit-appearance: none;
2813 -moz-appearance: none;
2814 appearance: none;
2817 input {
2818 font-family: inherit;
2819 font-size: inherit;
2820 font-weight: inherit;
2823 /*************/
2824 /* FOOTNOTES */
2825 /*************/
2827 ol {
2828 counter-reset: ordered-list;
2830 .footnote-definition {
2831 font-size: 0.9em;
2832 list-style-type: none;
2833 counter-increment: ordered-list;
2834 position: relative;
2836 .footnote-definition p {
2837 font-size: inherit !important;
2839 .footnote-definition::before {
2840 content: counter(ordered-list) ".";
2841 position: absolute;
2842 left: -2.5em;
2843 font-weight: bold;
2844 text-align: right;
2845 width: 2em;
2848 /*********/
2849 /* LISTS */
2850 /*********/
2852 li {
2853 margin-bottom: 0.5em;
2856 .post-body ol p,
2857 .post-body ul p,
2858 .comment-body ol p,
2859 .comment-body ul p {
2860 margin: 0.5em 0;
2863 .post-body ol {
2864 list-style: none;
2865 padding: 0;
2866 counter-reset: ol;
2868 .post-body ol > li {
2869 position: relative;
2870 counter-increment: ol;
2871 padding: 0 0 0 2.5em;
2872 margin: 0.25em 0 0 0;
2874 .post-body ol > li::before {
2875 content: counter(ol) ".";
2876 position: absolute;
2877 width: 2em;
2878 text-align: right;
2879 left: 0;
2881 .post-body ul {
2882 list-style: none;
2883 padding: 0;
2885 .post-body ul:not(.contents-list) li {
2886 position: relative;
2887 padding: 0 0 0 2.5em;
2888 margin: 0.25em 0 0 0;
2890 .post-body ul:not(.contents-list) li::before {
2891 content: "•";
2892 position: absolute;
2893 width: 2em;
2894 text-align: right;
2895 left: 0;
2897 .post-body li > ul:first-child > li {
2898 padding-left: 0;
2900 .post-body li > ul:first-child > li::before {
2901 content: none;
2904 /**************/
2905 /* ABOUT PAGE */
2906 /**************/
2908 #content.about-page .contents {
2909 margin-top: 0.25em;
2911 #content.about-page .accesskey-table {
2912 border-collapse: collapse;
2913 margin: auto;
2915 #content.about-page .accesskey-table th,
2916 #content.about-page .accesskey-table td {
2917 padding: 2px 6px;
2919 #content.about-page .accesskey-table td:first-child {
2920 padding-right: 1.5em;
2922 #content.about-page .accesskey-table td:last-child {
2923 text-align: center;
2924 font-family: Inconsolata, Menlo, monospace;
2926 #content.about-page h3:nth-of-type(n+2) {
2927 clear: both;
2930 /******************/
2931 /* IMAGES OVERLAY */
2932 /******************/
2934 #images-overlay + #content .post-body img {
2935 visibility: hidden;
2938 #images-overlay div {
2939 position: absolute;
2941 #images-overlay div::after {
2942 content: "Click to enlarge";
2943 display: block;
2944 position: absolute;
2945 margin: auto;
2946 left: 0;
2947 right: 0;
2948 bottom: 10px;
2949 padding: 6px 10px;
2950 font-size: 1.25rem;
2951 background-color: rgba(0,0,0,0.6);
2952 color: #fff;
2953 border-radius: 5px;
2954 opacity: 0.0;
2955 transition: opacity 0.15s ease;
2956 pointer-events: none;
2958 @supports (width: -moz-fit-content) {
2959 #images-overlay div::after {
2960 width: -moz-fit-content;
2963 @supports (width: fit-content) {
2964 #images-overlay div::after {
2965 width: fit-content;
2968 #images-overlay div:hover::after {
2969 opacity: 1.0;
2972 #images-overlay img {
2973 width: 100%;
2976 /***************/
2977 /* IMAGE FOCUS */
2978 /***************/
2980 #content img:hover,
2981 #images-overlay img:hover {
2982 filter: drop-shadow(0 0 3px #777);
2983 cursor: zoom-in;
2985 #content img:active,
2986 #images-overlay img:active {
2987 transform: scale(0.975);
2990 #image-focus-overlay {
2991 position: fixed;
2992 top: 0;
2993 right: 0;
2994 bottom: 0;
2995 left: 0;
2996 display: none;
2997 cursor: zoom-out;
2999 #image-focus-overlay::before {
3000 content: "";
3001 display: block;
3002 position: absolute;
3003 top: 0;
3004 right: 0;
3005 bottom: 0;
3006 left: 0;
3007 background-color: #000;
3008 opacity: 0.5;
3009 z-index: -1;
3011 #image-focus-overlay.engaged {
3012 display: initial;
3015 #image-focus-overlay img {
3016 margin: auto;
3017 position: absolute;
3018 left: 50%;
3019 top: 50%;
3020 transform: translateX(-50%) translateY(-50%);
3023 #image-focus-overlay .help-overlay {
3024 position: absolute;
3025 display: flex;
3026 flex-flow: column;
3027 z-index: 2;
3028 font-size: 1.5rem;
3029 padding: 1em;
3030 border-radius: 10px;
3031 bottom: 1em;
3032 right: 1em;
3033 overflow: hidden;
3034 white-space: nowrap;
3035 color: transparent;
3036 visibility: hidden;
3037 transition:
3038 visibility 1s ease,
3039 color 1s ease,
3040 background-color 1s ease,
3041 bottom 0.3s ease;
3043 #image-focus-overlay .help-overlay:hover {
3044 max-width: 420px;
3045 max-height: 300px;
3046 background-color: rgba(0,0,0,0.85);
3047 color: #fff;
3048 visibility: visible;
3049 transition:
3050 visibility 0.2s ease 0.3s,
3051 color 0.2s ease 0.3s,
3052 background-color 0.2s ease 0.3s;
3055 #image-focus-overlay .help-overlay::after {
3056 content: "\F128";
3057 font-family: Font Awesome;
3058 font-weight: 900;
3059 font-size: 2rem;
3060 position: absolute;
3061 right: 0;
3062 bottom: 0;
3063 padding: 10px;
3064 color: #000;
3065 filter: drop-shadow(0 0 6px #fff);
3066 visibility: visible;
3067 opacity: 0.85;
3068 transition:
3069 visibility 1s ease;
3071 #image-focus-overlay .help-overlay:hover::after {
3072 visibility: hidden;
3073 transition:
3074 visibility 0.2s ease 0.3s;
3077 #image-focus-overlay .help-overlay p {
3078 margin: 0;
3079 text-indent: -2em;
3080 padding-left: 2em;
3081 max-width: 100%;
3082 overflow: hidden;
3084 #image-focus-overlay .help-overlay p + p {
3085 margin: 0.75em 0 0 0;
3087 #image-focus-overlay .help-overlay.hidden {
3088 bottom: -2em;
3091 #image-focus-overlay .image-number {
3092 position: absolute;
3093 z-index: 2;
3094 font-size: 1.75rem;
3095 left: 1em;
3096 bottom: 1em;
3097 font-weight: 600;
3098 text-shadow:
3099 0 0 3px #fff,
3100 0 0 5px #fff,
3101 0 0 8px #fff,
3102 0 0 13px #fff;
3103 width: 1.5em;
3104 text-align: right;
3105 white-space: nowrap;
3106 transition: bottom 0.3s ease;
3108 #image-focus-overlay .image-number::before {
3109 content: "#";
3110 opacity: 0.3;
3112 #image-focus-overlay .image-number::after {
3113 content: " of " attr(data-number-of-images);
3114 opacity: 0.3;
3116 #image-focus-overlay .image-number:hover::before,
3117 #image-focus-overlay .image-number:hover::after {
3118 opacity: 1.0;
3120 #image-focus-overlay .image-number.hidden {
3121 bottom: -1.25em;
3124 #image-focus-overlay .slideshow-buttons {
3125 position: absolute;
3126 top: 0;
3127 left: 0;
3128 width: 100%;
3129 height: 100%;
3130 z-index: 1;
3131 display: flex;
3132 justify-content: space-between;
3133 pointer-events: none;
3135 #image-focus-overlay .slideshow-buttons button {
3136 font-family: Font Awesome;
3137 font-weight: 900;
3138 font-size: 3rem;
3139 padding: 0.5em;
3140 color: #ddd;
3141 position: relative;
3142 left: 0;
3143 transition:
3144 left 0.3s ease;
3145 pointer-events: auto;
3147 #image-focus-overlay .slideshow-buttons button::selection {
3148 background-color: transparent;
3150 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3151 #image-focus-overlay .slideshow-buttons button:hover {
3152 background-color: rgba(0,0,0,0.1);
3153 color: #777;
3156 #image-focus-overlay .slideshow-buttons button:active {
3157 transform: none;
3158 color: #888;
3160 #image-focus-overlay .slideshow-buttons button:disabled {
3161 text-shadow: none;
3162 background-color: transparent;
3163 color: #ddd;
3164 cursor: default;
3165 opacity: 0.4;
3167 #image-focus-overlay .slideshow-button.previous.hidden {
3168 left: -1.75em;
3170 #image-focus-overlay .slideshow-button.next.hidden {
3171 left: 1.75em;
3174 .blurred {
3175 filter: blur(3px);
3178 /**************************/
3179 /* QUALIFIED HYPERLINKING */
3180 /**************************/
3182 #content.no-comments .comments,
3183 #content.no-comments .post-meta .comment-count,
3184 #content.no-comments .post-meta .karma,
3185 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3186 #content.no-comments + #ui-elements-container #hns-date-picker,
3187 #content.no-comments + #ui-elements-container #quick-nav-ui {
3188 display: none;
3191 #content.no-nav-bars #primary-bar,
3192 #content.no-nav-bars #secondary-bar {
3193 display: none;
3195 #content.no-nav-bars {
3196 margin: 8px auto;
3198 #content.no-nav-bars + #ui-elements-container > * {
3199 padding-top: 8px;
3202 #aux-about-link {
3203 position: fixed;
3204 top: 40px;
3205 left: calc((100% - 900px) / 2 - 69px);
3206 width: 1.5em;
3207 height: 1.5em;
3208 text-align: center;
3209 display: table;
3211 #aux-about-link a {
3212 display: table-cell;
3213 width: 100%;
3214 vertical-align: middle;
3215 font-family: Font Awesome;
3216 font-weight: 900;
3217 font-size: 1.25rem;
3218 opacity: 0.4;
3219 z-index: 1;
3222 .qualified-linking {
3223 margin: 0;
3224 position: relative;
3226 .qualified-linking input[type='checkbox'] {
3227 visibility: hidden;
3228 width: 0;
3229 height: 0;
3230 margin: 0;
3232 .qualified-linking label {
3233 font-family: Font Awesome;
3234 font-weight: 900;
3235 font-size: 1rem;
3236 padding: 0 0.5em;
3237 display: inline-block;
3238 margin-left: 0.25em;
3240 .qualified-linking label:hover {
3241 cursor: pointer;
3243 .qualified-linking label:active span {
3244 display: inline-block;
3245 transform: scale(0.9);
3247 .qualified-linking label::selection {
3248 background-color: transparent;
3251 .qualified-linking label::after {
3252 content: "";
3253 width: 100vw;
3254 height: 0;
3255 left: 0;
3256 top: 0;
3257 position: fixed;
3258 z-index: 1;
3259 cursor: default;
3261 .qualified-linking input[type='checkbox']:checked + label::after {
3262 height: 100vh;
3265 .qualified-linking-toolbar {
3266 position: absolute;
3267 right: 0.25em;
3268 top: 110%;
3269 z-index: 1;
3271 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3272 display: none;
3274 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3275 display: block;
3277 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3278 top: unset;
3279 bottom: 125%;
3282 .qualified-linking-toolbar a {
3283 display: block;
3284 padding: 0 6px;
3285 margin: 4px;
3287 .qualified-linking-toolbar a::selection {
3288 background-color: transparent;
3291 /********/
3292 /* MATH */
3293 /********/
3295 .mathjax-block-container {
3296 overflow-y: hidden;
3297 border-radius: 6px;
3298 margin: 1em 0 1.5em 0;
3300 .mathjax-inline-container {
3301 max-width: 100%;
3302 display: inline-block;
3303 overflow-x: auto;
3304 overflow-y: hidden;
3305 position: relative;
3306 vertical-align: text-top;
3307 padding: 0 1px;
3309 .post .mathjax-inline-container {
3310 line-height: 1.1;
3311 top: 2px;
3313 .comment .mathjax-inline-container {
3314 top: 3px;
3315 line-height: 1;
3317 .mathjax-inline-container .mjx-chtml {
3318 padding: 0;
3321 /************/
3322 /* SPOILERS */
3323 /************/
3325 .spoiler {
3326 color: #000;
3327 background-color: currentColor;
3328 transition: none;
3329 text-shadow: none;
3330 margin: 1em 0;
3331 box-shadow: 0 0 0 1px currentColor inset;
3332 overflow: auto;
3334 .spoiler:not(:last-child) {
3335 margin-bottom: 0;
3337 #content .spoiler * {
3338 color: inherit;
3339 border: none;
3341 .spoiler:hover {
3342 color: unset;
3343 background-color: unset;
3344 text-shadow: unset;
3345 transition:
3346 color 0.1s ease-out 0.1s,
3347 background-color 0.1s ease-out 0.1s,
3348 text-shadow 0.1s ease-out 0.1s;
3350 .spoiler::selection,
3351 .spoiler ::selection {
3352 color: #fff;
3353 background-color: #000;
3355 .spoiler:not(:hover)::selection,
3356 .spoiler:not(:hover) ::selection {
3357 background-color: transparent;
3360 /*= Fix for LessWrong being weird =*/
3362 .spoiler > p {
3363 padding: 0 7px;
3365 .spoiler > p:first-child {
3366 margin-top: 0.25em;
3368 .spoiler > p:last-child {
3369 margin-bottom: 0;
3370 padding-bottom: 0.25em;
3372 .spoiler > p:hover ~ p {
3373 background-color: currentColor;
3375 .spoiler > p + p {
3376 margin-top: -1em;
3378 .spoiler > p:not(:first-child) {
3379 padding-top: 0.5em;
3381 .spoiler > p:not(:last-child) {
3382 padding-bottom: 0.5em;
3385 /*******************/
3386 /* ALIGNMENT FORUM */
3387 /*******************/
3389 #content.alignment-forum-index-page::after {
3390 content: "Alignment Forum";
3391 grid-row: 3;
3392 font-size: 1.5rem;
3393 margin: 0.375em 0 0 -0.375em;
3396 /**********************/
3397 /* FOR NARROW SCREENS */
3398 /**********************/
3400 @media only screen and (max-width: 1440px) {
3401 #hns-date-picker {
3402 right: -81px;
3403 padding: 8px 10px 10px 10px;
3404 bottom: 62px;
3405 display: none;
3407 #hns-date-picker::before {
3408 content: "";
3409 position: absolute;
3410 display: block;
3411 z-index: -1;
3412 height: calc(100% + 2px);
3413 top: -1px;
3414 left: -1px;
3415 width: 50%;
3418 @media only screen and (max-width: 1160px) {
3419 #new-comment-nav-ui {
3420 bottom: 180px;
3421 right: -68px;
3423 #hns-date-picker {
3424 bottom: 200px;
3425 right: -36px;
3427 #hns-date-picker::before {
3428 width: calc(100% - 35px);
3430 #theme-selector button::before {
3431 right: unset;
3432 left: 100%;
3434 #theme-selector:hover::after {
3435 content: "";
3436 display: block;
3437 position: absolute;
3438 width: calc(6em - 7px);
3439 height: calc(100% + 2px);
3440 top: 0;
3441 left: calc(100% + 1px);
3443 #anti-kibitzer-toggle {
3444 bottom: 330px;
3447 @media only screen and (max-width: 1080px) {
3448 #width-selector {
3449 right: -30px;
3451 #width-selector button {
3452 display: block;
3454 #text-size-adjustment-ui {
3455 top: 90px;
3456 right: -30px;
3458 #text-size-adjustment-ui button {
3459 display: block;
3460 position: relative;
3462 #text-size-adjustment-ui button.increase {
3463 bottom: 48px;
3465 #text-size-adjustment-ui button.decrease {
3466 top: 50px;
3468 #theme-selector {
3469 top: 46px;
3470 left: -44px;
3472 #theme-tweaker-toggle {
3473 left: -44px;
3474 top: 2px;
3476 #theme-tweaker-toggle button {
3477 height: 2em;
3478 width: 2em;
3479 padding: 7px;
3481 #quick-nav-ui {
3482 right: -54px;
3484 #new-comment-nav-ui {
3485 right: -55px;
3487 #hns-date-picker {
3488 right: -23px;
3490 #hns-date-picker::before {
3491 width: calc(100% - 22px);
3493 #anti-kibitzer-toggle {
3494 right: -54px;
3497 @media only screen and (max-width: 1040px) {
3498 #quick-nav-ui {
3499 right: -49px;
3501 #new-comment-nav-ui {
3502 right: -50px;
3504 #hns-date-picker {
3505 right: -18px;
3507 #hns-date-picker::before {
3508 width: calc(100% - 17px);
3510 #anti-kibitzer-toggle {
3511 right: -50px;
3514 @media only screen and (max-width: 1020px) {
3515 #quick-nav-ui {
3516 right: -20px;
3518 #new-comment-nav-ui {
3519 right: -21px;
3521 #new-comment-nav-ui .new-comments-count::before {
3522 content: "";
3523 position: absolute;
3524 width: 100%;
3525 height: calc(100% + 45px);
3526 z-index: -1;
3527 left: 0;
3528 top: -22px;
3530 #hns-date-picker {
3531 right: 19px;
3533 #hns-date-picker::before {
3534 width: 100%;
3536 #anti-kibitzer-toggle {
3537 right: -20px;
3540 @media only screen and (max-width: 1000px) {
3541 #theme-selector {
3542 left: -17px;
3543 top: 120px;
3544 padding: 3px 0;
3545 max-width: 32px;
3547 #theme-selector button {
3548 margin: 1px 4px;
3550 #text-size-adjustment-ui {
3551 top: 100px;
3552 right: -12px;
3554 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3555 #quick-nav-ui,
3556 #new-comment-nav-ui,
3557 #new-comment-nav-ui + #hns-date-picker,
3558 #anti-kibitzer-toggle {
3559 opacity: 0.4;
3561 #quick-nav-ui:hover,
3562 #new-comment-nav-ui:hover,
3563 #new-comment-nav-ui + #hns-date-picker:hover,
3564 #new-comment-nav-ui + #hns-date-picker:focus-within,
3565 #new-comment-nav-ui:hover + #hns-date-picker,
3566 #anti-kibitzer-toggle:hover {
3567 opacity: 1.0;
3570 #theme-tweaker-toggle {
3571 top: 70px;
3572 left: -21px;
3576 /**************/
3577 /* PRINT VIEW */
3578 /**************/
3580 @media only print {
3581 .nav-bar {
3582 visibility: hidden;
3583 max-height: 0;
3584 overflow: hidden;
3586 #ui-elements-container {
3587 display: none;
3589 #images-overlay {
3590 display: none;
3592 #images-overlay + #content .post-body img {
3593 visibility: visible;
3595 .comment-controls {
3596 display: none;
3598 #comments-sort-mode-selector {
3599 display: none;
3601 .comment-minimize-button {
3602 display: none;
3604 .post-meta .qualified-linking,
3605 .post-meta .lw2-link {
3606 display: none;
3608 .comment-meta .permalink,
3609 .comment-meta .lw2-link,
3610 .comment-meta .comment-parent-link {
3611 display: none;
3613 .new-comment::before {
3614 display: none;
3616 #content::before {
3617 box-shadow: none;
3621 /*****************/
3622 /* MOBILE LAYOUT */
3623 /*****************/
3625 /* Hide the mobile elements on desktop screens: */
3627 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3628 #post-nav-ui-toggle,
3629 #appearance-adjust-ui-toggle,
3630 #theme-selector .theme-selector-close-button {
3631 display: none;
3635 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
3637 /*====================*/
3638 /* MOBILE UI ELEMENTS */
3639 /*====================*/
3641 #ui-elements-container {
3642 height: unset;
3643 position: unset;
3645 #ui-elements-container > * {
3646 position: fixed;
3647 visibility: hidden;
3648 opacity: 1.0;
3649 z-index: 10000;
3652 #ui-elements-container > div[id$='-ui-toggle'] {
3653 visibility: visible;
3654 display: inline-block;
3655 border-radius: 50%;
3656 z-index: 10000;
3658 #ui-elements-container > div[id$='-ui-toggle'] button,
3659 #theme-selector .theme-selector-close-button {
3660 font-family: Font Awesome;
3661 font-weight: 900;
3662 font-size: 32px;
3663 padding: 10px;
3664 opacity: 0.8;
3665 -webkit-tap-highlight-color: transparent;
3666 transition: transform 0.2s ease;
3668 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
3669 #theme-selector .theme-selector-close-button::selection {
3670 background-color: transparent;
3672 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
3673 #theme-selector .theme-selector-close-button::-moz-focus-inner {
3674 border: none;
3676 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
3677 transform: rotate(-90deg);
3678 opacity: 1.0;
3681 #appearance-adjust-ui-toggle {
3682 bottom: 10px;
3683 left: 10px;
3686 #post-nav-ui-toggle {
3687 bottom: 10px;
3688 right: 10px;
3691 #theme-selector.engaged,
3692 #quick-nav-ui.engaged,
3693 #new-comment-nav-ui.engaged,
3694 #hns-date-picker.engaged {
3695 visibility: visible;
3698 #image-focus-overlay.engaged {
3699 visibility: visible;
3701 #image-focus-overlay .help-overlay {
3702 display: none;
3705 /*=========*/
3706 /* GENERAL */
3707 /*=========*/
3709 @media only screen and (max-width: 900px) {
3710 #content,
3711 #images-overlay,
3712 #ui-elements-container {
3713 min-width: unset;
3714 width: unset;
3716 #content {
3717 padding: 0 4px;
3721 /*================*/
3722 /* THEME SELECTOR */
3723 /*================*/
3725 #theme-selector {
3726 display: flex;
3727 flex-flow: column;
3728 width: calc(100vw - 20px);
3729 max-width: 360px;
3730 padding: 0 0 3px 0;
3731 overflow: hidden;
3732 max-height: 0;
3733 transition:
3734 top 0.2s ease,
3735 max-height 0.2s ease,
3736 visibility 0.2s ease;
3737 top: calc(100% + 10px);
3738 left: 0;
3739 right: 0;
3740 margin: auto;
3742 #theme-selector.engaged {
3743 max-height: 1000px;
3744 top: 10px;
3745 z-index: 10001;
3747 #theme-selector::before {
3748 content: "Select theme";
3749 white-space: nowrap;
3750 display: block;
3751 font-weight: 600;
3752 font-size: 2rem;
3753 margin: 0.375em 1em 0.5em 1em;
3754 text-align: center;
3756 #theme-selector button {
3757 width: calc(100% - 0.5em);
3758 background-repeat: no-repeat;
3759 padding: 1em 0.875em;
3760 margin: 1px 4px;
3761 line-height: 1;
3762 height: unset;
3763 position: relative;
3765 #theme-selector button::after {
3766 content: attr(data-theme-description);
3767 white-space: nowrap;
3768 position: absolute;
3769 text-align: left;
3770 left: 2.5em;
3771 top: 1em;
3773 @media only screen and (max-height: 675px) {
3774 #theme-selector button {
3775 padding: 0.875em;
3777 #theme-selector button::after {
3778 top: 0.875em;
3781 #theme-selector .theme-selector-close-button {
3782 position: absolute;
3783 width: unset;
3784 background-color: transparent;
3785 top: 0;
3786 right: -3px;
3788 #theme-selector .theme-selector-close-button,
3789 #theme-selector .theme-selector-close-button:focus,
3790 #theme-selector .theme-selector-close-button:active,
3791 #theme-selector .theme-selector-close-button:hover {
3792 box-shadow: none;
3795 /*===============*/
3796 /* THEME TWEAKER */
3797 /*===============*/
3799 #theme-selector {
3800 padding: 0 0 64px 0;
3802 #theme-selector ~ #theme-tweaker-toggle {
3803 top: 100%;
3805 #theme-selector ~ #theme-tweaker-toggle::after {
3806 content: "Open theme tweaker";
3807 position: absolute;
3808 font-size: 0.625em;
3809 white-space: nowrap;
3810 left: -50%;
3811 top: 100%;
3813 #theme-selector.engaged ~ #theme-tweaker-toggle {
3814 visibility: visible;
3815 top: 530px;
3816 left: 0;
3817 right: 0;
3818 margin: auto;
3819 z-index: 11111;
3820 transition:
3821 top 0.2s ease,
3822 visibility 0.2s ease;
3824 @media only screen and (max-height: 675px) {
3825 #theme-selector.engaged ~ #theme-tweaker-toggle {
3826 top: 492px;
3829 @supports (width: -moz-fit-content) {
3830 #theme-selector.engaged ~ #theme-tweaker-toggle {
3831 width: -moz-fit-content;
3834 @supports (width: fit-content) {
3835 #theme-selector.engaged ~ #theme-tweaker-toggle {
3836 width: fit-content;
3839 #theme-selector.engaged ~ #theme-tweaker-toggle button {
3840 opacity: 1.0;
3843 #theme-tweaker-ui {
3844 visibility: visible;
3847 /*======================*/
3848 /* ANTI-KIBITZER TOGGLE */
3849 /*======================*/
3851 #theme-selector ~ #anti-kibitzer-toggle {
3852 top: 100%;
3853 bottom: unset;
3854 left: 0;
3855 right: 0;
3856 margin: auto;
3857 box-shadow: none;
3858 width: calc(100vw - 44px);
3859 max-width: 330px;
3860 text-align: right;
3861 pointer-events: none;
3863 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3864 visibility: visible;
3865 z-index: 11110;
3866 top: 530px;
3867 transition:
3868 top 0.2s ease,
3869 visibility 0.2s ease;
3871 @media only screen and (max-height: 675px) {
3872 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3873 top: 492px;
3876 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
3877 pointer-events: auto;
3878 display: inline-block;
3881 /*=================*/
3882 /* QUICKNAV WIDGET */
3883 /*=================*/
3885 #quick-nav-ui {
3886 max-width: 0px;
3887 transition:
3888 max-width 0.2s ease,
3889 visibility 0.2s ease;
3890 display: flex;
3891 right: 72px;
3892 bottom: 14px;
3894 #quick-nav-ui.engaged {
3895 max-width: 1000px;
3897 #quick-nav-ui a {
3898 position: relative;
3899 margin: 2px;
3901 #quick-nav-ui a + a {
3902 margin-left: 5px;
3904 #quick-nav-ui a::after {
3905 position: absolute;
3906 top: calc(100% + 2px);
3907 font-size: 0.375rem;
3908 left: 0;
3909 right: 0;
3910 margin: auto;
3911 line-height: 1;
3912 padding: 2px;
3913 text-transform: uppercase;
3914 z-index: -1;
3916 @supports (width: -moz-fit-content) {
3917 #quick-nav-ui a::after {
3918 width: -moz-fit-content;
3921 @supports (width: fit-content) {
3922 #quick-nav-ui a::after {
3923 width: fit-content;
3926 #quick-nav-ui a[href='#top']::after {
3927 content: "Top";
3928 left: -1px;
3930 #quick-nav-ui a[href='#comments']::after {
3931 content: "Comments";
3933 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
3934 visibility: hidden;
3935 transition: visibility 0.2s ease;
3937 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
3938 visibility: visible;
3940 #quick-nav-ui a[href='#bottom-bar']::after {
3941 content: "Bottom";
3944 /*======================*/
3945 /* NEW COMMENT QUICKNAV */
3946 /*======================*/
3948 #new-comment-nav-ui {
3949 max-width: 0px;
3950 max-height: 0px;
3951 transition:
3952 max-width 0.2s ease,
3953 max-height 0.2s ease,
3954 visibility 0.2s ease;
3955 display: flex;
3956 right: 78px;
3957 bottom: 70px;
3959 #new-comment-nav-ui::before {
3960 content: "New Comments";
3961 position: absolute;
3962 bottom: 100%;
3963 font-size: 0.5625rem;
3964 left: 0;
3965 right: 0;
3966 margin: auto;
3967 padding: 2px 3px;
3968 text-transform: uppercase;
3969 z-index: -1;
3971 @supports (width: -moz-fit-content) {
3972 #new-comment-nav-ui::before {
3973 width: -moz-fit-content;
3976 @supports (width: fit-content) {
3977 #new-comment-nav-ui::before {
3978 width: fit-content;
3981 #new-comment-nav-ui.engaged {
3982 max-width: 1000px;
3983 max-height: 1000px;
3985 #new-comment-nav-ui .new-comment-sequential-nav-button {
3986 top: unset;
3987 bottom: unset;
3988 padding: 2px 7px;
3990 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
3991 padding: 2px 7px 3px 7px;
3993 #new-comment-nav-ui .new-comments-count {
3994 padding: 4px 0 5px 0;
3996 #new-comment-nav-ui .new-comments-count::before {
3997 display: none;
3999 #new-comment-nav-ui button::after {
4000 position: absolute;
4001 font-size: 0.375rem;
4002 left: 0;
4003 right: 0;
4004 margin: auto;
4005 line-height: 1;
4006 text-transform: uppercase;
4007 pointer-events: none;
4009 #new-comment-nav-ui button.new-comment-previous::after {
4010 content: "Previous";
4011 bottom: 5px;
4013 #new-comment-nav-ui button.new-comment-next::after {
4014 content: "Next";
4015 top: 7px;
4018 /*=================*/
4019 /* HNS DATE PICKER */
4020 /*=================*/
4022 #hns-date-picker {
4023 max-height: 0px;
4024 bottom: 132px;
4025 right: 62px;
4026 transition:
4027 max-height 0.2s ease,
4028 visibility 0.2s ease;
4030 #hns-date-picker.engaged {
4031 max-height: 1000px;
4033 #hns-date-picker::before {
4034 width: calc(100% + 2px);
4035 border-width: 1px !important;
4038 /*=========*/
4039 /* NAV BAR */
4040 /*=========*/
4042 #bottom-bar {
4043 padding: 0 4.5rem;
4045 #bottom-bar .nav-item {
4046 box-shadow: none;
4047 position: relative;
4049 #bottom-bar .nav-inner {
4050 font-size: 2rem;
4051 padding: 1rem 0 1.25rem 0;
4052 visibility: hidden;
4053 position: static;
4054 width: 0;
4056 #content #bottom-bar .nav-item .nav-inner::before {
4057 margin: 0;
4058 visibility: visible;
4059 position: absolute;
4060 width: 100%;
4061 height: 100%;
4062 left: 0;
4063 top: 0;
4064 padding: 1rem 0;
4066 #bottom-bar .nav-inner::after {
4067 display: block;
4068 visibility: visible;
4069 text-transform: uppercase;
4070 color: unset;
4071 font-size: 0.75rem;
4072 top: unset;
4073 left: 0;
4074 bottom: 1rem;
4075 width: 100%;
4077 #bottom-bar #nav-item-first .nav-inner::after {
4078 content: "First Page";
4080 #bottom-bar #nav-item-prev .nav-inner::after {
4081 content: "Prev. Page";
4083 #bottom-bar #nav-item-top .nav-inner::after {
4084 content: "Top";
4086 #bottom-bar #nav-item-next .nav-inner::after {
4087 content: "Next Page";
4089 #bottom-bar #nav-item-last .nav-inner::after {
4090 content: "Last Page";
4093 @media only screen and (max-width: 900px) {
4094 #primary-bar,
4095 #secondary-bar {
4096 font-size: 0.75rem;
4098 .nav-bar {
4099 width: calc(100% + 8px);
4100 margin: 0 -4px;
4102 .nav-bar .nav-inner::after {
4103 display: none;
4106 #primary-bar .nav-item {
4107 flex: 1 1 100%;
4109 #secondary-bar .nav-item:not(#nav-item-search) {
4110 flex: 1 1 60px;
4112 #primary-bar .nav-inner,
4113 #secondary-bar .nav-inner {
4114 text-transform: uppercase;
4115 padding: 6px;
4117 #primary-bar .nav-inner::before,
4118 #secondary-bar .nav-inner::before {
4119 display: block;
4120 font-family: "Font Awesome";
4121 font-size: 2em;
4122 font-weight: 900;
4125 #nav-item-home .nav-inner::before {
4126 content: "\F015";
4128 #nav-item-featured .nav-inner::before {
4129 content: "\F005";
4131 #nav-item-all .nav-inner::before {
4132 content: "\F069";
4134 #nav-item-meta .nav-inner::before {
4135 content: "\F077";
4137 #nav-item-recent-comments > * > span {
4138 display: none;
4140 #nav-item-recent-comments .nav-inner::before {
4141 content: "\F036";
4143 #nav-item-archive .nav-inner::before {
4144 content: "\F187";
4146 #nav-item-about .nav-inner::before {
4147 content: "\F129";
4149 #nav-item-search {
4150 font-size: 2em;
4151 padding: 10px;
4153 #nav-item-search .nav-inner::before {
4154 content: none;
4156 #nav-item-search .nav-inner {
4157 height: 100%;
4158 display: flex;
4160 #nav-item-search input {
4161 width: 100%;
4162 height: 100%;
4164 #nav-item-search button {
4165 height: 100%;
4166 padding: 5px 5px 5px 10px;
4167 width: 40px;
4168 overflow: visible;
4169 visibility: hidden;
4171 #nav-item-search button::before {
4172 content: "\F002";
4173 font-family: Font Awesome;
4174 font-weight: 900;
4175 visibility: visible;
4177 #nav-item-login {
4178 padding: 0;
4180 #nav-item-login .nav-inner::before {
4181 content: "\F007";
4184 @media only screen and (max-width: 520px) {
4185 #primary-bar,
4186 #secondary-bar {
4187 font-size: 0.5rem;
4190 #nav-item-search .nav-inner {
4191 padding: 0;
4193 #nav-item-search button {
4194 width: 31px;
4197 #bottom-bar #nav-item-first .nav-inner::after {
4198 content: "First";
4200 #bottom-bar #nav-item-prev .nav-inner::after {
4201 content: "Prev";
4203 #bottom-bar #nav-item-next .nav-inner::after {
4204 content: "Next";
4206 #bottom-bar #nav-item-last .nav-inner::after {
4207 content: "Last";
4211 /*=================*/
4212 /* INBOX INDICATOR */
4213 /*=================*/
4215 @media only screen and (max-width: 900px) {
4216 #inbox-indicator {
4217 width: 100%;
4218 top: 0;
4219 pointer-events: none;
4221 #inbox-indicator::before {
4222 width: 100%;
4223 font-size: 1rem;
4224 text-align: right;
4225 padding: 1px 6px;
4227 #inbox-indicator.new-messages {
4228 pointer-events: auto;
4230 #inbox-indicator.new-messages::before {
4231 box-shadow: 0 0 8px 1px #f00 inset;
4234 @media only screen and (max-width: 520px) {
4235 #inbox-indicator::before {
4236 font-size: 0.75rem;
4237 padding: 2px 5px;
4240 @media only screen and (max-width: 374px) {
4241 #inbox-indicator::before {
4242 font-size: 0.625rem;
4246 /*===================*/
4247 /* TOP PAGINATION UI */
4248 /*===================*/
4250 #top-nav-bar {
4251 font-size: 1.75rem;
4254 /*==============*/
4255 /* PAGE TOOLBAR */
4256 /*==============*/
4258 @media only screen and (max-width: 900px) {
4259 #content > .page-toolbar {
4260 font-size: 1rem;
4261 margin-right: 0;
4263 #content.user-page > .page-toolbar {
4264 grid-column: 2 / span 2;
4265 margin: 0 0 6px 0;
4268 @media only screen and (max-width: 520px) {
4269 #content:not(.user-page) .page-toolbar {
4270 display: flex;
4271 flex-direction: column-reverse;
4272 text-align: right;
4273 align-self: start;
4274 padding: 4px 0 0 0;
4276 #content.user-page .page-toolbar {
4277 display: flex;
4278 flex-flow: row;
4279 justify-content: flex-end;
4280 padding: 2px 0 0 0;
4282 #content.user-page .page-toolbar > form,
4283 #content.user-page .page-toolbar > .button {
4284 text-align: center;
4285 flex-basis: 25%;
4286 margin-left: 1.5em;
4288 #content.user-page .page-toolbar .button {
4289 text-transform: uppercase;
4290 font-size: 0.625rem;
4292 #content.user-page .page-toolbar .button::before {
4293 font-size: 1.375rem;
4294 display: block;
4295 padding: 0;
4297 #content.user-page .page-toolbar .rss {
4298 white-space: nowrap;
4299 margin: 0 0 0 1.5em;
4301 .page-toolbar > * {
4302 line-height: 1.15;
4303 padding: 6px 0;
4304 margin: 0;
4308 /*==============*/
4309 /* SUBLEVEL NAV */
4310 /*==============*/
4312 @media only screen and (max-width: 900px) {
4313 .sublevel-nav:not(.sort) {
4314 flex-wrap: wrap;
4315 width: calc(100vw - 100px);
4317 .sublevel-nav:not(.sort) .sublevel-item {
4318 margin: 1px;
4319 flex-basis: 7em;
4322 @media only screen and (max-width: 720px) {
4323 .sublevel-nav:not(.sort) {
4324 width: calc(100vw - 200px);
4327 @media only screen and (max-width: 520px) {
4328 .sublevel-nav:not(.sort) {
4329 width: calc(100vw - 100px);
4331 .sublevel-nav:not(.sort) .sublevel-item {
4332 font-size: 1rem;
4336 /*=====================*/
4337 /* SORT ORDER SELECTOR */
4338 /*=====================*/
4340 @media only screen and (max-width: 720px) {
4341 #content.index-page > .sublevel-nav.sort {
4342 flex-flow: column;
4343 margin-left: 4px;
4347 /*==========*/
4348 /* ARCHIVES */
4349 /*==========*/
4351 @media only screen and (max-width: 900px) {
4352 div[class^='archive-nav-'] {
4353 flex-wrap: wrap;
4354 justify-content: flex-start;
4356 .archive-nav *[class^='archive-nav-item'],
4357 .archive-nav *[class^='archive-nav-item']:first-child {
4358 padding: 10px;
4359 margin: 2px;
4360 max-width: unset;
4361 flex: 0 1 calc((100% / 8) - 4px);
4363 .archive-nav .archive-nav-item-day,
4364 .archive-nav .archive-nav-item-day:first-child {
4365 flex-basis: calc((100% / 16) - 4px);
4367 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4368 margin-top: 8px;
4369 position: relative;
4371 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4372 content: "";
4373 display: block;
4374 position: absolute;
4375 height: 1px;
4376 width: calc(100% + 8px);
4377 left: -4px;
4378 top: -4px;
4381 @media only screen and (max-width: 720px) {
4382 .archive-nav .archive-nav-item-day,
4383 .archive-nav .archive-nav-item-day:first-child {
4384 flex-basis: calc((100% / 12) - 4px);
4387 @media only screen and (max-width: 520px) {
4388 .archive-nav *[class^='archive-nav-item'],
4389 .archive-nav *[class^='archive-nav-item']:first-child {
4390 flex-basis: calc((100% / 5) - 4px);
4392 .archive-nav .archive-nav-item-day,
4393 .archive-nav .archive-nav-item-day:first-child {
4394 flex-basis: calc((100% / 8) - 4px);
4398 /*==========*/
4399 /* LISTINGS */
4400 /*==========*/
4402 h1.listing {
4403 max-height: unset;
4406 /*============*/
4407 /* USER PAGES */
4408 /*============*/
4410 @media only screen and (max-width: 720px) {
4411 #content.user-page h1.page-main-heading {
4412 align-self: center;
4414 #content.user-page .user-stats {
4415 padding: 4px 0;
4416 line-height: 1.3;
4420 /*============*/
4421 /* LOGIN PAGE */
4422 /*============*/
4424 @media only screen and (max-width: 640px) {
4425 .login-container {
4426 flex-flow: column;
4427 margin: 0 auto 3em auto;
4428 max-width: 400px;
4430 .login-container #login-form,
4431 .login-container #signup-form {
4432 padding: 0 1em 1.25em 1em;
4433 grid-row-gap: 0;
4435 .login-container #signup-form {
4436 padding-top: 1em;
4438 .login-container #login-form > *,
4439 .login-container #signup-form > * {
4440 grid-column: 1 / span 2;
4442 .login-container form label {
4443 text-align: left;
4444 padding: 0;
4445 line-height: 1;
4447 .login-container form input {
4448 margin: 0.25em 0 0.75em 0;
4449 padding: 0.5em;
4451 .login-container form h1 {
4452 grid-column: 1 / span 2;
4453 margin: 0 0 0.25em 0;
4455 .login-container form a {
4456 margin: 0.75em 0 0 0;
4458 .login-container .login-tip {
4459 margin: 1.5em 1em 0 1em;
4463 /*==================*/
4464 /* POSTS & COMMENTS */
4465 /*==================*/
4467 /*===========*/
4468 /* POST-META */
4469 /*===========*/
4471 .post-meta {
4472 line-height: 1.9;
4474 @media only screen and (max-width: 720px) {
4475 .post-meta .lw2-link span,
4476 .post-meta .karma-value span,
4477 .post-meta .comment-count span {
4478 display: none;
4480 .post-meta .comment-count::before {
4481 content: "\F086";
4482 font-family: Font Awesome;
4483 font-size: 0.875em;
4484 margin: 0 0.25em 0 0;
4485 font-weight: 400;
4489 /*=======*/
4490 /* POSTS */
4491 /*=======*/
4493 @media only screen and (max-width: 900px) {
4494 .post-body,
4495 h1.post-title {
4496 padding: 0 6px;
4499 @media only screen and (max-width: 520px) {
4500 .post-body {
4501 font-size: 1.2rem;
4502 line-height: 1.45;
4504 h1.post-title {
4505 font-size: 2em;
4509 /*==========*/
4510 /* COMMENTS */
4511 /*==========*/
4513 @media only screen and (max-width: 900px) {
4514 .comment-body ul {
4515 padding-left: 30px;
4517 .comment-body ol {
4518 padding-left: 30px;
4522 /*==============*/
4523 /* COMMENT-META */
4524 /*==============*/
4526 a.comment-parent-link::after {
4527 display: none;
4529 @media only screen and (max-width: 900px) {
4530 .comment-meta {
4531 padding: 2px 40px 2px 10px;
4534 @media only screen and (max-width: 720px) {
4535 .comment-meta .karma-value span {
4536 display: none;
4538 .comment-meta .comment-parent-link {
4539 opacity: 1.0;
4542 @media only screen and (max-width: 520px) {
4543 .comment-meta {
4544 padding: 2px 10px;
4545 position: relative;
4547 .comment-meta .author {
4548 flex-basis: 100%;
4550 .comment-post-title2 {
4551 display: block;
4552 text-overflow: ellipsis;
4553 overflow: hidden;
4555 .comment-meta .lw2-link {
4556 display: none;
4560 /*=======================*/
4561 /* COMMENTS COMPACT VIEW */
4562 /*=======================*/
4564 /*===========================*/
4565 /* COMMENT THREAD NAVIGATION */
4566 /*===========================*/
4568 @media only screen and (max-width: 900px) {
4569 a.comment-parent-link {
4570 width: 0;
4571 visibility: hidden;
4572 position: relative;
4574 a.comment-parent-link::before {
4575 padding: 0;
4576 font-size: 1em;
4577 left: 0;
4578 top: 0;
4579 line-height: inherit;
4580 visibility: visible;
4581 content: "\F3BF";
4582 transform: scaleX(-1);
4583 width: 2em;
4584 text-align: center;
4587 @media only screen and (max-width: 520px) {
4588 a.comment-parent-link {
4589 position: static;
4591 a.comment-parent-link::before {
4592 padding: 6px;
4593 left: unset;
4594 right: 0;
4595 top: unset;
4596 bottom: 0;
4597 height: 2em;
4601 /*=================================*/
4602 /* COMMENT THREAD MINIMIZE BUTTONS */
4603 /*=================================*/
4605 @media only screen and (max-width: 520px) {
4606 .comment-minimize-button{
4607 right: 2px;
4611 /*===========================*/
4612 /* COMMENTING AND POSTING UI */
4613 /*===========================*/
4615 @media only screen and (max-width: 900px) {
4616 .comment-controls .cancel-comment-button {
4617 max-width: 1.3em;
4618 overflow: hidden;
4619 margin-right: 0.125em;
4621 .comment-controls .edit-button::before {
4622 font-size: 0.9375em;
4624 .comments > .comment-controls .cancel-comment-button {
4625 right: 8px;
4627 .comment-controls .cancel-comment-button::before {
4628 font-size: 1.25rem;
4631 @media only screen and (max-width: 520px) {
4632 .comment-controls {
4633 position: static;
4635 .comment-controls:focus-within {
4636 z-index: 10001;
4638 .comment-controls .cancel-comment-button {
4639 right: 10px;
4641 .textarea-container:focus-within textarea {
4642 position: fixed;
4643 top: 0;
4644 left: 2px;
4645 width: calc(100vw - 4px);
4646 height: calc(100% - 100px);
4647 min-height: unset;
4648 max-height: unset;
4649 border-width: 1px;
4650 z-index: 11001;
4652 #content.conversation-page .textarea-container:focus-within textarea {
4653 height: calc(100% - 54px);
4655 #content.conversation-page .textarea-container:focus-within::after {
4656 content: "";
4657 display: block;
4658 width: 100%;
4659 height: 50px;
4660 position: fixed;
4661 left: 0;
4662 bottom: 0;
4663 z-index: 11000;
4665 .textarea-container:focus-within .guiedit-buttons-container {
4666 position: fixed;
4667 z-index: 11002;
4668 left: 0;
4669 width: 100vw;
4670 height: auto;
4671 background-image: none;
4672 padding: 3px 4px 4px 4px;
4673 margin: 0;
4674 text-align: center;
4675 top: auto;
4676 bottom: 0;
4678 .textarea-container:focus-within button.guiedit {
4679 font-size: 0.9375rem;
4680 line-height: 1.5;
4681 height: auto;
4682 width: calc((100% / 10) - 2px);
4683 padding: 10px 1px 8px 0;
4684 position: relative;
4685 margin: 1px;
4687 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
4688 z-index: 11011;
4689 position: fixed;
4690 bottom: 7px;
4691 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
4692 font-size: 1.25rem;
4693 padding: 5px 5px 6px 5px;
4694 display: block;
4696 .textarea-container:focus-within button.guiedit sup {
4697 position: absolute;
4698 left: calc(50% + 0.65em);
4699 top: calc(50% - 1.3em);
4701 .textarea-container:focus-within .guiedit-mobile-help-button {
4702 left: 8px;
4704 .textarea-container:focus-within .guiedit-mobile-exit-button {
4705 right: 8px;
4707 .guiedit::after {
4708 display: none;
4711 #markdown-hints,
4712 #edit-post-form #markdown-hints {
4713 z-index: 11111;
4714 position: fixed;
4715 top: 40px;
4716 left: 0;
4717 right: 0;
4718 margin: auto;
4719 padding: 4px 0 4px 8px;
4720 width: 310px;
4721 border-width: 3px;
4722 border-style: double;
4723 pointer-events: none;
4725 #markdown-hints::after {
4726 content: "(Type to hide this help box.)";
4727 color: #090;
4728 display: block;
4729 margin: 12px 18px 13px 10px;
4730 padding: 5px;
4731 font-size: 0.9em;
4732 text-align: center;
4736 /*================*/
4737 /* EDIT POST FORM */
4738 /*================*/
4740 @media only screen and (max-width: 520px) {
4741 #edit-post-form {
4742 padding-bottom: 0;
4744 #edit-post-form .post-meta-fields {
4745 grid-template-columns: 4.5em auto auto auto 1fr auto;
4747 #edit-post-form label[for='url'],
4748 #edit-post-form label[for='section'],
4749 #edit-post-form label[for='title'] {
4750 padding-left: 0;
4752 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
4753 white-space: normal;
4754 line-height: 0.9;
4755 top: -1px;
4756 font-family: Font Awesome;
4757 font-weight: 900;
4758 justify-self: start;
4760 #edit-post-form .post-meta-fields .question-checkbox,
4761 #edit-post-form .post-meta-fields .question-checkbox + label {
4762 grid-column: 6;
4764 #edit-post-form .post-meta-fields input[type='radio'] + label {
4765 align-self: start;
4767 #edit-post-form .textarea-container:focus-within textarea {
4768 height: calc(100% - 101px);
4769 min-height: unset;
4772 #markdown-hints-checkbox,
4773 #markdown-hints-checkbox + label {
4774 display: none;
4777 #edit-post-form div:last-child {
4778 clear: both;
4779 overflow: auto;
4781 #edit-post-form input[type='submit'] {
4782 float: none;
4783 display: block;
4784 font-size: 1.5rem;
4785 margin: 1rem auto 1.5rem auto;
4786 padding: 6px 12px 8px 12px;
4790 /*===================*/
4791 /* TABLE OF CONTENTS */
4792 /*===================*/
4794 @media only screen and (max-width: 900px) {
4795 .contents {
4796 float: none;
4797 display: table;
4798 max-width: none;
4799 margin-left: auto;
4800 margin-right: auto;
4803 @media only screen and (max-width: 520px) {
4804 .contents {
4805 max-width: 100%;
4806 margin: 1em auto 0 auto;
4807 display: table;
4809 .contents-head {
4810 font-size: 1.2em;
4812 div.post-body .contents ul {
4813 font-size: unset;
4817 /*========================*/
4818 /* QUALIFIED HYPERLINKING */
4819 /*========================*/
4821 @media only screen and (max-width: 520px) {
4822 .qualified-linking-toolbar {
4823 right: -5em;
4827 } /* END MOBILE LAYOUT */
4830 /*****************/
4831 /* DEFAULT THEME */
4832 /*****************/
4834 body {
4835 color: #000;
4836 background-color: #d8d8d8;
4837 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
4838 font-feature-settings: 'ss07';
4840 #content {
4841 line-height: 1.55;
4843 #content::before {
4844 background-color: #fff;
4845 box-shadow: 0px 0px 10px #555;
4848 /*=========*/
4849 /* NAV BAR */
4850 /*=========*/
4852 .nav-inner {
4853 font-size: 1.375em;
4854 font-weight: 600;
4856 #secondary-bar .nav-inner {
4857 font-size: 1em;
4860 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4861 #bottom-bar a:hover,
4862 #nav-item-search:not(.nav-current):focus-within {
4863 background-color: #ddd;
4865 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4866 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
4867 background-color: #d8d8d8;
4870 .nav-bar a:visited {
4871 color: #00e;
4873 .nav-bar a:hover,
4874 .nav-bar a:focus {
4875 text-decoration: none;
4876 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
4879 #bottom-bar.decorative::before,
4880 #bottom-bar.decorative::after {
4881 content: "GW";
4882 display: block;
4883 text-align: center;
4884 padding: 0.25em 0 1em 0;
4886 #bottom-bar.decorative::before {
4887 width: 100%;
4888 color: transparent;
4889 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4890 background-repeat: repeat-x;
4891 background-position: center 35%;
4892 margin: 0 30px;
4894 #bottom-bar.decorative::after {
4895 color: #d8d8d8;
4896 position: absolute;
4897 left: 0;
4898 right: 0;
4899 margin: auto;
4900 background-color: #fff;
4901 padding-right: 4px;
4902 padding-left: 4px;
4904 @supports (width: -moz-fit-content) {
4905 #bottom-bar.decorative::after {
4906 width: -moz-fit-content;
4909 @supports (width: fit-content) {
4910 #bottom-bar.decorative::after {
4911 width: fit-content;
4915 /* Accesskey hints */
4917 .nav-inner::after {
4918 display: block;
4919 position: absolute;
4920 left: 5px;
4921 top: -2px;
4922 font-weight: 400;
4923 font-size: 0.7em;
4924 color: #d8d8d8;
4926 .inactive-bar .nav-inner::after {
4927 color: #ccc;
4929 .nav-inner:hover::after {
4930 color: #bbb;
4933 /* This makes the navbar items look like tabs: */
4935 .nav-inactive {
4936 box-shadow:
4937 0 -1px #d8d8d8 inset,
4938 1px 0 #fff inset;
4940 .nav-inactive:first-child {
4941 box-shadow: 0 -1px #d8d8d8 inset;
4943 .inactive-bar .nav-inactive {
4944 background-color: #e4e4e4;
4946 .active-bar .nav-inactive {
4947 background-color: #eee;
4949 .active-bar {
4950 position: relative;
4953 /* For Webkit: */
4954 .active-bar {
4955 box-shadow: 0 -3px 8px -2px #ccc;
4957 .active-bar .nav-inactive {
4958 box-shadow:
4959 0 -4px 8px -4px #bbb inset,
4960 1px 0 #fff inset;
4962 .active-bar .nav-inactive:first-child {
4963 box-shadow:
4964 0 -4px 8px -4px #bbb inset;
4966 .active-bar .nav-current + .nav-inactive {
4967 box-shadow:
4968 5px -4px 8px -4px #bbb inset;
4970 .active-bar .nav-item-last-before-current {
4971 box-shadow:
4972 -5px -4px 8px -4px #bbb inset,
4973 1px 0 #fff inset;
4975 .active-bar .nav-item-last-before-current:first-child {
4976 box-shadow:
4977 -5px -4px 8px -4px #bbb inset;
4979 /* And for Gecko: */
4980 @-moz-document url-prefix() {
4981 .active-bar {
4982 box-shadow: 0 -3px 4px -2px #ccc;
4985 .active-bar .nav-inactive {
4986 box-shadow:
4987 0 -4px 4px -4px #bbb inset,
4988 1px 0 #fff inset;
4990 .active-bar .nav-inactive:first-child {
4991 box-shadow:
4992 0 -4px 4px -4px #bbb inset;
4994 .active-bar .nav-current + .nav-inactive {
4995 box-shadow:
4996 5px -4px 4px -4px #bbb inset;
4998 .active-bar .nav-item-last-before-current {
4999 box-shadow:
5000 -5px -4px 4px -4px #bbb inset,
5001 1px 0 #fff inset;
5003 .active-bar .nav-item-last-before-current:first-child {
5004 box-shadow:
5005 -5px -4px 4px -4px #bbb inset;
5009 /* Search tab */
5011 #nav-item-search button {
5012 border: none;
5013 font-weight: inherit;
5015 #nav-item-search input::placeholder {
5016 color: #d00;
5017 font-weight: normal;
5020 /*= Top pagination UI hover tooltips =*/
5022 #top-nav-bar a::after,
5023 #bottom-bar a::after {
5024 color: #000;
5027 /*==============*/
5028 /* PAGE TOOLBAR */
5029 /*==============*/
5031 .button.new-post:not(:hover),
5032 .button.new-private-message:not(:hover) {
5033 color: #090;
5035 .button.logout-button {
5036 color: #d33;
5039 /*==============*/
5040 /* SUBLEVEL NAV */
5041 /*==============*/
5043 .sublevel-nav .sublevel-item {
5044 color: #777;
5045 background-color: #fff;
5047 .sublevel-nav .sublevel-item:not(.selected):hover {
5048 background-color: #ddd;
5049 color: #000;
5050 text-decoration: none;
5051 text-shadow: none;
5053 .sublevel-nav .sublevel-item:not(.selected):active,
5054 .sublevel-nav .sublevel-item.selected {
5055 background-color: #ddd;
5056 color: #000;
5057 text-shadow:
5058 0 -1px 0 #fff,
5059 0 0.5px 0.5px #000;
5062 .sublevel-nav:not(.sort) .sublevel-item {
5063 border-style: solid;
5064 border-color: #ddd;
5065 border-width: 1px 0 1px 1px;
5067 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5068 border-radius: 8px 0 0 8px;
5070 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5071 border-width: 1px;
5072 border-radius: 0 8px 8px 0;
5075 /*=====================*/
5076 /* SORT ORDER SELECTOR */
5077 /*=====================*/
5079 .sublevel-nav.sort .sublevel-item {
5080 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5081 letter-spacing: 0.5px;
5082 padding: 6px 7px;
5083 text-transform: uppercase;
5084 pointer-events: auto;
5085 box-shadow: 1px 1px 0 0 #aaa inset;
5087 .sublevel-nav.sort {
5088 border: 2px solid transparent;
5089 padding: 18px 0 0 0;
5090 border-radius: 8px;
5091 pointer-events: none;
5092 background-color: #bbb;
5094 .sublevel-nav.sort::before {
5095 text-transform: uppercase;
5096 font-weight: 600;
5097 color: #444;
5098 text-shadow: 0.5px 0.5px 0 #fff;
5099 z-index: 1;
5101 .sublevel-nav.sort::after {
5102 content: "";
5103 position: absolute;
5104 display: block;
5105 top: 0;
5106 left: 0;
5107 width: 100%;
5108 height: 100%;
5109 border-radius: 6px;
5110 box-shadow:
5111 0 18px 0 0 #bbb inset,
5112 0 0 0 1px #aaa inset,
5113 0 18px 0 1px #aaa inset,
5114 0 0 0 2px #bbb;
5117 /*================*/
5118 /* WIDTH SELECTOR */
5119 /*================*/
5120 /* THEME SELECTOR */
5121 /*================*/
5123 #width-selector button,
5124 #theme-selector button {
5125 box-shadow:
5126 0 0 0 4px #d8d8d8 inset,
5127 0 0 0 5px #bbb inset;
5129 #width-selector button:hover,
5130 #width-selector button.selected,
5131 #theme-selector button:hover,
5132 #theme-selector button.selected {
5133 box-shadow:
5134 0 0 0 5px #bbb inset;
5137 #theme-selector button::before {
5138 color: #999;
5139 background-color: #d8d8d8;
5141 #theme-selector button:hover::before,
5142 #theme-selector button.selected::before {
5143 color: #666;
5145 #width-selector button::after {
5146 color: #999;
5149 /*======================*/
5150 /* THEME TWEAKER TOGGLE */
5151 /*======================*/
5153 #theme-tweaker-toggle button {
5154 color: #777;
5157 /*=================*/
5158 /* QUICKNAV WIDGET */
5159 /*=================*/
5161 #quick-nav-ui a {
5162 color: #999;
5163 background-color: #e4e4e4;
5164 border-radius: 4px;
5165 text-decoration: none;
5167 #quick-nav-ui a[href='#bottom-bar'] {
5168 line-height: 1.8;
5170 #quick-nav-ui a:active {
5171 transform: scale(0.9);
5173 #quick-nav-ui a[href='#comments'].no-comments {
5174 opacity: 0.4;
5175 color: #bbb;
5177 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5178 #quick-nav-ui a:hover {
5179 color: #000;
5180 background-color: #eee;
5182 #quick-nav-ui a:focus:not(:hover) {
5183 transform: none;
5184 text-shadow: none;
5188 /*======================*/
5189 /* NEW COMMENT QUICKNAV */
5190 /*======================*/
5192 #new-comment-nav-ui .new-comments-count {
5193 font-weight: 600;
5194 color: #666;
5195 text-shadow: 0.5px 0.5px 0 #fff;
5197 #new-comment-nav-ui .new-comments-count::after {
5198 font-weight: 600;
5199 color: #777;
5201 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5202 color: #bbb;
5203 text-shadow: none;
5205 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5206 #new-comment-nav-ui .new-comments-count:hover {
5207 text-shadow:
5208 0 0 1px #fff,
5209 0 0 3px #fff,
5210 0 0 5px #fff,
5211 0 0 8px #fff,
5212 0.5px 0.5px 0 #fff;
5214 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5215 color: #d00;
5216 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5220 /*=================*/
5221 /* HNS DATE PICKER */
5222 /*=================*/
5224 #hns-date-picker span {
5225 color: #777;
5226 text-shadow: 0.5px 0.5px 0 #fff;
5227 font-weight: 600;
5229 #hns-date-picker input {
5230 border: 1px solid #777;
5231 background-color: transparent;
5232 color: #666;
5233 box-shadow: 0 0 0 1px transparent;
5235 #hns-date-picker input:focus {
5236 color: #000;
5239 /*======================*/
5240 /* ANTI-KIBITZER TOGGLE */
5241 /*======================*/
5243 #anti-kibitzer-toggle button::before,
5244 #anti-kibitzer-toggle button::after {
5245 background-color: #888;
5246 -webkit-background-clip: text;
5247 color: transparent;
5248 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5250 #anti-kibitzer-toggle button:hover::before,
5251 #anti-kibitzer-toggle button:hover::after {
5252 background-color: #444;
5255 /*======================*/
5256 /* TEXT SIZE ADJUSTMENT */
5257 /*======================*/
5259 #text-size-adjustment-ui button {
5260 color: #777;
5262 #text-size-adjustment-ui button.default {
5263 font-weight: 600;
5265 #text-size-adjustment-ui button:disabled:hover {
5266 text-shadow: none;
5268 #text-size-adjustment-ui::after {
5269 color: #999;
5272 /*=============================*/
5273 /* COMMENTS VIEW MODE SELECTOR */
5274 /*=============================*/
5276 #comments-view-mode-selector a {
5277 color: #777;
5280 /*==========*/
5281 /* ARCHIVES */
5282 /*==========*/
5284 .archive-nav {
5285 border: 1px solid #aaa;
5287 .archive-nav *[class^='archive-nav-item'] {
5288 border-style: solid;
5289 border-color: #ddd;
5290 border-width: 1px 0 1px 1px;
5291 background-color: #eee;
5293 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5294 border-top-width: 0;
5295 border-bottom-width: 0;
5297 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5298 border-bottom-width: 1px;
5300 .archive-nav *[class^='archive-nav-item']:last-child {
5301 border-right-width: 1px;
5303 .archive-nav span[class^='archive-nav-item'] {
5304 font-weight: bold;
5305 background-color: #ddd;
5308 .archive-nav a:link,
5309 .archive-nav a:visited {
5310 color: rgba(0, 0, 238, 0.7);
5312 .archive-nav a:hover {
5313 text-decoration: none;
5314 color: #c00;
5315 background-color: #e0e0e0;
5316 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5318 .archive-nav a:active {
5319 transform: scale(0.9);
5321 .archive-nav a:focus:not(:hover) {
5322 transform: none;
5324 .archive-nav a.archive-nav-item-day:hover {
5325 background-color: #ddd;
5328 /*==========*/
5329 /* LISTINGS */
5330 /*==========*/
5332 h1.listing {
5333 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif, 'Font Awesome';
5334 font-weight: 800;
5335 margin: 0.7em 20px 0 20px;
5336 max-width: calc(100% - 40px);
5337 top: 0.125em; ;
5340 h1.listing a[href^='/posts'] {
5341 color: #000;
5343 h1.listing a[href^="http"] {
5344 color: #00c;
5347 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5348 h1.listing a:hover,
5349 h1.listing a:focus {
5350 color: #777;
5351 background-color: rgba(255,255,255,0.85);
5353 h1.listing:focus-within::before {
5354 color: #00f;
5355 left: -0.625em;
5357 h1.listing a[href^="http"]:hover {
5358 color: #4879ec;
5359 text-shadow:
5360 0.5px 0.5px 0 #fff,
5361 -0.5px -0.5px 0 #fff,
5362 0 0 2px #fff,
5363 0 0 3px #00c;
5367 h1.listing .edit-post-link {
5368 padding: 5px 3px 12px 0.5em;
5369 top: 0;
5370 right: 0;
5372 h1.listing .edit-post-link:hover {
5373 text-decoration: none;
5375 #content.user-page h1.listing .edit-post-link {
5376 background-color: #eee;
5379 /*======*/
5380 /* SPAM */
5381 /*======*/
5383 h1.listing.spam {
5384 opacity: 0.15;
5386 h1.listing.spam + .post-meta {
5387 opacity: 0.4;
5389 h1.listing.spam:hover,
5390 h1.listing.spam + .post-meta:hover,
5391 h1.listing.spam:hover + .post-meta {
5392 opacity: 1.0;
5395 /*===================*/
5396 /* LISTING POST-META */
5397 /*===================*/
5399 h1.listing + .post-meta {
5400 padding-right: 330px;
5402 h1.listing + .post-meta .karma-value,
5403 h1.listing + .post-meta .comment-count,
5404 h1.listing + .post-meta .lw2-link,
5405 h1.listing + .post-meta .read-time {
5406 border-radius: 4px;
5407 padding: 0 4px 0 2px;
5408 text-shadow: 0.5px 0.5px 0.5px #999;
5409 margin: 0 0.25em 0 0.5em;
5410 position: absolute;
5411 line-height: 1.15;
5412 bottom: -6px;
5414 h1.listing + .post-meta .karma-value span,
5415 h1.listing + .post-meta .comment-count span,
5416 h1.listing + .post-meta .lw2-link span,
5417 h1.listing + .post-meta .read-time span {
5418 display: none;
5420 h1.listing + .post-meta .karma-value::before,
5421 h1.listing + .post-meta .comment-count::before,
5422 h1.listing + .post-meta .lw2-link::before,
5423 h1.listing + .post-meta .read-time::before {
5424 color: #fff;
5425 font-family: Font Awesome;
5426 font-weight: 900;
5427 margin: 0 8px 0 0;
5428 box-shadow: 0 0 0 2px #ddd;
5430 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
5431 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
5432 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
5433 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
5434 text-shadow: 0 0 3px #999;
5437 h1.listing + .post-meta .karma {
5438 margin: 0;
5440 h1.listing + .post-meta .karma-value {
5441 box-shadow:
5442 22px 0 0 0 #ddd inset,
5443 0 0 0 3px #ddd;
5444 cursor: default;
5445 color: #c00;
5446 right: 264px;
5448 h1.listing + .post-meta .karma-value::before {
5449 content: "\F139";
5450 text-shadow: none;
5451 font-size: 0.9375em;
5452 line-height: 1.3;
5455 h1.listing + .post-meta .comment-count::before {
5456 content: "\F086";
5458 h1.listing + .post-meta .comment-count {
5459 box-shadow:
5460 25px 0 0 0 #ddd inset,
5461 0 0 0 3px #ddd;
5462 color: #009100;
5463 right: 176px;
5465 h1.listing + .post-meta .comment-count:hover {
5466 text-decoration: none;
5467 color: #fff;
5468 background-color: #009100;
5470 h1.listing + .post-meta .comment-count:hover::before {
5471 color: #009100;
5473 h1.listing + .post-meta .comment-count.new-comments::before {
5474 color: #009100;
5475 text-shadow: 0.5px 0.5px 0.5px #fff;
5477 h1.listing + .post-meta .comment-count.new-comments:hover::before {
5478 text-shadow: 0.5px 0.5px 0.5px #999;
5482 h1.listing + .post-meta .lw2-link {
5483 box-shadow:
5484 23px 0 0 0 #ddd inset,
5485 0 0 0 3px #ddd;
5486 right: 0;
5488 h1.listing + .post-meta .lw2-link::before {
5489 content: "\F0C1";
5491 h1.listing + .post-meta .lw2-link:hover {
5492 text-decoration: none;
5493 color: #fff;
5494 background-color: #00f;
5496 h1.listing + .post-meta .lw2-link:hover::before {
5497 color: #00f;
5500 h1.listing + .post-meta .read-time {
5501 box-shadow:
5502 21px 0 0 0 #ddd inset,
5503 0 0 0 3px #ddd;
5504 right: 80px;
5506 h1.listing + .post-meta .read-time::before {
5507 content: "\F2F2";
5508 cursor: pointer;
5510 h1.listing + .post-meta .read-time::after {
5511 content: " min";
5513 h1.listing + .post-meta .read-time:hover::before {
5514 color: #777;
5517 h1.listing + .post-meta .word-count {
5518 box-shadow:
5519 22px 0 0 0 #ddd inset,
5520 0 0 0 3px #ddd;
5521 padding: 0 4px 0 4px;
5523 h1.listing + .post-meta .word-count::before {
5524 content: "\F15C";
5525 margin: 0 10px 0 0;
5527 h1.listing + .post-meta .read-time.word-count::after {
5528 content: none;
5531 h1.listing + .post-meta .link-post-domain {
5532 margin: 0 0 0 0.5em;
5535 h1.listing + .post-meta::after {
5536 content: "";
5537 display: block;
5538 height: 1px;
5539 width: 100%;
5540 background-color: #ddd;
5541 position: absolute;
5542 bottom: -14px;
5545 /*============*/
5546 /* USER PAGES */
5547 /*============*/
5549 #content.user-page h1.page-main-heading {
5550 border-bottom: 1px solid #ccc;
5553 #content.user-page h1.listing,
5554 #content.user-page h1.listing + .post-meta {
5555 background-color: #eee;
5556 border-style: solid;
5557 border-color: #ccc;
5559 #content.user-page h1.listing {
5560 padding: 0 6px;
5561 padding-top: 0.25em;
5562 border-width: 1px 1px 0 1px;
5563 margin: 1rem 0 0 0;
5564 max-width: 100%;
5566 #content.own-user-page h1.listing,
5567 h1.listing.own-post-listing {
5568 padding-right: 36px;
5570 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5571 #content.user-page h1.listing a:hover,
5572 #content.user-page h1.listing a:focus {
5573 background-color: #eee;
5575 #content.user-page h1.listing:focus-within::before {
5576 left: -0.625em;
5579 #content.user-page h1.listing + .post-meta {
5580 padding: 0.125em 6px 1em 36px;
5581 border-width: 0 1px 1px 1px;
5582 margin: 0 0 1rem 0;
5584 #content.user-page h1.listing + .post-meta::after {
5585 display: none;
5587 @media only screen and (min-width: 521px) {
5588 #content.user-page h1.listing + .post-meta .karma-value,
5589 #content.user-page h1.listing + .post-meta .comment-count,
5590 #content.user-page h1.listing + .post-meta .lw2-link,
5591 #content.user-page h1.listing + .post-meta .read-time {
5592 bottom: 10px;
5595 #content.user-page h1.listing + .post-meta .post-section::before {
5596 left: -1px;
5599 #content.conversations-user-page h1.listing {
5600 padding: 4px 6px;
5601 font-size: 1.75rem;
5603 #content.conversations-user-page h1.listing + .post-meta {
5604 padding: 6px 4px;
5605 margin: 0 0 0.25rem 0;
5608 .user-stats .karma-total {
5609 font-weight: bold;
5612 /*===============*/
5613 /* CONVERSATIONS */
5614 /*===============*/
5616 /*============*/
5617 /* LOGIN PAGE */
5618 /*============*/
5620 .login-container form input[type='submit'] {
5621 font-weight: bold;
5622 background-color: #eee;
5623 border: 1px solid #ccc;
5625 .login-container form input[type='submit']:hover,
5626 .login-container form input[type='submit']:focus {
5627 background-color: #ddd;
5628 border: 1px solid #aaa;
5631 /* “Create account” form */
5633 #signup-form {
5634 background-color: #f3f3f3;
5635 border: 1px solid #ddd;
5637 #signup-form input[type='submit'] {
5638 background-color: #e4e4e4;
5639 border: 1px solid #ccc;
5641 #signup-form input[type='submit']:hover {
5642 background-color: #d8d8d8;
5643 border: 1px solid #aaa;
5646 /* Log in tip */
5648 .login-container .login-tip {
5649 border: 1px solid #eee;
5652 /* Message box */
5654 .error-box {
5655 border: 1px solid red;
5656 background-color: #faa;
5658 .success-box {
5659 border: 1px solid green;
5660 background-color: #afa;
5663 /*=====================*/
5664 /* PASSWORD RESET PAGE */
5665 /*=====================*/
5667 .reset-password-container input[type='submit'] {
5668 background-color: #e4e4e4;
5669 border: 1px solid #ccc;
5670 font-weight: bold;
5673 /*===================*/
5674 /* TABLE OF CONTENTS */
5675 /*===================*/
5677 .contents {
5678 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5679 border: 1px solid #ddd;
5680 background-color: #eee;
5682 .contents-head {
5683 font-weight: bold;
5685 .post-body .contents li::before {
5686 color: #999;
5687 font-feature-settings: "tnum";
5689 .post-body .contents a,
5690 .post-body .contents a:hover {
5691 border: none;
5693 .post-body .contents a:hover {
5694 text-decoration: underline;
5697 /*==================*/
5698 /* POSTS & COMMENTS */
5699 /*==================*/
5701 .post-body,
5702 .comment-body {
5703 font-family: 'Charter', 'Georgia', serif;
5706 .post-body a,
5707 .comment-body a {
5708 border-bottom: 1px dotted #bbb;
5710 .post-body a:hover,
5711 .comment-body a:hover {
5712 text-decoration: none;
5713 border-bottom: 1px solid currentColor;
5716 /*=======*/
5717 /* POSTS */
5718 /*=======*/
5720 h1.post-title {
5721 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif;
5722 font-weight: 800;
5725 /*===========*/
5726 /* POST-META */
5727 /*===========*/
5729 .post-meta .post-section::before {
5730 color: #fff;
5731 text-shadow:
5732 1px 1px 0 #090,
5733 0 1px 0 #090,
5734 0 0 5px #090;
5736 a.post-section:hover {
5737 text-decoration: none;
5739 a.post-section:hover::before {
5740 color: #97ff7c;
5742 .post-meta .post-section.alignment-forum::before {
5743 text-shadow:
5744 1px 1px 0 #626dd7,
5745 0 1px 0 #626dd7,
5746 0 0 5px #626dd7;
5748 a.post-section.alignment-forum:hover::before {
5749 color: #e6e5ff;
5751 .post-meta .date {
5752 color: #888;
5754 .post-meta .author {
5755 color: #090;
5757 .bottom-post-meta {
5758 border-top: 1px solid #ddd;
5761 /*============*/
5762 /* LINK POSTS */
5763 /*============*/
5765 .post.link-post a.link-post-link {
5766 text-decoration: none;
5767 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5768 font-weight: 600;
5770 .post.link-post a.link-post-link:hover {
5771 color: #c00;
5773 .post.link-post a.link-post-link:hover::before {
5774 color: #4879ec;
5775 text-shadow:
5776 0.5px 0.5px 0 #fff,
5777 -0.5px -0.5px 0 #fff,
5778 0 0 2px #fff,
5779 0 0 3px #00c;
5781 .post.link-post a.link-post-link:focus {
5782 color: #777;
5783 border-bottom: 2px dotted #777;
5786 /*==========*/
5787 /* COMMENTS */
5788 /*==========*/
5790 #comments::before {
5791 border-top: 1px solid #000;
5792 box-shadow: 0 3px 4px -4px #000 inset;
5794 @-moz-document url-prefix() {
5795 #comments::before {
5796 box-shadow: 0 3px 3px -4px #000 inset;
5799 #content > .comment-thread .comment-meta a.date:focus,
5800 #content > .comment-thread .comment-meta a.permalink:focus {
5801 color: #888;
5802 outline: 2px dotted #999;
5803 position: relative;
5804 background-color: #fff;
5806 #content > .comment-thread .comment-meta a.date:focus {
5807 padding: 0 4px;
5808 left: -4px;
5810 #content > .comment-thread .comment-meta a.date:focus + * {
5811 margin-left: -8px;
5813 #content > .comment-thread .comment-meta a.permalink:focus {
5814 padding: 0 5px;
5815 left: -5px;
5817 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5818 margin-left: -10px;
5820 .comment-item {
5821 border: 1px solid #ccc;
5825 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5826 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5827 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5828 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5829 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5830 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5831 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5832 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5833 .comment-item .comment-item .comment-item .comment-item .comment-item,
5834 .comment-item .comment-item .comment-item,
5835 .comment-item {
5836 background-color: #eee;
5838 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5839 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5840 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5841 .comment-item .comment-item .comment-item .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,
5842 .comment-item .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,
5843 .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,
5844 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5845 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5846 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5847 .comment-item .comment-item .comment-item a.comment-parent-link::after,
5848 .comment-item a.comment-parent-link::after {
5849 box-shadow:
5850 0 28px 16px -16px #fff inset,
5851 4px 16px 0 12px #ffd inset,
5852 4px 4px 0 12px #ffd inset;
5855 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5856 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5857 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5858 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5859 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5860 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5861 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5862 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5863 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5864 .comment-item .comment-item .comment-item .comment-item,
5865 .comment-item .comment-item {
5866 background-color: #fff;
5868 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5869 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5870 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5871 .comment-item .comment-item .comment-item .comment-item .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,
5872 .comment-item .comment-item .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,
5873 .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,
5874 .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,
5875 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5876 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5877 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5878 .comment-item .comment-item a.comment-parent-link::after {
5879 box-shadow:
5880 0 28px 16px -16px #eee inset,
5881 4px 16px 0 12px #ffd inset,
5882 4px 4px 0 12px #ffd inset;
5885 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5886 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5887 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5888 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5889 .comment-item .comment-item .comment-item .comment-item .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,
5890 .comment-item .comment-item .comment-item .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,
5891 .comment-item .comment-item .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,
5892 .comment-item .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,
5893 .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,
5894 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5895 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5896 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5897 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5898 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5899 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5900 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5901 .comment-item .comment-item .comment-item .comment-item:target,
5902 .comment-item .comment-item .comment-item:target,
5903 .comment-item .comment-item:target,
5904 .comment-item:target {
5905 background-color: #ffd;
5907 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5908 box-shadow:
5909 0 28px 16px -16px #ffd inset,
5910 4px 16px 0 12px #ffd inset,
5911 4px 4px 0 12px #ffd inset !important;
5914 /*================================*/
5915 /* DEEP COMMENT THREAD COLLAPSING */
5916 /*================================*/
5918 .comment-item input[id^="expand"] + label::after {
5919 color: #00e;
5920 font-weight: 600;
5922 .comment-item input[id^="expand"] + label:hover::after {
5923 color: #c00;
5925 .comment-item input[id^="expand"] + label:active::after,
5926 .comment-item input[id^="expand"] + label:focus::after{
5927 color: #c00;
5929 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5930 border-width: 1px 0 0 0;
5933 /*==============*/
5934 /* COMMENT-META */
5935 /*==============*/
5937 .comment-meta .author {
5938 font-weight: bold;
5939 font-size: 1.25em;
5940 color: #000;
5942 .comment-meta .author:hover {
5943 text-decoration: none;
5944 color: #090;
5946 .comment-item .author:not(.redacted).original-poster::after {
5947 opacity: 0.5;
5950 .comment-item .karma.active-controls::after,
5951 .comment-item .karma .karma-value::after,
5952 .post .karma.active-controls::after,
5953 .post .karma .karma-value::after {
5954 background-color: #fff;
5955 color: #999;
5956 border-radius: 4px;
5957 box-shadow: 0 0 0 1px #ddd inset;
5959 .comment-item .karma.active-controls::after,
5960 .post .karma.active-controls::after {
5961 padding: 6px 4px 4px 4px;
5962 bottom: -44px;
5964 .comment-item .karma .karma-value::after,
5965 .post .karma .karma-value::after {
5966 padding: 2px 8px 1px 8px;
5967 top: -25px;
5968 min-width: 56px;
5971 /*====================*/
5972 /* ANTI-KIBITZER MODE */
5973 /*====================*/
5975 .author.redacted,
5976 .inline-author.redacted {
5977 opacity: 0.6;
5978 font-weight: 400;
5981 .karma-value.redacted {
5982 opacity: 0.4;
5985 .link-post-domain.redacted {
5986 opacity: 0.4;
5989 /*===========================*/
5990 /* COMMENT THREAD NAVIGATION */
5991 /*===========================*/
5993 div.comment-parent-link {
5994 font-weight: 600;
5996 a.comment-parent-link {
5997 font-weight: 400;
5999 a.comment-parent-link::before {
6000 color: #bbb;
6002 a.comment-parent-link:hover::before {
6003 background-color: #ffd;
6004 color: #999;
6007 div.comment-child-links {
6008 font-weight: 600;
6010 div.comment-child-links a {
6011 font-weight: 400;
6013 .comment-child-link::before {
6014 color: #aaa;
6017 .comment-item-highlight {
6018 box-shadow:
6019 0 0 2px #e7b200,
6020 0 0 3px #e7b200,
6021 0 0 5px #e7b200,
6022 0 0 7px #e7b200,
6023 0 0 10px #e7b200;
6024 border: 1px solid #e7b200;
6026 .comment-item-highlight-faint {
6027 box-shadow:
6028 0 0 2px #f8e7b5,
6029 0 0 3px #f8e7b5,
6030 0 0 5px #f8e7b5,
6031 0 0 7px #f8e7b5,
6032 0 0 10px #f8e7b5;
6033 border: 1px solid #f8e7b5;
6036 .comment-popup {
6037 background-color: #fff;
6040 /*=======================*/
6041 /* COMMENTS COMPACT VIEW */
6042 /*=======================*/
6044 #comments-list-mode-selector button {
6045 box-shadow:
6046 0 0 0 4px #fff inset,
6047 0 0 0 5px #bbb inset;
6049 #comments-list-mode-selector button:hover,
6050 #comments-list-mode-selector button.selected {
6051 box-shadow:
6052 0 0 0 5px #bbb inset;
6054 #content.compact > .comment-thread .comment-item::after {
6055 color: #00e;
6056 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
6059 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6060 #content.compact > .comment-thread .comment-item:hover .comment,
6061 #content.compact > .comment-thread .comment-item.expanded .comment {
6062 background-color: #fff;
6063 outline: 3px solid #00c;
6065 #content.compact > .comment-thread .comment-item:hover .comment::before,
6066 #content.compact > .comment-thread .comment-item.expanded .comment::before {
6067 background-color: #fff;
6068 box-shadow:
6069 0 0 3px #fff,
6070 0 0 5px #fff,
6071 0 0 7px #fff,
6072 0 0 10px #fff,
6073 0 0 20px #fff,
6074 0 0 30px #fff,
6075 0 0 40px #fff;
6078 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6079 #content.compact > .comment-thread.expanded .comment-item .comment {
6080 background-color: #fff;
6081 outline: 3px solid #00c;
6083 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6084 background-color: #fff;
6085 box-shadow:
6086 0 0 3px #fff,
6087 0 0 5px #fff,
6088 0 0 7px #fff,
6089 0 0 10px #fff,
6090 0 0 20px #fff,
6091 0 0 30px #fff,
6092 0 0 40px #fff;
6096 #content.user-page.compact > h1.listing {
6097 margin-top: 0.5rem;
6099 #content.user-page.compact > h1.listing + .post-meta {
6100 margin-bottom: 0.5rem;
6103 /*===========================*/
6104 /* HIGHLIGHTING NEW COMMENTS */
6105 /*===========================*/
6107 .new-comment::before {
6108 outline: 2px solid #5a5;
6109 box-shadow:
6110 0 0 6px -2px #5a5 inset,
6111 0 0 4px #5a5,
6112 0 0 6px #5a5;
6115 /*=================================*/
6116 /* COMMENT THREAD MINIMIZE BUTTONS */
6117 /*=================================*/
6119 .comment-minimize-button {
6120 color: #ccc;
6122 .comment-minimize-button:hover {
6123 color: #aaa;
6124 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6126 .comment-minimize-button::after {
6127 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6128 color: #777;
6130 .comment-minimize-button.maximized::after {
6131 color: #ccc;
6134 /*==============*/
6135 /* VOTE BUTTONS */
6136 /*==============*/
6138 .vote::before {
6139 content: "";
6140 border-radius: 50%;
6141 background-size: 17px 17px;
6142 width: 17px;
6143 height: 17px;
6144 display: inline-block;
6145 position: relative;
6146 top: 2.5px;
6148 .vote:active {
6149 transform: none;
6151 .vote:hover::before,
6152 .vote.selected::before,
6153 .vote.clicked-once::before,
6154 .vote.clicked-twice::before {
6155 filter: drop-shadow(0 0 1px #fff);
6158 .upvote::before,
6159 .waiting .upvote.big-vote.clicked-twice::before {
6160 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
6161 filter: grayscale(100%) brightness(128%);
6163 .downvote::before,
6164 .waiting .downvote.big-vote.clicked-twice::before {
6165 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
6166 filter: grayscale(100%) brightness(188%);
6169 .vote.clicked-once::before,
6170 .vote.big-vote.clicked-once::before {
6171 box-shadow:
6172 0 0 0 1px #fff,
6173 0 0 0 4px #c8c8c8,
6174 0 0 0 5px transparent;
6177 .vote.big-vote.clicked-twice::before,
6178 .waiting .vote.big-vote:not(.clicked-twice)::before,
6179 .waiting .vote:not(.big-vote).clicked-once::before {
6180 box-shadow: none;
6183 .upvote.clicked-twice::before,
6184 .upvote.big-vote::before {
6185 box-shadow:
6186 0 0 0 1px #fff,
6187 0 0 0 4px #00d800,
6188 0 0 0 5px transparent;
6191 .downvote.clicked-twice::before,
6192 .downvote.big-vote::before {
6193 box-shadow:
6194 0 0 0 1px #fff,
6195 0 0 0 4px #eb4c2a,
6196 0 0 0 5px transparent;
6199 /*===========================*/
6200 /* COMMENTING AND POSTING UI */
6201 /*===========================*/
6203 .posting-controls input[type='submit'] {
6204 background-color: #fff;
6205 border: 1px solid #aaa;
6206 font-weight: bold;
6208 .posting-controls input[type='submit']:hover,
6209 .posting-controls input[type='submit']:focus {
6210 background-color: #ddd;
6211 border: 1px solid #999;
6214 .comment-controls .cancel-comment-button {
6215 font-weight: 600;
6216 color: #c00;
6217 text-shadow:
6218 0 0 1px #fff,
6219 0 0 2px #fff;
6221 .comment-controls .cancel-comment-button:hover {
6222 color: #f00;
6223 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6226 .new-comment-button {
6227 font-weight: 600;
6230 .comment-controls .delete-button,
6231 .comment-controls .retract-button {
6232 color: #a00;
6233 opacity: 0.85;
6235 .comment-controls .edit-button,
6236 .comment-controls .unretract-button {
6237 color: #090;
6239 .comment-controls .action-button:hover {
6240 color: #f00;
6241 opacity: 1.0;
6244 .button.edit-post-link:not(:hover) {
6245 color: #090;
6248 .posting-controls textarea {
6249 font-family: 'Charter', 'Georgia', serif;
6250 color: #000;
6251 background-color: #fff;
6252 border-color: #aaa;
6253 box-shadow:
6254 0 0 0 1px #eee inset;
6256 .posting-controls textarea:focus {
6257 background-color: #ffd;
6258 border-color: #00e;
6259 box-shadow:
6260 0 0 0 1px #ddf inset,
6261 0 0 0 1px #fff,
6262 0 0 0 2px #00e;
6264 .posting-controls.edit-existing-post textarea:focus,
6265 .posting-controls form.edit-existing-comment textarea:focus {
6266 border-color: #090;
6267 box-shadow:
6268 0 0 0 1px #81ff7f inset,
6269 0 0 0 1px #fff,
6270 0 0 0 2px #090;
6273 /*= Scroll bars =*/
6275 .posting-controls textarea::-webkit-scrollbar {
6276 width: 16px;
6277 background-color: transparent;
6279 .posting-controls textarea::-webkit-scrollbar-track {
6280 background-color: #eee;
6281 border-left: 1px solid #aaa;
6282 border-top: 1px solid #eee;
6284 .posting-controls textarea:focus::-webkit-scrollbar-track {
6285 border-left: 1px solid #00e;
6286 border-top: 1px solid #ddf;
6288 .posting-controls textarea::-webkit-scrollbar-thumb {
6289 background-color: #aaa;
6290 box-shadow: 0 0 0 1px #eee inset;
6291 border-left: 1px solid #aaa;
6293 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
6294 border-left: 1px solid #00e;
6295 background-color: #0040ff;
6296 box-shadow:
6297 0 1px 0 0 #ddf inset,
6298 0 0 0 1px #eee inset;
6301 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
6302 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
6303 border-left: 1px solid #090;
6305 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
6306 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
6307 border-left: 1px solid #090;
6308 background-color: #28a708;
6311 /* GUIEdit buttons */
6313 .guiedit-buttons-container {
6314 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6317 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6318 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6319 color: #050;
6321 .guiedit-buttons-container button {
6322 font-family: Font Awesome, 'Charter', 'Georgia', serif;
6325 .guiedit::after {
6326 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6327 color: #777;
6328 text-shadow: none;
6331 /* Markdown hints */
6333 #markdown-hints-checkbox + label {
6334 color: #00e;
6336 #markdown-hints-checkbox + label:hover {
6337 color: #e00;
6338 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6340 #markdown-hints {
6341 border: 1px solid #c00;
6342 background-color: #ffa;
6345 /*================*/
6346 /* EDIT POST FORM */
6347 /*================*/
6349 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
6350 top: -1px;
6352 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6353 border-radius: 3px;
6354 border: 1px solid #ddd;
6355 color: #777;
6357 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6358 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6359 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6360 text-shadow:
6361 0 0 1px #fff,
6362 0 0 2px #fff,
6363 0 0 2.5px #aaa;
6365 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6366 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6367 border-color: #aaa;
6370 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6371 content: "\F00C";
6373 #edit-post-form input[type='radio'] + label {
6374 color: #777;
6375 border-color: #ddd;
6376 padding: 4px 12px 5px 12px;
6378 #edit-post-form input[type='radio'][value='all'] + label {
6379 border-radius: 8px 0 0 8px;
6380 border-width: 1px;
6382 #edit-post-form input[type='radio'][value='drafts'] + label {
6383 border-radius: 0 8px 8px 0;
6385 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6386 #edit-post-form input[type='radio'] + label:hover,
6387 #edit-post-form input[type='radio']:focus + label {
6388 background-color: #ddd;
6389 color: #000;
6392 #edit-post-form input[type='radio']:focus + label {
6393 color: #000;
6394 box-shadow:
6395 0 0 0 1px #aaa;
6397 #edit-post-form input[type='radio']:checked + label {
6398 background-color: #ddd;
6399 border-color: #ddd;
6400 color: #000;
6401 text-shadow:
6402 0 -1px 0 #fff,
6403 0 0.5px 0.5px #000;
6406 /*=======*/
6407 /* LINKS */
6408 /*=======*/
6411 text-decoration: none;
6412 color: #00e;
6414 a:visited {
6415 color: #551a8b;
6417 a:hover {
6418 text-decoration: underline;
6421 /*=========*/
6422 /* BUTTONS */
6423 /*=========*/
6425 button,
6426 input[type='submit'] {
6427 color: #00e;
6430 button:active,
6431 input[type='submit']:active {
6432 color: #f00;
6433 transform: scale(0.9);
6435 .button:visited {
6436 color: #00e;
6438 .button:active {
6439 transform: scale(0.9);
6441 @-moz-document url-prefix() {
6442 .button:active {
6443 transform: none;
6447 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6448 button:hover,
6449 input[type='submit']:hover,
6450 button:focus,
6451 input[type='submit']:focus {
6452 color: #f00;
6453 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6456 .button:hover {
6457 color: #f00;
6458 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6459 text-decoration: none;
6461 .button:focus:not(:hover) {
6462 transform: none;
6466 /*==========*/
6467 /* HEADINGS */
6468 /*==========*/
6470 .post-body h1,
6471 .post-body h2,
6472 .post-body h4,
6473 .comment-body h1,
6474 .comment-body h2,
6475 .comment-body h4 {
6476 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6478 .post-body h3,
6479 .comment-body h3,
6480 .post-body h5,
6481 .post-body h6,
6482 .comment-body h5,
6483 .comment-body h6 {
6484 font-weight: 600;
6485 font-family: 'Whitney Smallcaps', 'a_Avante', Arial, sans-serif;
6487 .post-body h6,
6488 .comment-body h6 {
6489 color: #555;
6491 .post-body h1,
6492 .comment-body h1 {
6493 border-bottom: 1px solid #aaa;
6496 /*========*/
6497 /* QUOTES */
6498 /*========*/
6500 blockquote {
6501 border-left: 5px solid #ccc;
6504 /*========*/
6505 /* IMAGES */
6506 /*========*/
6508 #content img {
6509 border: 1px solid #ccc;
6511 #content img[style^='float'] {
6512 border: 1px solid transparent;
6514 #content img[src$='.svg'] {
6515 border: none;
6517 #content figure img {
6518 border: 1px solid #000;
6520 #content figure img[src$='.svg'] {
6521 border: none;
6524 /*========*/
6525 /* TABLES */
6526 /*========*/
6528 .post-body table,
6529 .comment-body table,
6530 .post-body table th,
6531 .post-body table td,
6532 .comment-body table th,
6533 .comment-body table td {
6534 border: 1px solid #ccc;
6537 /*======*/
6538 /* MISC */
6539 /*======*/
6541 hr {
6542 border-bottom: 1px solid #999;
6545 code {
6546 background-color: #f6f6ff;
6547 border: 1px solid #ddf;
6548 border-radius: 4px;
6551 input[type='text'],
6552 input[type='search'],
6553 input[type='password'] {
6554 background-color: #fff;
6555 border: 1px solid #ddd;
6556 color: #000;
6558 input[type='text']:focus,
6559 input[type='search']:focus,
6560 input[type='password']:focus {
6561 background-color: #ffd;
6562 border: 1px solid #bbb;
6563 box-shadow: 0 0 1px #bbb;
6566 select {
6567 color: #000;
6570 @-moz-document url-prefix() {
6571 h1.listing s,
6572 .post > h1:first-of-type s {
6573 position: relative;
6574 text-decoration: none;
6576 h1.listing s::after,
6577 .post > h1:first-of-type s::after {
6578 position: absolute;
6579 border-bottom: 3px solid #000;
6580 content: "";
6581 top: 0;
6582 left: 0;
6583 width: 100%;
6584 height: 50%;
6587 /*============*/
6588 /* ABOUT PAGE */
6589 /*============*/
6591 .about-page mark {
6592 background-color: #e6e6e6;
6593 text-decoration: none;
6594 box-shadow:
6595 0 -1px 0 0 #000 inset,
6596 0 -3px 1px -2px #000 inset;
6597 padding: 0 1px;
6600 #content.about-page .accesskey-table {
6601 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6602 border-color: #ddd;
6605 #content.about-page img {
6606 border: 1px solid #000;
6609 /*========================*/
6610 /* QUALIFIED HYPERLINKING */
6611 /*========================*/
6613 #aux-about-link a {
6614 color: #777;
6616 #aux-about-link a:hover {
6617 opacity: 1.0;
6618 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6621 .qualified-linking label {
6622 color: #00e;
6624 .qualified-linking label:hover {
6625 text-shadow:
6626 0 0 1px #fff,
6627 0 0 3px #fff,
6628 0 0 5px #00e;
6631 .qualified-linking-toolbar {
6632 border: 1px solid #000;
6633 background-color: #fff;
6635 .qualified-linking-toolbar a {
6636 background-color: #eee;
6637 border: 1px solid #ccc;
6638 border-radius: 4px;
6640 .qualified-linking-toolbar a:visited {
6641 color: #00e;
6643 .qualified-linking-toolbar a:hover {
6644 text-decoration: none;
6645 background-color: #ddd;
6646 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6648 .qualified-linking label::after {
6649 background-color: #d8d8d8;
6650 opacity: 0.8;
6653 /*======*/
6654 /* MATH */
6655 /*======*/
6657 .mathjax-block-container::-webkit-scrollbar {
6658 height: 12px;
6659 background-color: #f6f6ff;
6660 border-radius: 6px;
6661 border: 1px solid #ddf;
6663 .mathjax-block-container::-webkit-scrollbar-thumb {
6664 background-color: #dde;
6665 border-radius: 6px;
6666 border: 1px solid #cce;
6668 .mathjax-inline-container::-webkit-scrollbar {
6669 height: 8px;
6670 background-color: #f6f6ff;
6671 border-radius: 4px;
6672 border: 1px solid #ddf;
6674 .mathjax-inline-container::-webkit-scrollbar-thumb {
6675 background-color: #dde;
6676 border-radius: 4px;
6677 border: 1px solid #cce;
6680 /*=================*/
6681 /* ALIGNMENT FORUM */
6682 /*=================*/
6684 #content.alignment-forum-index-page::before {
6685 background-color: #eef0ff;
6687 #content.alignment-forum-index-page::after {
6688 font-family: "Concourse SmallCaps";
6689 font-weight: bold;
6690 background-color: #626dd7;
6691 -webkit-background-clip: text;
6692 color: transparent;
6693 text-shadow:
6694 rgba(255,255,255,0.5) 0px 3px 3px;;
6696 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6697 #content.alignment-forum-index-page h1.listing a:hover,
6698 #content.alignment-forum-index-page h1.listing a:focus {
6699 background-color: rgba(238,240,255,0.85);
6703 /*====================*/
6704 /* FOR NARROW SCREENS */
6705 /*====================*/
6707 @media only screen and (max-width: 1440px) {
6708 #hns-date-picker {
6709 background-color: #d8d8d8;
6710 opacity: 1.0;
6712 #hns-date-picker::before {
6713 border: 1px solid #999;
6714 border-width: 1px 0 1px 1px;
6717 @media only screen and (max-width: 1160px) {
6718 #theme-selector:hover::after {
6719 background-color: #999;
6722 @media only screen and (max-width: 1080px) {
6723 #text-size-adjustment-ui button {
6724 border: 1px solid #999;
6725 padding: 0 0 0 1px;
6726 border-radius: 50%;
6727 box-shadow:
6728 0 0 6px #999 inset,
6729 0 0 0 1px transparent;
6731 #theme-tweaker-toggle button {
6732 border: 1px solid #999;
6733 box-shadow:
6734 0 0 10px #999 inset,
6735 0 0 0 1px transparent;
6736 border-radius: 50%;
6737 transform: scale(0.8);
6740 @media only screen and (max-width: 1020px) {
6741 #quick-nav-ui a {
6742 box-shadow:
6743 0 0 0 1px #999,
6744 0 0 0 2px transparent;
6746 #new-comment-nav-ui .new-comments-count::before {
6747 background-color: #d8d8d8;
6748 box-shadow:
6749 0 0 0 1px #999,
6750 0 0 0 2px transparent;
6751 border-radius: 8px;
6753 #anti-kibitzer-toggle {
6754 box-shadow:
6755 0 0 0 1px #999,
6756 0 0 0 2px transparent;
6757 background-color: #d8d8d8;
6758 border-radius: 6px;
6759 overflow: hidden;
6762 @media only screen and (max-width: 1000px) {
6763 #theme-selector {
6764 background-color: #d8d8d8;
6765 box-shadow:
6766 0 0 0 1px #999,
6767 0 0 0 2px transparent;
6769 #theme-selector:hover::after {
6770 width: calc(6em - 3px);
6771 height: calc(100% - 5px);
6772 top: 3px;
6773 left: 100%;
6775 #text-size-adjustment-ui button {
6776 background-color: #ddd;
6778 #text-size-adjustment-ui button:hover {
6779 background-color: #eee;
6781 #theme-tweaker-toggle button {
6782 background-color: #ddd;
6786 /*========*/
6787 /* MOBILE */
6788 /*========*/
6790 /**************************************************************************/
6791 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6792 /**************************************************************************/
6793 #ui-elements-container > div[id$='-ui-toggle'] button {
6794 color: #888;
6795 text-shadow:
6796 0 0 1px #fff,
6797 0 0 3px #fff,
6798 0 0 5px #fff,
6799 0 0 10px #fff,
6800 0 0 20px #fff,
6801 0 0 30px #fff;
6804 #theme-selector {
6805 background-color: #d8d8d8;
6806 box-shadow:
6807 0 0 0 1px #999,
6808 0 0 1px 3px #fff,
6809 0 0 3px 3px #fff,
6810 0 0 5px 3px #fff,
6811 0 0 10px 3px #fff,
6812 0 0 20px 3px #fff;
6813 border-radius: 12px;
6815 #theme-selector::before,
6816 #theme-selector .theme-selector-close-button {
6817 color: #666;
6818 text-shadow: 0.5px 0.5px 0 #fff;
6820 #theme-selector button {
6821 background-color: #e6e6e6;
6822 border-radius: 10px;
6824 #theme-selector button::after {
6825 color: #000;
6826 padding-bottom: 2px;
6827 max-width: calc(100% - 3.25em);
6828 overflow: hidden;
6829 text-overflow: ellipsis;
6831 #theme-selector button.selected::after {
6832 text-shadow:
6833 0 -1px 0 #fff,
6834 0 0.5px 0.5px #000;
6837 #quick-nav-ui {
6838 background-color: #fff;
6840 #quick-nav-ui,
6841 #new-comment-nav-ui,
6842 #hns-date-picker {
6843 box-shadow:
6844 0 0 1px 3px #fff,
6845 0 0 3px 3px #fff,
6846 0 0 5px 3px #fff,
6847 0 0 10px 3px #fff,
6848 0 0 20px 3px #fff;
6850 #quick-nav-ui a::after,
6851 #new-comment-nav-ui::before {
6852 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6853 font-weight: 600;
6854 box-shadow:
6855 0 0 1px 0 #fff,
6856 0 0 3px 0 #fff,
6857 0 0 5px 0 #fff;
6858 background-color: #fff;
6859 border-radius: 4px;
6861 #quick-nav-ui,
6862 #new-comment-nav-ui {
6863 border-radius: 8px;
6865 #new-comment-nav-ui {
6866 background-color: #d8d8d8;
6867 border: 1px solid #999;
6869 #new-comment-nav-ui::before {
6870 color: #777;
6872 #new-comment-nav-ui .new-comment-sequential-nav-button {
6873 box-shadow: 0 0 0 1px #999;
6874 color: #777;
6876 #new-comment-nav-ui .new-comments-count {
6877 background-color: inherit;
6878 box-shadow: 0 -1px 0 0 #999;
6880 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6881 color: #bbb;
6883 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6884 border-radius: 7px 0 0 7px;
6886 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6887 border-radius: 0 7px 7px 0;
6889 #new-comment-nav-ui button::after {
6890 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6893 /*****************************************/
6894 @media only screen and (max-width: 900px) {
6895 /*****************************************/
6896 h1.listing {
6897 font-size: 1.75rem;
6898 line-height: 1;
6900 h1.listing a[href^='http'] {
6901 top: 2px;
6903 h1.listing + .post-meta .karma-value,
6904 h1.listing + .post-meta .comment-count,
6905 h1.listing + .post-meta .lw2-link,
6906 h1.listing + .post-meta .read-time {
6907 bottom: 0;
6909 h1.listing + .post-meta .post-section::before {
6910 position: unset;
6912 h1.listing + .post-meta .post-section {
6913 overflow: visible;
6914 order: 1;
6916 h1.listing + .post-meta .link-post-domain {
6917 order: 2;
6918 line-height: 1;
6919 flex-basis: 100%;
6921 h1.listing + .post-meta::after {
6922 bottom: -10px;
6924 #content.user-page h1.listing + .post-meta {
6925 margin-bottom: 1em;
6927 #content.user-page h1.link-post-listing::after {
6928 height: calc(100% + 2em);
6931 #nav-item-search button::before {
6932 color: #00e;
6935 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6936 background-color: #aaa;
6939 .comment-item .comment-item {
6940 margin: 0.75em 2px 4px 6px;
6941 box-shadow:
6942 0 0 2px #ccc,
6943 0 0 4px #ccc,
6944 0 0 7px #ccc;
6946 .comment-item .comment-item + .comment-item {
6947 margin: 1.5em 2px 4px 6px;
6949 .comment-body {
6950 font-size: 1.125rem;
6953 a.comment-parent-link:hover::before {
6954 background-color: unset;
6957 .sublevel-nav:not(.sort) .sublevel-item,
6958 .sublevel-nav:not(.sort) .sublevel-item:first-child,
6959 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6960 border-radius: 8px;
6961 border-width: 1px;
6962 margin: 2px;
6964 /*******************************************/
6965 } @media only screen and (max-width: 720px) {
6966 /*******************************************/
6967 h1.listing {
6968 margin: 10px 6px 6px 6px;
6969 max-width: calc(100% - 12px);
6970 font-size: 1.5rem;
6971 padding-right: 35px;
6973 #content.conversations-user-page h1.listing {
6974 font-size: 1.5rem;
6976 h1.listing + .post-meta {
6977 margin: 0 6px 0 7px;
6978 clear: both;
6980 h1.listing + .post-meta {
6981 padding: .25em 254px 0 0;
6983 h1.listing + .post-meta::after {
6984 bottom: -2px;
6986 h1.listing + .post-meta > * {
6987 line-height: 1;
6988 display: block;
6990 #content.conversations-user-page h1.listing + .post-meta > * {
6991 line-height: 1.5;
6993 h1.listing + .post-meta .date,
6994 h1.listing + .post-meta .author {
6995 line-height: 1.3;
6997 h1.listing + .post-meta .karma-value,
6998 h1.listing + .post-meta .comment-count,
6999 h1.listing + .post-meta .lw2-link,
7000 h1.listing + .post-meta .read-time {
7001 top: unset;
7002 font-size: 1rem;
7003 box-shadow: none;
7005 h1.listing + .post-meta .karma-value::before,
7006 h1.listing + .post-meta .comment-count::before,
7007 h1.listing + .post-meta .lw2-link::before,
7008 h1.listing + .post-meta .read-time::before {
7009 box-shadow: none;
7011 h1.listing + .post-meta .karma-value,
7012 h1.listing + .post-meta .comment-count,
7013 h1.listing + .post-meta .read-time,
7014 h1.listing + .post-meta .lw2-link {
7015 bottom: 4px;
7018 h1.listing + .post-meta .karma-value {
7019 right: 192px;
7021 h1.listing + .post-meta .karma-value::before {
7022 text-shadow: 0.5px 0.5px 0.5px #999;
7024 h1.listing + .post-meta .comment-count {
7025 right: 132px;
7027 h1.listing + .post-meta .read-time {
7028 right: 56px;
7030 h1.listing + .post-meta .lw2-link {
7031 opacity: 1;
7032 right: 0;
7034 h1.listing + .post-meta .link-post-domain {
7035 margin: 0;
7036 line-height: 1.3;
7037 overflow: hidden;
7038 text-overflow: ellipsis;
7040 h1.listing + .post-meta .post-section::before {
7041 position: absolute;
7042 left: unset;
7043 right: 0;
7044 bottom: 30px;
7045 top: unset;
7047 h1.listing a {
7048 display: inline;
7050 /*******************************************/
7051 } @media only screen and (max-width: 520px) {
7052 /*******************************************/
7053 h1.listing + .post-meta {
7054 padding: .25em 144px 0 0;
7055 flex-flow: column;
7057 #content.conversations-user-page h1.listing + .post-meta {
7058 flex-flow: row wrap;
7060 h1.listing + .post-meta .date {
7061 margin: 0.375em 0 0.25em 0;
7062 line-height: 1;
7064 #content.user-page h1.listing::after {
7065 height: calc(100% + 2.125em);
7067 #content.user-page h1.link-post-listing::after {
7068 height: calc(100% + 3.125em);
7070 #content.user-page h1.listing + .post-meta {
7071 padding: 0.25em 144px 0.5em 36px;
7073 #content.conversations-user-page h1.listing + .post-meta .date {
7074 margin: 0 0 0 1em;
7077 h1.listing + .post-meta .karma-value {
7078 bottom: 28px;
7079 right: 0;
7081 h1.listing + .post-meta .comment-count {
7082 bottom: 28px;
7083 right: 56px;
7085 h1.listing + .post-meta .read-time {
7086 right: 56px;
7087 bottom: 4px;
7089 h1.listing + .post-meta .lw2-link {
7090 right: 0;
7091 bottom: 4px;
7093 h1.listing + .post-meta .link-post-domain {
7094 max-width: 100%;
7096 h1.listing + .post-meta .post-section::before {
7097 right: 120px;
7100 #content.compact > .comment-thread .comment-item {
7101 max-height: 110px;
7104 .textarea-container:focus-within button:active {
7105 background-color: #ccc;
7107 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
7108 background-color: #eee;
7109 border: 1px solid #ddd;
7110 border-radius: 6px;
7112 .textarea-container:focus-within .guiedit-mobile-help-button.active {
7113 border-color: #c00;
7114 box-shadow:
7115 0 0 0 1px #fff,
7116 0 0 0 2px #c00;
7117 color: #c00;
7118 font-weight: 600;
7120 #content.conversation-page .textarea-container:focus-within::after {
7121 background-color: #fff;
7123 .textarea-container:focus-within .guiedit-buttons-container {
7124 background-color: white;
7125 border-top: 1px solid #ddf;
7127 .textarea-container:focus-within button.guiedit {
7128 background-color: #eee;
7129 border: 1px solid #ddd;
7130 border-radius: 6px;
7132 #markdown-hints::after {
7133 color: #090;
7136 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
7137 top: 2px;
7139 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
7140 top: 1px;
7142 /*******************************************/
7143 } @media only screen and (max-width: 320px) {
7144 /*******************************************/
7145 h1.listing {
7146 font-size: 1.25rem;
7148 #content.user-page h1.listing::after {
7149 height: calc(100% + 2.625em);
7151 #content.user-page h1.link-post-listing::after {
7152 height: calc(100% + 3.75em);