Further edit-post-form layout fixing, VI
[lw2-viewer.git] / www / style-brutalist.linux.css
blob3ad8424bdf792d0945d837f8731270f9903a4b6e
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);
2527 align-self: start;
2529 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
2530 content: "";
2531 font-family: Font Awesome;
2532 font-size: 1.375rem;
2533 line-height: 0.7;
2534 text-indent: 1px;
2535 font-weight: 900;
2536 position: absolute;
2537 width: 20px;
2538 height: 20px;
2539 left: 5px;
2541 #edit-post-form label[for='url'],
2542 #edit-post-form input[name='url'] {
2543 display: none;
2545 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2546 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2547 display: initial;
2549 #edit-post-form label {
2550 line-height: normal;
2551 border: 1px solid transparent;
2552 text-align: right;
2553 padding: 0.25em 0.5em;
2554 white-space: nowrap;
2556 #edit-post-form input[type='radio'] {
2557 width: 0;
2558 margin: 0;
2559 opacity: 0;
2560 pointer-events: none;
2562 #edit-post-form input[type='radio'] + label {
2563 padding: 4px 12px;
2564 text-align: center;
2565 border-style: solid;
2566 border-width: 1px 1px 1px 0;
2567 cursor: pointer;
2569 #edit-post-form input[type='radio']:checked + label {
2570 cursor: default;
2573 #edit-post-form label[for='section'] {
2574 grid-row: 3;
2576 #edit-post-form input[type='radio'] + label {
2577 grid-row: 3;
2579 @supports (width: -moz-fit-content) {
2580 #edit-post-form input[type='radio'] + label {
2581 width: -moz-fit-content;
2584 @supports (width: fit-content) {
2585 #edit-post-form input[type='radio'] + label {
2586 width: fit-content;
2590 #edit-post-form textarea {
2591 min-height: 24em;
2594 #edit-post-form input[type='submit'] {
2595 padding: 6px 12px;
2596 float: right;
2598 #edit-post-form #markdown-hints {
2599 top: calc(100% + 2em);
2602 #edit-post-form button.guiedit div {
2603 overflow: visible;
2605 .guiedit-mobile-auxiliary-button {
2606 display: none;
2609 /***********/
2610 /* BUTTONS */
2611 /***********/
2613 button,
2614 input[type='submit'] {
2615 font-family: inherit;
2616 font-size: inherit;
2617 background-color: inherit;
2618 cursor: pointer;
2619 border: none;
2620 border-radius: 0;
2623 /************/
2624 /* HEADINGS */
2625 /************/
2627 .post-body h1,
2628 .post-body h2,
2629 .post-body h3,
2630 .post-body h4,
2631 .post-body h5,
2632 .post-body h6,
2633 .comment-body h1,
2634 .comment-body h2,
2635 .comment-body h3,
2636 .comment-body h4,
2637 .comment-body h5,
2638 .comment-body h6 {
2639 line-height: 1.1;
2640 margin: 1em 0 0.75em 0;
2641 text-align: left;
2644 .post-body h5,
2645 .post-body h6,
2646 .comment-body h5,
2647 .comment-body h6 {
2648 font-size: 1em;
2650 .post-body h4,
2651 .comment-body h4 {
2652 font-size: 1.2em;
2654 .post-body h3,
2655 .comment-body h3 {
2656 font-size: 1.4em;
2658 .post-body h2,
2659 .comment-body h2 {
2660 font-size: 1.75em;
2662 .post-body h1,
2663 .comment-body h1 {
2664 font-size: 2.1em;
2667 /**********/
2668 /* QUOTES */
2669 /**********/
2671 blockquote,
2672 .post-body .comment-box .comment-body {
2673 font-size: 0.9em;
2674 margin: 1em 0;
2675 padding-left: 0.5em;
2676 margin-left: 1px;
2677 padding-bottom: 3px;
2679 blockquote *:first-child {
2680 margin-top: 0;
2682 blockquote *:last-child {
2683 margin-bottom: 0;
2685 blockquote blockquote {
2686 font-size: 0.95em;
2689 /* Pseudo-blockquotes that LW sometimes uses for some reason */
2691 .post-body .comment-box .user-name {
2692 font-style: italic;
2694 .post-body .comment-box .user-name::after {
2695 content: ":";
2697 .post-body .comment-box {
2698 zoom: 1.25;
2701 /**********/
2702 /* IMAGES */
2703 /**********/
2705 #content img {
2706 max-width: 100%;
2709 img.inline-latex {
2710 position: relative;
2711 top: 2.5px;
2712 margin: 0 2px;
2715 #content figure {
2716 text-align: center;
2717 margin: 1.5em auto;
2720 p.imgonly,
2721 div.imgonly {
2722 text-align: center;
2725 /**********/
2726 /* TABLES */
2727 /**********/
2729 .post-body table,
2730 .comment-body table {
2731 border-collapse: collapse;
2732 font-family: Inconsolata, Menlo, monospace;
2733 font-size: 0.875em;
2735 .post-body table th,
2736 .post-body table td,
2737 .comment-body table th,
2738 .comment-body table td {
2739 text-align: left;
2740 padding: 4px 6px;
2741 line-height: 1.3;
2743 .post-body table td:nth-of-type(n+2),
2744 .comment-body table td:nth-of-type(n+2) {
2745 text-align: right;
2747 .post-body table caption,
2748 .comment-body table caption {
2749 margin: 0 0 0.25em 0;
2750 font-weight: bold;
2751 font-size: 1.125em;
2754 /********/
2755 /* MISC */
2756 /********/
2758 /*= Superscripts & subscripts =*/
2760 /* Make sure superscripts and subscripts do not affect line spacing. */
2761 sup, sub {
2762 vertical-align: baseline;
2763 position: relative;
2764 top: -0.5em;
2765 left: 0.05em;
2766 font-size: 0.8em;
2768 sub {
2769 top: 0.3em;
2772 /*= Code blocks & other "unstyled" text. =*/
2774 pre,
2775 code {
2776 font-family: Inconsolata, Menlo, monospace;
2778 pre {
2779 white-space: pre-wrap;
2781 code {
2782 font-size: 0.95em;
2783 display: inline-block;
2784 padding: 0 4px 1px 5px;
2786 pre > code {
2787 display: block;
2788 border-radius: 0;
2789 padding: 3px 4px 5px 8px;
2792 /*= Fractions =*/
2794 .frac::after {
2795 content: "\200B";
2798 /*= Removing browser default styling of various elements =*/
2800 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
2801 :focus {
2802 outline: none;
2805 /* Remove "embossed" appearance of horizontal rules. */
2806 hr {
2807 border: none;
2810 input,
2811 button,
2812 textarea {
2813 -webkit-appearance: none;
2814 -moz-appearance: none;
2815 appearance: none;
2818 input {
2819 font-family: inherit;
2820 font-size: inherit;
2821 font-weight: inherit;
2824 /*************/
2825 /* FOOTNOTES */
2826 /*************/
2828 ol {
2829 counter-reset: ordered-list;
2831 .footnote-definition {
2832 font-size: 0.9em;
2833 list-style-type: none;
2834 counter-increment: ordered-list;
2835 position: relative;
2837 .footnote-definition p {
2838 font-size: inherit !important;
2840 .footnote-definition::before {
2841 content: counter(ordered-list) ".";
2842 position: absolute;
2843 left: -2.5em;
2844 font-weight: bold;
2845 text-align: right;
2846 width: 2em;
2849 /*********/
2850 /* LISTS */
2851 /*********/
2853 li {
2854 margin-bottom: 0.5em;
2857 .post-body ol p,
2858 .post-body ul p,
2859 .comment-body ol p,
2860 .comment-body ul p {
2861 margin: 0.5em 0;
2864 .post-body ol {
2865 list-style: none;
2866 padding: 0;
2867 counter-reset: ol;
2869 .post-body ol > li {
2870 position: relative;
2871 counter-increment: ol;
2872 padding: 0 0 0 2.5em;
2873 margin: 0.25em 0 0 0;
2875 .post-body ol > li::before {
2876 content: counter(ol) ".";
2877 position: absolute;
2878 width: 2em;
2879 text-align: right;
2880 left: 0;
2882 .post-body ul {
2883 list-style: none;
2884 padding: 0;
2886 .post-body ul:not(.contents-list) li {
2887 position: relative;
2888 padding: 0 0 0 2.5em;
2889 margin: 0.25em 0 0 0;
2891 .post-body ul:not(.contents-list) li::before {
2892 content: "•";
2893 position: absolute;
2894 width: 2em;
2895 text-align: right;
2896 left: 0;
2898 .post-body li > ul:first-child > li {
2899 padding-left: 0;
2901 .post-body li > ul:first-child > li::before {
2902 content: none;
2905 /**************/
2906 /* ABOUT PAGE */
2907 /**************/
2909 #content.about-page .contents {
2910 margin-top: 0.25em;
2912 #content.about-page .accesskey-table {
2913 border-collapse: collapse;
2914 margin: auto;
2916 #content.about-page .accesskey-table th,
2917 #content.about-page .accesskey-table td {
2918 padding: 2px 6px;
2920 #content.about-page .accesskey-table td:first-child {
2921 padding-right: 1.5em;
2923 #content.about-page .accesskey-table td:last-child {
2924 text-align: center;
2925 font-family: Inconsolata, Menlo, monospace;
2927 #content.about-page h3:nth-of-type(n+2) {
2928 clear: both;
2931 /******************/
2932 /* IMAGES OVERLAY */
2933 /******************/
2935 #images-overlay + #content .post-body img {
2936 visibility: hidden;
2939 #images-overlay div {
2940 position: absolute;
2942 #images-overlay div::after {
2943 content: "Click to enlarge";
2944 display: block;
2945 position: absolute;
2946 margin: auto;
2947 left: 0;
2948 right: 0;
2949 bottom: 10px;
2950 padding: 6px 10px;
2951 font-size: 1.25rem;
2952 background-color: rgba(0,0,0,0.6);
2953 color: #fff;
2954 border-radius: 5px;
2955 opacity: 0.0;
2956 transition: opacity 0.15s ease;
2957 pointer-events: none;
2959 @supports (width: -moz-fit-content) {
2960 #images-overlay div::after {
2961 width: -moz-fit-content;
2964 @supports (width: fit-content) {
2965 #images-overlay div::after {
2966 width: fit-content;
2969 #images-overlay div:hover::after {
2970 opacity: 1.0;
2973 #images-overlay img {
2974 width: 100%;
2977 /***************/
2978 /* IMAGE FOCUS */
2979 /***************/
2981 #content img:hover,
2982 #images-overlay img:hover {
2983 filter: drop-shadow(0 0 3px #777);
2984 cursor: zoom-in;
2986 #content img:active,
2987 #images-overlay img:active {
2988 transform: scale(0.975);
2991 #image-focus-overlay {
2992 position: fixed;
2993 top: 0;
2994 right: 0;
2995 bottom: 0;
2996 left: 0;
2997 display: none;
2998 cursor: zoom-out;
3000 #image-focus-overlay::before {
3001 content: "";
3002 display: block;
3003 position: absolute;
3004 top: 0;
3005 right: 0;
3006 bottom: 0;
3007 left: 0;
3008 background-color: #000;
3009 opacity: 0.5;
3010 z-index: -1;
3012 #image-focus-overlay.engaged {
3013 display: initial;
3016 #image-focus-overlay img {
3017 margin: auto;
3018 position: absolute;
3019 left: 50%;
3020 top: 50%;
3021 transform: translateX(-50%) translateY(-50%);
3024 #image-focus-overlay .help-overlay {
3025 position: absolute;
3026 display: flex;
3027 flex-flow: column;
3028 z-index: 2;
3029 font-size: 1.5rem;
3030 padding: 1em;
3031 border-radius: 10px;
3032 bottom: 1em;
3033 right: 1em;
3034 overflow: hidden;
3035 white-space: nowrap;
3036 color: transparent;
3037 visibility: hidden;
3038 transition:
3039 visibility 1s ease,
3040 color 1s ease,
3041 background-color 1s ease,
3042 bottom 0.3s ease;
3044 #image-focus-overlay .help-overlay:hover {
3045 max-width: 420px;
3046 max-height: 300px;
3047 background-color: rgba(0,0,0,0.85);
3048 color: #fff;
3049 visibility: visible;
3050 transition:
3051 visibility 0.2s ease 0.3s,
3052 color 0.2s ease 0.3s,
3053 background-color 0.2s ease 0.3s;
3056 #image-focus-overlay .help-overlay::after {
3057 content: "\F128";
3058 font-family: Font Awesome;
3059 font-weight: 900;
3060 font-size: 2rem;
3061 position: absolute;
3062 right: 0;
3063 bottom: 0;
3064 padding: 10px;
3065 color: #000;
3066 filter: drop-shadow(0 0 6px #fff);
3067 visibility: visible;
3068 opacity: 0.85;
3069 transition:
3070 visibility 1s ease;
3072 #image-focus-overlay .help-overlay:hover::after {
3073 visibility: hidden;
3074 transition:
3075 visibility 0.2s ease 0.3s;
3078 #image-focus-overlay .help-overlay p {
3079 margin: 0;
3080 text-indent: -2em;
3081 padding-left: 2em;
3082 max-width: 100%;
3083 overflow: hidden;
3085 #image-focus-overlay .help-overlay p + p {
3086 margin: 0.75em 0 0 0;
3088 #image-focus-overlay .help-overlay.hidden {
3089 bottom: -2em;
3092 #image-focus-overlay .image-number {
3093 position: absolute;
3094 z-index: 2;
3095 font-size: 1.75rem;
3096 left: 1em;
3097 bottom: 1em;
3098 font-weight: 600;
3099 text-shadow:
3100 0 0 3px #fff,
3101 0 0 5px #fff,
3102 0 0 8px #fff,
3103 0 0 13px #fff;
3104 width: 1.5em;
3105 text-align: right;
3106 white-space: nowrap;
3107 transition: bottom 0.3s ease;
3109 #image-focus-overlay .image-number::before {
3110 content: "#";
3111 opacity: 0.3;
3113 #image-focus-overlay .image-number::after {
3114 content: " of " attr(data-number-of-images);
3115 opacity: 0.3;
3117 #image-focus-overlay .image-number:hover::before,
3118 #image-focus-overlay .image-number:hover::after {
3119 opacity: 1.0;
3121 #image-focus-overlay .image-number.hidden {
3122 bottom: -1.25em;
3125 #image-focus-overlay .slideshow-buttons {
3126 position: absolute;
3127 top: 0;
3128 left: 0;
3129 width: 100%;
3130 height: 100%;
3131 z-index: 1;
3132 display: flex;
3133 justify-content: space-between;
3134 pointer-events: none;
3136 #image-focus-overlay .slideshow-buttons button {
3137 font-family: Font Awesome;
3138 font-weight: 900;
3139 font-size: 3rem;
3140 padding: 0.5em;
3141 color: #ddd;
3142 position: relative;
3143 left: 0;
3144 transition:
3145 left 0.3s ease;
3146 pointer-events: auto;
3148 #image-focus-overlay .slideshow-buttons button::selection {
3149 background-color: transparent;
3151 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3152 #image-focus-overlay .slideshow-buttons button:hover {
3153 background-color: rgba(0,0,0,0.1);
3154 color: #777;
3157 #image-focus-overlay .slideshow-buttons button:active {
3158 transform: none;
3159 color: #888;
3161 #image-focus-overlay .slideshow-buttons button:disabled {
3162 text-shadow: none;
3163 background-color: transparent;
3164 color: #ddd;
3165 cursor: default;
3166 opacity: 0.4;
3168 #image-focus-overlay .slideshow-button.previous.hidden {
3169 left: -1.75em;
3171 #image-focus-overlay .slideshow-button.next.hidden {
3172 left: 1.75em;
3175 .blurred {
3176 filter: blur(3px);
3179 /**************************/
3180 /* QUALIFIED HYPERLINKING */
3181 /**************************/
3183 #content.no-comments .comments,
3184 #content.no-comments .post-meta .comment-count,
3185 #content.no-comments .post-meta .karma,
3186 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3187 #content.no-comments + #ui-elements-container #hns-date-picker,
3188 #content.no-comments + #ui-elements-container #quick-nav-ui {
3189 display: none;
3192 #content.no-nav-bars #primary-bar,
3193 #content.no-nav-bars #secondary-bar {
3194 display: none;
3196 #content.no-nav-bars {
3197 margin: 8px auto;
3199 #content.no-nav-bars + #ui-elements-container > * {
3200 padding-top: 8px;
3203 #aux-about-link {
3204 position: fixed;
3205 top: 40px;
3206 left: calc((100% - 900px) / 2 - 69px);
3207 width: 1.5em;
3208 height: 1.5em;
3209 text-align: center;
3210 display: table;
3212 #aux-about-link a {
3213 display: table-cell;
3214 width: 100%;
3215 vertical-align: middle;
3216 font-family: Font Awesome;
3217 font-weight: 900;
3218 font-size: 1.25rem;
3219 opacity: 0.4;
3220 z-index: 1;
3223 .qualified-linking {
3224 margin: 0;
3225 position: relative;
3227 .qualified-linking input[type='checkbox'] {
3228 visibility: hidden;
3229 width: 0;
3230 height: 0;
3231 margin: 0;
3233 .qualified-linking label {
3234 font-family: Font Awesome;
3235 font-weight: 900;
3236 font-size: 1rem;
3237 padding: 0 0.5em;
3238 display: inline-block;
3239 margin-left: 0.25em;
3241 .qualified-linking label:hover {
3242 cursor: pointer;
3244 .qualified-linking label:active span {
3245 display: inline-block;
3246 transform: scale(0.9);
3248 .qualified-linking label::selection {
3249 background-color: transparent;
3252 .qualified-linking label::after {
3253 content: "";
3254 width: 100vw;
3255 height: 0;
3256 left: 0;
3257 top: 0;
3258 position: fixed;
3259 z-index: 1;
3260 cursor: default;
3262 .qualified-linking input[type='checkbox']:checked + label::after {
3263 height: 100vh;
3266 .qualified-linking-toolbar {
3267 position: absolute;
3268 right: 0.25em;
3269 top: 110%;
3270 z-index: 1;
3272 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3273 display: none;
3275 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3276 display: block;
3278 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3279 top: unset;
3280 bottom: 125%;
3283 .qualified-linking-toolbar a {
3284 display: block;
3285 padding: 0 6px;
3286 margin: 4px;
3288 .qualified-linking-toolbar a::selection {
3289 background-color: transparent;
3292 /********/
3293 /* MATH */
3294 /********/
3296 .mathjax-block-container {
3297 overflow-y: hidden;
3298 border-radius: 6px;
3299 margin: 1em 0 1.5em 0;
3301 .mathjax-inline-container {
3302 max-width: 100%;
3303 display: inline-block;
3304 overflow-x: auto;
3305 overflow-y: hidden;
3306 position: relative;
3307 vertical-align: text-top;
3308 padding: 0 1px;
3310 .post .mathjax-inline-container {
3311 line-height: 1.1;
3312 top: 2px;
3314 .comment .mathjax-inline-container {
3315 top: 3px;
3316 line-height: 1;
3318 .mathjax-inline-container .mjx-chtml {
3319 padding: 0;
3322 /************/
3323 /* SPOILERS */
3324 /************/
3326 .spoiler {
3327 color: #000;
3328 background-color: currentColor;
3329 transition: none;
3330 text-shadow: none;
3331 margin: 1em 0;
3332 box-shadow: 0 0 0 1px currentColor inset;
3333 overflow: auto;
3335 .spoiler:not(:last-child) {
3336 margin-bottom: 0;
3338 #content .spoiler * {
3339 color: inherit;
3340 border: none;
3342 .spoiler:hover {
3343 color: unset;
3344 background-color: unset;
3345 text-shadow: unset;
3346 transition:
3347 color 0.1s ease-out 0.1s,
3348 background-color 0.1s ease-out 0.1s,
3349 text-shadow 0.1s ease-out 0.1s;
3351 .spoiler::selection,
3352 .spoiler ::selection {
3353 color: #fff;
3354 background-color: #000;
3356 .spoiler:not(:hover)::selection,
3357 .spoiler:not(:hover) ::selection {
3358 background-color: transparent;
3361 /*= Fix for LessWrong being weird =*/
3363 .spoiler > p {
3364 padding: 0 7px;
3366 .spoiler > p:first-child {
3367 margin-top: 0.25em;
3369 .spoiler > p:last-child {
3370 margin-bottom: 0;
3371 padding-bottom: 0.25em;
3373 .spoiler > p:hover ~ p {
3374 background-color: currentColor;
3376 .spoiler > p + p {
3377 margin-top: -1em;
3379 .spoiler > p:not(:first-child) {
3380 padding-top: 0.5em;
3382 .spoiler > p:not(:last-child) {
3383 padding-bottom: 0.5em;
3386 /*******************/
3387 /* ALIGNMENT FORUM */
3388 /*******************/
3390 #content.alignment-forum-index-page::after {
3391 content: "Alignment Forum";
3392 grid-row: 3;
3393 font-size: 1.5rem;
3394 margin: 0.375em 0 0 -0.375em;
3397 /**********************/
3398 /* FOR NARROW SCREENS */
3399 /**********************/
3401 @media only screen and (max-width: 1440px) {
3402 #hns-date-picker {
3403 right: -81px;
3404 padding: 8px 10px 10px 10px;
3405 bottom: 62px;
3406 display: none;
3408 #hns-date-picker::before {
3409 content: "";
3410 position: absolute;
3411 display: block;
3412 z-index: -1;
3413 height: calc(100% + 2px);
3414 top: -1px;
3415 left: -1px;
3416 width: 50%;
3419 @media only screen and (max-width: 1160px) {
3420 #new-comment-nav-ui {
3421 bottom: 180px;
3422 right: -68px;
3424 #hns-date-picker {
3425 bottom: 200px;
3426 right: -36px;
3428 #hns-date-picker::before {
3429 width: calc(100% - 35px);
3431 #theme-selector button::before {
3432 right: unset;
3433 left: 100%;
3435 #theme-selector:hover::after {
3436 content: "";
3437 display: block;
3438 position: absolute;
3439 width: calc(6em - 7px);
3440 height: calc(100% + 2px);
3441 top: 0;
3442 left: calc(100% + 1px);
3444 #anti-kibitzer-toggle {
3445 bottom: 330px;
3448 @media only screen and (max-width: 1080px) {
3449 #width-selector {
3450 right: -30px;
3452 #width-selector button {
3453 display: block;
3455 #text-size-adjustment-ui {
3456 top: 90px;
3457 right: -30px;
3459 #text-size-adjustment-ui button {
3460 display: block;
3461 position: relative;
3463 #text-size-adjustment-ui button.increase {
3464 bottom: 48px;
3466 #text-size-adjustment-ui button.decrease {
3467 top: 50px;
3469 #theme-selector {
3470 top: 46px;
3471 left: -44px;
3473 #theme-tweaker-toggle {
3474 left: -44px;
3475 top: 2px;
3477 #theme-tweaker-toggle button {
3478 height: 2em;
3479 width: 2em;
3480 padding: 7px;
3482 #quick-nav-ui {
3483 right: -54px;
3485 #new-comment-nav-ui {
3486 right: -55px;
3488 #hns-date-picker {
3489 right: -23px;
3491 #hns-date-picker::before {
3492 width: calc(100% - 22px);
3494 #anti-kibitzer-toggle {
3495 right: -54px;
3498 @media only screen and (max-width: 1040px) {
3499 #quick-nav-ui {
3500 right: -49px;
3502 #new-comment-nav-ui {
3503 right: -50px;
3505 #hns-date-picker {
3506 right: -18px;
3508 #hns-date-picker::before {
3509 width: calc(100% - 17px);
3511 #anti-kibitzer-toggle {
3512 right: -50px;
3515 @media only screen and (max-width: 1020px) {
3516 #quick-nav-ui {
3517 right: -20px;
3519 #new-comment-nav-ui {
3520 right: -21px;
3522 #new-comment-nav-ui .new-comments-count::before {
3523 content: "";
3524 position: absolute;
3525 width: 100%;
3526 height: calc(100% + 45px);
3527 z-index: -1;
3528 left: 0;
3529 top: -22px;
3531 #hns-date-picker {
3532 right: 19px;
3534 #hns-date-picker::before {
3535 width: 100%;
3537 #anti-kibitzer-toggle {
3538 right: -20px;
3541 @media only screen and (max-width: 1000px) {
3542 #theme-selector {
3543 left: -17px;
3544 top: 120px;
3545 padding: 3px 0;
3546 max-width: 32px;
3548 #theme-selector button {
3549 margin: 1px 4px;
3551 #text-size-adjustment-ui {
3552 top: 100px;
3553 right: -12px;
3555 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3556 #quick-nav-ui,
3557 #new-comment-nav-ui,
3558 #new-comment-nav-ui + #hns-date-picker,
3559 #anti-kibitzer-toggle {
3560 opacity: 0.4;
3562 #quick-nav-ui:hover,
3563 #new-comment-nav-ui:hover,
3564 #new-comment-nav-ui + #hns-date-picker:hover,
3565 #new-comment-nav-ui + #hns-date-picker:focus-within,
3566 #new-comment-nav-ui:hover + #hns-date-picker,
3567 #anti-kibitzer-toggle:hover {
3568 opacity: 1.0;
3571 #theme-tweaker-toggle {
3572 top: 70px;
3573 left: -21px;
3577 /**************/
3578 /* PRINT VIEW */
3579 /**************/
3581 @media only print {
3582 .nav-bar {
3583 visibility: hidden;
3584 max-height: 0;
3585 overflow: hidden;
3587 #ui-elements-container {
3588 display: none;
3590 #images-overlay {
3591 display: none;
3593 #images-overlay + #content .post-body img {
3594 visibility: visible;
3596 .comment-controls {
3597 display: none;
3599 #comments-sort-mode-selector {
3600 display: none;
3602 .comment-minimize-button {
3603 display: none;
3605 .post-meta .qualified-linking,
3606 .post-meta .lw2-link {
3607 display: none;
3609 .comment-meta .permalink,
3610 .comment-meta .lw2-link,
3611 .comment-meta .comment-parent-link {
3612 display: none;
3614 .new-comment::before {
3615 display: none;
3617 #content::before {
3618 box-shadow: none;
3622 /*****************/
3623 /* MOBILE LAYOUT */
3624 /*****************/
3626 /* Hide the mobile elements on desktop screens: */
3628 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3629 #post-nav-ui-toggle,
3630 #appearance-adjust-ui-toggle,
3631 #theme-selector .theme-selector-close-button {
3632 display: none;
3636 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
3638 /*====================*/
3639 /* MOBILE UI ELEMENTS */
3640 /*====================*/
3642 #ui-elements-container {
3643 height: unset;
3644 position: unset;
3646 #ui-elements-container > * {
3647 position: fixed;
3648 visibility: hidden;
3649 opacity: 1.0;
3650 z-index: 10000;
3653 #ui-elements-container > div[id$='-ui-toggle'] {
3654 visibility: visible;
3655 display: inline-block;
3656 border-radius: 50%;
3657 z-index: 10000;
3659 #ui-elements-container > div[id$='-ui-toggle'] button,
3660 #theme-selector .theme-selector-close-button {
3661 font-family: Font Awesome;
3662 font-weight: 900;
3663 font-size: 32px;
3664 padding: 10px;
3665 opacity: 0.8;
3666 -webkit-tap-highlight-color: transparent;
3667 transition: transform 0.2s ease;
3669 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
3670 #theme-selector .theme-selector-close-button::selection {
3671 background-color: transparent;
3673 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
3674 #theme-selector .theme-selector-close-button::-moz-focus-inner {
3675 border: none;
3677 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
3678 transform: rotate(-90deg);
3679 opacity: 1.0;
3682 #appearance-adjust-ui-toggle {
3683 bottom: 10px;
3684 left: 10px;
3687 #post-nav-ui-toggle {
3688 bottom: 10px;
3689 right: 10px;
3692 #theme-selector.engaged,
3693 #quick-nav-ui.engaged,
3694 #new-comment-nav-ui.engaged,
3695 #hns-date-picker.engaged {
3696 visibility: visible;
3699 #image-focus-overlay.engaged {
3700 visibility: visible;
3702 #image-focus-overlay .help-overlay {
3703 display: none;
3706 /*=========*/
3707 /* GENERAL */
3708 /*=========*/
3710 @media only screen and (max-width: 900px) {
3711 #content,
3712 #images-overlay,
3713 #ui-elements-container {
3714 min-width: unset;
3715 width: unset;
3717 #content {
3718 padding: 0 4px;
3722 /*================*/
3723 /* THEME SELECTOR */
3724 /*================*/
3726 #theme-selector {
3727 display: flex;
3728 flex-flow: column;
3729 width: calc(100vw - 20px);
3730 max-width: 360px;
3731 padding: 0 0 3px 0;
3732 overflow: hidden;
3733 max-height: 0;
3734 transition:
3735 top 0.2s ease,
3736 max-height 0.2s ease,
3737 visibility 0.2s ease;
3738 top: calc(100% + 10px);
3739 left: 0;
3740 right: 0;
3741 margin: auto;
3743 #theme-selector.engaged {
3744 max-height: 1000px;
3745 top: 10px;
3746 z-index: 10001;
3748 #theme-selector::before {
3749 content: "Select theme";
3750 white-space: nowrap;
3751 display: block;
3752 font-weight: 600;
3753 font-size: 2rem;
3754 margin: 0.375em 1em 0.5em 1em;
3755 text-align: center;
3757 #theme-selector button {
3758 width: calc(100% - 0.5em);
3759 background-repeat: no-repeat;
3760 padding: 1em 0.875em;
3761 margin: 1px 4px;
3762 line-height: 1;
3763 height: unset;
3764 position: relative;
3766 #theme-selector button::after {
3767 content: attr(data-theme-description);
3768 white-space: nowrap;
3769 position: absolute;
3770 text-align: left;
3771 left: 2.5em;
3772 top: 1em;
3774 @media only screen and (max-height: 675px) {
3775 #theme-selector button {
3776 padding: 0.875em;
3778 #theme-selector button::after {
3779 top: 0.875em;
3782 #theme-selector .theme-selector-close-button {
3783 position: absolute;
3784 width: unset;
3785 background-color: transparent;
3786 top: 0;
3787 right: -3px;
3789 #theme-selector .theme-selector-close-button,
3790 #theme-selector .theme-selector-close-button:focus,
3791 #theme-selector .theme-selector-close-button:active,
3792 #theme-selector .theme-selector-close-button:hover {
3793 box-shadow: none;
3796 /*===============*/
3797 /* THEME TWEAKER */
3798 /*===============*/
3800 #theme-selector {
3801 padding: 0 0 64px 0;
3803 #theme-selector ~ #theme-tweaker-toggle {
3804 top: 100%;
3806 #theme-selector ~ #theme-tweaker-toggle::after {
3807 content: "Open theme tweaker";
3808 position: absolute;
3809 font-size: 0.625em;
3810 white-space: nowrap;
3811 left: -50%;
3812 top: 100%;
3814 #theme-selector.engaged ~ #theme-tweaker-toggle {
3815 visibility: visible;
3816 top: 530px;
3817 left: 0;
3818 right: 0;
3819 margin: auto;
3820 z-index: 11111;
3821 transition:
3822 top 0.2s ease,
3823 visibility 0.2s ease;
3825 @media only screen and (max-height: 675px) {
3826 #theme-selector.engaged ~ #theme-tweaker-toggle {
3827 top: 492px;
3830 @supports (width: -moz-fit-content) {
3831 #theme-selector.engaged ~ #theme-tweaker-toggle {
3832 width: -moz-fit-content;
3835 @supports (width: fit-content) {
3836 #theme-selector.engaged ~ #theme-tweaker-toggle {
3837 width: fit-content;
3840 #theme-selector.engaged ~ #theme-tweaker-toggle button {
3841 opacity: 1.0;
3844 #theme-tweaker-ui {
3845 visibility: visible;
3848 /*======================*/
3849 /* ANTI-KIBITZER TOGGLE */
3850 /*======================*/
3852 #theme-selector ~ #anti-kibitzer-toggle {
3853 top: 100%;
3854 bottom: unset;
3855 left: 0;
3856 right: 0;
3857 margin: auto;
3858 box-shadow: none;
3859 width: calc(100vw - 44px);
3860 max-width: 330px;
3861 text-align: right;
3862 pointer-events: none;
3864 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3865 visibility: visible;
3866 z-index: 11110;
3867 top: 530px;
3868 transition:
3869 top 0.2s ease,
3870 visibility 0.2s ease;
3872 @media only screen and (max-height: 675px) {
3873 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3874 top: 492px;
3877 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
3878 pointer-events: auto;
3879 display: inline-block;
3882 /*=================*/
3883 /* QUICKNAV WIDGET */
3884 /*=================*/
3886 #quick-nav-ui {
3887 max-width: 0px;
3888 transition:
3889 max-width 0.2s ease,
3890 visibility 0.2s ease;
3891 display: flex;
3892 right: 72px;
3893 bottom: 14px;
3895 #quick-nav-ui.engaged {
3896 max-width: 1000px;
3898 #quick-nav-ui a {
3899 position: relative;
3900 margin: 2px;
3902 #quick-nav-ui a + a {
3903 margin-left: 5px;
3905 #quick-nav-ui a::after {
3906 position: absolute;
3907 top: calc(100% + 2px);
3908 font-size: 0.375rem;
3909 left: 0;
3910 right: 0;
3911 margin: auto;
3912 line-height: 1;
3913 padding: 2px;
3914 text-transform: uppercase;
3915 z-index: -1;
3917 @supports (width: -moz-fit-content) {
3918 #quick-nav-ui a::after {
3919 width: -moz-fit-content;
3922 @supports (width: fit-content) {
3923 #quick-nav-ui a::after {
3924 width: fit-content;
3927 #quick-nav-ui a[href='#top']::after {
3928 content: "Top";
3929 left: -1px;
3931 #quick-nav-ui a[href='#comments']::after {
3932 content: "Comments";
3934 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
3935 visibility: hidden;
3936 transition: visibility 0.2s ease;
3938 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
3939 visibility: visible;
3941 #quick-nav-ui a[href='#bottom-bar']::after {
3942 content: "Bottom";
3945 /*======================*/
3946 /* NEW COMMENT QUICKNAV */
3947 /*======================*/
3949 #new-comment-nav-ui {
3950 max-width: 0px;
3951 max-height: 0px;
3952 transition:
3953 max-width 0.2s ease,
3954 max-height 0.2s ease,
3955 visibility 0.2s ease;
3956 display: flex;
3957 right: 78px;
3958 bottom: 70px;
3960 #new-comment-nav-ui::before {
3961 content: "New Comments";
3962 position: absolute;
3963 bottom: 100%;
3964 font-size: 0.5625rem;
3965 left: 0;
3966 right: 0;
3967 margin: auto;
3968 padding: 2px 3px;
3969 text-transform: uppercase;
3970 z-index: -1;
3972 @supports (width: -moz-fit-content) {
3973 #new-comment-nav-ui::before {
3974 width: -moz-fit-content;
3977 @supports (width: fit-content) {
3978 #new-comment-nav-ui::before {
3979 width: fit-content;
3982 #new-comment-nav-ui.engaged {
3983 max-width: 1000px;
3984 max-height: 1000px;
3986 #new-comment-nav-ui .new-comment-sequential-nav-button {
3987 top: unset;
3988 bottom: unset;
3989 padding: 2px 7px;
3991 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
3992 padding: 2px 7px 3px 7px;
3994 #new-comment-nav-ui .new-comments-count {
3995 padding: 4px 0 5px 0;
3997 #new-comment-nav-ui .new-comments-count::before {
3998 display: none;
4000 #new-comment-nav-ui button::after {
4001 position: absolute;
4002 font-size: 0.375rem;
4003 left: 0;
4004 right: 0;
4005 margin: auto;
4006 line-height: 1;
4007 text-transform: uppercase;
4008 pointer-events: none;
4010 #new-comment-nav-ui button.new-comment-previous::after {
4011 content: "Previous";
4012 bottom: 5px;
4014 #new-comment-nav-ui button.new-comment-next::after {
4015 content: "Next";
4016 top: 7px;
4019 /*=================*/
4020 /* HNS DATE PICKER */
4021 /*=================*/
4023 #hns-date-picker {
4024 max-height: 0px;
4025 bottom: 132px;
4026 right: 62px;
4027 transition:
4028 max-height 0.2s ease,
4029 visibility 0.2s ease;
4031 #hns-date-picker.engaged {
4032 max-height: 1000px;
4034 #hns-date-picker::before {
4035 width: calc(100% + 2px);
4036 border-width: 1px !important;
4039 /*=========*/
4040 /* NAV BAR */
4041 /*=========*/
4043 #bottom-bar {
4044 padding: 0 4.5rem;
4046 #bottom-bar .nav-item {
4047 box-shadow: none;
4048 position: relative;
4050 #bottom-bar .nav-inner {
4051 font-size: 2rem;
4052 padding: 1rem 0 1.25rem 0;
4053 visibility: hidden;
4054 position: static;
4055 width: 0;
4057 #content #bottom-bar .nav-item .nav-inner::before {
4058 margin: 0;
4059 visibility: visible;
4060 position: absolute;
4061 width: 100%;
4062 height: 100%;
4063 left: 0;
4064 top: 0;
4065 padding: 1rem 0;
4067 #bottom-bar .nav-inner::after {
4068 display: block;
4069 visibility: visible;
4070 text-transform: uppercase;
4071 color: unset;
4072 font-size: 0.75rem;
4073 top: unset;
4074 left: 0;
4075 bottom: 1rem;
4076 width: 100%;
4078 #bottom-bar #nav-item-first .nav-inner::after {
4079 content: "First Page";
4081 #bottom-bar #nav-item-prev .nav-inner::after {
4082 content: "Prev. Page";
4084 #bottom-bar #nav-item-top .nav-inner::after {
4085 content: "Top";
4087 #bottom-bar #nav-item-next .nav-inner::after {
4088 content: "Next Page";
4090 #bottom-bar #nav-item-last .nav-inner::after {
4091 content: "Last Page";
4094 @media only screen and (max-width: 900px) {
4095 #primary-bar,
4096 #secondary-bar {
4097 font-size: 0.75rem;
4099 .nav-bar {
4100 width: calc(100% + 8px);
4101 margin: 0 -4px;
4103 .nav-bar .nav-inner::after {
4104 display: none;
4107 #primary-bar .nav-item {
4108 flex: 1 1 100%;
4110 #secondary-bar .nav-item:not(#nav-item-search) {
4111 flex: 1 1 60px;
4113 #primary-bar .nav-inner,
4114 #secondary-bar .nav-inner {
4115 text-transform: uppercase;
4116 padding: 6px;
4118 #primary-bar .nav-inner::before,
4119 #secondary-bar .nav-inner::before {
4120 display: block;
4121 font-family: "Font Awesome";
4122 font-size: 2em;
4123 font-weight: 900;
4126 #nav-item-home .nav-inner::before {
4127 content: "\F015";
4129 #nav-item-featured .nav-inner::before {
4130 content: "\F005";
4132 #nav-item-all .nav-inner::before {
4133 content: "\F069";
4135 #nav-item-meta .nav-inner::before {
4136 content: "\F077";
4138 #nav-item-recent-comments > * > span {
4139 display: none;
4141 #nav-item-recent-comments .nav-inner::before {
4142 content: "\F036";
4144 #nav-item-archive .nav-inner::before {
4145 content: "\F187";
4147 #nav-item-about .nav-inner::before {
4148 content: "\F129";
4150 #nav-item-search {
4151 font-size: 2em;
4152 padding: 10px;
4154 #nav-item-search .nav-inner::before {
4155 content: none;
4157 #nav-item-search .nav-inner {
4158 height: 100%;
4159 display: flex;
4161 #nav-item-search input {
4162 width: 100%;
4163 height: 100%;
4165 #nav-item-search button {
4166 height: 100%;
4167 padding: 5px 5px 5px 10px;
4168 width: 40px;
4169 overflow: visible;
4170 visibility: hidden;
4172 #nav-item-search button::before {
4173 content: "\F002";
4174 font-family: Font Awesome;
4175 font-weight: 900;
4176 visibility: visible;
4178 #nav-item-login {
4179 padding: 0;
4181 #nav-item-login .nav-inner::before {
4182 content: "\F007";
4185 @media only screen and (max-width: 520px) {
4186 #primary-bar,
4187 #secondary-bar {
4188 font-size: 0.5rem;
4191 #nav-item-search .nav-inner {
4192 padding: 0;
4194 #nav-item-search button {
4195 width: 31px;
4198 #bottom-bar #nav-item-first .nav-inner::after {
4199 content: "First";
4201 #bottom-bar #nav-item-prev .nav-inner::after {
4202 content: "Prev";
4204 #bottom-bar #nav-item-next .nav-inner::after {
4205 content: "Next";
4207 #bottom-bar #nav-item-last .nav-inner::after {
4208 content: "Last";
4212 /*=================*/
4213 /* INBOX INDICATOR */
4214 /*=================*/
4216 @media only screen and (max-width: 900px) {
4217 #inbox-indicator {
4218 width: 100%;
4219 top: 0;
4220 pointer-events: none;
4222 #inbox-indicator::before {
4223 width: 100%;
4224 font-size: 1rem;
4225 text-align: right;
4226 padding: 1px 6px;
4228 #inbox-indicator.new-messages {
4229 pointer-events: auto;
4231 #inbox-indicator.new-messages::before {
4232 box-shadow: 0 0 8px 1px #f00 inset;
4235 @media only screen and (max-width: 520px) {
4236 #inbox-indicator::before {
4237 font-size: 0.75rem;
4238 padding: 2px 5px;
4241 @media only screen and (max-width: 374px) {
4242 #inbox-indicator::before {
4243 font-size: 0.625rem;
4247 /*===================*/
4248 /* TOP PAGINATION UI */
4249 /*===================*/
4251 #top-nav-bar {
4252 font-size: 1.75rem;
4255 /*==============*/
4256 /* PAGE TOOLBAR */
4257 /*==============*/
4259 @media only screen and (max-width: 900px) {
4260 #content > .page-toolbar {
4261 font-size: 1rem;
4262 margin-right: 0;
4264 #content.user-page > .page-toolbar {
4265 grid-column: 2 / span 2;
4266 margin: 0 0 6px 0;
4269 @media only screen and (max-width: 520px) {
4270 #content:not(.user-page) .page-toolbar {
4271 display: flex;
4272 flex-direction: column-reverse;
4273 text-align: right;
4274 align-self: start;
4275 padding: 4px 0 0 0;
4277 #content.user-page .page-toolbar {
4278 display: flex;
4279 flex-flow: row;
4280 justify-content: flex-end;
4281 padding: 2px 0 0 0;
4283 #content.user-page .page-toolbar > form,
4284 #content.user-page .page-toolbar > .button {
4285 text-align: center;
4286 flex-basis: 25%;
4287 margin-left: 1.5em;
4289 #content.user-page .page-toolbar .button {
4290 text-transform: uppercase;
4291 font-size: 0.625rem;
4293 #content.user-page .page-toolbar .button::before {
4294 font-size: 1.375rem;
4295 display: block;
4296 padding: 0;
4298 #content.user-page .page-toolbar .rss {
4299 white-space: nowrap;
4300 margin: 0 0 0 1.5em;
4302 .page-toolbar > * {
4303 line-height: 1.15;
4304 padding: 6px 0;
4305 margin: 0;
4309 /*==============*/
4310 /* SUBLEVEL NAV */
4311 /*==============*/
4313 @media only screen and (max-width: 900px) {
4314 .sublevel-nav:not(.sort) {
4315 flex-wrap: wrap;
4316 width: calc(100vw - 100px);
4318 .sublevel-nav:not(.sort) .sublevel-item {
4319 margin: 1px;
4320 flex-basis: 7em;
4323 @media only screen and (max-width: 720px) {
4324 .sublevel-nav:not(.sort) {
4325 width: calc(100vw - 200px);
4328 @media only screen and (max-width: 520px) {
4329 .sublevel-nav:not(.sort) {
4330 width: calc(100vw - 100px);
4332 .sublevel-nav:not(.sort) .sublevel-item {
4333 font-size: 1rem;
4337 /*=====================*/
4338 /* SORT ORDER SELECTOR */
4339 /*=====================*/
4341 @media only screen and (max-width: 720px) {
4342 #content.index-page > .sublevel-nav.sort {
4343 flex-flow: column;
4344 margin-left: 4px;
4348 /*==========*/
4349 /* ARCHIVES */
4350 /*==========*/
4352 @media only screen and (max-width: 900px) {
4353 div[class^='archive-nav-'] {
4354 flex-wrap: wrap;
4355 justify-content: flex-start;
4357 .archive-nav *[class^='archive-nav-item'],
4358 .archive-nav *[class^='archive-nav-item']:first-child {
4359 padding: 10px;
4360 margin: 2px;
4361 max-width: unset;
4362 flex: 0 1 calc((100% / 8) - 4px);
4364 .archive-nav .archive-nav-item-day,
4365 .archive-nav .archive-nav-item-day:first-child {
4366 flex-basis: calc((100% / 16) - 4px);
4368 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4369 margin-top: 8px;
4370 position: relative;
4372 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4373 content: "";
4374 display: block;
4375 position: absolute;
4376 height: 1px;
4377 width: calc(100% + 8px);
4378 left: -4px;
4379 top: -4px;
4382 @media only screen and (max-width: 720px) {
4383 .archive-nav .archive-nav-item-day,
4384 .archive-nav .archive-nav-item-day:first-child {
4385 flex-basis: calc((100% / 12) - 4px);
4388 @media only screen and (max-width: 520px) {
4389 .archive-nav *[class^='archive-nav-item'],
4390 .archive-nav *[class^='archive-nav-item']:first-child {
4391 flex-basis: calc((100% / 5) - 4px);
4393 .archive-nav .archive-nav-item-day,
4394 .archive-nav .archive-nav-item-day:first-child {
4395 flex-basis: calc((100% / 8) - 4px);
4399 /*==========*/
4400 /* LISTINGS */
4401 /*==========*/
4403 h1.listing {
4404 max-height: unset;
4407 /*============*/
4408 /* USER PAGES */
4409 /*============*/
4411 @media only screen and (max-width: 720px) {
4412 #content.user-page h1.page-main-heading {
4413 align-self: center;
4415 #content.user-page .user-stats {
4416 padding: 4px 0;
4417 line-height: 1.3;
4421 /*============*/
4422 /* LOGIN PAGE */
4423 /*============*/
4425 @media only screen and (max-width: 640px) {
4426 .login-container {
4427 flex-flow: column;
4428 margin: 0 auto 3em auto;
4429 max-width: 400px;
4431 .login-container #login-form,
4432 .login-container #signup-form {
4433 padding: 0 1em 1.25em 1em;
4434 grid-row-gap: 0;
4436 .login-container #signup-form {
4437 padding-top: 1em;
4439 .login-container #login-form > *,
4440 .login-container #signup-form > * {
4441 grid-column: 1 / span 2;
4443 .login-container form label {
4444 text-align: left;
4445 padding: 0;
4446 line-height: 1;
4448 .login-container form input {
4449 margin: 0.25em 0 0.75em 0;
4450 padding: 0.5em;
4452 .login-container form h1 {
4453 grid-column: 1 / span 2;
4454 margin: 0 0 0.25em 0;
4456 .login-container form a {
4457 margin: 0.75em 0 0 0;
4459 .login-container .login-tip {
4460 margin: 1.5em 1em 0 1em;
4464 /*==================*/
4465 /* POSTS & COMMENTS */
4466 /*==================*/
4468 /*===========*/
4469 /* POST-META */
4470 /*===========*/
4472 .post-meta {
4473 line-height: 1.9;
4475 @media only screen and (max-width: 720px) {
4476 .post-meta .lw2-link span,
4477 .post-meta .karma-value span,
4478 .post-meta .comment-count span {
4479 display: none;
4481 .post-meta .comment-count::before {
4482 content: "\F086";
4483 font-family: Font Awesome;
4484 font-size: 0.875em;
4485 margin: 0 0.25em 0 0;
4486 font-weight: 400;
4490 /*=======*/
4491 /* POSTS */
4492 /*=======*/
4494 @media only screen and (max-width: 900px) {
4495 .post-body,
4496 h1.post-title {
4497 padding: 0 6px;
4500 @media only screen and (max-width: 520px) {
4501 .post-body {
4502 font-size: 1.2rem;
4503 line-height: 1.45;
4505 h1.post-title {
4506 font-size: 2em;
4510 /*==========*/
4511 /* COMMENTS */
4512 /*==========*/
4514 @media only screen and (max-width: 900px) {
4515 .comment-body ul {
4516 padding-left: 30px;
4518 .comment-body ol {
4519 padding-left: 30px;
4523 /*==============*/
4524 /* COMMENT-META */
4525 /*==============*/
4527 a.comment-parent-link::after {
4528 display: none;
4530 @media only screen and (max-width: 900px) {
4531 .comment-meta {
4532 padding: 2px 40px 2px 10px;
4535 @media only screen and (max-width: 720px) {
4536 .comment-meta .karma-value span {
4537 display: none;
4539 .comment-meta .comment-parent-link {
4540 opacity: 1.0;
4543 @media only screen and (max-width: 520px) {
4544 .comment-meta {
4545 padding: 2px 10px;
4546 position: relative;
4548 .comment-meta .author {
4549 flex-basis: 100%;
4551 .comment-post-title2 {
4552 display: block;
4553 text-overflow: ellipsis;
4554 overflow: hidden;
4556 .comment-meta .lw2-link {
4557 display: none;
4561 /*=======================*/
4562 /* COMMENTS COMPACT VIEW */
4563 /*=======================*/
4565 /*===========================*/
4566 /* COMMENT THREAD NAVIGATION */
4567 /*===========================*/
4569 @media only screen and (max-width: 900px) {
4570 a.comment-parent-link {
4571 width: 0;
4572 visibility: hidden;
4573 position: relative;
4575 a.comment-parent-link::before {
4576 padding: 0;
4577 font-size: 1em;
4578 left: 0;
4579 top: 0;
4580 line-height: inherit;
4581 visibility: visible;
4582 content: "\F3BF";
4583 transform: scaleX(-1);
4584 width: 2em;
4585 text-align: center;
4588 @media only screen and (max-width: 520px) {
4589 a.comment-parent-link {
4590 position: static;
4592 a.comment-parent-link::before {
4593 padding: 6px;
4594 left: unset;
4595 right: 0;
4596 top: unset;
4597 bottom: 0;
4598 height: 2em;
4602 /*=================================*/
4603 /* COMMENT THREAD MINIMIZE BUTTONS */
4604 /*=================================*/
4606 @media only screen and (max-width: 520px) {
4607 .comment-minimize-button{
4608 right: 2px;
4612 /*===========================*/
4613 /* COMMENTING AND POSTING UI */
4614 /*===========================*/
4616 @media only screen and (max-width: 900px) {
4617 .comment-controls .cancel-comment-button {
4618 max-width: 1.3em;
4619 overflow: hidden;
4620 margin-right: 0.125em;
4622 .comment-controls .edit-button::before {
4623 font-size: 0.9375em;
4625 .comments > .comment-controls .cancel-comment-button {
4626 right: 8px;
4628 .comment-controls .cancel-comment-button::before {
4629 font-size: 1.25rem;
4632 @media only screen and (max-width: 520px) {
4633 .comment-controls {
4634 position: static;
4636 .comment-controls:focus-within {
4637 z-index: 10001;
4639 .comment-controls .cancel-comment-button {
4640 right: 10px;
4642 .textarea-container:focus-within textarea {
4643 position: fixed;
4644 top: 0;
4645 left: 2px;
4646 width: calc(100vw - 4px);
4647 height: calc(100% - 100px);
4648 min-height: unset;
4649 max-height: unset;
4650 border-width: 1px;
4651 z-index: 11001;
4653 #content.conversation-page .textarea-container:focus-within textarea {
4654 height: calc(100% - 54px);
4656 #content.conversation-page .textarea-container:focus-within::after {
4657 content: "";
4658 display: block;
4659 width: 100%;
4660 height: 50px;
4661 position: fixed;
4662 left: 0;
4663 bottom: 0;
4664 z-index: 11000;
4666 .textarea-container:focus-within .guiedit-buttons-container {
4667 position: fixed;
4668 z-index: 11002;
4669 left: 0;
4670 width: 100vw;
4671 height: auto;
4672 background-image: none;
4673 padding: 3px 4px 4px 4px;
4674 margin: 0;
4675 text-align: center;
4676 top: auto;
4677 bottom: 0;
4679 .textarea-container:focus-within button.guiedit {
4680 font-size: 0.9375rem;
4681 line-height: 1.5;
4682 height: auto;
4683 width: calc((100% / 10) - 2px);
4684 padding: 10px 1px 8px 0;
4685 position: relative;
4686 margin: 1px;
4688 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
4689 z-index: 11011;
4690 position: fixed;
4691 bottom: 7px;
4692 width: calc(((100% - 16px) / 10) * 2.5 - 7px);
4693 font-size: 1.25rem;
4694 padding: 5px 5px 6px 5px;
4695 display: block;
4697 .textarea-container:focus-within button.guiedit sup {
4698 position: absolute;
4699 left: calc(50% + 0.65em);
4700 top: calc(50% - 1.3em);
4702 .textarea-container:focus-within .guiedit-mobile-help-button {
4703 left: 8px;
4705 .textarea-container:focus-within .guiedit-mobile-exit-button {
4706 right: 8px;
4708 .guiedit::after {
4709 display: none;
4712 #markdown-hints,
4713 #edit-post-form #markdown-hints {
4714 z-index: 11111;
4715 position: fixed;
4716 top: 40px;
4717 left: 0;
4718 right: 0;
4719 margin: auto;
4720 padding: 4px 0 4px 8px;
4721 width: 310px;
4722 border-width: 3px;
4723 border-style: double;
4724 pointer-events: none;
4726 #markdown-hints::after {
4727 content: "(Type to hide this help box.)";
4728 color: #090;
4729 display: block;
4730 margin: 12px 18px 13px 10px;
4731 padding: 5px;
4732 font-size: 0.9em;
4733 text-align: center;
4737 /*================*/
4738 /* EDIT POST FORM */
4739 /*================*/
4741 @media only screen and (max-width: 520px) {
4742 #edit-post-form {
4743 padding-bottom: 0;
4745 #edit-post-form .post-meta-fields {
4746 grid-template-columns: 4.5em auto auto auto 1fr auto;
4748 #edit-post-form label[for='url'],
4749 #edit-post-form label[for='section'],
4750 #edit-post-form label[for='title'] {
4751 padding-left: 0;
4753 #edit-post-form .post-meta-fields input[type='checkbox'] + label {
4754 white-space: normal;
4755 line-height: 0.9;
4756 top: -1px;
4757 font-family: Font Awesome;
4758 font-weight: 900;
4759 justify-self: start;
4761 #edit-post-form .post-meta-fields .question-checkbox,
4762 #edit-post-form .post-meta-fields .question-checkbox + label {
4763 grid-column: 6;
4765 #edit-post-form .post-meta-fields input[type='radio'] + label {
4766 align-self: start;
4768 #edit-post-form .textarea-container:focus-within textarea {
4769 height: calc(100% - 101px);
4770 min-height: unset;
4773 #markdown-hints-checkbox,
4774 #markdown-hints-checkbox + label {
4775 display: none;
4778 #edit-post-form div:last-child {
4779 clear: both;
4780 overflow: auto;
4782 #edit-post-form input[type='submit'] {
4783 float: none;
4784 display: block;
4785 font-size: 1.5rem;
4786 margin: 1rem auto 1.5rem auto;
4787 padding: 6px 12px 8px 12px;
4791 /*===================*/
4792 /* TABLE OF CONTENTS */
4793 /*===================*/
4795 @media only screen and (max-width: 900px) {
4796 .contents {
4797 float: none;
4798 display: table;
4799 max-width: none;
4800 margin-left: auto;
4801 margin-right: auto;
4804 @media only screen and (max-width: 520px) {
4805 .contents {
4806 max-width: 100%;
4807 margin: 1em auto 0 auto;
4808 display: table;
4810 .contents-head {
4811 font-size: 1.2em;
4813 div.post-body .contents ul {
4814 font-size: unset;
4818 /*========================*/
4819 /* QUALIFIED HYPERLINKING */
4820 /*========================*/
4822 @media only screen and (max-width: 520px) {
4823 .qualified-linking-toolbar {
4824 right: -5em;
4828 } /* END MOBILE LAYOUT */
4831 /*******************/
4832 /* BRUTALIST THEME */
4833 /*******************/
4835 body {
4836 color: #000;
4837 background-color: #fff;
4838 font-family: 'Anonymous Pro', monospace;
4840 #content {
4841 line-height: 1.55;
4843 #content::before {
4844 background-color: #fff;
4845 box-shadow:
4846 -1px 0 0 #000 inset,
4847 0 2px 0 #000;
4848 border-style: solid;
4849 border-color: #000;
4850 border-width: 0 1px 0 2px;
4852 #content.no-nav-bars::before {
4853 border-width: 2px;
4854 box-shadow: none;
4857 /*=========*/
4858 /* NAV BAR */
4859 /*=========*/
4861 .nav-bar {
4862 justify-content: flex-start;
4864 .nav-bar:nth-of-type(2) {
4865 border-bottom: 2px solid #000;
4867 .nav-inner {
4868 font-size: 1.375em;
4869 font-weight: 600;
4870 border-style: solid;
4871 border-color: transparent;
4872 border-width: 0 2px;
4874 #secondary-bar .nav-inner {
4875 font-size: 1em;
4878 .nav-current:not(#nav-item-search) .nav-inner,
4879 .nav-bar a.nav-inner:hover {
4880 box-shadow:
4881 0 0 0 4px #fff inset,
4882 0 0 0 6px #000 inset;
4884 .nav-bar a.nav-inner:active {
4885 box-shadow:
4886 0 0 0 8px #fff inset,
4887 0 0 0 10px #000 inset;
4890 #bottom-bar.decorative::before,
4891 #bottom-bar.decorative::after {
4892 content: "GW";
4893 display: block;
4894 text-align: center;
4895 padding: 0.25em 0 1em 0;
4897 #bottom-bar.decorative::before {
4898 width: 100%;
4899 color: transparent;
4900 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4901 background-repeat: repeat-x;
4902 background-position: center 35%;
4903 margin: 0 30px;
4904 filter: contrast(90%);
4906 #bottom-bar.decorative::after {
4907 color: #d8d8d8;
4908 position: absolute;
4909 left: 0;
4910 right: 0;
4911 margin: auto;
4912 background-color: #fff;
4913 padding-right: 5px;
4914 padding-left: 6px;
4916 @supports (width: -moz-fit-content) {
4917 #bottom-bar.decorative::after {
4918 width: -moz-fit-content;
4921 @supports (width: fit-content) {
4922 #bottom-bar.decorative::after {
4923 width: fit-content;
4927 /* Accesskey hints */
4929 .nav-inner::after {
4930 display: block;
4931 position: absolute;
4932 left: 8px;
4933 top: 3px;
4934 font-weight: 400;
4935 font-size: 0.7em;
4936 color: #d8d8d8;
4938 .inactive-bar .nav-inner::after {
4939 color: #ccc;
4941 .nav-inner:hover::after {
4942 color: #bbb;
4945 /* Search tab */
4947 #nav-item-search button {
4948 border: none;
4949 font-weight: inherit;
4951 #nav-item-search input::placeholder {
4952 color: #d00;
4953 font-weight: normal;
4956 /* Inbox indicator */
4958 #inbox-indicator {
4959 text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff;
4962 /*==============*/
4963 /* PAGE TOOLBAR */
4964 /*==============*/
4966 .page-toolbar button,
4967 .page-toolbar button:hover,
4968 .page-toolbar button:active,
4969 .page-toolbar button:focus {
4970 border: none;
4971 box-shadow: none;
4973 .page-toolbar a:hover,
4974 .page-toolbar button:hover {
4975 text-decoration: dotted underline;
4977 .page-toolbar a:active,
4978 .page-toolbar button:active {
4979 transform: scale(0.9);
4982 .rss::before {
4983 filter: grayscale(100%);
4986 /*==============*/
4987 /* SUBLEVEL NAV */
4988 /*==============*/
4990 .sublevel-nav .sublevel-item {
4991 border-color: #000;
4992 border-style: solid;
4993 border-width: 1px 1px 1px 0;
4995 .sublevel-nav .sublevel-item:first-child {
4996 border-width: 1px;
4998 .sublevel-nav .sublevel-item:hover {
4999 box-shadow:
5000 0 0 0 2px #fff inset,
5001 0 0 0 3px #000 inset;
5003 .sublevel-nav .sublevel-item:active {
5004 box-shadow:
5005 0 0 0 4px #fff inset,
5006 0 0 0 5px #000 inset;
5007 font-weight: normal;
5009 .sublevel-nav .sublevel-item:disabled,
5010 .sublevel-nav span.sublevel-item {
5011 box-shadow:
5012 0 0 0 2px #fff inset,
5013 0 0 0 3px #000 inset;
5014 font-weight: bold;
5015 color: inherit;
5018 /*=====================*/
5019 /* SORT ORDER SELECTOR */
5020 /*=====================*/
5022 .sublevel-nav.sort {
5023 padding: 18px 0 0 0;
5024 border: 2px solid #000;
5026 .sublevel-nav.sort::before {
5027 text-transform: uppercase;
5028 font-weight: 600;
5030 .sublevel-nav.sort .sublevel-item {
5031 padding: 7px 8px 6px 9px;
5032 text-transform: uppercase;
5033 border: none;
5036 /*================*/
5037 /* WIDTH SELECTOR */
5038 /*================*/
5040 #width-selector button {
5041 box-shadow:
5042 0 0 0 4px #fff inset,
5043 0 0 0 5px #000 inset;
5045 #width-selector button:hover,
5046 #width-selector button.selected {
5047 box-shadow:
5048 0 0 0 1px #fff inset,
5049 0 0 0 2px #000 inset,
5050 0 0 0 4px #fff inset,
5051 0 0 0 5px #000 inset;
5053 #width-selector button::after {
5054 color: #000;
5055 font-size: 0.9em;
5058 /*================*/
5059 /* THEME SELECTOR */
5060 /*================*/
5062 #theme-selector button {
5063 box-shadow:
5064 0 0 0 5px #fff inset;
5066 #theme-selector button:hover,
5067 #theme-selector button.selected {
5068 box-shadow:
5069 0 0 0 2px #fff inset,
5070 0 0 0 3px #000 inset,
5071 0 0 0 5px #fff inset;
5074 #theme-selector button::before {
5075 font-size: 0.9375em;
5076 padding: 6px;
5077 width: 7em;
5078 color: #aaa;
5079 background-color: #fff;
5081 #theme-selector button:hover::before,
5082 #theme-selector button.selected::before {
5083 color: #000;
5086 /*======================*/
5087 /* ANTI-KIBITZER TOGGLE */
5088 /*======================*/
5090 #anti-kibitzer-toggle button::before,
5091 #anti-kibitzer-toggle button::after {
5092 background-color: #999;
5093 -webkit-background-clip: text;
5094 color: transparent;
5095 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5097 #anti-kibitzer-toggle button:hover {
5098 box-shadow: none;
5100 #anti-kibitzer-toggle button:hover::before,
5101 #anti-kibitzer-toggle button:hover::after {
5102 background-color: #000;
5103 text-shadow: rgba(255,255,255,0.2) 0px 1px 1px;
5106 /*=========================*/
5107 /* TEXT SIZE ADJUSTMENT UI */
5108 /*=========================*/
5110 #text-size-adjustment-ui button:hover,
5111 #text-size-adjustment-ui button:active,
5112 #text-size-adjustment-ui button:focus {
5113 box-shadow: none;
5114 color: #777;
5116 #text-size-adjustment-ui::after {
5117 color: #000;
5120 /*======================*/
5121 /* THEME TWEAKER TOGGLE */
5122 /*======================*/
5124 #theme-tweaker-toggle button:hover,
5125 #theme-tweaker-toggle button:active {
5126 box-shadow: none;
5129 /*=================*/
5130 /* QUICKNAV WIDGET */
5131 /*=================*/
5133 #quick-nav-ui a {
5134 color: #000;
5135 box-shadow:
5136 0 0 0 1px #fff,
5137 0 0 0 3px #000;
5139 #quick-nav-ui a[href='#bottom-bar'] {
5140 line-height: 1.8;
5142 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5143 #quick-nav-ui a:hover {
5144 box-shadow:
5145 0 0 0 1px #fff inset,
5146 0 0 0 3px #000 inset,
5147 0 0 0 1px #fff,
5148 0 0 0 3px #000;
5151 #quick-nav-ui a:active {
5152 box-shadow:
5153 0 0 0 3px #fff inset,
5154 0 0 0 5px #000 inset,
5155 0 0 0 1px #fff,
5156 0 0 0 3px #000;
5158 #quick-nav-ui a[href='#comments'].no-comments {
5159 opacity: 0.4;
5160 color: #bbb;
5163 /*======================*/
5164 /* NEW COMMENT QUICKNAV */
5165 /*======================*/
5167 #new-comment-nav-ui .new-comments-count {
5168 left: 2px;
5170 #new-comment-nav-ui .new-comments-count::after {
5171 position: relative;
5172 right: 1px;
5174 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5175 color: #bbb;
5178 /*=================*/
5179 /* HNS DATE PICKER */
5180 /*=================*/
5182 #hns-date-picker {
5183 bottom: 75px;
5184 text-indent: -16px;
5186 #hns-date-picker span {
5187 color: #777;
5188 font-weight: 600;
5189 text-indent: 0px;
5191 #hns-date-picker input {
5192 color: #666;
5193 width: 160px;
5195 #hns-date-picker input:focus {
5196 color: #000;
5199 /*======================*/
5200 /* TEXT SIZE ADJUSTMENT */
5201 /*======================*/
5203 /*=============================*/
5204 /* COMMENTS VIEW MODE SELECTOR */
5205 /*=============================*/
5207 /*==========*/
5208 /* ARCHIVES */
5209 /*==========*/
5211 .archive-nav {
5212 border: 2px solid #000;
5214 .archive-nav span[class^='archive-nav-item'],
5215 .archive-nav a:hover {
5216 font-weight: bold;
5217 box-shadow:
5218 0 0 0 1px #fff inset,
5219 0 0 0 3px #000 inset;
5221 .archive-nav a:active {
5222 transform: none;
5223 box-shadow:
5224 0 0 0 3px #fff inset,
5225 0 0 0 5px #000 inset;
5228 /*==========*/
5229 /* LISTINGS */
5230 /*==========*/
5232 h1.listing {
5233 margin: 0.7em 20px 0.1em 20px;
5234 max-width: calc(100% - 40px);
5235 font-family: 'Anonymous Pro', monospace, 'Font Awesome';
5236 font-size: 1.625rem;
5239 h1.listing a[href^="http"] {
5240 font-size: 0.7em;
5241 top: 6px;
5242 color: #fff;
5243 text-shadow:
5244 0.5px 0.5px 0 #000,
5245 -0.5px -0.5px 0 #000,
5246 0 0 2px #000;
5249 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5250 h1.listing a:hover,
5251 h1.listing a:focus {
5252 color: #777;
5253 background-color: rgba(255,255,255,0.85);
5255 h1.listing:focus-within::before {
5256 color: #000;
5257 left: -0.625em;
5259 h1.listing a[href^="http"]:hover {
5260 color: #fff;
5261 text-shadow:
5262 0.5px 0.5px 0 #000,
5263 -0.5px -0.5px 0 #000,
5264 0 0 2px #000,
5265 0 0 3px #000;
5269 h1.listing .edit-post-link {
5270 padding: 5px 3px 36px 0.5em;
5271 top: 0;
5272 right: 0;
5274 h1.listing .edit-post-link:hover {
5275 text-decoration: none;
5277 #content.user-page h1.listing .edit-post-link {
5278 background-color: #fff;
5281 /*===================*/
5282 /* TOP PAGINATION UI */
5283 /*===================*/
5285 #top-nav-bar a:hover {
5286 color: #777;
5288 #bottom-bar #nav-item-last a::before {
5289 margin-left: -2.3em;
5290 left: 3.9em;
5293 /*= Top pagination UI hover tooltips =*/
5295 #top-nav-bar a::after,
5296 #bottom-bar a::after {
5297 color: #000;
5299 #bottom-bar a:not([href='#top'])::after {
5300 background-color: #fff;
5301 left: 0;
5302 right: 0;
5303 margin: auto;
5304 padding: 1px 6px;
5305 bottom: 2px;
5307 @supports (width: -moz-fit-content) {
5308 #bottom-bar a:not([href='#top'])::after {
5309 width: -moz-fit-content;
5312 @supports (width: fit-content) {
5313 #bottom-bar a:not([href='#top'])::after {
5314 width: fit-content;
5318 /*======*/
5319 /* SPAM */
5320 /*======*/
5322 h1.listing.spam {
5323 opacity: 0.1;
5325 h1.listing.spam + .post-meta {
5326 opacity: 0.2;
5328 h1.listing.spam:hover,
5329 h1.listing.spam + .post-meta:hover,
5330 h1.listing.spam:hover + .post-meta {
5331 opacity: 1.0;
5334 /*===================*/
5335 /* LISTING POST-META */
5336 /*===================*/
5338 h1.listing + .post-meta > * {
5339 line-height: 1.5;
5341 h1.listing + .post-meta .read-time {
5342 opacity: 0.5;
5345 /*============*/
5346 /* USER PAGES */
5347 /*============*/
5349 #content.user-page h1.page-main-heading {
5350 border-bottom: 1px dotted #000;
5353 #content.user-page h1.listing,
5354 #content.user-page h1.listing + .post-meta {
5355 border-style: solid;
5356 border-color: #000;
5358 #content.user-page h1.listing {
5359 padding: 0 6px;
5360 padding-top: 0.25em;
5361 border-width: 2px 2px 0 2px;
5362 margin: 1rem 0 0 0;
5363 max-width: 100%;
5365 #content.own-user-page h1.listing,
5366 h1.listing.own-post-listing {
5367 padding-right: 36px;
5369 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5370 #content.user-page h1.listing:focus-within::before {
5371 left: -0.625em;
5374 #content.user-page h1.listing + .post-meta {
5375 padding: 0.75em 6px 0.5em 33px;
5376 border-width: 0 2px 2px 2px;
5377 margin: 0 0 1rem 0;
5379 #content.user-page h1.listing + .post-meta .post-section::before {
5380 left: -2px;
5381 top: unset;
5384 #content.conversations-user-page h1.listing {
5385 padding: 8px 6px 8px 10px;
5386 font-size: 1.5rem;
5388 #content.conversations-user-page h1.listing + .post-meta {
5389 padding: 10px 4px 6px 4px;
5390 margin: 0;
5393 .user-stats .karma-total {
5394 font-weight: bold;
5397 /*===============*/
5398 /* CONVERSATIONS */
5399 /*===============*/
5401 #content.conversation-page textarea {
5402 border-top-width: 2px;
5405 /*============*/
5406 /* LOGIN PAGE */
5407 /*============*/
5409 .login-container form input[type='submit'] {
5410 font-weight: bold;
5413 /* “Log in” form */
5414 #login-form {
5415 grid-template-columns: 5.75em 1fr;
5418 #login-form a:hover {
5419 text-decoration: dotted underline;
5421 #login-form a:active {
5422 transform: scale(0.9);
5425 /* “Create account” form */
5427 #signup-form {
5428 grid-template-columns: 10.5em 1fr;
5429 border: 2px solid #000;
5432 /* Log in tip */
5434 .login-container .login-tip {
5435 border: 1px solid #000;
5438 /* Message box */
5440 .error-box {
5441 border: 1px solid red;
5442 background-color: #faa;
5444 .success-box {
5445 border: 1px solid green;
5446 background-color: #afa;
5449 /*=====================*/
5450 /* PASSWORD RESET PAGE */
5451 /*=====================*/
5453 .reset-password-container label {
5454 width: 12em;
5456 .reset-password-container input[type='submit'] {
5457 font-weight: bold;
5460 /*===================*/
5461 /* TABLE OF CONTENTS */
5462 /*===================*/
5464 .contents {
5465 font-family: 'Anonymous Pro', monospace;
5466 border: 2px solid #000;
5467 background-color: #fff;
5469 .contents-head {
5470 font-weight: bold;
5471 font-size: 1.125em;
5473 .post-body .contents ul {
5474 font-size: 0.9375em;
5476 .contents ul a {
5477 border-bottom: 2px dotted #999;
5479 .post-body .contents li::before {
5480 color: #999;
5481 font-feature-settings: "tnum";
5484 /*==================*/
5485 /* POSTS & COMMENTS */
5486 /*==================*/
5488 .post-body,
5489 .comment-body {
5490 font-family: 'Input Sans', sans-serif;
5491 font-weight: 200;
5493 .post-body a,
5494 .comment-body a {
5495 border-bottom: 2px dotted #000;
5497 .post-body a:hover,
5498 .comment-body a:hover {
5499 color: #999;
5501 .post-meta a:hover,
5502 .comment-meta a:hover {
5503 text-decoration: dotted underline;
5506 /*===========*/
5507 /* POST-META */
5508 /*===========*/
5510 .post-meta .post-section::before {
5511 color: #fff;
5512 top: -1px;
5513 text-shadow:
5514 1px 1px 0 #777,
5515 0 1px 0 #777,
5516 0 0 5px #777;
5518 a.post-section:hover {
5519 text-decoration: none;
5521 a.post-section:hover::before {
5522 color: #eee;
5524 .post-meta .date {
5525 color: #888;
5527 .bottom-post-meta {
5528 border-top: 1px dotted #000;
5531 /*============*/
5532 /* LINK POSTS */
5533 /*============*/
5535 .post.link-post a.link-post-link {
5536 font-family: 'Anonymous Pro', monospace;
5537 font-weight: 600;
5538 font-size: 1.25em;
5539 border: none;
5541 .post.link-post a.link-post-link::before {
5542 color: #fff;
5543 text-shadow:
5544 0.5px 0.5px 0 #000,
5545 -0.5px -0.5px 0 #000,
5546 0 0 2px #000;
5548 .post.link-post a.link-post-link:hover {
5549 color: inherit;
5550 border-bottom: 2px dotted #000;
5552 .post.link-post a.link-post-link:hover::before {
5553 text-shadow:
5554 0.5px 0.5px 0 #000,
5555 -0.5px -0.5px 0 #000,
5556 0 0 2px #000,
5557 0 0 3px #000;
5559 .post.link-post a.link-post-link:focus {
5560 color: #999;
5561 border-bottom: 2px dotted #999;
5564 /*=======*/
5565 /* POSTS */
5566 /*=======*/
5568 .post-body {
5569 font-size: 1.125rem;
5570 margin-top: 1em;
5572 h1.post-title {
5573 font-size: 2.25rem;
5574 margin-top: 1.375em;
5577 /*==========*/
5578 /* COMMENTS */
5579 /*==========*/
5581 #comments::before {
5582 border-top: 2px solid #000;
5584 #content > .comment-thread .comment-meta a.date:focus,
5585 #content > .comment-thread .comment-meta a.permalink:focus {
5586 color: #999;
5587 outline: 2px dotted #999;
5588 position: relative;
5589 background-color: #fff;
5590 padding: 0 5px;
5591 left: -5px;
5593 #content > .comment-thread .comment-meta a.date:focus + *,
5594 #content > .comment-thread .comment-meta a.permalink:focus + *:not(.comment-post-title) {
5595 margin-left: -10px;
5597 .comment-item {
5598 border: 2px solid #000;
5601 .comment-body {
5602 font-size: 1rem;
5603 line-height: 1.5;
5606 /*================================*/
5607 /* DEEP COMMENT THREAD COLLAPSING */
5608 /*================================*/
5610 .comment-item input[id^="expand"] + label::after {
5611 font-weight: 600;
5613 .comment-item input[id^="expand"] + label:hover::after {
5614 color: #c00;
5616 .comment-item input[id^="expand"] + label:active::after,
5617 .comment-item input[id^="expand"] + label:focus::after{
5618 color: #c00;
5620 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5621 border-width: 1px 0 0 0;
5624 /*==============*/
5625 /* COMMENT-META */
5626 /*==============*/
5628 .comment-meta .author {
5629 font-weight: bold;
5630 font-size: 1.25em;
5632 .comment-item .author:not(.redacted).original-poster::after {
5633 opacity: 0.6;
5636 .comment-item .karma.active-controls::after,
5637 .comment-item .karma .karma-value::after,
5638 .post .karma.active-controls::after,
5639 .post .karma .karma-value::after {
5640 background-color: #fff;
5641 color: #000;
5642 box-shadow: 0 0 0 1px #000 inset;
5644 .comment-item .karma.active-controls::after,
5645 .post .karma.active-controls::after {
5646 padding: 6px;
5647 bottom: -46px;
5648 max-width: unset;
5649 transform: translateX(-2px);
5651 .comment-item .karma .karma-value::after,
5652 .post .karma .karma-value::after {
5653 padding: 2px 8px;
5654 top: -26px;
5655 min-width: 80px;
5658 /*====================*/
5659 /* ANTI-KIBITZER MODE */
5660 /*====================*/
5662 .author.redacted,
5663 .inline-author.redacted {
5664 opacity: 0.5;
5665 font-weight: 400;
5668 .karma-value.redacted {
5669 opacity: 0.5;
5672 .link-post-domain.redacted {
5673 opacity: 0.3;
5676 /*===========================*/
5677 /* COMMENT THREAD NAVIGATION */
5678 /*===========================*/
5680 div.comment-parent-link {
5681 font-weight: 600;
5683 a.comment-parent-link {
5684 font-weight: 400;
5686 a.comment-parent-link::after {
5687 display: none;
5689 a.comment-parent-link::before {
5690 color: #bbb;
5691 padding: 4px 3px 0 2px;
5693 a.comment-parent-link:hover::before {
5694 color: #999;
5697 div.comment-child-links {
5698 font-weight: 600;
5700 div.comment-child-links a {
5701 font-weight: 400;
5703 .comment-child-link::before {
5704 color: #aaa;
5707 .comment-item-highlight,
5708 .comment-item-highlight-faint {
5709 border: 2px solid #ccc;
5712 .comment-popup {
5713 border: 2px solid #000;
5714 background-color: #fff;
5716 .comment-popup .comment-body {
5717 font-size: 0.9375rem;
5720 /*====================*/
5721 /* COMMENT PERMALINKS */
5722 /*====================*/
5724 .comment-meta .permalink,
5725 .comment-meta .lw2-link,
5726 .individual-thread-page .comment-parent-link:empty {
5727 filter: grayscale(100%);
5730 /*=======================*/
5731 /* COMMENTS COMPACT VIEW */
5732 /*=======================*/
5734 #comments-list-mode-selector button {
5735 box-shadow:
5736 0 0 0 4px #fff inset,
5737 0 0 0 5px #000 inset;
5738 border: none;
5740 #comments-list-mode-selector button:hover,
5741 #comments-list-mode-selector button.selected {
5742 box-shadow:
5743 0 0 0 1px #fff inset,
5744 0 0 0 2px #000 inset,
5745 0 0 0 4px #fff inset,
5746 0 0 0 5px #000 inset;
5748 #content.compact > .comment-thread .comment-item::after {
5749 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
5752 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5753 #content.compact > .comment-thread .comment-item:hover .comment,
5754 #content.compact > .comment-thread .comment-item.expanded .comment {
5755 background-color: #fff;
5756 outline: 3px solid #000;
5758 #content.compact > .comment-thread .comment-item:hover .comment::before,
5759 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5760 background-color: #fff;
5761 box-shadow:
5762 0 0 3px #fff,
5763 0 0 5px #fff,
5764 0 0 7px #fff,
5765 0 0 10px #fff,
5766 0 0 20px #fff,
5767 0 0 30px #fff,
5768 0 0 40px #fff;
5771 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
5772 #content.compact > .comment-thread.expanded .comment-item .comment {
5773 background-color: #fff;
5774 outline: 3px solid #000;
5776 #content.compact > .comment-thread.expanded .comment-item .comment::before {
5777 background-color: #fff;
5778 box-shadow:
5779 0 0 3px #fff,
5780 0 0 5px #fff,
5781 0 0 7px #fff,
5782 0 0 10px #fff,
5783 0 0 20px #fff,
5784 0 0 30px #fff,
5785 0 0 40px #fff;
5789 #content.user-page.compact > h1.listing {
5790 margin-top: 0.5rem;
5792 #content.user-page.compact > h1.listing + .post-meta {
5793 margin-bottom: 0.5rem;
5796 /*===========================*/
5797 /* HIGHLIGHTING NEW COMMENTS */
5798 /*===========================*/
5800 .new-comment {
5801 border: 2px dotted #000;
5803 .new-comment::before {
5804 display: none;
5807 /*=================================*/
5808 /* COMMENT THREAD MINIMIZE BUTTONS */
5809 /*=================================*/
5811 .comment-minimize-button {
5812 color: #ccc;
5813 font-family: Font Awesome, 'Anonymous Pro', monospace;
5815 .comment-minimize-button:hover {
5816 color: #aaa;
5818 .comment-minimize-button::after {
5819 font-size: 0.8125rem;
5820 top: 20px;
5821 left: 0.5px;
5822 color: #777;
5824 .comment-minimize-button.maximized::after {
5825 color: #ccc;
5828 /*=================================*/
5829 /* INDIVIDUAL COMMENT THREAD PAGES */
5830 /*=================================*/
5832 .individual-thread-page > h1 a:hover {
5833 color: #777;
5834 text-decoration: dotted underline;
5837 .individual-thread-page > .comments {
5838 border-top: 2px solid #000;
5841 /*==============*/
5842 /* VOTE BUTTONS */
5843 /*==============*/
5845 .vote::before {
5846 content: "";
5847 border-radius: 2px;
5848 background-size: 17px 17px;
5849 width: 17px;
5850 height: 17px;
5851 display: inline-block;
5852 position: relative;
5853 top: 2.5px;
5855 .vote:active {
5856 transform: none;
5858 .vote:hover,
5859 .vote:active,
5860 .vote:focus {
5861 box-shadow: none;
5863 .vote:hover::before,
5864 .vote.selected::before,
5865 .vote.clicked-once::before,
5866 .vote.clicked-twice::before {
5867 filter: drop-shadow(0 0 1px #fff);
5869 .vote::before,
5870 .waiting .vote.big-vote.clicked-twice::before {
5871 filter: contrast(5%) brightness(182%);
5873 .vote.clicked-once::before,
5874 .vote.big-vote.clicked-once::before {
5875 box-shadow:
5876 0 0 0 3px #ccc,
5877 0 0 0 4px transparent;
5879 .vote.big-vote.clicked-twice::before,
5880 .waiting .vote.big-vote:not(.clicked-twice)::before,
5881 .waiting .vote:not(.big-vote).clicked-once::before {
5882 box-shadow: none;
5884 .vote.clicked-twice::before,
5885 .vote.big-vote::before {
5886 box-shadow:
5887 0 0 0 3px #000,
5888 0 0 0 4px transparent;
5891 .upvote::before {
5892 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHptLTMyIDI1MmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJIOTJjLTYuNiAwLTEyLTUuNC0xMi0xMnYtNTZjMC02LjYgNS40LTEyIDEyLTEyaDkydi05MmMwLTYuNiA1LjQtMTIgMTItMTJoNTZjNi42IDAgMTIgNS40IDEyIDEydjkyaDkyYzYuNiAwIDEyIDUuNCAxMiAxMnY1NnoiLz48L3N2Zz4=');
5894 .downvote::before {
5895 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNNDAwIDMySDQ4QzIxLjUgMzIgMCA1My41IDAgODB2MzUyYzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDM1MmMyNi41IDAgNDgtMjEuNSA0OC00OFY4MGMwLTI2LjUtMjEuNS00OC00OC00OHpNOTIgMjk2Yy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmgyNjRjNi42IDAgMTIgNS40IDEyIDEydjU2YzAgNi42LTUuNCAxMi0xMiAxMkg5MnoiLz48L3N2Zz4=');
5898 /*===========================*/
5899 /* COMMENTING AND POSTING UI */
5900 /*===========================*/
5902 .comment-controls .cancel-comment-button {
5903 height: 28px;
5904 color: #fff;
5905 padding: 4px 6px 2px 6px;
5908 .posting-controls input[type='submit'],
5909 .comment-controls .cancel-comment-button,
5910 .new-comment-button {
5911 font-weight: 600;
5914 .comment-controls .delete-button::before,
5915 .comment-controls .retract-button::before,
5916 .comment-controls .unretract-button::before {
5917 opacity: 0.8;
5920 .posting-controls .action-button {
5921 border: none;
5923 .posting-controls .action-button:hover,
5924 .posting-controls .action-button:active,
5925 .posting-controls .action-button:focus {
5926 box-shadow: none;
5927 text-decoration: dotted underline;
5929 .posting-controls .action-button:active {
5930 transform: scale(0.9);
5933 .posting-controls textarea {
5934 font-family: 'Input Sans', sans-serif;
5935 font-weight: 200;
5936 font-size: 1rem;
5937 line-height: 1.4;
5938 color: #000;
5939 background-color: #fff;
5940 border-color: #000;
5941 border-width: 28px 2px 2px 2px;
5943 .posting-controls textarea:focus {
5944 border-style: dotted;
5945 border-width: 28px 2px 2px 2px;
5947 .posting-controls textarea::selection {
5948 background-color: #000;
5949 color: #fff;
5951 .posting-controls textarea::-webkit-scrollbar {
5952 width: 18px;
5954 .posting-controls textarea::-webkit-scrollbar-track {
5955 background-color: #fff;
5957 .posting-controls textarea::-webkit-scrollbar-thumb {
5958 background-color: #000;
5959 background-image: url('data:image/gif;base64,R0lGODlhBAAEAPAAMXd3d////ywAAAAABAAEAAACBgQShqgJBQA7');
5960 background-size: 2px 2px;
5961 box-shadow:
5962 0 2px 0 1px #fff inset,
5963 0 0 0 1px #fff inset,
5964 0 2px 0 1.5px #777 inset,
5965 0 0 0 1.5px #777 inset;
5967 .posting-controls textarea::-webkit-scrollbar-thumb:active {
5968 background-image: url('data:image/gif;base64,R0lGODlhBAAEAPAAMQAAAP///ywAAAAABAAEAAACBgQShqgJBQA7');
5969 box-shadow:
5970 0 2px 0 1px #fff inset,
5971 0 0 0 1px #fff inset,
5972 0 2px 0 1.5px #000 inset,
5973 0 0 0 1.5px #000 inset;
5976 /* GUIEdit buttons */
5978 .guiedit-buttons-container {
5979 background-color: #000;
5980 box-shadow: 0 0 0 1px #000;
5983 .posting-controls.edit-existing-post .guiedit-buttons-container button,
5984 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
5985 color: #0c0;
5988 button.guiedit {
5989 font-family: Font Awesome, 'Anonymous Pro', monospace;
5990 color: #fff;
5991 border: none;
5993 button.guiedit:hover,
5994 button.guiedit:active,
5995 button.guiedit:focus {
5996 box-shadow: none;
5997 color: #777;
5999 button.guiedit::after {
6000 color: #fff;
6001 top: 2px;
6002 height: 25px;
6003 text-shadow: none;
6006 /* Markdown hints */
6008 #markdown-hints {
6009 border: 2px solid #000;
6010 background-color: #fff;
6013 /*================*/
6014 /* EDIT POST FORM */
6015 /*================*/
6017 #edit-post-form .post-meta-fields {
6018 grid-template-columns: 6em auto auto auto 1fr auto;
6020 #edit-post-form .post-meta-fields input[type='checkbox'] + label::before {
6021 color: #000;
6022 border: 1px solid #000;
6023 top: 2px;
6025 #edit-post-form .post-meta-fields input[type='checkbox'] + label:hover::before,
6026 #edit-post-form .post-meta-fields input[type='checkbox']:focus + label::before {
6027 box-shadow:
6028 0 0 0 1px #fff inset,
6029 0 0 0 2px #000 inset;
6031 #edit-post-form .post-meta-fields input[type='checkbox']:active + label::before,
6032 #edit-post-form .post-meta-fields input[type='checkbox']:checked:active + label::before {
6033 background-color: #fff;
6034 box-shadow:
6035 0 0 0 3px #fff inset,
6036 0 0 0 4px #000 inset;
6038 #edit-post-form .post-meta-fields input[type='checkbox']:checked + label::before {
6039 content: "";
6040 background-color: #000;
6041 box-shadow:
6042 0 0 0 4px #fff inset;
6044 #edit-post-form input[type='radio'] + label {
6045 border-color: #000;
6046 color: #000;
6048 #edit-post-form input[type='radio'][value='all'] + label {
6049 border-width: 1px;
6051 #edit-post-form input[type='radio'][value='drafts'] + label {
6053 #edit-post-form input[type='radio'] + label:hover,
6054 #edit-post-form input[type='radio']:focus + label {
6055 color: #000;
6056 box-shadow:
6057 0 0 0 1px #fff inset,
6058 0 0 0 2px #000 inset;
6060 #edit-post-form input[type='radio']:active + label {
6061 box-shadow:
6062 0 0 0 2px #fff inset,
6063 0 0 0 3px #000 inset;
6065 #edit-post-form input[type='radio']:focus + label {
6066 box-shadow:
6067 0 0 0 1px #000;
6069 #edit-post-form input[type='radio']:checked + label {
6070 border-color: #000;
6071 box-shadow:
6072 0 0 0 1px #fff inset,
6073 0 0 0 2px #000 inset;
6074 font-weight: bold;
6077 #edit-post-form #markdown-hints-checkbox + label {
6078 padding: 4px 0 0 6px;
6081 /*=======*/
6082 /* LINKS */
6083 /*=======*/
6085 a:link,
6086 a:visited {
6087 color: inherit;
6088 text-decoration: none;
6091 /*=========*/
6092 /* BUTTONS */
6093 /*=========*/
6095 button,
6096 input[type='submit'] {
6097 border: 2px solid #000;
6098 box-shadow: 0 0 0 1px transparent;
6100 #ui-elements-container button {
6101 border: none;
6104 button:hover,
6105 input[type='submit']:hover,
6106 button:focus,
6107 input[type='submit']:focus {
6108 text-decoration: none;
6109 background-color: transparent;
6110 color: inherit;
6111 box-shadow:
6112 0 0 0 2px #fff inset,
6113 0 0 0 4px #000 inset,
6114 0 0 0 1px transparent;
6116 button:active,
6117 input[type='submit']:active {
6118 box-shadow:
6119 0 0 0 4px #fff inset,
6120 0 0 0 6px #000 inset,
6121 0 0 0 1px transparent;
6124 /*==========*/
6125 /* HEADINGS */
6126 /*==========*/
6128 .post-body h1,
6129 .post-body h2,
6130 .post-body h4,
6131 .comment-body h1,
6132 .comment-body h2,
6133 .comment-body h4 {
6134 font-family: 'Anonymous Pro', monospace;
6136 .post-body h3,
6137 .comment-body h3,
6138 .post-body h5,
6139 .post-body h6,
6140 .comment-body h5,
6141 .comment-body h6 {
6142 font-weight: 600;
6144 .post-body h6,
6145 .comment-body h6 {
6146 color: #555;
6148 .post-body h1,
6149 .comment-body h1 {
6150 border-bottom: 2px solid #000;
6153 /*========*/
6154 /* QUOTES */
6155 /*========*/
6157 blockquote {
6158 background-image: url('data:image/gif;base64,R0lGODlhCgAEAPAAMQAAAP///ywAAAAACgAEAAACCgQShqZ5vl6LNBQAOw==');
6159 background-size: 5px 2px;
6160 background-repeat: repeat-y;
6161 background-position: top left;
6162 padding-left: calc(0.5em + 5px);
6165 /*========*/
6166 /* IMAGES */
6167 /*========*/
6169 /*========*/
6170 /* TABLES */
6171 /*========*/
6173 .post-body table,
6174 .comment-body table,
6175 .post-body table th,
6176 .post-body table td,
6177 .comment-body table th,
6178 .comment-body table td {
6179 border: 1px solid #000;
6182 /*======*/
6183 /* MISC */
6184 /*======*/
6186 hr {
6187 border-bottom: 1px solid #999;
6190 code {
6191 border: 1px dotted #000;
6194 input[type='text'],
6195 input[type='search'],
6196 input[type='password'],
6197 textarea {
6198 background-color: transparent;
6199 border: 1px solid #000;
6200 color: #000;
6202 input[type='text']:focus,
6203 input[type='search']:focus,
6204 input[type='password']:focus,
6205 textarea:focus {
6206 border: 1px dashed #000;
6209 select {
6210 color: #000;
6213 .frac sup {
6214 position: relative;
6215 left: -1px;
6217 .frac sub {
6218 position: relative;
6219 left: -0.5px;
6222 /*============*/
6223 /* ABOUT PAGE */
6224 /*============*/
6226 .about-page mark {
6227 background-color: #e6e6e6;
6228 text-decoration: none;
6229 box-shadow:
6230 0 -1px 0 0 #000 inset,
6231 0 -3px 1px -2px #000 inset;
6232 padding: 0 1px;
6235 #content.about-page .accesskey-table {
6236 font-family: 'Anonymous Pro', monospace;
6237 border-color: #ddd;
6240 #content.about-page img {
6241 border: 1px solid #000;
6244 /*========================*/
6245 /* QUALIFIED HYPERLINKING */
6246 /*========================*/
6248 #aux-about-link a:hover {
6249 color: #777;
6252 .qualified-linking label:hover {
6253 color: #777;
6256 .qualified-linking-toolbar {
6257 border: 2px solid #000;
6258 background-color: #fff;
6260 .qualified-linking-toolbar a {
6262 .qualified-linking-toolbar a:hover {
6263 box-shadow: 0 0 0 2px #000;
6265 .qualified-linking-toolbar a:active {
6266 box-shadow: 0 0 0 2px #000 inset;
6268 .qualified-linking label::after {
6269 background-color: #fff;
6270 opacity: 0.8;
6273 /*======*/
6274 /* MATH */
6275 /*======*/
6277 .mathjax-block-container::-webkit-scrollbar {
6278 height: 12px;
6279 background-color: #f6f6ff;
6280 border-radius: 6px;
6281 border: 1px solid #ddf;
6283 .mathjax-block-container::-webkit-scrollbar-thumb {
6284 background-color: #dde;
6285 border-radius: 6px;
6286 border: 1px solid #cce;
6288 .mathjax-inline-container::-webkit-scrollbar {
6289 height: 8px;
6290 background-color: #f6f6ff;
6291 border-radius: 4px;
6292 border: 1px solid #ddf;
6294 .mathjax-inline-container::-webkit-scrollbar-thumb {
6295 background-color: #dde;
6296 border-radius: 4px;
6297 border: 1px solid #cce;
6300 /*=================*/
6301 /* ALIGNMENT FORUM */
6302 /*=================*/
6304 #content.alignment-forum-index-page::before {
6305 background-color: #f2f6ff;
6307 #content.alignment-forum-index-page::after {
6308 font-family: "Concourse SmallCaps";
6309 font-weight: 600;
6310 background-color: #7f85b2;
6311 color: transparent;
6312 -webkit-background-clip: text;
6313 text-shadow:
6314 rgba(255,255,255,0.5) 0px 3px 3px;
6316 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6317 #content.alignment-forum-index-page h1.listing a:hover,
6318 #content.alignment-forum-index-page h1.listing a:focus {
6319 background-color: rgba(242,246,255,0.85);
6323 /*====================*/
6324 /* FOR NARROW SCREENS */
6325 /*====================*/
6327 @media only screen and (max-width: 1440px) {
6328 #hns-date-picker {
6329 right: -70px;
6330 bottom: 64px;
6331 background-color: #fff;
6332 opacity: 1.0;
6334 #hns-date-picker::before {
6335 width: 56%;
6336 border: 2px solid #000;
6337 box-shadow: 0 0 0 1px #000;
6340 @media only screen and (max-width: 1160px) {
6341 #hns-date-picker {
6342 bottom: 203px;
6343 right: -24px;
6345 #hns-date-picker::before {
6346 width: 85%;
6348 #theme-selector:hover::after {
6349 width: calc(6.5em - 6px);
6350 background-color: #000;
6353 @media only screen and (max-width: 1080px) {
6354 #theme-tweaker-toggle button {
6355 border: 1px solid #999;
6356 box-shadow:
6357 0 0 10px #999 inset,
6358 0 0 0 1px transparent;
6359 transform: scale(0.8);
6361 #hns-date-picker {
6362 right: -14px;
6364 #hns-date-picker::before {
6365 width: 92%;
6368 @media only screen and (max-width: 1040px) {
6369 #hns-date-picker {
6370 right: -8px;
6372 #hns-date-picker::before {
6373 width: 94%;
6376 @media only screen and (max-width: 1020px) {
6377 #hns-date-picker {
6378 right: 19px;
6380 #hns-date-picker::before {
6381 width: 100%;
6383 #quick-nav-ui {
6384 background-color: #fff;
6385 box-shadow: 0 9px 0 0px #fff;
6387 #new-comment-nav-ui .new-comments-count::before {
6388 background-color: #fff;
6389 box-shadow:
6390 0 0 0 2px #000,
6391 0 0 0 10px #fff;
6393 #anti-kibitzer-toggle {
6394 background-color: #fff;
6395 box-shadow:
6396 0 0 0 2px #000,
6397 0 0 0 10px #fff;
6400 @media only screen and (max-width: 1000px) {
6401 #theme-selector,
6402 #quick-nav-ui,
6403 #new-comment-nav-ui,
6404 #new-comment-nav-ui + #hns-date-picker,
6405 #theme-tweaker-toggle button,
6406 #text-size-adjustment-ui,
6407 #anti-kibitzer-toggle {
6408 opacity: 1.0;
6410 #theme-selector {
6411 background-color: #fff;
6412 border: 1px solid #000;
6414 #theme-selector:hover::after {
6415 width: calc(6em + 6px);
6416 height: calc(100% - 5px);
6417 top: 3px;
6418 left: 100%;
6420 #text-size-adjustment-ui {
6421 background-color: #fff;
6422 box-shadow: 0 0 0 1px #000;
6423 padding: 2px 0 4px 0;
6425 #theme-tweaker-toggle {
6426 left: -19px;
6428 #theme-tweaker-toggle button {
6429 background-color: #fff;
6430 box-shadow: none;
6431 border: 1px solid #000;
6433 #theme-tweaker-toggle button:hover {
6434 color: #777;
6438 /*========*/
6439 /* MOBILE */
6440 /*========*/
6442 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6443 #ui-elements-container > div[id$='-ui-toggle'] button,
6444 #theme-selector .theme-selector-close-button {
6445 color: #000;
6446 opacity: 1.0;
6448 #appearance-adjust-ui-toggle button,
6449 #post-nav-ui-toggle button {
6450 background-color: #fff;
6451 box-shadow:
6452 0 0 0 2px #fff,
6453 0 0 0 2px #000 inset;
6456 #theme-selector {
6457 background-color: #fff;
6458 box-shadow:
6459 0 0 0 1px #000,
6460 0 0 0 7px #fff;
6462 #theme-selector::before {
6463 color: #000;
6465 #theme-selector button {
6466 background-color: #fff;
6467 box-shadow:
6468 0 0 0 1px #fff inset,
6469 0 0 0 3px #000 inset,
6470 0 0 0 5px #fff inset;
6472 #theme-selector button::after {
6473 color: #000;
6474 max-width: calc(100% - 3.5em);
6475 overflow: hidden;
6476 text-overflow: ellipsis;
6477 padding-left: 1px;
6479 #theme-selector button.selected {
6480 box-shadow:
6481 0 0 0 1px #fff inset,
6482 0 0 0 3px #000 inset,
6483 0 0 0 5px #fff inset,
6484 0 0 0 7px #000 inset;
6486 #theme-selector button.selected::after {
6487 font-weight: bold;
6489 #theme-selector .theme-selector-close-button {
6490 font-weight: 400;
6493 #quick-nav-ui {
6494 background-color: #fff;
6496 #quick-nav-ui a {
6497 box-shadow:
6498 0 0 0 2px #000;
6500 #quick-nav-ui a::after,
6501 #new-comment-nav-ui::before {
6502 font-family: 'Anonymous Pro', monospace;
6503 font-weight: bold;
6504 font-size: 0.5rem;
6505 background-color: #fff;
6507 #new-comment-nav-ui {
6508 background-color: #fff;
6509 border: 1px solid #000;
6510 box-shadow: 0 0 0 1px #000;
6512 #new-comment-nav-ui::before {
6513 color: #000;
6514 font-size: 0.6875rem;
6515 font-weight: bold;
6516 bottom: calc(100% + 2px);
6517 padding: 2px 0 0 0;
6519 #new-comment-nav-ui .new-comment-sequential-nav-button {
6520 color: #000;
6522 #new-comment-nav-ui .new-comments-count,
6523 #new-comment-nav-ui .new-comments-count::after {
6524 color: #000;
6526 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6527 color: #bbb;
6529 #new-comment-nav-ui button::after {
6530 font-family: 'Anonymous Pro', monospace;
6533 #hns-date-picker {
6534 bottom: 130px;
6535 right: 52px;
6536 text-indent: 0;
6539 /*****************************************/
6540 @media only screen and (max-width: 900px) {
6541 /*****************************************/
6542 h1.listing {
6543 line-height: 1;
6544 margin-bottom: 6px;
6546 h1.listing + .post-meta {
6547 font-family: Input Sans Narrow;
6548 font-weight: 300;
6550 h1.listing + .post-meta .post-section {
6551 overflow: visible;
6552 order: 1;
6554 h1.listing + .post-meta .post-section::before {
6555 position: unset;
6558 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6559 background-color: #000;
6560 height: 2px;
6563 .comment-item .comment-item {
6564 margin: 0.75em 2px 3px 6px;
6566 .comment-item .comment-item + .comment-item {
6567 margin: 1.5em 2px 3px 6px;
6570 a.comment-parent-link::before {
6571 line-height: 1;
6574 #edit-post-form textarea {
6575 min-height: calc(100vh - 400px)
6577 #edit-post-form #markdown-hints {
6578 position: fixed;
6579 top: 74px;
6580 left: 0;
6581 right: 0;
6582 max-width: 330px;
6583 margin: auto;
6585 #edit-post-form input[type='submit'] {
6586 background-color: #fff;
6589 .comment-controls .cancel-comment-button {
6590 max-width: 1.4em;
6592 .comment-controls .cancel-comment-button::before {
6593 opacity: 1.0;
6594 position: relative;
6595 top: -1px;
6598 .sublevel-nav .sublevel-item,
6599 .sublevel-nav .sublevel-item:first-child,
6600 .sublevel-nav .sublevel-item:last-child {
6601 border-width: 1px;
6603 /*******************************************/
6604 } @media only screen and (max-width: 720px) {
6605 /*******************************************/
6606 #content.conversations-user-page h1.listing + .post-meta .date {
6607 margin: 0 0 0 1em;
6609 /*******************************************/
6610 } @media only screen and (max-width: 520px) {
6611 /*******************************************/
6612 h1.listing {
6613 font-size: 1.375rem;
6614 margin: 18px 6px 4px 6px;
6615 max-width: calc(100% - 12px);
6617 h1.listing a[href^='http'] {
6618 top: 4px;
6620 h1.listing + .post-meta {
6621 margin: 4px 6px;
6622 font-family: Input Sans Condensed;
6623 font-weight: 300;
6625 h1.listing + .post-meta .post-section {
6626 order: 1;
6627 overflow: visible;
6629 h1.listing + .post-meta .post-section::before {
6630 position: relative;
6631 top: -1px;
6632 left: 0;
6634 #content.conversations-user-page h1.listing {
6635 font-size: 1.375rem;
6637 #content.conversations-user-page h1.listing + .post-meta .conversation-participants {
6638 margin: 0;
6640 #content.conversations-user-page h1.listing + .post-meta .messages-count {
6641 margin: 0 0 0 1em;
6644 #content.compact > .comment-thread .comment-item {
6645 max-height: 110px;
6648 .textarea-container:focus-within textarea {
6649 background-color: #fff;
6650 border: none;
6651 box-shadow:
6652 0 0 0 2px #000;
6654 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6655 padding: 5px 6px 6px 6px;
6656 color: #fff;
6657 font-weight: bold;
6658 box-shadow: none;
6660 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6661 box-shadow:
6662 0 0 0 1px #000 inset,
6663 0 0 0 3px #fff inset,
6664 0 0 0 2px #fff;
6666 .textarea-container:focus-within .guiedit-buttons-container {
6667 border-top: 2px solid #000;
6669 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
6670 padding-bottom: 5px;
6672 #content.conversation-page .textarea-container:focus-within::after {
6673 background-color: #000;
6675 .textarea-container:focus-within button.guiedit {
6676 border: 1px solid transparent;
6678 #markdown-hints,
6679 #edit-post-form #markdown-hints {
6680 border: 2px solid #000;
6681 box-shadow:
6682 0 0 0 2px #fff,
6683 0 0 0 4px #000;
6685 #markdown-hints::after {
6686 color: #000;
6689 #edit-post-form .textarea-container:focus-within textarea {
6690 margin: 3px 0;