Further edit-post-form layout fixing, V
[lw2-viewer.git] / www / style-rts.mac.css
blob59b46338a6cbdb6a168a940c70d2d7c69eaa8f0a
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 /* READTHESEQUENCES.COM THEME */
4832 /******************************/
4834 body {
4835 color: #000;
4836 background-color: #fffffa;
4837 font-family: 'Proxima Nova', sans-serif;
4839 #content {
4840 line-height: 1.55;
4843 /*=========*/
4844 /* NAV BAR */
4845 /*=========*/
4847 .nav-inner {
4848 font-size: 1.375em;
4849 font-weight: 600;
4851 #secondary-bar .nav-inner {
4852 font-size: 1em;
4855 a.nav-inner,
4856 #nav-item-search button {
4857 font-weight: 200;
4858 color: #888;
4861 #bottom-bar.decorative {
4862 border: none;
4864 #bottom-bar.decorative::before,
4865 #bottom-bar.decorative::after {
4866 content: "GW";
4867 font-weight: 200;
4868 display: block;
4869 text-align: center;
4870 padding: 0.25em 0 1em 0;
4872 #bottom-bar.decorative::before {
4873 width: 100%;
4874 color: transparent;
4875 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4876 background-repeat: repeat-x;
4877 background-position: center 35%;
4878 margin: 0 30px;
4880 #bottom-bar.decorative::after {
4881 color: #d8d8d8;
4882 position: absolute;
4883 left: 0;
4884 right: 0;
4885 margin: auto;
4886 background-color: #fff;
4887 padding-right: 4px;
4888 padding-left: 4px;
4890 @supports (width: -moz-fit-content) {
4891 #bottom-bar.decorative::after {
4892 width: -moz-fit-content;
4895 @supports (width: fit-content) {
4896 #bottom-bar.decorative::after {
4897 width: fit-content;
4901 /* Accesskey hints */
4903 .nav-inner::after {
4904 display: block;
4905 position: absolute;
4906 left: 5px;
4907 top: -2px;
4908 font-weight: 200;
4909 font-size: 0.7em;
4910 color: #d8d8d8;
4912 .inactive-bar .nav-inner::after {
4913 color: #ccc;
4915 .nav-inner:hover::after {
4916 color: #bbb;
4919 /* This makes the navbar items look like tabs: */
4921 #bottom-bar {
4922 border-top: 1px solid #bbb;
4923 margin-top: 2em;
4925 .post-page #bottom-bar {
4926 margin-top: 0.5em;
4928 #content.no-nav-bars {
4929 margin: auto;
4931 #content.no-comments #bottom-bar {
4932 margin-top: 0.125em;
4934 .nav-bar .nav-item:not(:last-child) {
4935 border-right: 1px solid #bbb;
4937 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4938 #nav-item-search:focus-within {
4939 background-color: #f0f0eb;
4941 .nav-bar a:hover,
4942 .nav-bar a:focus,
4943 .nav-bar button:hover,
4944 .nav-bar button:focus {
4945 color: #333;
4946 text-shadow: 0px 0px 0.5px #333;
4948 #bottom-bar .nav-item a::before,
4949 #top-nav-bar a::before {
4950 font-size: 1em;
4951 bottom: -2px;
4952 color: #aaa;
4954 #bottom-bar .nav-item a:hover::before,
4955 #top-nav-bar a:hover::before {
4956 color: #333;
4958 #bottom-bar #nav-item-first a::before,
4959 #top-nav-bar a.nav-item-first::before {
4960 content: "\F0D9\F0D9";
4962 #bottom-bar #nav-item-prev a::before,
4963 #top-nav-bar a.nav-item-prev::before {
4964 content: "\F0D9";
4966 #bottom-bar #nav-item-top a::before {
4967 content: "\F0D8";
4969 #bottom-bar #nav-item-next a::before,
4970 #top-nav-bar a.nav-item-next::before {
4971 content: "\F0DA";
4973 #bottom-bar #nav-item-last a::before,
4974 #top-nav-bar a.nav-item-last::before {
4975 content: "\F0DA\F0DA";
4977 #bottom-bar #nav-item-next a::before {
4978 margin-left: -1em;
4979 left: 2.85em;
4981 .active-bar {
4982 position: relative;
4983 border-style: solid;
4984 border-color: #bbb;
4985 border-width: 1px 0;
4988 /* Search tab */
4990 #nav-item-search form::before {
4991 color: #999;
4993 #nav-item-search button:hover {
4994 color: #333;
4996 #nav-item-search input::placeholder {
4997 color: #d00;
4998 font-weight: normal;
5001 /* User/login tab */
5003 #inbox-indicator::before {
5004 color: #ddd;
5007 /*= Top pagination UI hover tooltips =*/
5009 #top-nav-bar a::after,
5010 #bottom-bar a::after {
5011 color: #222;
5012 text-shadow: none;
5015 /*==============*/
5016 /* PAGE TOOLBAR */
5017 /*==============*/
5019 .page-toolbar {
5020 grid-row: 3;
5022 .page-toolbar * {
5023 color: #888;
5024 font-weight: 300;
5026 .page-toolbar a:hover,
5027 .page-toolbar button:hover {
5028 text-shadow: 0px 0px 0.5px #333;
5030 .logout-button {
5031 color: #d33;
5034 /*===================*/
5035 /* TOP PAGINATION UI */
5036 /*===================*/
5038 #top-nav-bar {
5039 margin: 0;
5040 flex-wrap: wrap;
5041 grid-column: 1 / span 3;
5042 grid-row: 3;
5044 #top-nav-bar .page-number {
5045 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5046 padding-top: 7px;
5048 #top-nav-bar .page-number-label {
5049 font-family: 'Proxima Nova', sans-serif;
5050 bottom: 70%;
5052 #top-nav-bar::after {
5053 content: "";
5054 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
5055 background-origin: content-box;
5056 background-repeat: no-repeat;
5057 display: block;
5058 margin: 0.125em auto 0 auto;
5059 padding: 0 12.5%;
5060 height: 1px;
5061 flex: 1 0 100%;
5064 /*==============*/
5065 /* SUBLEVEL NAV */
5066 /*==============*/
5068 .sublevel-nav .sublevel-item {
5069 color: #777;
5070 background-color: #fffffa;
5072 .sublevel-nav .sublevel-item:not(.selected):hover {
5073 background-color: #ddd;
5074 color: #000;
5076 .sublevel-nav .sublevel-item:not(.selected):active,
5077 .sublevel-nav .sublevel-item.selected {
5078 background-color: #ddd;
5079 border-color: #ddd;
5080 color: #000;
5081 text-shadow:
5082 0 -1px 0 #fff,
5083 0 0.5px 0.5px #000;
5086 .sublevel-nav:not(.sort) .sublevel-item {
5087 border-style: solid;
5088 border-color: #ddd;
5089 border-width: 1px 0 1px 1px;
5091 .sublevel-nav:not(.sort) .sublevel-item:first-child {
5092 border-radius: 8px 0 0 8px;
5094 .sublevel-nav:not(.sort) .sublevel-item:last-child {
5095 border-width: 1px;
5096 border-radius: 0 8px 8px 0;
5099 /*=====================*/
5100 /* SORT ORDER SELECTOR */
5101 /*=====================*/
5103 .sublevel-nav.sort .sublevel-item {
5104 font-feature-settings: 'smcp';
5105 padding: 7px 7px 6px 7px;
5106 text-transform: uppercase;
5107 box-shadow: 1px 1px 0 0 #bbb inset;
5108 pointer-events: auto;
5110 .sublevel-nav.sort {
5111 padding: 20px 0 0 0;
5112 border-radius: 8px;
5113 pointer-events: none;
5114 background-color: #bbb;
5115 overflow: hidden;
5117 .sublevel-nav.sort::before {
5118 text-transform: uppercase;
5119 font-weight: 600;
5120 color: #444;
5121 text-shadow: 0.5px 0.5px 0 #fff;
5122 line-height: 2;
5123 z-index: 1;
5125 .sublevel-nav.sort::after {
5126 content: "";
5127 position: absolute;
5128 display: block;
5129 top: 0;
5130 left: 0;
5131 width: 100%;
5132 height: 100%;
5133 border-radius: 6px 6px 8px 8px;
5134 box-shadow:
5135 0 0 0 1px #bbb inset,
5136 0 20px 0 0 #bbb inset,
5137 0 20px 0 1px #aaa inset,
5138 0 0 0 3px #fffffa;
5141 /*================*/
5142 /* WIDTH SELECTOR */
5143 /*================*/
5144 /* THEME SELECTOR */
5145 /*================*/
5147 #width-selector button,
5148 #theme-selector button {
5149 box-shadow:
5150 0 0 0 4px #fffffa inset,
5151 0 0 0 5px #bbb inset;
5153 #width-selector button:hover,
5154 #width-selector button.selected,
5155 #theme-selector button:hover,
5156 #theme-selector button.selected {
5157 box-shadow:
5158 0 0 0 1px #bbb inset,
5159 0 0 0 4px #fffffa inset,
5160 0 0 0 5px #bbb inset;
5163 #theme-selector button::before {
5164 font-size: 0.9375em;
5165 padding: 6px;
5166 font-weight: 300;
5167 color: #bbb;
5168 background-color: #fff;
5170 #theme-selector button:hover::before,
5171 #theme-selector button.selected::before {
5172 color: #444;
5174 #width-selector button::after {
5175 color: #aaa;
5176 font-weight: 300;
5179 /*======================*/
5180 /* THEME TWEAKER TOGGLE */
5181 /*======================*/
5183 #theme-tweaker-toggle button {
5184 color: #777;
5187 /*=================*/
5188 /* QUICKNAV WIDGET */
5189 /*=================*/
5191 #quick-nav-ui a {
5192 box-shadow: 0 0 0 1px #ccc inset;
5193 color: #bbb;
5194 border-radius: 4px;
5196 #quick-nav-ui a[href='#bottom-bar'] {
5197 line-height: 1.8;
5199 #quick-nav-ui a:active {
5200 transform: scale(0.9);
5202 #quick-nav-ui a[href='#comments'].no-comments {
5203 opacity: 0.4;
5204 color: #bbb;
5206 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5207 #quick-nav-ui a:hover {
5208 background-color: #f0f0eb;
5209 color: #333;
5210 text-shadow: 0px 0px 0.5px #333;
5212 #quick-nav-ui a:focus:not(:hover) {
5213 transform: none;
5214 text-shadow: none;
5218 /*======================*/
5219 /* NEW COMMENT QUICKNAV */
5220 /*======================*/
5222 #new-comment-nav-ui .new-comments-count,
5223 #new-comment-nav-ui .new-comments-count::after {
5224 color: #999;
5225 font-weight: normal;
5227 #new-comment-nav-ui .new-comments-count {
5228 text-shadow: 0.5px 0.5px 0 #fff;
5230 #new-comment-nav-ui .new-comment-sequential-nav-button {
5231 color: #999;
5233 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5234 color: #e6e6e6;
5235 text-shadow: none;
5237 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5238 #new-comment-nav-ui .new-comments-count:hover {
5239 text-shadow:
5240 0 0 1px #fff,
5241 0 0 3px #fff,
5242 0 0 5px #fff,
5243 0 0 8px #fff,
5244 0.5px 0.5px 0 #fff;
5246 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5247 color: #d00;
5251 /*=================*/
5252 /* HNS DATE PICKER */
5253 /*=================*/
5255 #hns-date-picker span {
5256 color: #777;
5257 text-shadow: 0.5px 0.5px 0 #fff;
5258 font-weight: 600;
5260 #hns-date-picker input[type='text'] {
5262 #hns-date-picker input {
5263 border: 1px solid #bbb;
5264 color: #888;
5265 background-color: transparent;
5267 #hns-date-picker input:hover,
5268 #hns-date-picker input:focus {
5269 color: #666;
5271 #hns-date-picker span {
5272 color: #aaa;
5275 /*======================*/
5276 /* ANTI-KIBITZER TOGGLE */
5277 /*======================*/
5279 #anti-kibitzer-toggle button::before,
5280 #anti-kibitzer-toggle button::after {
5281 background-color: #bbb;
5282 -webkit-background-clip: text;
5283 color: transparent;
5284 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5286 #anti-kibitzer-toggle button:hover::before,
5287 #anti-kibitzer-toggle button:hover::after {
5288 background-color: #777;
5291 /*======================*/
5292 /* TEXT SIZE ADJUSTMENT */
5293 /*======================*/
5295 #text-size-adjustment-ui button {
5296 color: #777;
5298 #text-size-adjustment-ui button.default {
5299 font-weight: 600;
5301 #text-size-adjustment-ui button:disabled:hover {
5302 text-shadow: none;
5304 #text-size-adjustment-ui::after {
5305 color: #aaa;
5306 font-weight: 300;
5309 /*=============================*/
5310 /* COMMENTS VIEW MODE SELECTOR */
5311 /*=============================*/
5313 #comments-view-mode-selector a {
5314 color: #777;
5317 /*==========*/
5318 /* ARCHIVES */
5319 /*==========*/
5321 .archive-nav {
5322 border: 1px solid transparent;
5324 .archive-nav *[class^='archive-nav-item'] {
5325 border-style: solid;
5326 border-color: #ddd;
5327 border-width: 1px 0 1px 1px;
5329 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5330 border-top-width: 0;
5331 border-bottom-width: 0;
5333 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5334 border-bottom-width: 1px;
5336 .archive-nav *[class^='archive-nav-item']:last-child {
5337 border-right-width: 1px;
5339 .archive-nav span[class^='archive-nav-item'] {
5340 font-weight: bold;
5341 background-color: #ddd;
5344 .archive-nav a:link,
5345 .archive-nav a:visited {
5346 color: #999;
5347 font-weight: 300;
5349 .archive-nav a:hover,
5350 .archive-nav span[class^='archive-nav-item'] {
5351 font-weight: 300;
5352 background-color: #f0f0eb;
5353 color: #333;
5354 text-shadow: 0px 0px 0.5px #333;
5356 .archive-nav a:active {
5357 transform: scale(0.9);
5359 .archive-nav a:focus:not(:hover) {
5360 transform: none;
5362 .archive-nav a.archive-nav-item-day:hover {
5363 background-color: #ddd;
5366 /*==========*/
5367 /* LISTINGS */
5368 /*==========*/
5370 h1.listing {
5371 margin: 0.7em 20px 0.1em 20px;
5372 max-width: calc(100% - 40px);
5373 font-family: 'Proxima Nova', sans-serif, 'Font Awesome';
5374 text-align: center;
5377 h1.listing a[href^="http"] {
5378 font-size: 0.6875em;
5379 top: 6px;
5380 color: #888;
5382 h1.listing a[href^='/posts'] {
5383 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5384 text-decoration: none;
5385 color: #690010;
5386 font-weight: 500;
5387 text-shadow: 0.5px 0.5px 0.5px #de7069;
5388 padding: 0 2px 1px 1px;
5391 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5392 h1.listing a[href^='/posts'] {
5393 max-width: calc(100% - 60px);
5394 padding: 2px 2px 1px 1px;
5396 h1.listing a:hover,
5397 h1.listing a:focus {
5398 text-shadow:
5399 0px 0px 0.5px #ff987b,
5400 0px 0px 1.5px #c05651,
5401 0.5px 0.5px 0.5px #de7069;
5402 background-color: rgba(255,255,250,0.85);
5404 h1.listing:focus-within::before {
5405 display: inline-block;
5406 vertical-align: top;
5407 position: relative;
5408 left: -0.125em;
5409 top: 1px;
5410 color: #690010;
5412 h1.listing a[href^="http"]:hover {
5413 color: #690010;
5414 text-shadow:
5415 0.5px 0.5px 0 #fff,
5416 -0.5px -0.5px 0 #fff,
5417 0 0 2px #fff,
5418 0 0 3px #00c;
5422 h1.listing .edit-post-link {
5423 padding: 5px 3px 36px 0.5em;
5424 top: 0;
5425 right: 0;
5427 h1.listing .edit-post-link:hover {
5428 text-decoration: none;
5430 #content.user-page h1.listing .edit-post-link {
5431 background-color: #fff;
5434 /*======*/
5435 /* SPAM */
5436 /*======*/
5438 h1.listing.spam {
5439 opacity: 0.1;
5441 h1.listing.spam + .post-meta {
5442 opacity: 0.25;
5444 h1.listing.spam:hover,
5445 h1.listing.spam + .post-meta:hover,
5446 h1.listing.spam:hover + .post-meta {
5447 opacity: 1.0;
5450 /*===================*/
5451 /* LISTING POST-META */
5452 /*===================*/
5454 h1.listing + .post-meta {
5455 justify-content: center;
5457 h1.listing + .post-meta > * {
5458 line-height: 1.5;
5460 h1.listing + .post-meta .post-section {
5461 order: 1;
5463 h1.listing + .post-meta .post-section::before {
5464 left: unset;
5466 h1.listing + .post-meta .link-post-domain {
5467 order: 2;
5468 flex-basis: 100%;
5471 /*============*/
5472 /* USER PAGES */
5473 /*============*/
5475 #content.user-page h1.page-main-heading {
5476 border-bottom: 1px solid #ccc;
5479 #content.user-page #top-nav-bar {
5480 margin: -0.5em 0 0.25em 0;
5481 grid-column: 1 / span 3;
5484 #content.user-page h1.listing {
5485 padding: 6px 6px 0 6px;
5486 max-width: 100%;
5487 margin: 1rem 0 0 0;
5489 #content.own-user-page h1.listing,
5490 h1.listing.own-post-listing {
5491 padding-right: 36px;
5493 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5494 #content.user-page h1.listing:focus-within::before {
5495 top: -2px;
5498 #content.user-page h1.listing::after {
5499 content: "";
5500 display: block;
5501 position: absolute;
5502 top: 0;
5503 left: 0;
5504 width: 100%;
5505 height: calc(100% + 1.25em);
5506 box-shadow: 0px 0px 10px #555;
5508 #content.user-page h1.listing.link-post-listing::after {
5509 height: calc(100% + 2.125em);
5511 #content.user-page h1.listing + .post-meta {
5512 margin: 6px 6px 1.5rem 35px;
5514 #content.user-page h1.listing + .post-meta::after {
5515 display: none;
5518 #content.conversations-user-page h1.listing {
5519 padding: 8px 6px;
5520 font-size: 1.75rem;
5522 #content.conversations-user-page h1.listing + .post-meta {
5523 padding: 6px 4px;
5524 margin: 0;
5527 .user-stats .karma-total {
5528 font-weight: bold;
5531 /*===============*/
5532 /* CONVERSATIONS */
5533 /*===============*/
5535 #content.conversation-page h1.page-main-heading {
5536 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5539 /*============*/
5540 /* LOGIN PAGE */
5541 /*============*/
5543 .login-container form input[type='submit'] {
5544 font-weight: bold;
5545 background-color: #eee;
5546 border: 1px solid #ccc;
5548 .login-container form input[type='submit']:hover,
5549 .login-container form input[type='submit']:focus {
5550 background-color: #ddd;
5551 border: 1px solid #aaa;
5554 /* “Create account” form */
5556 #signup-form {
5557 background-color: #f3f3f3;
5558 border: 1px solid #ddd;
5560 #signup-form input[type='submit'] {
5561 background-color: #e4e4e4;
5562 border: 1px solid #ccc;
5564 #signup-form input[type='submit']:hover {
5565 background-color: #d8d8d8;
5566 border: 1px solid #aaa;
5569 /* Log in tip */
5571 .login-container .login-tip {
5572 border: 1px solid #eee;
5575 /* Message box */
5577 .error-box {
5578 border: 1px solid red;
5579 background-color: #faa;
5581 .success-box {
5582 border: 1px solid green;
5583 background-color: #afa;
5586 /*=====================*/
5587 /* PASSWORD RESET PAGE */
5588 /*=====================*/
5590 .reset-password-container input[type='submit'] {
5591 background-color: #e4e4e4;
5592 border: 1px solid #ccc;
5593 font-weight: bold;
5596 /*===================*/
5597 /* TABLE OF CONTENTS */
5598 /*===================*/
5600 .contents {
5601 font-family: 'Proxima Nova', sans-serif;
5602 margin-left: 1.5em;
5603 font-family: Garamond Premier Pro;
5604 min-width: unset;
5606 .contents-head {
5607 font-weight: bold;
5609 .contents-head::after {
5610 content: "";
5611 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
5612 display: block;
5613 margin: 0 auto 0.5em auto;
5614 width: 75%;
5615 height: 1px;
5617 .contents a::after {
5618 display: none;
5620 .post-body .contents ul {
5621 margin: 0 0.5em;
5622 padding: 0 1em;
5624 .post-body .contents a,
5625 .post-body .contents a:visited {
5626 color: #690010;
5627 font-weight: 600;
5629 .post-body .contents a:hover {
5630 color: #690010;
5631 text-shadow:
5632 0px 0px 0.5px #ff987b,
5633 0px 0px 1px #c05651;
5634 border: none;
5636 .post-body .contents li::before {
5637 color: #999;
5638 font-feature-settings: 'onum';
5641 /*==================*/
5642 /* POSTS & COMMENTS */
5643 /*==================*/
5645 .post-body,
5646 .comment-body {
5647 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5649 h1.post-title {
5650 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5651 font-weight: 600;
5653 .post-body,
5654 .comment-body {
5655 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5656 font-weight: 500;
5657 line-height: 1.45;
5660 .post-body a,
5661 .post-body a:visited,
5662 .comment-body a,
5663 .comment-body a:visited {
5664 text-decoration: none;
5665 color: inherit;
5667 .post-body a:link::after,
5668 .post-body a:visited::after,
5669 .comment-body a:link::after,
5670 .comment-body a:visited::after {
5671 position: relative;
5672 content: "°";
5673 margin-left: 2px;
5674 margin-right: 1px;
5675 color: #933;
5677 .post-body a:hover,
5678 .comment-body a:hover {
5679 color: #999;
5680 border-bottom: 1px dotted #999;
5683 /*===========*/
5684 /* POST-META */
5685 /*===========*/
5687 .post-meta,
5688 h1.listing + .post-meta {
5689 text-align: center;
5690 font-weight: 300;
5692 .post-meta .post-section::before {
5693 color: #fff;
5694 top: -1px;
5695 text-shadow:
5696 1px 1px 0 #999,
5697 0 1px 0 #999,
5698 0 0 5px #999;
5699 margin: 0 0 0 0.5em;
5701 a.post-section:hover {
5702 text-decoration: none;
5704 .post-meta .post-section.alignment-forum::before {
5705 text-shadow:
5706 1px 1px 0 #b9bbff,
5707 0 1px 0 #b9bbff,
5708 0 0 5px #b9bbff;
5710 a.post-section.alignment-forum:hover::before {
5711 color: #e7e8ff;
5713 .post-meta > *,
5714 .comment-meta a {
5715 color: #999;
5717 .post-meta a:hover,
5718 .comment-meta a:hover {
5719 color: #333;
5720 text-shadow: 0px 0px 0.5px #333;=
5722 .bottom-post-meta {
5723 border-top: 1px solid #ddd;
5726 /*============*/
5727 /* LINK POSTS */
5728 /*============*/
5730 .post.link-post a.link-post-link {
5731 text-decoration: none;
5732 font-family: 'Proxima Nova', sans-serif;
5733 font-weight: 600;
5734 color: #77121a;
5736 .post.link-post a.link-post-link:hover {
5737 color: #942f2f;
5738 text-shadow:
5739 0px 0px 0.5px #ff987b,
5740 0px 0px 1.5px #c05651,
5741 0.5px 0.5px 0.5px #de7069;
5743 .post.link-post a.link-post-link:hover::before {
5744 color: #4879ec;
5745 text-shadow:
5746 0.5px 0.5px 0 #fff,
5747 -0.5px -0.5px 0 #fff,
5748 0 0 2px #fff,
5749 0 0 3px #00c;
5751 .post.link-post a.link-post-link:focus {
5752 text-shadow:
5753 0px 0px 0.5px #ff987b,
5754 0px 0px 1.5px #c05651,
5755 0.5px 0.5px 0.5px #de7069;
5758 /*=======*/
5759 /* POSTS */
5760 /*=======*/
5762 .post-body {
5763 font-size: 1.375rem;
5765 .post-page .post-meta::after {
5766 display: block;
5767 margin: 0.625em 0 0 0;
5768 font-size: 1.5rem;
5769 flex-basis: 100%;
5770 order: 2;
5772 .post-page .post-meta:first-of-type::after {
5773 content: "❦";
5775 .post-page .post-meta:last-of-type::after {
5776 content: "❖";
5777 font-size: 1.75rem;
5778 margin: 0.625em 0 0 0;
5780 .post-body {
5781 margin: 0;
5784 /*==========*/
5785 /* COMMENTS */
5786 /*==========*/
5788 #content > .comment-thread .comment-meta a.date:focus,
5789 #content > .comment-thread .comment-meta a.permalink:focus {
5790 color: #444;
5791 font-weight: normal;
5792 outline: 2px dotted #444;
5793 position: relative;
5794 background-color: #fff;
5795 padding: 0 5px;
5796 left: -5px;
5798 #content > .comment-thread .comment-meta a.date:focus + *,
5799 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5800 margin-left: -10px;
5802 .comment-item {
5803 border: 1px solid transparent;
5806 .comment-item {
5807 box-shadow:
5808 0 0 3px #bbb,
5809 0 0 5px #bbb,
5810 0 0 7px #bbb,
5811 0 0 10px #bbb;
5813 .comment-body {
5814 font-size: 1.25rem;
5817 /*================================*/
5818 /* DEEP COMMENT THREAD COLLAPSING */
5819 /*================================*/
5821 .comment-item input[id^="expand"] + label::after {
5822 color: #888;
5823 font-weight: 600;
5825 .comment-item input[id^="expand"] + label:hover::after {
5826 color: #c00;
5828 .comment-item input[id^="expand"] + label:active::after,
5829 .comment-item input[id^="expand"] + label:focus::after{
5830 color: #c00;
5832 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5833 border-width: 1px 0 0 0;
5835 .comment-item input[id^="expand"] ~ .comment-thread {
5836 max-height: 39px;
5837 padding-top: 5px;
5840 /*==============*/
5841 /* COMMENT-META */
5842 /*==============*/
5844 .comment-meta {
5845 font-weight: 300;
5846 padding-top: 5px;
5847 padding-bottom: 4px;
5848 border-bottom: 1px dotted #bbb;
5851 .comment-meta .author {
5852 font-size: 1.125em;
5853 color: #666;
5854 font-weight: 600;
5856 .comment-item .author:not(.redacted).original-poster::after {
5857 opacity: 0.8;
5860 .comment-item .karma.active-controls::after,
5861 .comment-item .karma .karma-value::after,
5862 .post .karma.active-controls::after,
5863 .post .karma .karma-value::after {
5864 background-color: #fff;
5865 color: #777;
5866 box-shadow: 0 0 0 1px #ccc inset;
5867 border-radius: 4px;
5869 .comment-item .karma.active-controls::after,
5870 .post .karma.active-controls::after {
5871 padding: 6px;
5872 bottom: -46px;
5874 .comment-item .karma .karma-value::after,
5875 .post .karma .karma-value::after {
5876 padding: 2px 8px;
5877 top: -26px;
5878 min-width: 64px;
5881 /*====================*/
5882 /* ANTI-KIBITZER MODE */
5883 /*====================*/
5885 .author.redacted,
5886 .inline-author.redacted {
5887 opacity: 0.8;
5888 font-weight: 300;
5891 .karma-value.redacted {
5892 opacity: 0.5;
5895 .link-post-domain.redacted {
5896 opacity: 0.5;
5899 /*===========================*/
5900 /* COMMENT THREAD NAVIGATION */
5901 /*===========================*/
5903 a.comment-parent-link::after {
5904 display: none;
5906 a.comment-parent-link::before {
5907 color: #bbb;
5909 a.comment-parent-link:hover::before {
5910 color: #999;
5911 text-shadow: none;
5912 background-image: linear-gradient(to right, transparent 0%, #bbb 100%);
5913 background-repeat: no-repeat;
5914 box-shadow: 1px 0 0 0 #bbb;
5917 .comment-child-link::before {
5918 color: #ccc;
5921 .comment-item-highlight {
5922 box-shadow:
5923 0 0 2px #e7b200,
5924 0 0 3px #e7b200,
5925 0 0 5px #e7b200,
5926 0 0 7px #e7b200,
5927 0 0 10px #e7b200;
5928 border: 1px solid #e7b200;
5930 .comment-item-highlight-faint {
5931 box-shadow:
5932 0 0 2px #f8e7b5,
5933 0 0 3px #f8e7b5,
5934 0 0 5px #f8e7b5,
5935 0 0 7px #f8e7b5,
5936 0 0 10px #f8e7b5;
5937 border: 1px solid #f8e7b5;
5940 .comment-popup {
5941 background-color: #fff;
5944 /*====================*/
5945 /* COMMENT PERMALINKS */
5946 /*====================*/
5948 .comment-meta .permalink,
5949 .comment-meta .lw2-link,
5950 .individual-thread-page .comment-parent-link:empty {
5951 filter: grayscale(50%);
5953 .comment-meta .permalink:hover,
5954 .comment-meta .lw2-link:hover,
5955 .individual-thread-page .comment-parent-link:empty:hover {
5956 filter: unset;
5959 /*=======================*/
5960 /* COMMENTS COMPACT VIEW */
5961 /*=======================*/
5963 #comments-list-mode-selector button {
5964 box-shadow:
5965 0 0 0 4px #fff inset,
5966 0 0 0 5px #bbb inset;
5968 #comments-list-mode-selector button:hover,
5969 #comments-list-mode-selector button.selected {
5970 box-shadow:
5971 0 0 0 5px #bbb inset;
5973 #content.compact > .comment-thread .comment-item {
5974 max-height: 56px;
5976 #content.compact > .comment-thread .comment-item::after {
5977 color: #888;
5978 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
5981 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5982 #content.compact > .comment-thread .comment-item:hover .comment,
5983 #content.compact > .comment-thread .comment-item.expanded .comment {
5984 background-color: #fff;
5985 outline: 3px solid #888;
5987 #content.compact > .comment-thread .comment-item:hover .comment::before,
5988 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5989 background-color: #fff;
5990 box-shadow:
5991 0 0 3px #fff,
5992 0 0 5px #fff,
5993 0 0 7px #fff,
5994 0 0 10px #fff,
5995 0 0 20px #fff,
5996 0 0 30px #fff,
5997 0 0 40px #fff;
6000 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6001 #content.compact > .comment-thread.expanded .comment-item .comment {
6002 background-color: #fff;
6003 outline: 3px solid #888;
6005 #content.compact > .comment-thread.expanded .comment-item .comment::before {
6006 background-color: #fff;
6007 box-shadow:
6008 0 0 3px #fff,
6009 0 0 5px #fff,
6010 0 0 7px #fff,
6011 0 0 10px #fff,
6012 0 0 20px #fff,
6013 0 0 30px #fff,
6014 0 0 40px #fff;
6018 #content.user-page.compact > h1.listing {
6019 margin-top: 0.5rem;
6021 #content.user-page.compact > h1.listing + .post-meta {
6022 margin-bottom: 1rem;
6025 /*===========================*/
6026 /* HIGHLIGHTING NEW COMMENTS */
6027 /*===========================*/
6029 .new-comment::before {
6030 outline: 2px solid #5a5;
6031 box-shadow:
6032 0 0 6px -2px #5a5 inset,
6033 0 0 4px #5a5,
6034 0 0 6px #5a5;
6037 /*=================================*/
6038 /* COMMENT THREAD MINIMIZE BUTTONS */
6039 /*=================================*/
6041 .comment-minimize-button {
6042 color: #ccc;
6044 .comment-minimize-button:hover {
6045 color: #aaa;
6047 .comment-minimize-button::after {
6048 font-family: 'Proxima Nova', sans-serif;
6049 color: #777;
6051 .comment-minimize-button.maximized::after {
6052 color: #ccc;
6055 /*=================================*/
6056 /* INDIVIDUAL COMMENT THREAD PAGES */
6057 /*=================================*/
6059 .individual-thread-page > h1 a {
6060 color: #690010;
6062 .individual-thread-page > h1 a:hover {
6063 text-shadow:
6064 0px 0px 0.5px #ff987b,
6065 0px 0px 1.5px #c05651,
6066 0.5px 0.5px 0.5px #de7069;
6069 .individual-thread-page > h1 {
6070 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6073 /*==============*/
6074 /* VOTE BUTTONS */
6075 /*==============*/
6077 .upvote,
6078 .downvote {
6079 color: #bbb;
6080 position: relative;
6082 .vote::before {
6083 position: relative;
6084 z-index: 1;
6086 .upvote::before {
6087 content: "\F077";
6088 top: 1px;
6090 .downvote::before {
6091 content: "\F078";
6092 position: relative;
6093 left: -2px;
6095 .upvote:hover,
6096 .upvote.selected {
6097 text-shadow:
6098 0 0 0.5px #fff,
6099 0 0 8px #0f0;
6101 .downvote:hover,
6102 .downvote.selected {
6103 text-shadow:
6104 0 0 0.5px #fff,
6105 0 0 8px #f00;
6108 .vote::after {
6109 position: absolute;
6110 color: transparent;
6112 .vote:not(:hover)::after {
6113 text-shadow: none;
6115 .karma.waiting .vote.big-vote::after {
6116 color: transparent;
6118 .vote.big-vote::after,
6119 .vote:not(.big-vote).clicked-twice::after {
6120 color: inherit;
6122 .karma:not(.waiting) .vote.clicked-once::after {
6123 color: #bbb;
6126 .upvote::after {
6127 content: "\F325";
6128 left: 7px;
6129 bottom: 4px;
6131 .downvote::after {
6132 content: "\F322";
6133 left: 5px;
6134 top: 4px;
6136 @-moz-document url-prefix() {
6137 .upvote::after {
6138 bottom: 2px;
6139 left: 8px;
6141 .downvote::after {
6142 top: 3px;
6143 left: 6px;
6147 /*===========================*/
6148 /* COMMENTING AND POSTING UI */
6149 /*===========================*/
6151 .comments > .comment-controls {
6152 margin: 0;
6154 .posting-controls input[type='submit'] {
6155 background-color: #fff;
6156 border: 1px solid #aaa;
6157 font-weight: bold;
6159 .posting-controls input[type='submit']:hover,
6160 .posting-controls input[type='submit']:focus {
6161 background-color: #ddd;
6162 border: 1px solid #999;
6164 .comment + .comment-controls .action-button {
6165 font-weight: 300;
6168 .comment-controls .cancel-comment-button {
6169 font-weight: 600;
6170 color: #c00;
6171 text-shadow:
6172 0 0 1px #fff,
6173 0 0 2px #fff;
6175 .comment-controls .cancel-comment-button:hover {
6176 color: #f00;
6179 .new-comment-button {
6180 font-weight: 600;
6183 .comment-controls .delete-button,
6184 .comment-controls .retract-button {
6185 color: #d00;
6187 .comment-controls .delete-button::before {
6188 opacity: 0.6;
6189 font-weight: 400;
6191 .comment-controls .retract-button::before {
6192 opacity: 0.5;
6193 font-weight: 400;
6195 .comment-controls .edit-button,
6196 .comment-controls .unretract-button {
6197 color: #0a0;
6199 .comment-controls .edit-button::before,
6200 .comment-controls .unretract-button::before {
6201 font-weight: 400;
6203 .comment-controls .action-button:hover {
6204 color: #f00;
6205 text-shadow:
6206 0px 0px 0.5px #fff,
6207 0px 0px 1.5px #800,
6210 .post-controls {
6211 margin: 0.5em -0.75em 0 0;
6213 .edit-post-link,
6214 .edit-post-link:visited {
6215 color: #090;
6218 .posting-controls textarea {
6219 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6220 font-size: 1.25rem;
6221 font-weight: 500;
6222 color: #000;
6223 background-color: #fff;
6224 border-color: #aaa;
6225 box-shadow:
6226 0 0 0 1px #eee inset;
6228 .posting-controls textarea:focus {
6229 background-color: #ffd;
6230 border-color: #888;
6231 box-shadow:
6232 0 0 0 1px #ddf inset,
6233 0 0 0 1px #fff,
6234 0 0 0 2px #888;
6236 .posting-controls.edit-existing-post textarea:focus,
6237 .posting-controls form.edit-existing-comment textarea:focus {
6238 border-color: #090;
6239 box-shadow:
6240 0 0 0 1px #81ff7f inset,
6241 0 0 0 1px #fff,
6242 0 0 0 2px #090;
6245 /* GUIEdit buttons */
6247 .guiedit-buttons-container {
6248 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6251 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6252 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6253 color: #050;
6255 .guiedit-buttons-container button {
6256 font-family: Font Awesome, 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6259 .guiedit::after {
6260 font-family: 'Proxima Nova', sans-serif;
6261 color: #777;
6262 text-shadow: none;
6265 /* Markdown hints */
6267 #markdown-hints-checkbox + label {
6268 color: #888;
6270 #markdown-hints-checkbox + label:hover {
6271 color: #e00;
6273 #markdown-hints {
6274 border: 1px solid #c00;
6275 background-color: #ffa;
6278 /*================*/
6279 /* EDIT POST FORM */
6280 /*================*/
6282 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6283 border-radius: 3px;
6284 border: 1px solid #ddd;
6285 color: #777;
6287 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover,
6288 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label {
6289 text-shadow:
6290 0 0 1px #fff,
6291 0 0 2px #fff,
6292 0 0 2.5px #aaa;
6294 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6295 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6296 border-color: #aaa;
6298 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6299 content: "\F00C";
6301 #edit-post-form input[type='radio'] + label {
6302 color: #777;
6303 border-color: #ddd;
6305 #edit-post-form input[type='radio'][value='all'] + label {
6306 border-radius: 8px 0 0 8px;
6307 border-width: 1px;
6309 #edit-post-form input[type='radio'][value='drafts'] + label {
6310 border-radius: 0 8px 8px 0;
6312 #edit-post-form input[type='radio'] + label:hover,
6313 #edit-post-form input[type='radio']:focus + label {
6314 background-color: #ddd;
6315 color: #000;
6317 #edit-post-form input[type='radio']:focus + label {
6318 color: #000;
6319 box-shadow:
6320 0 0 0 1px #aaa;
6322 #edit-post-form input[type='radio']:checked + label {
6323 background-color: #ddd;
6324 border-color: #ddd;
6325 color: #000;
6326 text-shadow:
6327 0 -1px 0 #fff,
6328 0 0.5px 0.5px #000;
6331 /*=======*/
6332 /* LINKS */
6333 /*=======*/
6336 text-decoration: none;
6337 color: #888;
6339 a:visited {
6340 color: #888;
6343 /*=========*/
6344 /* BUTTONS */
6345 /*=========*/
6347 button,
6348 input[type='submit'] {
6349 color: #888;
6352 button:active,
6353 input[type='submit']:active {
6354 color: #f00;
6355 transform: scale(0.9);
6357 .button:visited {
6358 color: #888;
6360 .button:active {
6361 transform: scale(0.9);
6363 @-moz-document url-prefix() {
6364 .button:active {
6365 transform: none;
6368 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6369 button:hover,
6370 input[type='submit']:hover,
6371 button:focus,
6372 input[type='submit']:focus {
6373 color: #333;
6374 text-shadow: 0px 0px 0.5px #333;
6377 .button:hover {
6378 color: #333;
6379 text-shadow: 0px 0px 0.5px #333;
6380 text-decoration: none;
6382 .button:focus:not(:hover) {
6383 transform: none;
6387 /*==========*/
6388 /* HEADINGS */
6389 /*==========*/
6391 .post-body h1,
6392 .post-body h2,
6393 .post-body h3,
6394 .post-body h4,
6395 .post-body h5,
6396 .post-body h6,
6397 .comment-body h1,
6398 .comment-body h2,
6399 .comment-body h3,
6400 .comment-body h4,
6401 .comment-body h5,
6402 .comment-body h6 {
6403 margin: 1.5em 0 0.25em 0;
6405 .post-body h4,
6406 .comment-body h4 {
6407 font-size: 1.15em;
6409 .post-body h3,
6410 .comment-body h3 {
6411 font-variant: small-caps;
6412 font-size: 1.3em;
6414 .post-body h2,
6415 .comment-body h2 {
6416 font-style: italic;
6417 font-size: 1.5em;
6419 .post-body h1,
6420 .comment-body h1 {
6421 font-size: 1.9em;
6422 border: none;
6424 .post-body h1 {
6425 text-align: center;
6426 margin: 1em 0 0 0;
6428 .post-body h2 {
6429 margin: 1em 0 0 0;
6431 .post-body h1::before {
6432 content: "❦";
6433 display: block;
6434 margin: 0 auto 1em auto;
6435 font-size: 0.625em;
6436 font-weight: normal;
6438 .post-body h2::before {
6439 content: "☙";
6440 text-align: center;
6441 display: block;
6442 margin: 0 auto 0.5em auto;
6443 font-weight: normal;
6444 font-style: normal;
6446 .post-body h1:first-child::before,
6447 .post-body .contents + h1::before,
6448 .post-body h2:first-child::before,
6449 .post-body .contents + h2::before {
6450 content: "";
6453 /*========*/
6454 /* QUOTES */
6455 /*========*/
6457 blockquote {
6458 border-left: 5px solid #ccc;
6461 /*========*/
6462 /* IMAGES */
6463 /*========*/
6465 #content img {
6466 border: 1px solid #ccc;
6468 #content img[style^='float'] {
6469 border: 1px solid transparent;
6471 #content img[src$='.svg'] {
6472 border: none;
6474 #content figure img {
6475 border: 1px solid #000;
6477 #content figure img[src$='.svg'] {
6478 border: none;
6481 /*========*/
6482 /* TABLES */
6483 /*========*/
6485 .post-body table,
6486 .comment-body table,
6487 .post-body table th,
6488 .post-body table td,
6489 .comment-body table th,
6490 .comment-body table td {
6491 border: 1px solid #ddd;
6494 /*======*/
6495 /* MISC */
6496 /*======*/
6498 hr {
6499 height: 1px;
6500 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6503 code,
6504 pre {
6505 font-family: Triplicate Code, Courier, Courier New, monospace;
6506 font-size: 0.8125em;
6509 pre {
6510 border: 1px solid #ceccc3;
6511 background-color: #f6f4ea;
6512 border-radius: 4px;
6513 padding: 0 1px;
6516 input[type='text'],
6517 input[type='search'],
6518 input[type='password'] {
6519 background-color: transparent;
6520 border: 1px solid #ccc;
6521 color: #000;
6523 input[type='text']:focus,
6524 input[type='search']:focus,
6525 input[type='password']:focus {
6526 background-color: #ffd;
6527 border: 1px solid #bbb;
6528 box-shadow: 0 0 1px #bbb;
6531 select {
6532 color: #000;
6535 /*============*/
6536 /* ABOUT PAGE */
6537 /*============*/
6539 .about-page mark {
6540 background-color: #e6e6e6;
6541 text-decoration: none;
6542 box-shadow:
6543 0 -1px 0 0 #000 inset,
6544 0 -3px 1px -2px #000 inset;
6545 padding: 0 1px;
6548 #content.about-page .accesskey-table {
6549 font-family: 'Proxima Nova', sans-serif;
6550 border-color: #ddd;
6553 #content.about-page img {
6554 border: 1px solid #000;
6557 /*========================*/
6558 /* QUALIFIED HYPERLINKING */
6559 /*========================*/
6561 #aux-about-link a {
6562 color: #777;
6564 #aux-about-link a:hover {
6565 opacity: 1.0;
6568 .qualified-linking label {
6569 color: #bbb;
6571 .qualified-linking label:hover {
6572 color: #333;
6573 text-shadow: 0px 0px 0.5px #333;
6576 .qualified-linking-toolbar {
6577 border: 1px solid #000;
6578 background-color: #fff;
6580 .qualified-linking-toolbar a {
6581 background-color: #eee;
6582 border: 1px solid #ccc;
6583 border-radius: 4px;
6585 .qualified-linking-toolbar a:visited {
6586 color: #888;
6588 .qualified-linking-toolbar a:hover {
6589 text-decoration: none;
6590 background-color: #ddd;
6592 .qualified-linking label::after {
6593 background-color: #fffffa;
6594 opacity: 0.8;
6597 /*======*/
6598 /* MATH */
6599 /*======*/
6601 .mathjax-block-container::-webkit-scrollbar {
6602 height: 12px;
6603 background-color: #f6f6ff;
6604 border-radius: 6px;
6605 border: 1px solid #ddf;
6607 .mathjax-block-container::-webkit-scrollbar-thumb {
6608 background-color: #dde;
6609 border-radius: 6px;
6610 border: 1px solid #cce;
6612 .mathjax-inline-container::-webkit-scrollbar {
6613 height: 8px;
6614 background-color: #f6f6ff;
6615 border-radius: 4px;
6616 border: 1px solid #ddf;
6618 .mathjax-inline-container::-webkit-scrollbar-thumb {
6619 background-color: #dde;
6620 border-radius: 4px;
6621 border: 1px solid #cce;
6624 /*=================*/
6625 /* ALIGNMENT FORUM */
6626 /*=================*/
6628 #content.alignment-forum-index-page::before {
6629 background-color: #f4f5ff;
6630 border-color: #bbb;
6631 border-style: solid;
6632 border-width: 0 1px;
6634 #content.alignment-forum-index-page::after {
6635 grid-column: 1;
6636 font-family: "Concourse SmallCaps";
6637 font-weight: 600;
6638 background-color: #7f85b2;
6639 color: transparent;
6640 -webkit-background-clip: text;
6641 text-shadow:
6642 rgba(255,255,255,0.5) 0px 3px 3px;
6644 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6645 #content.alignment-forum-index-page h1.listing a:hover,
6646 #content.alignment-forum-index-page h1.listing a:focus {
6647 background-color: rgba(244,245,255,0.85);
6651 /*====================*/
6652 /* FOR NARROW SCREENS */
6653 /*====================*/
6655 @media only screen and (max-width: 1440px) {
6656 #hns-date-picker {
6657 background-color: #fffffa;
6658 opacity: 1.0;
6661 @media only screen and (max-width: 1160px) {
6662 #theme-selector:hover::after {
6663 background-color: #bbb;
6664 width: calc(6em - 13px);
6667 @media only screen and (max-width: 1080px) {
6668 #text-size-adjustment-ui button {
6669 border: 1px solid #999;
6670 padding: 0 0 0 1px;
6671 border-radius: 50%;
6672 box-shadow:
6673 0 0 6px #999 inset,
6674 0 0 0 1px transparent;
6676 #theme-tweaker-toggle button {
6677 border: 1px solid #999;
6678 box-shadow:
6679 0 0 10px #999 inset,
6680 0 0 0 1px transparent;
6681 border-radius: 50%;
6682 transform: scale(0.8);
6685 @media only screen and (max-width: 1000px) {
6686 #theme-selector:hover::after {
6687 width: calc(6em - 9px);
6688 height: calc(100% - 5px);
6689 top: 3px;
6690 left: 100%;
6692 #text-size-adjustment-ui button {
6693 background-color: #ddd;
6695 #text-size-adjustment-ui button:hover {
6696 background-color: #eee;
6698 #theme-tweaker-toggle button {
6699 background-color: #ddd;
6703 /*========*/
6704 /* MOBILE */
6705 /*========*/
6707 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6708 #ui-elements-container > div[id$='-ui-toggle'] button {
6709 color: #bbb;
6710 text-shadow:
6711 0 0 1px #fffffa,
6712 0 0 3px #fffffa,
6713 0 0 5px #fffffa,
6714 0 0 10px #fffffa,
6715 0 0 20px #fffffa,
6716 0 0 30px #fffffa;
6719 #theme-selector {
6720 background-color: #fffffa;
6721 box-shadow:
6722 0 0 0 1px #ccc,
6723 0 0 1px 3px #fffffa,
6724 0 0 3px 3px #fffffa,
6725 0 0 5px 3px #fffffa,
6726 0 0 10px 3px #fffffa,
6727 0 0 20px 3px #fffffa;
6728 border-radius: 8px;
6730 #theme-selector::before {
6731 color: #999;
6732 font-weight: 300;
6733 text-shadow: 0.5px 0.5px 0 #fff;
6735 #theme-selector button {
6736 background-color: #fffffa;
6737 border-radius: 8px;
6739 #theme-selector button::after {
6740 color: #777;
6741 max-width: calc(100% - 3.5em);
6742 overflow: hidden;
6743 text-overflow: ellipsis;
6745 #theme-selector button.selected::after {
6746 color: #222;
6747 text-shadow:
6748 0 -1px 0 #fff,
6749 0 0.5px 0.5px #000;
6751 #theme-selector .theme-selector-close-button {
6752 color: #fffffa;
6753 text-shadow:
6754 1px 1px 0 #ccc,
6755 0 0 8px #ccc;
6756 opacity: 1.0;
6759 #quick-nav-ui {
6760 background-color: #fffffa;
6762 #quick-nav-ui,
6763 #new-comment-nav-ui,
6764 #hns-date-picker {
6765 box-shadow:
6766 0 0 1px 3px #fffffa,
6767 0 0 3px 3px #fffffa,
6768 0 0 5px 3px #fffffa,
6769 0 0 10px 3px #fffffa,
6770 0 0 20px 3px #fffffa;
6772 #quick-nav-ui a::after,
6773 #new-comment-nav-ui::before {
6774 font-family: 'Proxima Nova', sans-serif;
6775 font-weight: bold;
6776 box-shadow:
6777 0 0 1px 0 #fffffa,
6778 0 0 3px 0 #fffffa,
6779 0 0 5px 0 #fffffa;
6780 background-color: #fffffa;
6781 border-radius: 4px;
6783 #quick-nav-ui,
6784 #new-comment-nav-ui {
6785 border-radius: 8px;
6787 #new-comment-nav-ui {
6788 background-color: #fffffa;
6789 border: 1px solid #ccc;
6791 #new-comment-nav-ui::before {
6792 color: #777;
6793 font-weight: 600;
6795 #new-comment-nav-ui .new-comment-sequential-nav-button {
6796 box-shadow: 0 0 0 1px #ccc;
6797 color: #777;
6799 #new-comment-nav-ui .new-comments-count {
6800 background-color: inherit;
6801 box-shadow: 0 -1px 0 0 #ccc;
6803 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6804 border-radius: 7px 0 0 7px;
6806 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6807 border-radius: 0 7px 7px 0;
6809 #new-comment-nav-ui button::after {
6810 font-family: 'Proxima Nova', sans-serif;
6813 /*****************************************/
6814 @media only screen and (max-width: 900px) {
6815 /*****************************************/
6816 h1.listing {
6817 line-height: 1;
6819 h1.listing + .post-meta .post-section::before {
6820 position: unset;
6822 h1.listing + .post-meta .post-section {
6823 overflow: visible;
6826 #secondary-bar .nav-inner {
6827 font-size: 1.125em;
6829 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
6830 padding: 6px 10px;
6833 #top-nav-bar .page-number {
6834 padding-top: 11px;
6836 #top-nav-bar::after {
6837 margin: 0 auto;
6840 .archive-nav *[class^='archive-nav-item-'] {
6841 border-width: 1px !important;
6843 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6844 background-color: #bbb;
6847 .comment-item .comment-item {
6848 margin: 0.75em 3px 3px 6px;
6850 .comment-item .comment-item + .comment-item {
6851 margin: 1.5em 3px 3px 6px;
6854 .sublevel-nav:not(.sort) .sublevel-item,
6855 .sublevel-nav:not(.sort) .sublevel-item:first-child,
6856 .sublevel-nav:not(.sort) .sublevel-item:last-child {
6857 border-radius: 8px;
6858 border-width: 1px;
6859 margin: 2px;
6862 .contents {
6863 margin-left: auto;
6865 /*******************************************/
6866 } @media only screen and (max-width: 720px) {
6867 /*******************************************/
6868 /*******************************************/
6869 } @media only screen and (max-width: 520px) {
6870 /*******************************************/
6871 h1.listing {
6872 font-size: 1.5rem;
6873 margin: 18px 6px 4px 6px;
6874 max-width: calc(100% - 12px);
6876 h1.listing + .post-meta {
6877 margin: 4px 6px;
6879 h1.listing + .post-meta > * {
6880 line-height: 1.4;
6882 h1.listing a[href^='http'] {
6883 top: 4px;
6886 #content.user-page h1.listing::after {
6887 height: calc(100% + 2.375em);
6889 #content.user-page h1.listing.link-post-listing::after {
6890 height: calc(100% + 3.375em);
6892 #content.user-page h1.listing + .post-meta {
6893 margin-bottom: 1.5rem;
6896 #content.compact > .comment-thread .comment-item {
6897 max-height: 104px;
6899 #content.compact.user-page h1.listing {
6900 margin-top: 0.5rem;
6902 #content.compact.user-page h1.listing + .post-meta {
6903 margin-bottom: 0.75rem;
6906 .comment-body {
6907 font-size: 1.1875rem;
6908 line-height: 1.35;
6911 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6912 padding: 5px 6px 6px 6px;
6913 font-weight: 600;
6915 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6916 box-shadow:
6917 0 0 0 1px #c00,
6918 0 0 0 1px #c00 inset;
6919 color: #c00;
6920 border-color: transparent;
6922 .textarea-container:focus-within .guiedit-buttons-container {
6923 background-color: #fff;
6924 border-top: 1px solid #ddf;
6926 #content.conversation-page .textarea-container:focus-within::after {
6927 background-color: #fff;
6929 .textarea-container:focus-within .guiedit-mobile-auxiliary-button,
6930 .textarea-container:focus-within button.guiedit {
6931 border: 1px solid #bbb;
6932 border-radius: 6px;
6934 #markdown-hints::after {
6935 color: #090;
6938 #edit-post-form label[for='section'] {
6939 width: 4.3em;
6941 #edit-post-form input[name='title'],
6942 #edit-post-form input[name='url'] {
6943 max-width: calc(100% - 6.75em);
6945 #edit-post-form textarea {
6946 min-height: calc(100vh - 360px);