Merge branch 'next' of https://github.com/kronusaturn/lw2-viewer into next
[lw2-viewer.git] / www / style-zero.mac.css
blob16c256127c73f0df02326311877b38e6279d0587
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 overflow: auto;
42 display: grid;
43 grid-template-columns: repeat(3, 1fr);
44 grid-auto-flow: dense;
47 /*=---------=*/
48 /*= Content =*/
49 /*=---------=*/
51 #content > * {
52 grid-column: 1 / span 3;
55 /*=----------------------=*/
56 /*= Floating UI elements =*/
57 /*=----------------------=*/
59 #ui-elements-container {
60 position: fixed;
61 height: 100vh;
62 top: 0;
63 left: 0;
64 right: 0;
65 margin: auto;
66 z-index: 10000;
67 pointer-events: none;
69 #ui-elements-container > * {
70 pointer-events: auto;
73 /*=----------------=*/
74 /*= Images overlay =*/
75 /*=----------------=*/
76 /* (To exclude images in posts from theme tweaks) */
78 #images-overlay {
79 position: absolute;
80 z-index: 1;
81 left: 0;
82 right: 0;
83 margin: auto;
86 /***********/
87 /* NAV BAR */
88 /***********/
90 .nav-bar {
91 margin: 0 -30px;
93 .nav-bar {
94 display: flex;
95 justify-content: flex-end;
98 /*=---------------=*/
99 /*= Nav bar items =*/
100 /*=---------------=*/
102 .nav-item {
103 flex: 1 1 auto;
105 .nav-item * {
106 text-overflow: ellipsis;
107 white-space: nowrap;
108 overflow: hidden;
110 .nav-inner {
111 padding: 12px 30px;
112 text-align: center;
113 display: block;
114 position: relative;
116 #secondary-bar .nav-inner {
117 padding: 4px 0;
120 /*=------------=*/
121 /*= Bottom bar =*/
122 /*=------------=*/
124 h1.listing ~ #bottom-bar {
125 margin-top: 1.25em;
127 #bottom-bar .nav-item {
128 flex: 1 1 0;
131 /*=-----------------=*/
132 /*= Accesskey hints =*/
133 /*=-----------------=*/
135 .nav-inner::after {
136 content: attr(accesskey);
137 display: none;
140 /*=---------------=*/
141 /*= Pagination UI =*/
142 /*=---------------=*/
144 #bottom-bar .nav-item a::before,
145 #top-nav-bar a::before {
146 font-family: Font Awesome;
147 font-weight: 900;
148 font-size: 0.8em;
149 position: relative;
150 bottom: 1px;
151 margin-right: 0.5em;
153 #bottom-bar #nav-item-first a::before,
154 #top-nav-bar a.nav-item-first::before {
155 content: "\F100";
157 #bottom-bar #nav-item-top a::before {
158 content: "\F062";
160 #bottom-bar #nav-item-prev a::before,
161 #top-nav-bar a.nav-item-prev::before {
162 content: "\F060";
164 #bottom-bar #nav-item-next a::before,
165 #top-nav-bar a.nav-item-next::before {
166 content: "\F061";
168 #bottom-bar #nav-item-next a::before {
169 margin-left: -2em;
170 margin-right: 0;
171 left: 3.8em;
174 /*=-----------------------=*/
175 /*= Decorative bottom bar =*/
176 /*=-----------------------=*/
177 /* (On short pages with no pagination) */
179 #bottom-bar.decorative {
180 position: relative;
182 #bottom-bar.decorative .nav-item {
183 display: none;
186 /*=------------=*/
187 /*= Search tab =*/
188 /*=------------=*/
190 #nav-item-search {
191 flex: 4 1 auto;
193 #nav-item-search form::before {
194 content: "\F002";
195 font-family: Font Awesome;
196 font-weight: 900;
197 display: inline-block;
198 vertical-align: top;
199 height: 23px;
200 width: 23px;
202 #nav-item-search input {
203 height: 23px;
204 width: calc(95% - 80px);
205 padding: 1px 4px;
207 #nav-item-search button {
208 height: 21px;
211 /*=-----------=*/
212 /*= Login tab =*/
213 /*=-----------=*/
215 #nav-item-login {
216 position: relative;
217 padding-right: 0.5em;
220 /*******************/
221 /* INBOX INDICATOR */
222 /*******************/
224 #inbox-indicator {
225 position: absolute;
226 top: 1px;
227 right: 0;
228 height: 100%;
229 visibility: hidden;
231 #inbox-indicator::before {
232 content: "\F0E0";
233 font-family: "Font Awesome";
234 color: #bbb;
235 font-size: 1.1875rem;
236 position: absolute;
237 height: 100%;
238 right: 0;
239 top: 0;
240 padding: 0 0.45em;
241 visibility: visible;
242 font-weight: 900;
244 #inbox-indicator.new-messages::before {
245 color: #f00;
246 text-shadow:
247 0 0 1px #777,
248 0.5px 0.5px 1px #777;
250 a#inbox-indicator:hover::before {
251 color: #fff;
252 text-shadow:
253 0 0 1px #000,
254 0 0 2px #000,
255 0 0 4px #000,
256 0 0 1px #777,
257 0.5px 0.5px 1px #777;
259 a#inbox-indicator.new-messages:hover::before {
260 text-shadow:
261 0 0 1px #f00,
262 0 0 2px #f00,
263 0 0 4px #f00,
264 0 0 1px #777,
265 0.5px 0.5px 1px #777;
268 /****************/
269 /* PAGE TOOLBAR */
270 /****************/
272 #content > .page-toolbar {
273 grid-column: 3;
274 text-align: right;
275 margin-right: -20px;
277 #content.user-page > .page-toolbar {
278 grid-column: 2 / span 2;
280 .page-toolbar {
281 font-size: 0.9em;
282 line-height: 1.8;
285 /*=--------------------------=*/
286 /*= Page toolbar items (all) =*/
287 /*=--------------------------=*/
289 .page-toolbar > * {
290 display: inline-block;
291 margin-left: 1.5em;
293 .page-toolbar .button::before {
294 font-family: "Font Awesome";
295 font-size: 0.9em;
296 padding-right: 0.3em;
299 /*=-------------------------------=*/
300 /*= Page toolbar items (specific) =*/
301 /*=-------------------------------=*/
303 .new-post::before {
304 content: '\F067';
305 font-weight: 900;
307 .new-private-message::before {
308 content: '\F075';
309 font-weight: 400;
311 .logout-button::before {
312 content: '\F2F5';
313 font-weight: 900;
315 .rss::before {
316 content: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiANCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiIGlkPSJSU1NpY29uIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiI+DQo8ZGVmcz4NCjxsaW5lYXJHcmFkaWVudCB4MT0iMC4wODUiIHkxPSIwLjA4NSIgeDI9IjAuOTE1IiB5Mj0iMC45MTUiIGlkPSJSU1NnIj4NCjxzdG9wICBvZmZzZXQ9IjAuMCIgc3RvcC1jb2xvcj0iI0UzNzAyRCIvPjxzdG9wICBvZmZzZXQ9IjAuMTA3MSIgc3RvcC1jb2xvcj0iI0VBN0QzMSIvPg0KPHN0b3AgIG9mZnNldD0iMC4zNTAzIiBzdG9wLWNvbG9yPSIjRjY5NTM3Ii8+PHN0b3AgIG9mZnNldD0iMC41IiBzdG9wLWNvbG9yPSIjRkI5RTNBIi8+DQo8c3RvcCAgb2Zmc2V0PSIwLjcwMTYiIHN0b3AtY29sb3I9IiNFQTdDMzEiLz48c3RvcCAgb2Zmc2V0PSIwLjg4NjYiIHN0b3AtY29sb3I9IiNERTY0MkIiLz4NCjxzdG9wICBvZmZzZXQ9IjEuMCIgc3RvcC1jb2xvcj0iI0Q5NUIyOSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjwvZGVmcz4NCjxyZWN0IHdpZHRoPSIyNTYiIGhlaWdodD0iMjU2IiByeD0iNTUiIHJ5PSI1NSIgeD0iMCIgIHk9IjAiICBmaWxsPSIjQ0M1RDE1Ii8+DQo8cmVjdCB3aWR0aD0iMjQ2IiBoZWlnaHQ9IjI0NiIgcng9IjUwIiByeT0iNTAiIHg9IjUiICB5PSI1IiAgZmlsbD0iI0Y0OUM1MiIvPg0KPHJlY3Qgd2lkdGg9IjIzNiIgaGVpZ2h0PSIyMzYiIHJ4PSI0NyIgcnk9IjQ3IiB4PSIxMCIgeT0iMTAiIGZpbGw9InVybCgjUlNTZykiLz4NCjxjaXJjbGUgY3g9IjY4IiBjeT0iMTg5IiByPSIyNCIgZmlsbD0iI0ZGRiIvPg0KPHBhdGggZD0iTTE2MCAyMTNoLTM0YTgyIDgyIDAgMCAwIC04MiAtODJ2LTM0YTExNiAxMTYgMCAwIDEgMTE2IDExNnoiIGZpbGw9IiNGRkYiLz4NCjxwYXRoIGQ9Ik0xODQgMjEzQTE0MCAxNDAgMCAwIDAgNDQgNzMgViAzOGExNzUgMTc1IDAgMCAxIDE3NSAxNzV6IiBmaWxsPSIjRkZGIi8+DQo8L3N2Zz4NCg==');
317 display: inline-block;
318 width: 1em;
319 padding-right: 0.2em;
320 position: relative;
321 top: 1px;
324 /*********************/
325 /* TOP PAGINATION UI */
326 /*********************/
328 #top-nav-bar {
329 grid-column: 2;
330 margin: 0.25em 0 0 0;
331 padding: 0.75em 0 0 0;
332 text-align: center;
333 font-size: 1.25em;
334 display: flex;
335 justify-content: center;
337 #top-nav-bar a {
338 line-height: 1;
340 #top-nav-bar a.disabled {
341 pointer-events: none;
342 visibility: hidden;
344 /* REMOVE WHEN THIS FEATURE IS IMPLEMENTED: */
345 #top-nav-bar a.nav-item-last {
346 pointer-events: none;
347 visibility: hidden;
349 /* END REMOVE */
350 #top-nav-bar a.nav-item-last::before {
351 content: "\F101";
353 #top-nav-bar .page-number {
354 position: relative;
355 display: inline-block;
356 width: 1.5em;
358 #top-nav-bar .page-number-label {
359 position: absolute;
360 font-size: 0.5em;
361 text-transform: uppercase;
362 width: 100%;
363 bottom: 90%;
364 left: 0;
366 #top-nav-bar a::before {
367 margin: 0.5em;
368 display: inline-block;
371 /****************/
372 /* SUBLEVEL NAV */
373 /****************/
375 .sublevel-nav {
376 text-align: center;
377 display: flex;
378 justify-content: center;
379 margin: 1em 0 0 0;
381 #content > .sublevel-nav:not(.sort) {
382 grid-row: 5;
383 grid-column: 2;
384 align-self: start;
386 .sublevel-nav .sublevel-item {
387 flex: 0 0 6em;
388 padding: 0.125em 0.5em;
389 font-size: 1.125rem;
391 .sublevel-nav .sublevel-item:disabled,
392 .sublevel-nav span.sublevel-item {
393 cursor: default;
396 /***********************/
397 /* SORT ORDER SELECTOR */
398 /***********************/
400 .sublevel-nav.sort {
401 position: relative;
402 margin-top: 8px;
403 font-size: 0.75em;
405 #content > .sublevel-nav.sort {
406 grid-column: 3;
407 grid-row: 5 / span 2;
408 justify-self: end;
409 align-self: start;
410 flex-flow: column;
412 #content.index-page > .sublevel-nav.sort {
413 grid-column: 1;
414 grid-row: 3 / span 1;
415 justify-self: start;
416 flex-flow: row;
419 .sublevel-nav.sort::before {
420 content: "Sort";
421 font-size: 0.75rem;
422 position: absolute;
423 top: 0;
424 left: 0;
425 width: 100%;
427 .sublevel-nav.sort .sublevel-item {
428 line-height: 1;
429 font-size: 0.875rem;
430 flex-basis: unset;
433 /*******************************/
434 /* COMMENTS SORT MODE SELECTOR */
435 /*******************************/
437 #comments > .sublevel-nav.sort {
438 margin: 1em auto 0 auto;
440 @supports (width: -moz-fit-content) {
441 #comments > .sublevel-nav.sort {
442 width: -moz-fit-content;
445 @supports (width: fit-content) {
446 #comments > .sublevel-nav.sort {
447 width: fit-content;
451 /******************/
452 /* WIDTH SELECTOR */
453 /******************/
455 #width-selector {
456 position: absolute;
457 top: 4px;
458 right: -78px;
460 #width-selector button {
461 width: 22px;
462 height: 22px;
463 padding: 6px;
464 margin: 1px;
465 overflow: hidden;
466 background-repeat: no-repeat;
467 background-size: 100%;
468 background-origin: content-box;
470 #width-selector button,
471 #width-selector button:active,
472 #width-selector button:focus {
473 text-shadow: none;
474 color: transparent;
476 #width-selector button:disabled {
477 cursor: auto;
479 #width-selector button.select-width-normal {
480 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIqnI+py+0PU5hB0Sqp1Xlu32HI9YkHGZZqyo6cC8Kmgcqr3Z5vxPf+nygAADs=');
482 #width-selector button.select-width-wide {
483 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIrnI+py+0PT5jB0TqupUY37zEg95HhMk6bmpGi6aIw+7KnkmK1HvX+DzwUAAA7');
485 #width-selector button.select-width-fluid {
486 background-image: url('data:image/gif;base64,R0lGODdhFAAUAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAUABQAAAIwnI+py+0/ApIwUGOfvTGzzYELGIoTiZpdylJte7xoQp7beMc5XnL4CYlMgsSisVEAADs=');
489 /*=----------------=*/
490 /*= Hover tooltips =*/
491 /*=----------------=*/
493 #width-selector button::after {
494 content: attr(data-name);
495 position: absolute;
496 display: block;
497 left: 0;
498 width: 100%;
499 text-align: center;
500 top: 56px;
501 visibility: hidden;
503 #width-selector button.selected::after {
504 content: attr(data-name) " (selected)";
506 #width-selector button:hover:not(:active)::after {
507 visibility: visible;
510 head.content-width-normal + body > * {
511 max-width: 900px;
513 head.content-width-wide + body > * {
514 max-width: 1150px;
516 head.content-width-fluid + body > * {
517 max-width: calc(100% - 300px);
520 /******************/
521 /* THEME SELECTOR */
522 /******************/
524 #theme-selector {
525 position: absolute;
526 top: 3px;
527 left: -41px;
528 opacity: 0.4;
529 display: table;
530 max-width: 40px;
532 #theme-selector:hover {
533 opacity: 1.0;
536 /*=----------------------=*/
537 /*= Theme select buttons =*/
538 /*=----------------------=*/
540 .theme-selector button {
541 display: table-cell;
542 width: 26px;
543 height: 26px;
544 padding: 5px;
545 margin: 1px 7px 0 7px;
546 color: transparent;
547 background-size: 16px 16px;
548 background-origin: content-box;
550 .theme-selector button,
551 .theme-selector button:hover,
552 .theme-selector button:active,
553 .theme-selector button:focus {
554 text-shadow: none;
555 color: transparent;
557 .theme-selector button:disabled {
558 cursor: auto;
561 /*=----------------------------=*/
562 /*= Pre-rendered button images =*/
563 /*=----------------------------=*/
564 /* (Each is just a capital letter A through whatever) */
566 .theme-selector button:nth-of-type(1) {
567 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRYWFhwcHCIiIioqKjU1NTs7O0BAQEtLS09PT1ZWVlxcXGNjY2VlZWZmZmpqamxsbG1tbXd3d4WFhYeHh46OjpaWlpubm6Ojo6ampqysrK+vr7GxsbKysra2tr29vcDAwMnJyc3NzdLS0tra2tvb293d3d/f3+Tk5Ofn5+rq6uvr6+3t7e7u7vHx8fb29vf39/r6+vv7+/39/f7+/v///38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGmUCbcEgsGo/IpHLJbDqf0Kh0Sq0eQwHCyVqsKQAACpdYAgMGrrGwYgZs1C9C+zAbc9rgEZeGwAMiXCRmHRdgAipWE4YtJmYYVSwCYBI2NQxgBDBUGWYSHh+SYCBTMgZ+bQs0UiKneCVRNRBmCw61DwlmYlApZnREMQVgaFCFYBpGFmZvTjRfAAIrRihmDTVq19jZ2tvc3d5CQQA7');
569 .theme-selector button:nth-of-type(2) {
570 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMQAAAA0NDRwcHCYmJioqKk1NTVVVVV1dXWJiYmNjY3d3d35+foiIiIuLi5aWlq2trbOzs7S0tLm5ucXFxcrKysvLy83NzdLS0tXV1dbW1tra2tvb2+Xl5ebm5ujo6Onp6e3t7e7u7vT09Pb29vf39/j4+Pv7+/39/f7+/v///wAAwKwtDQEAAAAQrAUAAGAAABUAAAAAAAAAEKwFAABgAABQ4VxT/38AAA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGj0CAcEgsGo/IpHLJbDqf0Kh0Sq0KAx0TaUsqcRzWQChFLpM/BGoAZG5P1OyUiXI5lUeD6ZosEgAWd2lSeykieQllhnpxJAoMH2UZcG1lIYKDcZQhBpOUZCcFi2QjaQgeZRaiKXhCDWUaqn1CD6+qKRIQGGYbtpQoC3pjnikRapBtIhUHVszNzs/Q0dLT1ENBADs=');
572 .theme-selector button:nth-of-type(3) {
573 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=');
575 .theme-selector button:nth-of-type(4) {
576 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMYiHh4iIiImGhYqGhYuHhYyGg46Gg5CFgJKEfpKFf5WDfJeEfJiCeZmDeZqCeZuCd56BdZ+AdKZ/cKd/bq19abJ8ZbZ6Ybd5YMR1VctzUMxzT8x0UNJxStNxSdNyStRxSddwRthvRNlvRNtvQ99uQOFuPuRsO+ZtO+dsOuhsOOtrNuxrNvBpMfBpMvNoL/ZnLPZoLvhnLPlmKvpmKvtnKvxmKPxmKf1mKA8AAAAAAAAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGn8CAcEgsGo/IpHLJbDqf0Kh0Sq0KBauX9iVrZRBWBe1GLpM11cSsZplMKqIaOTWYqmsM4uFEBtnXD0UAKDc1EVJ3gUUNNjcjiIBHITcsAlGJRxw3MASXkUYVm3VQmEYbNy6jT6VFHZudpJ9EBjI3JZA1ikQeZBe4ugEAH2QqALgUDQ4QGDFkMgt/ZmYmBVRq0i8kElbc3d7f4OHi4+REQQA7');
578 .theme-selector button:nth-of-type(5) {
579 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAw5wMy5gc15hI95RQ/5BhC4xtE5CZN4idN4Upo3Zai05um0p2o0qCq0aKr0aqy0Kyz0K200K+10LK4z7q+zru/zry/zr3Azr7Bzr/CzsDDzsHDzcTGzcnJzMrKzMzMzCwAAAAAIAAgAAAFbeAnjmRpnmiqrmzrvnAsz3Q9esmB7Hxh1ZsBYEgEBCo1DkHgmEiez05ymbGZlIKflYRFbkfY6lekBOh4hoitXBwq1kuG5EF/aOAC8Rir3S/7X3xjZEsQGBSIFBdwbUQNU41DC4OUlZaXmJmaViEAOw==');
581 .theme-selector button:nth-of-type(6) {
582 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMQAAAA0NDS4uLjU1NTg4OElJSVZWVmNjY21tbaOjo62trbOzs8XFxcvLy8zMzNDQ0Nvb2+Dg4OHh4ePj4+Xl5e7u7vLy8v39/f///4n/fwAAwKwtDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFWiAmjmRpnmiqrmzrvnAsz3RNJkKh70NlH4CgEBDw1RCABSXCZF5syIfthGxMTdVrKasdIQGGHWEy/Q4BjDJAIYG4IRa1tCvi0u1dvFZ/5asddIGCg4SFhoeDIQA7');
584 .theme-selector button:nth-of-type(7) {
585 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPUAMWcEFG4QH3QZKHcfLXslM4AtOYIxPYQ1QYY4Q4tAS5VPWZpYYbKAhrSCh7iJjruPk72RlcWfosikp8qnqsyrrNK1tdO2tta7u9e+vtzExOTS0ebV0+bW1OfX1ejY1ujZ1+na1+nb2Ozf3Ozg3e3h3u7i3+/k4fDm4/Ho5PLq5vPr5/Ts6PXu6vfx7fjz7/j07/n18Pr28fr38vv48/v59Pz69f379v389/79+P//+gAAwKwtDQEAAAAAAAAAAAAAACwAAAAAIAAgAAAGssCccEgsGo/IpHLJbDqf0Kh0CmWhVi5q0TYhAL6AwySmFRXAaEAANOWAIScbjRT5fqQzBEAQMrYoOFIWamxaRTV6DIZGL2cbi0UgAAMtRDAyM5kzMlGSAixDjWkJN1Adk6BComgLgU8nAgEllpg2GgAKrk4yZw9IkrlRD3uzRsC6TioCAAQmRh4ArVIXYBKpMBhepFMZaAYHaBVaLA5pAA0pkDQjISEmM5Dx8vP09fb3UUEAOw==');
587 .theme-selector button:nth-of-type(8) {
588 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMVONTVSNTlaPUFeQUViQUlmRU2yeZ3Cga3KhbYKsfqbEo6jGpazIqbLMr7PNsMHWvsHWv8LXwMPXwejw5+nw6Orx6e/07vH28PX49Pf69vn7+fv9+/z9/P7//v///wAAACwAAAAAIAAgAAAFe6AnjmRpnmiqrmzrvnAsz3Rts52zbKamNBxZxwB4mC6CAEWIKJowhECF6SxBpVSjNTqNdZqSJ5fKyFzO58kA620C3nA4G/YFEAr4fAEwf9UhYn0udVokV110TYUjh1mBiH6Kj0IHVYZRS14JABFiAhY3oaKjpKWmp6g2IQA7');
590 .theme-selector button:nth-of-type(9) {
591 background-image: url('data:image/gif;base64,R0lGODlhIAAgAPQAMZLDlpPDl5XEmJfFmpfGm5rHnZ3JoKjPq6nPrLXWuL/cwe317e317vb69vz9/P3+/f7//v///wAAQBsmAIBgAAAQhqFS/38AAO86GpX/fwAAwAzpDQEAAAAeBwAAAAAAACwAAAAAIAAgAAAFT2AkjmRpnmiqrmzrvnAsz3RtQsig2OYSAAdeifELCkcNAfA4ghiWzIgTypwaq8/r0RqVZrvcaBhLPT4KZSExzVtrhQ4CINGt2+/4vH4/CwEAOw==');
594 /*=------------------------------=*/
595 /*= Theme select button tooltips =*/
596 /*=------------------------------=*/
597 /* (with the name & description of the theme that each button selects) */
599 #theme-selector button {
600 position: relative;
601 z-index: 1;
603 #theme-selector button::before {
604 content: attr(data-theme-name);
605 position: absolute;
606 top: 0;
607 right: 100%;
608 padding: 5px 6px 6px 6px;
609 line-height: 1;
610 width: 6em;
611 text-align: right;
612 z-index: 1;
613 visibility: hidden;
615 #theme-selector:hover button::before {
616 visibility: visible;
618 #theme-selector:hover ~ #theme-tweaker-toggle,
619 #theme-selector:active ~ #theme-tweaker-toggle {
620 z-index: -1;
623 /************************/
624 /* THEME TWEAKER TOGGLE */
625 /************************/
627 #theme-tweaker-toggle {
628 position: absolute;
629 top: 7px;
630 left: -75px;
632 #theme-tweaker-toggle button {
633 font-family: Font Awesome;
634 font-weight: 900;
635 font-size: 1.25rem;
636 opacity: 0.4;
637 z-index: 1;
639 #theme-tweaker-toggle button:hover {
640 opacity: 1.0;
643 /*******************/
644 /* QUICKNAV WIDGET */
645 /*******************/
647 #quick-nav-ui {
648 position: absolute;
649 right: -67px;
650 bottom: 20px;
652 #quick-nav-ui a {
653 font-family: 'Font Awesome';
654 font-weight: 900;
655 font-size: 1.5rem;
656 line-height: 1.7;
657 text-align: center;
658 display: block;
659 width: 40px;
660 height: 40px;
661 margin: 10px 0 0 0;
663 #quick-nav-ui a[href='#comments'].no-comments {
664 pointer-events: none;
666 #quick-nav-ui a {
667 visibility: hidden;
669 #content.post-page ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
670 visibility: visible;
673 /************************/
674 /* NEW COMMENT QUICKNAV */
675 /************************/
677 #new-comment-nav-ui {
678 position: absolute;
679 right: -112px;
680 bottom: 42px;
682 #new-comment-nav-ui > * {
683 display: block;
684 position: relative;
686 #new-comment-nav-ui.no-comments {
687 display: none;
690 /*=--------------------=*/
691 /*= New comments count =*/
692 /*=--------------------=*/
694 #new-comment-nav-ui .new-comments-count {
695 width: 2em;
696 font-size: 1.25rem;
697 line-height: 1.1;
698 text-align: center;
699 left: 1px;
700 cursor: pointer;
702 #new-comment-nav-ui .new-comments-count::selection {
703 background-color: transparent;
705 #new-comment-nav-ui .new-comments-count::after {
706 content: "NEW";
707 display: block;
708 font-size: 0.625rem;
711 /*=-----------------------------------=*/
712 /*= Next/previous new comment buttons =*/
713 /*=-----------------------------------=*/
715 #new-comment-nav-ui .new-comment-sequential-nav-button {
716 font-size: 1.75rem;
717 font-family: 'Font Awesome';
718 font-weight: 900;
719 width: 1.5em;
720 z-index: 5001;
722 #new-comment-nav-ui .new-comment-previous {
723 top: 8px;
725 #new-comment-nav-ui .new-comment-next {
726 bottom: 6px;
728 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
729 cursor: auto;
730 pointer-events: none;
733 /*******************/
734 /* HNS DATE PICKER */
735 /*******************/
737 #hns-date-picker {
738 position: absolute;
739 bottom: 72px;
740 right: -253px;
741 opacity: 0.6;
743 #hns-date-picker:hover,
744 #hns-date-picker:focus-within {
745 opacity: 1.0;
747 #hns-date-picker.no-comments {
748 display: none;
751 /*=---------------=*/
752 /*= "Since" label =*/
753 /*=---------------=*/
755 #hns-date-picker span {
756 display: block;
757 font-size: 0.75rem;
758 text-transform: uppercase;
761 /*=--------------------=*/
762 /*= "Since" text field =*/
763 /*=--------------------=*/
765 #hns-date-picker input {
766 margin-top: 1px;
767 padding: 1px 3px;
768 width: 140px;
769 text-align: center;
770 box-shadow: 0 0 0 1px transparent;
773 /************************/
774 /* ANTI-KIBITZER TOGGLE */
775 /************************/
777 #anti-kibitzer-toggle {
778 position: absolute;
779 right: -67px;
780 bottom: 225px;
782 #anti-kibitzer-toggle button {
783 display: block;
784 width: 40px;
785 height: 54px;
786 padding: 0;
788 #anti-kibitzer-toggle button::before,
789 #anti-kibitzer-toggle button::after {
790 font-family: Font Awesome;
792 #anti-kibitzer-toggle button::before {
793 content: "\F06E";
794 display: block;
795 font-size: 1.75em;
796 font-weight: 400;
798 #anti-kibitzer-toggle button::after {
799 content: "\F007\2004\F164";
800 font-size: 0.875em;
801 font-weight: 900;
803 #anti-kibitzer-toggle.engaged button::before {
804 content: "\F070";
807 /************************/
808 /* TEXT SIZE ADJUSTMENT */
809 /************************/
811 #text-size-adjustment-ui {
812 position: absolute;
813 top: 30px;
814 right: -78px;
815 opacity: 0.4;
817 #text-size-adjustment-ui:hover {
818 opacity: 1.0;
821 /* This doesn't work in Mozilla browsers, so hide it */
822 @-moz-document url-prefix() {
823 #text-size-adjustment-ui {
824 display: none;
828 /*=---------=*/
829 /*= Buttons =*/
830 /*=---------=*/
832 #text-size-adjustment-ui button {
833 font-weight: 900;
834 font-family: Font Awesome;
835 font-size: 0.75rem;
836 width: 24px;
837 height: 24px;
838 padding: 0;
840 #text-size-adjustment-ui button.default {
841 font-family: inherit;
842 font-size: 1.125rem;
843 position: relative;
844 top: 1px;
846 #text-size-adjustment-ui button:disabled {
847 opacity: 0.5;
849 #text-size-adjustment-ui button:disabled:hover {
850 cursor: default;
853 /*=----------------=*/
854 /*= Hover tooltips =*/
855 /*=----------------=*/
857 #text-size-adjustment-ui::after {
858 content: "Adjust text size";
859 position: absolute;
860 display: block;
861 left: 0;
862 width: 100%;
863 text-align: center;
864 top: 32px;
865 visibility: hidden;
866 font-size: 0.9em;
868 #text-size-adjustment-ui:hover::after {
869 visibility: visible;
872 /*******************************/
873 /* COMMENTS VIEW MODE SELECTOR */
874 /*******************************/
876 #comments-view-mode-selector {
877 position: absolute;
878 bottom: 30px;
879 left: -40px;
880 opacity: 0.6;
882 #comments-view-mode-selector:hover {
883 opacity: 1.0;
886 /*=---------=*/
887 /*= Buttons =*/
888 /*=---------=*/
890 #comments-view-mode-selector a {
891 display: block;
892 font-family: Font Awesome;
893 font-size: 1.25rem;
894 text-align: center;
895 opacity: 0.4;
896 padding: 0.25em;
897 z-index: 1;
899 #comments-view-mode-selector a.threaded {
900 transform: scaleY(-1);
901 font-weight: 900;
903 #comments-view-mode-selector a.chrono {
904 font-weight: normal;
906 #comments-view-mode-selector a.selected,
907 #comments-view-mode-selector a:hover {
908 opacity: 1.0;
909 text-decoration: none;
911 #comments-view-mode-selector a.selected {
912 cursor: default;
915 /************/
916 /* ARCHIVES */
917 /************/
919 .archive-nav {
920 margin: 1.25em 0.5em 0 0.5em;
921 padding: 0.25em;
923 .archive-nav > * {
924 display: flex;
926 .archive-nav *[class^='archive-nav-item'] {
927 line-height: 1;
928 flex: 1 1 5%;
929 text-align: center;
930 padding: 6px 4px 4px 4px;
931 max-width: 8%;
933 @-moz-document url-prefix() {
934 .archive-nav *[class^='archive-nav-item'] {
935 padding: 5px 4px;
938 .archive-nav-days .archive-nav-item-day {
939 font-size: 0.8em;
940 padding: 7px 0 5px 0;
941 max-width: 4%;
943 .archive-nav-days .archive-nav-item-day:first-child {
944 flex-basis: 10%;
947 /************/
948 /* LISTINGS */
949 /************/
951 h1.listing {
952 font-size: 1.875rem;
953 line-height: 1.15;
954 max-height: 1.15em;
955 position: relative;
958 h1.listing a {
959 position: relative;
962 /* Links to link-posts (not the link-post links themselves; that's below) */
963 h1.listing a[href^='http'] + a {
964 margin-left: 0.25em;
966 /* Link-post links */
967 h1.listing a[href^="http"] {
968 font-size: 0.8em;
969 display: inline;
970 vertical-align: top;
971 position: relative;
972 top: 4px;
975 /*=----------------------=*/
976 /*= Listing hover reveal =*/
977 /*=----------------------=*/
978 /* (On desktops, hover over a multi-line listing to reveal all of it) */
980 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
981 h1.listing a {
982 max-width: 100%;
983 display: inline-block;
984 white-space: nowrap;
985 text-overflow: ellipsis;
986 overflow: hidden;
987 border-bottom: 1px solid transparent;
988 -webkit-hyphens: auto;
989 -moz-hyphens: auto;
990 -ms-hyphens: auto;
991 hyphens: auto;
992 z-index: 1;
993 padding: 0 0 1px 1px;
995 h1.listing a[href^='http'] + a {
996 max-width: calc(100% - 33px);
998 h1.listing a:hover,
999 h1.listing a:focus {
1000 text-decoration: dotted underline;
1001 white-space: initial;
1002 overflow: visible;
1003 z-index: 2;
1005 h1.listing:focus-within::before {
1006 content: "\F105";
1007 font-family: Font Awesome;
1008 display: block;
1009 position: absolute;
1010 left: -0.75em;
1013 /* Adds hysteresis to the hover area (i.e., prevents oscillation due to small
1014 mouse movements) */
1016 h1.listing a:not(.edit-post-link):hover::before {
1017 content: "";
1018 position: absolute;
1019 top: -10px;
1020 right: -10px;
1021 bottom: -10px;
1022 left: -10px;
1023 z-index: -1;
1025 h1.listing a[href^="http"]:hover {
1026 text-decoration: none;
1030 /*=-----------------------=*/
1031 /*= In-listing edit links =*/
1032 /*=-----------------------=*/
1034 h1.listing .edit-post-link {
1035 position: absolute;
1036 margin: 0;
1039 /*=---------------------------------=*/
1040 /*= Error messages on listing pages =*/
1041 /*=---------------------------------=*/
1043 .listing-message {
1044 width: 100%;
1045 text-align: center;
1046 padding: 1.25em 0 1.25em 0;
1047 font-size: 1.375em;
1050 /*********************/
1051 /* LISTING POST-META */
1052 /*********************/
1054 h1.listing + .post-meta {
1055 position: relative;
1056 justify-content: flex-start;
1057 margin: 0 20px 0 21px;
1060 h1.listing + .post-meta > * {
1061 margin: 0 1em 0 0;
1064 h1.listing + .post-meta .post-section {
1065 width: 0;
1066 margin: 0;
1067 overflow: hidden;
1069 h1.listing + .post-meta .post-section::before {
1070 position: absolute;
1071 left: -36px;
1074 h1.listing + .post-meta .read-time {
1075 cursor: default;
1078 /**************/
1079 /* USER PAGES */
1080 /**************/
1082 /*=------------=*/
1083 /*= Pagination =*/
1084 /*=------------=*/
1086 #content.user-page > #top-nav-bar {
1087 grid-row: 6;
1090 /*=---------------------=*/
1091 /*= User's display name =*/
1092 /*=---------------------=*/
1094 #content.user-page h1.page-main-heading {
1095 margin: 0.25em 0 0 0;
1096 line-height: 1.1;
1097 grid-row: 4;
1100 /*=--------------------=*/
1101 /*= User's karma total =*/
1102 /*=--------------------=*/
1104 #content.user-page .user-stats {
1105 grid-column: 3;
1106 grid-row: 4;
1107 text-align: right;
1108 align-self: end;
1111 /*=----------------------=*/
1112 /*= Expanded vs. compact =*/
1113 /*=----------------------=*/
1115 #content.user-page #comments-list-mode-selector {
1116 grid-row: 5 / span 2;
1118 #content.user-page #comments-list-mode-selector button {
1119 display: block;
1122 /*=----------------------------------------------------=*/
1123 /*= All, Posts, Comments, Drafts, Conversations, Inbox =*/
1124 /*=----------------------------------------------------=*/
1126 #content.user-page .sublevel-nav {
1127 margin-bottom: 0.5em;
1130 /*=--------------=*/
1131 /*= User's posts =*/
1132 /*=--------------=*/
1134 #content.user-page h1.listing {
1135 margin: 0.5em 0 0 0;
1138 /*****************/
1139 /* CONVERSATIONS */
1140 /*****************/
1142 #content.conversation-page {
1143 overflow: visible;
1146 /*=----------------------=*/
1147 /*= List of participants =*/
1148 /*=----------------------=*/
1150 #content.conversation-page .conversation-participants {
1151 grid-column: 2 / span 2;
1152 grid-row: 3;
1153 text-align: right;
1154 margin: 0.5em 0 0 0;
1157 .conversation-participants ul,
1158 .conversation-participants li {
1159 list-style-type: none;
1160 display: inline-block;
1161 margin: 0;
1162 padding: 0;
1164 .conversation-participants li {
1165 margin-left: 0.375em;
1167 .conversation-participants li:not(:last-of-type)::after {
1168 content: ",";
1171 /*=-------------------------=*/
1172 /*= Posting controls (form) =*/
1173 /*=-------------------------=*/
1175 #content.conversation-page .posting-controls {
1176 padding: 0 0 1em 0;
1178 #content.conversation-page .post-meta-fields {
1179 overflow: auto;
1180 display: flex;
1181 flex-flow: row wrap;
1183 #content.conversation-page textarea {
1184 margin-top: 0.375em;
1186 #conversation-form {
1187 padding: 0 1em 3em 1em;
1189 #conversation-form input[type='text'],
1190 #conversation-form label {
1191 margin: 0.25em 0;
1193 #conversation-form label {
1194 width: 4em;
1195 text-align: right;
1196 padding: 2px 6px;
1197 border: 1px solid transparent;
1199 #conversation-form input[type='text'] {
1200 width: calc(100% - 4em);
1201 padding: 0.25em;
1203 #conversation-form input[type='submit'] {
1204 float: right;
1206 #content.conversation-page #markdown-hints-checkbox ~ label {
1207 white-space: nowrap;
1209 #content.conversation-page .markdown-hints {
1210 top: calc(100% + 2em);
1213 /*=--------------------=*/
1214 /*= Conversation title =*/
1215 /*=--------------------=*/
1217 #content.conversation-page h1.page-main-heading {
1218 text-align: center;
1219 margin: 0.5em 0;
1220 line-height: 1.15;
1223 /*=----------=*/
1224 /*= Messages =*/
1225 /*=----------=*/
1227 #content.conversation-page > ul.comment-thread:last-of-type {
1228 margin-bottom: 2em;
1231 /******************/
1232 /* SEARCH RESULTS */
1233 /******************/
1235 #content.search-results-page h1.listing {
1236 font-size: 1.625em;
1239 /**************/
1240 /* LOGIN PAGE */
1241 /**************/
1243 .login-container {
1244 margin: 2em 0;
1245 padding: 1em;
1246 display: flex;
1247 flex-flow: row wrap;
1250 .login-container form {
1251 flex-basis: 50%;
1252 display: grid;
1253 grid-row-gap: 0.5em;
1254 align-content: start;
1256 .login-container form label {
1257 text-align: right;
1258 padding: 0.25em 0.5em;
1259 white-space: nowrap;
1260 grid-column: 1;
1262 .login-container form input {
1263 grid-column: 2;
1264 padding: 0.25em;
1266 .login-container form input[type='submit'],
1267 .login-container form a {
1268 grid-column: 2;
1269 justify-self: center;
1271 .login-container form input[type='submit'] {
1272 width: 10em;
1273 padding: 0.35em;
1274 line-height: 1;
1275 margin: 0.5em 0 0 0;
1277 .login-container form h1 {
1278 text-align: center;
1279 margin: 0;
1280 grid-column: 2;
1283 /* “Log in” form */
1285 #login-form {
1286 grid-template-columns: 5.5em 1fr;
1287 padding: 0.5em 2em 0.5em 0;
1290 /* “Create account” form */
1292 #signup-form {
1293 font-size: 0.9em;
1294 grid-template-columns: 8.5em 1fr;
1295 padding: 0.5em 1em 1em 1em;
1297 #signup-form h1 {
1298 font-size: 1.7em;
1300 #signup-form input[type='submit'] {
1301 padding: 0.4em 0.5em 0.5em 0.5em;
1304 /* Log in tip */
1306 .login-container .login-tip {
1307 padding: 0.5em 0.5em 0.5em 3em;
1308 margin: 2em 4em 0 4em;
1309 text-indent: -2em;
1310 line-height: 1.4;
1312 .login-container .login-tip span {
1313 font-weight: bold;
1316 /* Message box */
1318 #content.login-page .error-box {
1319 margin: 1.5em 0.875em -1.5em 0.875em;
1321 .error-box, .success-box {
1322 padding: 0.25em;
1323 text-align: center;
1326 /***********************/
1327 /* PASSWORD RESET PAGE */
1328 /***********************/
1330 .reset-password-container {
1331 margin-bottom: 2em;
1333 .reset-password-container input[type='submit'] {
1334 padding: 0.2em 0.5em;
1335 width: unset;
1337 .reset-password-container input {
1338 margin-left: 0.5em;
1339 width: 12em;
1341 .reset-password-container label {
1342 display: inline-block;
1343 width: 9em;
1345 .reset-password-container form > div {
1346 margin: 0.2em;
1348 .reset-password-container .action-container {
1349 padding-left: 11em;
1350 padding-top: 0.2em;
1352 .reset-password-container .error-box {
1353 margin: unset;
1356 /*********************/
1357 /* TABLE OF CONTENTS */
1358 /*********************/
1360 .contents {
1361 float: right;
1362 min-width: 6em;
1363 max-width: 40%;
1364 margin: 1.25em 0 0.75em 1.25em;
1365 padding: 7px 14px 10px 10px;
1366 position: relative;
1367 z-index: 1;
1370 .contents-head {
1371 text-align: center;
1372 margin-bottom: 0.25em;
1375 .post-body .contents ul {
1376 list-style-type: none;
1377 margin: 0 0 0 0.5em;
1378 counter-reset: toc-item-1 toc-item-2 toc-item-3;
1379 padding-left: 1em;
1380 font-size: 0.75em;
1382 .post-body .contents li {
1383 margin: 0.15em 0 0.3em 1em;
1384 text-align: left;
1385 text-indent: -1em;
1386 line-height: 1.2;
1387 position: relative;
1389 .post-body .contents li::before {
1390 position: absolute;
1391 width: 3em;
1392 display: block;
1393 text-align: right;
1394 left: -4.5em;
1396 .contents .toc-item-1 {
1397 counter-increment: toc-item-1;
1398 counter-reset: toc-item-2 toc-item-3;
1400 .contents .toc-item-1::before {
1401 content: counter(toc-item-1);
1403 .contents .toc-item-1 ~ .toc-item-2 {
1404 margin-left: 2.9em;
1405 font-size: 0.95em;
1407 .contents .toc-item-2 {
1408 counter-increment: toc-item-2;
1409 counter-reset: toc-item-3;
1411 .contents .toc-item-1 ~ .toc-item-2::before {
1412 content: counter(toc-item-1) "." counter(toc-item-2);
1414 .contents .toc-item-2::before {
1415 content: counter(toc-item-2);
1417 .contents .toc-item-1 + .toc-item-3 {
1418 counter-increment: toc-item-2 toc-item-3;
1420 .contents .toc-item-2 ~ .toc-item-3,
1421 .contents .toc-item-1 ~ .toc-item-3 {
1422 margin-left: 2.9em;
1423 font-size: 0.95em;
1425 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3 {
1426 margin-left: 5.7em;
1427 font-size: 0.9em;
1429 .contents .toc-item-3 {
1430 counter-increment: toc-item-3;
1432 .contents .toc-item-1 ~ .toc-item-2 ~ .toc-item-3::before {
1433 content: counter(toc-item-1) "." counter(toc-item-2) "." counter(toc-item-3);
1435 .contents .toc-item-1 ~ .toc-item-3::before {
1436 content: counter(toc-item-1) "." counter(toc-item-3);
1438 .contents .toc-item-2 ~ .toc-item-3::before {
1439 content: counter(toc-item-2) "." counter(toc-item-3);
1441 .contents .toc-item-3::before {
1442 content: counter(toc-item-3);
1444 .contents .toc-item-4,
1445 .contents .toc-item-5,
1446 .contents .toc-item-6 {
1447 display: none;
1450 /********************/
1451 /* POSTS & COMMENTS */
1452 /********************/
1454 .post-meta > *,
1455 .comment-meta > * {
1456 display: inline-block;
1457 margin-right: 1em;
1458 font-size: 1.0625em;
1459 white-space: nowrap;
1461 .post-body,
1462 .comment-body {
1463 overflow-wrap: break-word;
1464 text-align: justify;
1466 .post-body p,
1467 .comment-body p {
1468 margin: 1em 0;
1471 /*************/
1472 /* POST-META */
1473 /*************/
1475 .post-meta {
1476 display: flex;
1477 flex-flow: row wrap;
1478 justify-content: center;
1480 .post-meta .lw2-link {
1481 opacity: 0.5;
1482 order: 1;
1484 .post-meta > *,
1485 .post-meta .post-section::before {
1486 margin: 0 0.5em;
1488 .post-meta .post-section {
1489 order: -1;
1490 margin: 0;
1491 visibility: hidden;
1493 .post-meta .post-section::before {
1494 visibility: visible;
1495 font-family: "Font Awesome";
1496 font-weight: 900;
1498 .post-section.frontpage::before {
1499 content: "\F015";
1501 .post-section.featured::before {
1502 content: "\F005";
1504 .post-section.meta::before {
1505 content: "\F077";
1507 .post-section.personal::before {
1508 content: "\F007";
1510 .post-section.draft::before {
1511 content: "\F15B";
1513 .post-section.alignment-forum::before {
1514 content: "AF";
1515 font-family: Concourse;
1518 /*= Karma controls hover tooltips =*/
1520 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1521 .post .karma,
1522 .comment-item .karma {
1523 position: relative;
1525 .post .karma.active-controls::after,
1526 .comment-item .karma.active-controls::after {
1527 content: "Double-click for strong vote";
1528 position: absolute;
1529 pointer-events: none;
1530 display: block;
1531 left: 6px;
1532 max-width: calc(100% - 12px);
1533 line-height: 1.15;
1534 white-space: normal;
1535 text-align: center;
1536 font-size: 0.875rem;
1537 opacity: 0;
1538 transition: opacity 0.2s ease;
1540 .post .karma.active-controls:hover::after,
1541 .comment-item .karma.active-controls:hover::after {
1542 opacity: 1.0;
1545 .post .karma .karma-value::after,
1546 .comment-item .karma .karma-value::after {
1547 content: attr(title);
1548 position: absolute;
1549 pointer-events: none;
1550 display: block;
1551 left: 50%;
1552 transform: translateX(-50%);
1553 white-space: nowrap;
1554 text-align: center;
1555 font-size: 0.875rem;
1556 color: #bbb;
1557 opacity: 0;
1558 transition: opacity 0.2s ease;
1560 .post .karma .karma-value:hover::after,
1561 .comment-item .karma .karma-value:hover::after {
1562 opacity: 1.0;
1564 .comment-item .karma .karma-value:hover::after {
1565 z-index: 5001;
1569 /*********/
1570 /* POSTS */
1571 /*********/
1573 .post {
1574 max-width: 100%;
1577 .post-body {
1578 min-height: 8em;
1579 padding: 0 30px;
1580 line-height: 1.5;
1581 font-size: 1.3rem;
1582 overflow: auto;
1583 margin: 0.5em 0 0 0;
1585 .post > h1:first-child {
1586 margin: 1.1em 0 0.35em 0;
1587 padding: 0 30px;
1588 text-align: center;
1589 font-size: 2.5em;
1590 line-height: 1;
1592 .post .post-meta {
1593 text-align: center;
1594 position: relative;
1595 z-index: 2;
1597 .post .top-post-meta:last-child {
1598 margin-bottom: 40px;
1600 .post .bottom-post-meta {
1601 margin: 0;
1602 padding: 20px 0 22px 0;
1605 /**************/
1606 /* LINK POSTS */
1607 /**************/
1609 .post.link-post > .post-body > p:first-child {
1610 text-align: center;
1611 font-size: 1.125em;
1612 margin: 0.5em 0 0 0;
1614 .post.link-post > .post-body > p:only-child {
1615 font-size: 1.5em;
1616 margin: 1em 0;
1618 .post.link-post a.link-post-link::before {
1619 content: "\F0C1";
1620 font-family: Font Awesome;
1621 font-weight: 900;
1622 font-size: 0.75em;
1623 position: relative;
1624 top: -2px;
1625 margin-right: 0.25em;
1628 /************/
1629 /* COMMENTS */
1630 /************/
1632 #comments {
1633 max-width: 100%;
1634 padding: 0 0 1px 0;
1636 ul.comment-thread {
1637 list-style-type: none;
1638 padding: 0;
1639 max-width: 100%;
1641 #comments .comment-thread > li {
1642 position: relative;
1644 #content > #top-nav-bar + .comment-thread .comment-item {
1645 margin-top: 0;
1648 .comment-item {
1649 margin: 2em 0 0 0;
1651 .comment-item .comment-item {
1652 margin: 1em 8px 8px 16px;
1654 .comment-item .comment-item + .comment-item {
1655 margin: 2em 8px 8px 16px;
1658 .comment-body {
1659 line-height: 1.45;
1660 font-size: 1.2rem;
1661 padding: 10px;
1663 .comment-body ul {
1664 list-style-type: circle;
1666 .comment-body > *:first-child {
1667 margin-top: 0;
1669 .comment-body > *:last-child {
1670 margin-bottom: 0;
1673 #comments:empty::before,
1674 #comments > .comment-controls:last-child::after {
1675 content: "No comments.";
1676 display: block;
1677 width: 100%;
1678 text-align: center;
1679 padding: 0.75em 0 0.9em 0;
1680 font-size: 1.375em;
1683 /**********************************/
1684 /* DEEP COMMENT THREAD COLLAPSING */
1685 /**********************************/
1687 .comment-item input[id^="expand"] {
1688 display: none;
1690 .comment-item input[id^="expand"] + label {
1691 display: block;
1692 visibility: hidden;
1693 position: relative;
1694 margin: 8px 9px;
1696 .comment-item input[id^="expand"] + label::after {
1697 content: "(Expand " attr(data-child-count) " below)";
1698 visibility: visible;
1699 position: absolute;
1700 left: 0;
1701 white-space: nowrap;
1702 cursor: pointer;
1704 .comment-item input[id^="expand"]:checked + label::after {
1705 content: "(Collapse " attr(data-child-count) " below)";
1707 .comment-item input[id^="expand"] ~ .comment-thread {
1708 max-height: 34px;
1709 overflow: hidden;
1711 .comment-item input[id^="expand"] ~ .comment-thread > li:first-child {
1712 margin-top: 0;
1714 .comment-item input[id^="expand"]:checked ~ .comment-thread {
1715 max-height: 1000000px;
1718 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
1719 margin: 0;
1721 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item a.comment-parent-link:hover::after {
1722 display: none;
1725 /****************/
1726 /* COMMENT-META */
1727 /****************/
1729 .comment-meta {
1730 padding: 2px 24px 2px 10px;
1731 margin: 0 -1px;
1732 border: none;
1733 display: flex;
1734 flex-flow: row wrap;
1735 align-items: baseline;
1737 .user-page .comment-meta,
1738 .conversation-page .comment-meta {
1739 padding-right: 10px;
1741 .comment-meta .comment-post-title {
1742 flex-basis: 100%;
1743 overflow: hidden;
1744 text-overflow: ellipsis;
1745 line-height: 1.3;
1747 .conversation-page .comment-meta .comment-post-title {
1748 margin: 0;
1749 flex-basis: unset;
1750 flex: 1 0 auto;
1751 text-align: right;
1752 display: none; /* Not sure if we need to display this... */
1754 .comment-item .author:not(.redacted).original-poster::after {
1755 content: "\2004(OP)";
1756 font-size: 0.75em;
1759 /*****************************/
1760 /* COMMENT THREAD NAVIGATION */
1761 /*****************************/
1763 a.comment-parent-link:not(.inline-author),
1764 a.comment-parent-link.inline-author::before {
1765 opacity: 0.5;
1767 a.comment-parent-link:hover {
1768 opacity: 1.0;
1770 a.comment-parent-link::before {
1771 content: "\F062";
1772 font-family: "Font Awesome";
1773 font-weight: 900;
1774 font-size: 0.75rem;
1775 line-height: 1;
1776 position: absolute;
1777 z-index: 1;
1778 display: block;
1779 padding: 3px 3px 0 3px;
1780 width: 16px;
1781 height: calc(100% + 2px);
1782 top: -1px;
1783 left: -17px;
1785 a.comment-parent-link::after {
1786 content: "";
1787 position: absolute;
1788 z-index: 0;
1789 display: block;
1790 width: calc(100% + 26px);
1791 height: calc(100% + 38px);
1792 top: -29px;
1793 left: -17px;
1794 pointer-events: none;
1795 overflow: hidden;
1796 visibility: hidden;
1798 a.comment-parent-link:hover::after {
1799 visibility: visible;
1802 .comment-child-links {
1803 flex-basis: 100%;
1805 .comment-child-link {
1806 margin: 0 0.25em;
1807 display: inline-block;
1809 .comment-child-link::before {
1810 content: ">";
1811 display: inline-block;
1812 margin: 0 2px 0 0;
1815 .comment-popup {
1816 position: fixed;
1817 top: 10%;
1818 right: 10%;
1819 max-width: 700px;
1820 z-index: 10001;
1821 font-size: 1rem;
1822 white-space: unset;
1823 pointer-events: none;
1825 .comment-popup .comment-parent-link {
1826 display: none;
1828 .comment-popup .comment-body {
1829 font-size: 1.0625rem;
1832 /**********************/
1833 /* COMMENT PERMALINKS */
1834 /**********************/
1835 /********************/
1836 /* COMMENT LW LINKS */
1837 /********************/
1839 .comment-meta .permalink::before,
1840 .comment-meta .lw2-link::before,
1841 .individual-thread-page a.comment-parent-link:empty::before {
1842 content: "";
1843 display: inline-block;
1844 width: 1rem;
1845 height: 1rem;
1846 border-radius: 3px;
1847 box-shadow:
1848 0 0 0 1px #fff,
1849 0 0 0 2px #00e,
1850 0 0 0 3px transparent;
1851 padding: 0 0 0 2px;
1852 background-size: 100%;
1853 position: relative;
1854 top: 2px;
1855 opacity: 0.5;
1857 .comment-meta .permalink::before {
1858 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');
1860 .comment-meta .lw2-link::before {
1861 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==');
1863 .individual-thread-page a.comment-parent-link:empty::before {
1864 left: unset;
1865 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==');
1867 .comment-meta .permalink:hover::before {
1868 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');
1870 .comment-meta .lw2-link:hover::before {
1871 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==');
1873 .individual-thread-page a.comment-parent-link:empty:hover::before {
1874 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=');
1876 .comment-meta .permalink:hover::before,
1877 .comment-meta .lw2-link:hover::before,
1878 .individual-thread-page a.comment-parent-link:empty:hover::before {
1879 box-shadow:
1880 0 0 0 2px #00e,
1881 0 0 0 3px transparent;
1882 opacity: 1.0;
1883 filter: unset;
1885 .comment-meta .permalink:active::before,
1886 .comment-meta .lw2-link:active::before,
1887 .individual-thread-page a.comment-parent-link:empty:active::before {
1888 transform: scale(0.9);
1891 .comment-meta .permalink,
1892 .comment-meta .lw2-link,
1893 .individual-thread-page .comment-parent-link:empty {
1894 position: relative;
1895 opacity: 1.0;
1897 .comment-meta .permalink::after,
1898 .comment-meta .lw2-link::after,
1899 .individual-thread-page .comment-parent-link:empty::after {
1900 content: "";
1901 width: 30px;
1902 height: 30px;
1903 display: block;
1904 position: absolute;
1905 top: -2px;
1906 left: -7px;
1907 box-shadow: none;
1908 pointer-events: auto;
1909 visibility: visible;
1912 /*************************/
1913 /* COMMENTS COMPACT VIEW */
1914 /*************************/
1916 #comments-list-mode-selector,
1917 #content.index-page #comments-list-mode-selector,
1918 #content.user-page #comments-list-mode-selector {
1919 padding-top: 6px;
1920 grid-column: 1;
1921 position: unset;
1922 z-index: 1;
1923 justify-self: start;
1924 align-self: start;
1926 #comments-list-mode-selector button {
1927 color: transparent;
1928 width: 32px;
1929 height: 32px;
1930 padding: 6px;
1931 margin: 1px;
1932 overflow: hidden;
1933 background-repeat: no-repeat;
1934 background-size: 100%;
1935 background-origin: content-box;
1937 #comments-list-mode-selector button:disabled {
1938 cursor: auto;
1940 #comments-list-mode-selector button.expanded {
1941 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJTnI+py+0Po5wn2Iuz3lrxD25eSIJjiWZnyq4s6r5kLJtJndK4eO9z77NRhsSi8YhMKpfMpvMJjTqDIR3VYr1mqdtg1/fdhXHjWll2fqVb0rY7WQAAOw==');
1943 #comments-list-mode-selector button.compact {
1944 background-image: url('data:image/gif;base64,R0lGODdhKAAoAJEAAAAAAKqqqv///wAAACH5BAkAAAMALAAAAAAoACgAAAJXnI+py+0Po5y0uoCz3rxz5YViB46mWJ7qlq5u66rWTNf2fcQxrI98H/oBSYnhSWjU4JbMJi7pK0KD0ikRYfUgp1uo8wsOM7LXHJlVPWO6SbbRPRTL57gCADs=');
1946 @media only screen and (max-resolution: 1dppx) {
1947 #comments-list-mode-selector button.expanded {
1948 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKampqqqqv///wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCJSasV7Gqat+6eBYbcQopRqq5s257VeMokHdoevrm8mgAAOw==');
1950 #comments-list-mode-selector button.compact {
1951 background-image: url('data:image/gif;base64,R0lGODdhFAAUAKIAAAAAAKqqqtvb2////wAAAAAAAAAAAAAAACH5BAkAAAQALAAAAAAUABQAAAMmSLrc/tCFSasN7Gqat45g433LeHUmF65phbZvurLtFJv3OO98zyQAOw==');
1955 #content > ul.comment-thread > li.comment-item,
1956 #content.compact > ul.comment-thread > li.comment-item {
1957 margin: 0;
1960 #content > .comment-thread {
1961 margin: 1em 0;
1963 #content.compact > .comment-thread {
1964 font-size: 0.9375rem;
1965 margin: 0.5em 0;
1967 #content.compact > .comment-thread:hover {
1968 z-index: 1;
1970 #content.compact > .comment-thread .comment-body {
1971 font-size: 1.0625rem;
1973 #content.compact > .comment-thread .comment-item {
1974 max-height: 61px;
1975 margin-top: 1em;
1976 overflow: hidden;
1977 position: relative;
1978 pointer-events: none;
1980 #content.compact > .comment-thread .comment-item::after {
1981 content: "…";
1982 position: absolute;
1983 right: 0;
1984 bottom: 0;
1985 font-size: 2rem;
1986 line-height: 1;
1987 padding: 0 16px 10px 64px;
1988 pointer-events: auto;
1990 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
1991 #content.compact:not(:focus-within) > .comment-thread .comment-item:hover,
1992 #content.compact > .comment-thread .comment-item.expanded {
1993 overflow: visible;
1994 pointer-events: auto;
1995 z-index: 10;
1998 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
1999 #content.compact > .comment-thread.expanded .comment-item {
2000 overflow: visible;
2001 pointer-events: auto;
2002 z-index: 10;
2005 #content.compact > .comment-thread .comment-item .comment-meta {
2006 white-space: nowrap;
2007 overflow: hidden;
2008 text-overflow: ellipsis;
2009 padding: 2px 10px;
2011 #content.compact > .comment-thread .comment-item:hover .comment-meta {
2012 white-space: unset;
2014 #content.compact > .comment-thread .comment-item .comment-meta a {
2015 pointer-events: auto;
2017 #content.compact > .comment-thread .comment-item .comment-meta .comment-post-title {
2018 display: inline;
2020 #content.compact > .comment-thread .comment-item .comment-meta .karma + .comment-post-title {
2021 margin-left: 0.75em;
2023 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
2024 #content.compact > .comment-thread:last-of-type .comment-item:hover,
2025 #content.compact > .comment-thread:last-of-type .comment-item.expanded {
2026 max-height: unset;
2028 #content.compact > .comment-thread .comment-item:hover .comment,
2029 #content.compact > .comment-thread .comment-item.expanded .comment {
2030 position: relative;
2031 z-index: 1;
2032 margin-bottom: 2em;
2033 bottom: 0;
2035 #content.compact > .comment-thread .comment-item:hover .comment::before,
2036 #content.compact > .comment-thread .comment-item.expanded .comment::before{
2037 content: "";
2038 position: absolute;
2039 display: block;
2040 width: calc(100% + 20px);
2041 height: calc(100% + 20px);
2042 z-index: -1;
2043 top: -10px;
2044 left: -10px;
2046 #content.compact > .comment-thread:last-of-type .comment-item:hover .comment,
2047 #content.compact > .comment-thread:last-of-type .comment-item.expanded .comment{
2048 margin: 0;
2051 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
2052 #content.compact > .comment-thread.expanded:last-of-type .comment-item {
2053 max-height: unset;
2055 #content.compact > .comment-thread.expanded .comment-item .comment {
2056 position: relative;
2057 z-index: 1;
2058 margin-bottom: 2em;
2059 bottom: 0;
2061 #content.compact > .comment-thread.expanded .comment-item .comment::before {
2062 content: "";
2063 position: absolute;
2064 display: block;
2065 width: calc(100% + 14px);
2066 height: calc(100% + 20px);
2067 z-index: -1;
2068 top: -10px;
2069 left: -10px;
2071 #content.compact > .comment-thread.expanded:last-of-type .comment-item .comment {
2072 margin: 0;
2074 #content.compact > .comment-thread.expanded .comment-item .comment::after {
2075 content: "";
2076 display: block;
2077 position: fixed;
2078 top: 0;
2079 left: 0;
2080 width: 100%;
2081 height: 100%;
2082 z-index: -2;
2083 background-color: rgba(0,0,0,0.5);
2087 /*****************************/
2088 /* HIGHLIGHTING NEW COMMENTS */
2089 /*****************************/
2091 .new-comment::before {
2092 content: "";
2093 position: absolute;
2094 width: 100%;
2095 height: 100%;
2096 z-index: 5000;
2097 pointer-events: none;
2100 /***********************************/
2101 /* COMMENT THREAD MINIMIZE BUTTONS */
2102 /***********************************/
2104 .comment-minimize-button {
2105 font-family: Font Awesome;
2106 font-weight: 900;
2107 font-size: 1.25rem;
2108 line-height: 1;
2109 position: absolute;
2110 right: 1px;
2111 top: 1px;
2112 width: 18px;
2113 margin: 0;
2114 cursor: pointer;
2116 .comment-minimize-button:active {
2117 transform: scale(0.9);
2119 .comment-minimize-button::after {
2120 content: attr(data-child-count);
2121 font-weight: normal;
2122 font-size: 0.8125rem;
2123 position: absolute;
2124 left: 0;
2125 width: 100%;
2126 text-align: center;
2127 top: 21px;
2129 #content.individual-thread-page .comment-minimize-button {
2130 display: none;
2133 /***********************************/
2134 /* INDIVIDUAL COMMENT THREAD PAGES */
2135 /***********************************/
2137 .individual-thread-page > h1 {
2138 line-height: 1;
2139 margin: 0.75em 0 3px 0;
2141 .individual-thread-page #comments {
2142 border: none;
2145 /****************/
2146 /* VOTE BUTTONS */
2147 /****************/
2149 .vote {
2150 margin: 0;
2152 .vote {
2153 font-family: Font Awesome;
2154 font-weight: 900;
2155 border: none;
2157 .karma.waiting {
2158 opacity: 0.5;
2160 .karma.waiting button {
2161 pointer-events: none;
2164 /* Replicated karma controls at bottom of comments. */
2165 .comment-controls .karma {
2166 float: left;
2167 margin-left: -14px;
2168 font-size: 0.9375em;
2171 /*****************************/
2172 /* COMMENTING AND POSTING UI */
2173 /*****************************/
2175 .comment-controls {
2176 text-align: right;
2177 margin: 0 8px 8px 16px;
2178 position: relative;
2179 z-index: 9999;
2181 .comment-thread .comment-controls + .comment-thread > li:first-child {
2182 margin-top: 8px;
2184 #comments > .comment-controls {
2185 margin: 8px 0 0 0;
2187 #comments > .comment-controls:last-child {
2188 margin: 8px 0 16px 0;
2191 .posting-controls input[type='submit'] {
2192 margin: 6px;
2193 padding: 4px 10px;
2194 font-size: 1.125rem;
2197 .comment-controls .cancel-comment-button {
2198 position: absolute;
2199 right: 0;
2200 margin: 0;
2201 height: 27px;
2202 font-size: inherit;
2203 padding: 4px 8px 2px 4px;
2204 z-index: 1;
2206 .comment-controls .cancel-comment-button::before {
2207 font-family: Font Awesome;
2208 margin-right: 3px;
2209 content: '\F00D';
2210 font-weight: 900;
2211 font-size: 0.9em;
2212 opacity: 0.7;
2215 .comment + .comment-controls .action-button {
2216 font-weight: normal;
2217 font-size: 1.0625em;
2218 padding: 1px 6px;
2220 .comment-controls .action-button::before {
2221 font-family: Font Awesome;
2222 margin-right: 3px;
2224 .new-comment-button {
2225 font-size: 1.5rem;
2226 margin: 0 0.25em;
2228 .comment-controls .reply-button::before {
2229 content: '\F3E5';
2230 font-weight: 900;
2231 font-size: 0.9em;
2232 opacity: 0.6;
2235 .post-controls {
2236 text-align: right;
2237 margin: 0.75em 0 0 0;
2238 grid-row: 3;
2239 align-self: start;
2240 justify-self: end;
2242 .post {
2243 grid-row: 3;
2245 .edit-post-link {
2246 display: inline-block;
2247 margin-bottom: 0.25em;
2248 font-size: 1.125rem;
2250 .edit-post-link::before {
2251 margin-right: 0.3em;
2253 .comment-controls .edit-button::before,
2254 .edit-post-link::before {
2255 content: '\F303';
2256 font-family: "Font Awesome";
2257 font-weight: 900;
2258 font-size: 0.75em;
2259 position: relative;
2260 top: -1px;
2263 .comment-controls form {
2264 position: relative;
2266 .textarea-container {
2267 position: relative;
2269 .posting-controls textarea {
2270 display: block;
2271 width: 100%;
2272 height: 15em;
2273 min-height: 15em;
2274 max-height: calc(100vh - 6em);
2275 margin: 2px 0 0 0;
2276 padding: 4px 5px;
2277 font-size: 1.2rem;
2278 border-style: solid;
2279 border-width: 29px 1px 1px 1px;
2280 resize: none;
2283 /* GUIEdit buttons */
2285 .guiedit-buttons-container {
2286 position: absolute;
2287 left: 1px;
2288 top: 1px;
2289 width: calc(100% - 2px);
2290 height: 28px;
2291 text-align: left;
2292 padding: 1px 4px 0 4px;
2293 overflow: hidden;
2295 .comment-thread-page .guiedit-buttons-container {
2296 padding-right: 60px;
2298 .guiedit-buttons-container button {
2299 height: 26px;
2300 padding: 0 7px;
2301 font-weight: 900;
2302 font-size: 0.875rem;
2303 line-height: 1;
2304 position: static;
2306 .guiedit-buttons-container button:active {
2307 transform: none;
2309 .guiedit-buttons-container button:active div {
2310 transform: scale(0.9);
2312 .guiedit-buttons-container button sup {
2313 font-weight: bold;
2315 .guiedit::after {
2316 content: attr(data-tooltip);
2317 position: absolute;
2318 font-weight: normal;
2319 font-size: 1rem;
2320 top: 2px;
2321 left: 440px;
2322 height: 25px;
2323 padding: 4px 0;
2324 white-space: nowrap;
2325 visibility: hidden;
2327 .guiedit:hover::after {
2328 visibility: visible;
2331 /* Markdown hints */
2333 .posting-controls .markdown-reference-link {
2334 float: left;
2335 padding: 1px 0 0 6px;
2337 .posting-controls .markdown-reference-link a {
2338 padding-right: 1.5em;
2339 margin-right: 0.15em;
2340 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');
2341 background-size: 1.25em;
2342 background-repeat: no-repeat;
2343 background-position: right center;
2346 #markdown-hints-checkbox + label {
2347 float: left;
2348 margin: 0 0 0 1em;
2349 line-height: 1.3;
2350 cursor: pointer;
2352 #edit-post-form #markdown-hints-checkbox + label {
2353 padding: 2px 0 0 14px;
2355 #markdown-hints-checkbox {
2356 visibility: hidden;
2357 float: left;
2359 #markdown-hints-checkbox + label::after {
2360 content: "(Show Markdown help)";
2362 #markdown-hints-checkbox:checked + label::after {
2363 content: "(Hide Markdown help)";
2365 #markdown-hints-checkbox + label::before {
2366 content: '\F059';
2367 font-family: Font Awesome;
2368 font-weight: 900;
2369 margin-right: 3px;
2371 #markdown-hints-checkbox:checked + label::before {
2372 font-weight: normal;
2374 .markdown-hints {
2375 margin: 4px 0 0 4px;
2376 padding: 4px 8px;
2377 position: absolute;
2378 text-align: left;
2379 top: calc(100% - 1em);
2380 z-index: 1;
2381 display: none;
2383 #markdown-hints-checkbox:checked ~ .markdown-hints {
2384 display: table;
2386 .markdown-hints-row {
2387 display: table-row;
2389 .markdown-hints .markdown-hints-row span,
2390 .markdown-hints .markdown-hints-row code {
2391 float: none;
2392 display: table-cell;
2393 border: none;
2394 background-color: inherit;
2395 padding: 0 12px 0 0;
2398 /******************/
2399 /* EDIT POST FORM */
2400 /******************/
2402 #edit-post-form {
2403 padding: 1em 1em 4em 1em;
2405 #edit-post-form .post-meta-fields {
2406 display: grid;
2407 grid-template-columns: 5em auto auto auto 1fr auto;
2408 margin-bottom: 0.625em;
2411 #edit-post-form label[for='title'],
2412 #edit-post-form label[for='url'],
2413 #edit-post-form label[for='section'] {
2414 grid-column: 1;
2416 #edit-post-form input[type='text'] {
2417 padding: 0.25em;
2418 grid-column: 2 / span 4;
2419 margin-bottom: 0.5em;
2422 #edit-post-form .link-post-checkbox,
2423 #edit-post-form .link-post-checkbox + label {
2424 grid-row: 1;
2425 grid-column: 6;
2428 #edit-post-form .link-post-checkbox {
2429 height: 0;
2430 opacity: 0;
2431 pointer-events: none;
2433 #edit-post-form .link-post-checkbox + label {
2434 white-space: nowrap;
2435 position: relative;
2436 cursor: pointer;
2437 padding: 0.25em 0.5em 0.25em calc(20px + 0.25em + 0.3725em);
2439 #edit-post-form .link-post-checkbox + label::before {
2440 content: "";
2441 font-family: Font Awesome;
2442 font-size: 1.375rem;
2443 line-height: 0.7;
2444 text-indent: 1px;
2445 font-weight: 900;
2446 position: absolute;
2447 width: 20px;
2448 height: 20px;
2449 left: 5px;
2451 #edit-post-form label[for='url'],
2452 #edit-post-form input[name='url'] {
2453 display: none;
2455 #edit-post-form .link-post-checkbox:checked ~ label[for='url'],
2456 #edit-post-form .link-post-checkbox:checked ~ input[name='url'] {
2457 display: initial;
2459 #edit-post-form label {
2460 line-height: normal;
2461 border: 1px solid transparent;
2462 text-align: right;
2463 padding: 0.25em 0.5em;
2464 white-space: nowrap;
2466 #edit-post-form input[type='radio'] {
2467 width: 0;
2468 margin: 0;
2469 opacity: 0;
2470 pointer-events: none;
2472 #edit-post-form input[type='radio'] + label {
2473 padding: 4px 12px;
2474 text-align: center;
2475 border-style: solid;
2476 border-width: 1px 1px 1px 0;
2477 cursor: pointer;
2479 #edit-post-form input[type='radio']:checked + label {
2480 cursor: default;
2483 #edit-post-form label[for='section'] {
2484 grid-row: 3;
2486 #edit-post-form input[type='radio'] + label {
2487 grid-row: 3;
2489 @supports (width: -moz-fit-content) {
2490 #edit-post-form input[type='radio'] + label {
2491 width: -moz-fit-content;
2494 @supports (width: fit-content) {
2495 #edit-post-form input[type='radio'] + label {
2496 width: fit-content;
2500 #edit-post-form textarea {
2501 min-height: 24em;
2504 #edit-post-form input[type='submit'] {
2505 padding: 6px 12px;
2506 float: right;
2508 #edit-post-form .markdown-hints {
2509 top: calc(100% + 2em);
2512 #content.edit-post-page {
2513 overflow: visible;
2515 #edit-post-form button.guiedit div {
2516 overflow: visible;
2518 .guiedit-mobile-auxiliary-button {
2519 display: none;
2522 /***********/
2523 /* BUTTONS */
2524 /***********/
2526 button,
2527 input[type='submit'] {
2528 font-family: inherit;
2529 font-size: inherit;
2530 background-color: inherit;
2531 cursor: pointer;
2532 border: none;
2533 border-radius: 0;
2536 /************/
2537 /* HEADINGS */
2538 /************/
2540 .post-body h1,
2541 .post-body h2,
2542 .post-body h3,
2543 .post-body h4,
2544 .post-body h5,
2545 .post-body h6,
2546 .comment-body h1,
2547 .comment-body h2,
2548 .comment-body h3,
2549 .comment-body h4,
2550 .comment-body h5,
2551 .comment-body h6 {
2552 line-height: 1.1;
2553 margin: 1em 0 0.75em 0;
2554 text-align: left;
2557 .post-body h5,
2558 .post-body h6,
2559 .comment-body h5,
2560 .comment-body h6 {
2561 font-size: 1em;
2563 .post-body h4,
2564 .comment-body h4 {
2565 font-size: 1.2em;
2567 .post-body h3,
2568 .comment-body h3 {
2569 font-size: 1.4em;
2571 .post-body h2,
2572 .comment-body h2 {
2573 font-size: 1.75em;
2575 .post-body h1,
2576 .comment-body h1 {
2577 font-size: 2.1em;
2580 /**********/
2581 /* QUOTES */
2582 /**********/
2584 blockquote,
2585 .post-body .comment-box .comment-body {
2586 font-size: 0.9em;
2587 margin: 1em 0;
2588 padding-left: 0.5em;
2589 margin-left: 1px;
2590 padding-bottom: 3px;
2592 blockquote *:first-child {
2593 margin-top: 0;
2595 blockquote *:last-child {
2596 margin-bottom: 0;
2598 blockquote blockquote {
2599 font-size: 0.95em;
2602 /* Pseudo-blockquotes that LW sometimes uses for some reason */
2604 .post-body .comment-box .user-name {
2605 font-style: italic;
2607 .post-body .comment-box .user-name::after {
2608 content: ":";
2610 .post-body .comment-box {
2611 zoom: 1.25;
2614 /**********/
2615 /* IMAGES */
2616 /**********/
2618 #content img {
2619 max-width: 100%;
2622 img.inline-latex {
2623 position: relative;
2624 top: 2.5px;
2625 margin: 0 2px;
2628 #content figure {
2629 text-align: center;
2630 margin: 1.5em auto;
2633 p.imgonly,
2634 div.imgonly {
2635 text-align: center;
2638 /**********/
2639 /* TABLES */
2640 /**********/
2642 .post-body table,
2643 .comment-body table {
2644 border-collapse: collapse;
2645 font-family: Inconsolata, Menlo, monospace;
2646 font-size: 0.875em;
2648 .post-body table th,
2649 .post-body table td,
2650 .comment-body table th,
2651 .comment-body table td {
2652 text-align: left;
2653 padding: 4px 6px;
2654 line-height: 1.3;
2656 .post-body table td:nth-of-type(n+2),
2657 .comment-body table td:nth-of-type(n+2) {
2658 text-align: right;
2660 .post-body table caption,
2661 .comment-body table caption {
2662 margin: 0 0 0.25em 0;
2663 font-weight: bold;
2664 font-size: 1.125em;
2667 /********/
2668 /* MISC */
2669 /********/
2671 /*= Superscripts & subscripts =*/
2673 /* Make sure superscripts and subscripts do not affect line spacing. */
2674 sup, sub {
2675 vertical-align: baseline;
2676 position: relative;
2677 top: -0.5em;
2678 left: 0.05em;
2679 font-size: 0.8em;
2681 sub {
2682 top: 0.3em;
2685 /*= Code blocks & other "unstyled" text. =*/
2687 pre,
2688 code {
2689 font-family: Inconsolata, Menlo, monospace;
2691 pre {
2692 white-space: pre-wrap;
2694 code {
2695 font-size: 0.95em;
2696 display: inline-block;
2697 padding: 0 4px 1px 5px;
2699 pre > code {
2700 display: block;
2701 border-radius: 0;
2702 padding: 3px 4px 5px 8px;
2705 /*= Fractions =*/
2707 .frac::after {
2708 content: "\200B";
2711 /*= Removing browser default styling of various elements =*/
2713 /* On various input elements such as text fields and buttons, remove "blue glow" focus outlines on Macs, dotted black outlines in Firefox, etc. */
2714 :focus {
2715 outline: none;
2718 /* Remove "embossed" appearance of horizontal rules. */
2719 hr {
2720 border: none;
2723 input,
2724 button,
2725 textarea {
2726 -webkit-appearance: none;
2727 -moz-appearance: none;
2728 appearance: none;
2731 input {
2732 font-family: inherit;
2733 font-size: inherit;
2734 font-weight: inherit;
2737 /*************/
2738 /* FOOTNOTES */
2739 /*************/
2741 ol {
2742 counter-reset: ordered-list;
2744 .footnote-definition {
2745 font-size: 0.9em;
2746 list-style-type: none;
2747 counter-increment: ordered-list;
2748 position: relative;
2750 .footnote-definition p {
2751 font-size: inherit !important;
2753 .footnote-definition::before {
2754 content: counter(ordered-list) ".";
2755 position: absolute;
2756 left: -2.5em;
2757 font-weight: bold;
2758 text-align: right;
2759 width: 2em;
2762 /*********/
2763 /* LISTS */
2764 /*********/
2766 li {
2767 margin-bottom: 0.5em;
2770 .post-body ol p,
2771 .post-body ul p,
2772 .comment-body ol p,
2773 .comment-body ul p {
2774 margin: 0.5em 0;
2777 .post-body ol {
2778 list-style: none;
2779 padding: 0;
2780 counter-reset: ol;
2782 .post-body ol > li {
2783 position: relative;
2784 counter-increment: ol;
2785 padding: 0 0 0 2.5em;
2786 margin: 0.25em 0 0 0;
2788 .post-body ol > li::before {
2789 content: counter(ol) ".";
2790 position: absolute;
2791 width: 2em;
2792 text-align: right;
2793 left: 0;
2795 .post-body ul {
2796 list-style: none;
2797 padding: 0;
2799 .post-body ul:not(.contents-list) li {
2800 position: relative;
2801 padding: 0 0 0 2.5em;
2802 margin: 0.25em 0 0 0;
2804 .post-body ul:not(.contents-list) li::before {
2805 content: "•";
2806 position: absolute;
2807 width: 2em;
2808 text-align: right;
2809 left: 0;
2811 .post-body li > ul:first-child > li {
2812 padding-left: 0;
2814 .post-body li > ul:first-child > li::before {
2815 content: none;
2818 /**************/
2819 /* ABOUT PAGE */
2820 /**************/
2822 #content.about-page .contents {
2823 margin-top: 0.25em;
2825 #content.about-page .accesskey-table {
2826 border-collapse: collapse;
2827 margin: auto;
2829 #content.about-page .accesskey-table th,
2830 #content.about-page .accesskey-table td {
2831 padding: 2px 6px;
2833 #content.about-page .accesskey-table td:first-child {
2834 padding-right: 1.5em;
2836 #content.about-page .accesskey-table td:last-child {
2837 text-align: center;
2838 font-family: Inconsolata, Menlo, monospace;
2840 #content.about-page h3:nth-of-type(n+2) {
2841 clear: both;
2844 /******************/
2845 /* IMAGES OVERLAY */
2846 /******************/
2848 #images-overlay + #content .post-body img {
2849 visibility: hidden;
2852 #images-overlay div {
2853 position: absolute;
2855 #images-overlay div::after {
2856 content: "Click to enlarge";
2857 display: block;
2858 position: absolute;
2859 margin: auto;
2860 left: 0;
2861 right: 0;
2862 bottom: 10px;
2863 padding: 6px 10px;
2864 font-size: 1.25rem;
2865 background-color: rgba(0,0,0,0.6);
2866 color: #fff;
2867 border-radius: 5px;
2868 opacity: 0.0;
2869 transition: opacity 0.15s ease;
2871 @supports (width: -moz-fit-content) {
2872 #images-overlay div::after {
2873 width: -moz-fit-content;
2876 @supports (width: fit-content) {
2877 #images-overlay div::after {
2878 width: fit-content;
2881 #images-overlay div:hover::after {
2882 opacity: 1.0;
2885 #images-overlay img {
2886 width: 100%;
2887 cursor: zoom-in;
2890 /***************/
2891 /* IMAGE FOCUS */
2892 /***************/
2894 #content img:hover,
2895 #images-overlay img:hover {
2896 filter: drop-shadow(0 0 3px #777);
2898 #content img:active,
2899 #images-overlay img:active {
2900 transform: scale(0.975);
2903 #image-focus-overlay {
2904 position: fixed;
2905 top: 0;
2906 right: 0;
2907 bottom: 0;
2908 left: 0;
2909 display: none;
2911 #image-focus-overlay::before {
2912 content: "";
2913 display: block;
2914 position: absolute;
2915 top: 0;
2916 right: 0;
2917 bottom: 0;
2918 left: 0;
2919 background-color: #000;
2920 opacity: 0.5;
2921 z-index: -1;
2923 #image-focus-overlay.engaged {
2924 display: initial;
2927 #image-focus-overlay img {
2928 filter: drop-shadow(10px 10px 10px #000) drop-shadow(0 0 10px #444);
2929 margin: auto;
2930 position: absolute;
2931 left: 50%;
2932 top: 50%;
2933 transform: translateX(-50%) translateY(-50%);
2936 #image-focus-overlay .help-overlay {
2937 position: absolute;
2938 display: flex;
2939 flex-flow: column;
2940 z-index: 2;
2941 font-size: 1.5rem;
2942 padding: 1em;
2943 border-radius: 10px;
2944 bottom: 1em;
2945 right: 1em;
2946 overflow: hidden;
2947 white-space: nowrap;
2948 color: transparent;
2949 visibility: hidden;
2950 transition:
2951 visibility 1s ease,
2952 color 1s ease,
2953 background-color 1s ease,
2954 bottom 0.3s ease;
2956 #image-focus-overlay .help-overlay:hover {
2957 max-width: 420px;
2958 max-height: 300px;
2959 background-color: rgba(0,0,0,0.85);
2960 color: #fff;
2961 visibility: visible;
2962 transition:
2963 visibility 0.2s ease 0.3s,
2964 color 0.2s ease 0.3s,
2965 background-color 0.2s ease 0.3s;
2968 #image-focus-overlay .help-overlay::after {
2969 content: "\F128";
2970 font-family: Font Awesome;
2971 font-weight: 900;
2972 font-size: 2rem;
2973 position: absolute;
2974 right: 0;
2975 bottom: 0;
2976 padding: 10px;
2977 color: #000;
2978 filter: drop-shadow(0 0 6px #fff);
2979 visibility: visible;
2980 opacity: 0.85;
2981 transition:
2982 visibility 1s ease;
2984 #image-focus-overlay .help-overlay:hover::after {
2985 visibility: hidden;
2986 transition:
2987 visibility 0.2s ease 0.3s;
2990 #image-focus-overlay .help-overlay p {
2991 margin: 0;
2992 text-indent: -2em;
2993 padding-left: 2em;
2994 max-width: 100%;
2995 overflow: hidden;
2997 #image-focus-overlay .help-overlay p + p {
2998 margin: 0.75em 0 0 0;
3000 #image-focus-overlay .help-overlay.hidden {
3001 bottom: -2em;
3004 #image-focus-overlay .image-number {
3005 position: absolute;
3006 z-index: 2;
3007 font-size: 1.75rem;
3008 left: 1em;
3009 bottom: 1em;
3010 font-weight: 600;
3011 text-shadow:
3012 0 0 3px #fff,
3013 0 0 5px #fff,
3014 0 0 8px #fff,
3015 0 0 13px #fff;
3016 width: 1.5em;
3017 text-align: right;
3018 white-space: nowrap;
3019 transition: bottom 0.3s ease;
3021 #image-focus-overlay .image-number::before {
3022 content: "#";
3023 opacity: 0.3;
3025 #image-focus-overlay .image-number::after {
3026 content: " of " attr(data-number-of-images);
3027 opacity: 0.3;
3029 #image-focus-overlay .image-number:hover::before,
3030 #image-focus-overlay .image-number:hover::after {
3031 opacity: 1.0;
3033 #image-focus-overlay .image-number.hidden {
3034 bottom: -1.25em;
3037 #image-focus-overlay .slideshow-buttons {
3038 position: absolute;
3039 top: 0;
3040 left: 0;
3041 width: 100%;
3042 height: 100%;
3043 z-index: 1;
3044 display: flex;
3045 justify-content: space-between;
3046 pointer-events: none;
3048 #image-focus-overlay .slideshow-buttons button {
3049 font-family: Font Awesome;
3050 font-weight: 900;
3051 font-size: 3rem;
3052 padding: 0.5em;
3053 color: #ddd;
3054 position: relative;
3055 left: 0;
3056 transition:
3057 left 0.3s ease;
3058 pointer-events: auto;
3060 #image-focus-overlay .slideshow-buttons button::selection {
3061 background-color: transparent;
3063 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3064 #image-focus-overlay .slideshow-buttons button:hover {
3065 background-color: rgba(0,0,0,0.1);
3066 color: #777;
3069 #image-focus-overlay .slideshow-buttons button:active {
3070 transform: none;
3071 color: #888;
3073 #image-focus-overlay .slideshow-buttons button:disabled {
3074 text-shadow: none;
3075 background-color: transparent;
3076 color: #ddd;
3077 cursor: default;
3078 opacity: 0.4;
3080 #image-focus-overlay .slideshow-button.previous.hidden {
3081 left: -1.75em;
3083 #image-focus-overlay .slideshow-button.next.hidden {
3084 left: 1.75em;
3087 .blurred {
3088 filter: blur(3px);
3091 /**************************/
3092 /* QUALIFIED HYPERLINKING */
3093 /**************************/
3095 #content.no-comments #comments,
3096 #content.no-comments .post-meta .comment-count,
3097 #content.no-comments .post-meta .karma,
3098 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3099 #content.no-comments + #ui-elements-container #hns-date-picker,
3100 #content.no-comments + #ui-elements-container #quick-nav-ui {
3101 display: none;
3104 #content.no-nav-bars #primary-bar,
3105 #content.no-nav-bars #secondary-bar {
3106 display: none;
3108 #content.no-nav-bars {
3109 margin: 8px auto;
3111 #content.no-nav-bars + #ui-elements-container > * {
3112 padding-top: 8px;
3115 #aux-about-link {
3116 position: fixed;
3117 top: 40px;
3118 left: calc((100% - 900px) / 2 - 69px);
3119 width: 1.5em;
3120 height: 1.5em;
3121 text-align: center;
3122 display: table;
3124 #aux-about-link a {
3125 display: table-cell;
3126 width: 100%;
3127 vertical-align: middle;
3128 font-family: Font Awesome;
3129 font-weight: 900;
3130 font-size: 1.25rem;
3131 opacity: 0.4;
3132 z-index: 1;
3135 .qualified-linking {
3136 margin: 0;
3137 position: relative;
3139 .qualified-linking input[type='checkbox'] {
3140 visibility: hidden;
3141 width: 0;
3142 height: 0;
3143 margin: 0;
3145 .qualified-linking label {
3146 font-family: Font Awesome;
3147 font-weight: 900;
3148 font-size: 1rem;
3149 padding: 0 0.5em;
3150 display: inline-block;
3151 margin-left: 0.25em;
3153 .qualified-linking label:hover {
3154 cursor: pointer;
3156 .qualified-linking label:active span {
3157 display: inline-block;
3158 transform: scale(0.9);
3160 .qualified-linking label::selection {
3161 background-color: transparent;
3164 .qualified-linking label::after {
3165 content: "";
3166 width: 100vw;
3167 height: 0;
3168 left: 0;
3169 top: 0;
3170 position: fixed;
3171 z-index: 1;
3172 cursor: default;
3174 .qualified-linking input[type='checkbox']:checked + label::after {
3175 height: 100vh;
3178 .qualified-linking-toolbar {
3179 position: absolute;
3180 right: 0.25em;
3181 top: 110%;
3182 z-index: 1;
3184 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3185 display: none;
3187 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3188 display: block;
3190 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3191 top: unset;
3192 bottom: 125%;
3195 .qualified-linking-toolbar a {
3196 display: block;
3197 padding: 0 6px;
3198 margin: 4px;
3200 .qualified-linking-toolbar a::selection {
3201 background-color: transparent;
3204 /********/
3205 /* MATH */
3206 /********/
3208 .mathjax-block-container {
3209 overflow-y: hidden;
3210 border-radius: 6px;
3211 margin: 1em 0 1.5em 0;
3213 .mathjax-inline-container {
3214 max-width: 100%;
3215 display: inline-block;
3216 overflow-x: auto;
3217 overflow-y: hidden;
3218 position: relative;
3219 vertical-align: text-top;
3220 padding: 0 1px;
3222 .post .mathjax-inline-container {
3223 line-height: 0.8;
3224 top: 2px;
3226 .comment .mathjax-inline-container {
3227 top: 3px;
3228 line-height: 1;
3230 .mathjax-inline-container .mjx-chtml {
3231 padding: 0;
3234 /**********************/
3235 /* FOR NARROW SCREENS */
3236 /**********************/
3238 @media only screen and (max-width: 1440px) {
3239 #hns-date-picker {
3240 right: -81px;
3241 padding: 8px 10px 10px 10px;
3242 bottom: 62px;
3243 display: none;
3245 #hns-date-picker::before {
3246 content: "";
3247 position: absolute;
3248 display: block;
3249 z-index: -1;
3250 height: calc(100% + 2px);
3251 top: -1px;
3252 left: -1px;
3253 width: 50%;
3256 @media only screen and (max-width: 1160px) {
3257 #new-comment-nav-ui {
3258 bottom: 180px;
3259 right: -68px;
3261 #hns-date-picker {
3262 bottom: 200px;
3263 right: -36px;
3265 #hns-date-picker::before {
3266 width: calc(100% - 35px);
3268 #theme-selector button::before {
3269 right: unset;
3270 left: 100%;
3272 #theme-selector:hover::after {
3273 content: "";
3274 display: block;
3275 position: absolute;
3276 width: calc(6em - 7px);
3277 height: calc(100% + 2px);
3278 top: 0;
3279 left: calc(100% + 1px);
3281 #anti-kibitzer-toggle {
3282 bottom: 330px;
3285 @media only screen and (max-width: 1080px) {
3286 #width-selector {
3287 right: -30px;
3289 #width-selector button {
3290 display: block;
3292 #text-size-adjustment-ui {
3293 top: 90px;
3294 right: -30px;
3296 #text-size-adjustment-ui button {
3297 display: block;
3298 position: relative;
3300 #text-size-adjustment-ui button.increase {
3301 bottom: 48px;
3303 #text-size-adjustment-ui button.decrease {
3304 top: 50px;
3306 #theme-selector {
3307 top: 46px;
3308 left: -44px;
3310 #theme-tweaker-toggle {
3311 left: -44px;
3312 top: 2px;
3314 #theme-tweaker-toggle button {
3315 height: 2em;
3316 width: 2em;
3317 padding: 7px;
3319 #quick-nav-ui {
3320 right: -54px;
3322 #new-comment-nav-ui {
3323 right: -55px;
3325 #hns-date-picker {
3326 right: -23px;
3328 #hns-date-picker::before {
3329 width: calc(100% - 22px);
3331 #anti-kibitzer-toggle {
3332 right: -54px;
3335 @media only screen and (max-width: 1040px) {
3336 #quick-nav-ui {
3337 right: -49px;
3339 #new-comment-nav-ui {
3340 right: -50px;
3342 #hns-date-picker {
3343 right: -18px;
3345 #hns-date-picker::before {
3346 width: calc(100% - 17px);
3348 #anti-kibitzer-toggle {
3349 right: -50px;
3352 @media only screen and (max-width: 1020px) {
3353 #quick-nav-ui {
3354 right: -20px;
3356 #new-comment-nav-ui {
3357 right: -21px;
3359 #new-comment-nav-ui .new-comments-count::before {
3360 content: "";
3361 position: absolute;
3362 width: 100%;
3363 height: calc(100% + 45px);
3364 z-index: -1;
3365 left: 0;
3366 top: -22px;
3368 #hns-date-picker {
3369 right: 19px;
3371 #hns-date-picker::before {
3372 width: 100%;
3374 #anti-kibitzer-toggle {
3375 right: -20px;
3378 @media only screen and (max-width: 1000px) {
3379 #theme-selector {
3380 left: -17px;
3381 top: 120px;
3382 padding: 3px 0;
3383 max-width: 32px;
3385 #theme-selector button {
3386 margin: 1px 4px;
3388 #text-size-adjustment-ui {
3389 top: 100px;
3390 right: -12px;
3392 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3393 #quick-nav-ui,
3394 #new-comment-nav-ui,
3395 #new-comment-nav-ui + #hns-date-picker,
3396 #anti-kibitzer-toggle {
3397 opacity: 0.4;
3399 #quick-nav-ui:hover,
3400 #new-comment-nav-ui:hover,
3401 #new-comment-nav-ui + #hns-date-picker:hover,
3402 #new-comment-nav-ui + #hns-date-picker:focus-within,
3403 #new-comment-nav-ui:hover + #hns-date-picker,
3404 #anti-kibitzer-toggle:hover {
3405 opacity: 1.0;
3408 #theme-tweaker-toggle {
3409 top: 70px;
3410 left: -21px;
3414 /**************/
3415 /* PRINT VIEW */
3416 /**************/
3418 @media only print {
3419 .nav-bar {
3420 visibility: hidden;
3421 max-height: 0;
3422 overflow: hidden;
3424 #ui-elements-container {
3425 display: none;
3427 #images-overlay {
3428 display: none;
3430 #images-overlay + #content .post-body img {
3431 visibility: visible;
3433 .comment-controls {
3434 display: none;
3436 #comments-sort-mode-selector {
3437 display: none;
3439 .comment-minimize-button {
3440 display: none;
3442 .post-meta .qualified-linking,
3443 .post-meta .lw2-link {
3444 display: none;
3446 .comment-meta .permalink,
3447 .comment-meta .lw2-link,
3448 .comment-meta .comment-parent-link {
3449 display: none;
3451 .new-comment::before {
3452 display: none;
3454 #content {
3455 box-shadow: none;
3459 /*****************/
3460 /* MOBILE LAYOUT */
3461 /*****************/
3463 /* Hide the mobile elements on desktop screens: */
3465 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3466 #post-nav-ui-toggle,
3467 #appearance-adjust-ui-toggle,
3468 #theme-selector .theme-selector-close-button {
3469 display: none;
3473 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
3475 /*====================*/
3476 /* MOBILE UI ELEMENTS */
3477 /*====================*/
3479 #ui-elements-container {
3480 height: unset;
3481 position: unset;
3483 #ui-elements-container > * {
3484 position: fixed;
3485 visibility: hidden;
3486 opacity: 1.0;
3487 z-index: 10000;
3490 #ui-elements-container > div[id$='-ui-toggle'] {
3491 visibility: visible;
3492 display: inline-block;
3493 border-radius: 50%;
3494 z-index: 10000;
3496 #ui-elements-container > div[id$='-ui-toggle'] button,
3497 #theme-selector .theme-selector-close-button {
3498 font-family: Font Awesome;
3499 font-weight: 900;
3500 font-size: 32px;
3501 padding: 10px;
3502 opacity: 0.8;
3503 -webkit-tap-highlight-color: transparent;
3504 transition: transform 0.2s ease;
3506 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
3507 #theme-selector .theme-selector-close-button::selection {
3508 background-color: transparent;
3510 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
3511 #theme-selector .theme-selector-close-button::-moz-focus-inner {
3512 border: none;
3514 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
3515 transform: rotate(-90deg);
3516 opacity: 1.0;
3519 #appearance-adjust-ui-toggle {
3520 bottom: 10px;
3521 left: 10px;
3524 #post-nav-ui-toggle {
3525 bottom: 10px;
3526 right: 10px;
3529 #theme-selector.engaged,
3530 #quick-nav-ui.engaged,
3531 #new-comment-nav-ui.engaged,
3532 #hns-date-picker.engaged {
3533 visibility: visible;
3536 #image-focus-overlay.engaged {
3537 visibility: visible;
3539 #image-focus-overlay .help-overlay {
3540 display: none;
3543 /*=========*/
3544 /* GENERAL */
3545 /*=========*/
3547 @media only screen and (max-width: 900px) {
3548 #content,
3549 #images-overlay,
3550 #ui-elements-container {
3551 min-width: unset;
3552 width: unset;
3554 #content {
3555 padding: 0 4px;
3559 /*================*/
3560 /* THEME SELECTOR */
3561 /*================*/
3563 #theme-selector {
3564 display: flex;
3565 flex-flow: column;
3566 width: calc(100vw - 20px);
3567 max-width: 360px;
3568 padding: 0 0 3px 0;
3569 overflow: hidden;
3570 max-height: 0;
3571 transition:
3572 top 0.2s ease,
3573 max-height 0.2s ease,
3574 visibility 0.2s ease;
3575 top: calc(100% + 10px);
3576 left: 0;
3577 right: 0;
3578 margin: auto;
3580 #theme-selector.engaged {
3581 max-height: 1000px;
3582 top: 10px;
3583 z-index: 10001;
3585 #theme-selector::before {
3586 content: "Select theme";
3587 white-space: nowrap;
3588 display: block;
3589 font-weight: 600;
3590 font-size: 2rem;
3591 margin: 0.375em 1em 0.5em 1em;
3592 text-align: center;
3594 #theme-selector button {
3595 width: calc(100% - 0.5em);
3596 background-repeat: no-repeat;
3597 padding: 1em 0.875em;
3598 margin: 1px 4px;
3599 line-height: 1;
3600 height: unset;
3601 position: relative;
3603 #theme-selector button::after {
3604 content: attr(data-theme-description);
3605 white-space: nowrap;
3606 position: absolute;
3607 text-align: left;
3608 left: 2.5em;
3609 top: 1em;
3611 @media only screen and (max-height: 675px) {
3612 #theme-selector button {
3613 padding: 0.875em;
3615 #theme-selector button::after {
3616 top: 0.875em;
3619 #theme-selector .theme-selector-close-button {
3620 position: absolute;
3621 width: unset;
3622 background-color: transparent;
3623 top: 0;
3624 right: -3px;
3626 #theme-selector .theme-selector-close-button,
3627 #theme-selector .theme-selector-close-button:focus,
3628 #theme-selector .theme-selector-close-button:active,
3629 #theme-selector .theme-selector-close-button:hover {
3630 box-shadow: none;
3633 /*===============*/
3634 /* THEME TWEAKER */
3635 /*===============*/
3637 #theme-selector {
3638 padding: 0 0 64px 0;
3640 #theme-selector ~ #theme-tweaker-toggle {
3641 top: 100%;
3643 #theme-selector ~ #theme-tweaker-toggle::after {
3644 content: "Open theme tweaker";
3645 position: absolute;
3646 font-size: 0.625em;
3647 white-space: nowrap;
3648 left: -50%;
3649 top: 100%;
3651 #theme-selector.engaged ~ #theme-tweaker-toggle {
3652 visibility: visible;
3653 top: 530px;
3654 left: 0;
3655 right: 0;
3656 margin: auto;
3657 z-index: 11111;
3658 transition:
3659 top 0.2s ease,
3660 visibility 0.2s ease;
3662 @media only screen and (max-height: 675px) {
3663 #theme-selector.engaged ~ #theme-tweaker-toggle {
3664 top: 492px;
3667 @supports (width: -moz-fit-content) {
3668 #theme-selector.engaged ~ #theme-tweaker-toggle {
3669 width: -moz-fit-content;
3672 @supports (width: fit-content) {
3673 #theme-selector.engaged ~ #theme-tweaker-toggle {
3674 width: fit-content;
3677 #theme-selector.engaged ~ #theme-tweaker-toggle button {
3678 opacity: 1.0;
3681 #theme-tweaker-ui {
3682 visibility: visible;
3685 /*======================*/
3686 /* ANTI-KIBITZER TOGGLE */
3687 /*======================*/
3689 #theme-selector ~ #anti-kibitzer-toggle {
3690 top: 100%;
3691 bottom: unset;
3692 left: 0;
3693 right: 0;
3694 margin: auto;
3695 box-shadow: none;
3696 width: calc(100vw - 44px);
3697 max-width: 330px;
3698 text-align: right;
3699 pointer-events: none;
3701 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3702 visibility: visible;
3703 z-index: 11110;
3704 top: 530px;
3705 transition:
3706 top 0.2s ease,
3707 visibility 0.2s ease;
3709 @media only screen and (max-height: 675px) {
3710 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3711 top: 492px;
3714 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
3715 pointer-events: auto;
3716 display: inline-block;
3719 /*=================*/
3720 /* QUICKNAV WIDGET */
3721 /*=================*/
3723 #quick-nav-ui {
3724 max-width: 0px;
3725 transition:
3726 max-width 0.2s ease,
3727 visibility 0.2s ease;
3728 display: flex;
3729 right: 72px;
3730 bottom: 14px;
3732 #quick-nav-ui.engaged {
3733 max-width: 1000px;
3735 #quick-nav-ui a {
3736 position: relative;
3737 margin: 2px;
3739 #quick-nav-ui a + a {
3740 margin-left: 5px;
3742 #quick-nav-ui a::after {
3743 position: absolute;
3744 top: calc(100% + 2px);
3745 font-size: 0.375rem;
3746 left: 0;
3747 right: 0;
3748 margin: auto;
3749 line-height: 1;
3750 padding: 2px;
3751 text-transform: uppercase;
3752 z-index: -1;
3754 @supports (width: -moz-fit-content) {
3755 #quick-nav-ui a::after {
3756 width: -moz-fit-content;
3759 @supports (width: fit-content) {
3760 #quick-nav-ui a::after {
3761 width: fit-content;
3764 #quick-nav-ui a[href='#top']::after {
3765 content: "Top";
3766 left: -1px;
3768 #quick-nav-ui a[href='#comments']::after {
3769 content: "Comments";
3771 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
3772 visibility: hidden;
3773 transition: visibility 0.2s ease;
3775 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
3776 visibility: visible;
3778 #quick-nav-ui a[href='#bottom-bar']::after {
3779 content: "Bottom";
3782 /*======================*/
3783 /* NEW COMMENT QUICKNAV */
3784 /*======================*/
3786 #new-comment-nav-ui {
3787 max-width: 0px;
3788 max-height: 0px;
3789 transition:
3790 max-width 0.2s ease,
3791 max-height 0.2s ease,
3792 visibility 0.2s ease;
3793 display: flex;
3794 right: 78px;
3795 bottom: 70px;
3797 #new-comment-nav-ui::before {
3798 content: "New Comments";
3799 position: absolute;
3800 bottom: 100%;
3801 font-size: 0.5625rem;
3802 left: 0;
3803 right: 0;
3804 margin: auto;
3805 padding: 2px 3px;
3806 text-transform: uppercase;
3807 z-index: -1;
3809 @supports (width: -moz-fit-content) {
3810 #new-comment-nav-ui::before {
3811 width: -moz-fit-content;
3814 @supports (width: fit-content) {
3815 #new-comment-nav-ui::before {
3816 width: fit-content;
3819 #new-comment-nav-ui.engaged {
3820 max-width: 1000px;
3821 max-height: 1000px;
3823 #new-comment-nav-ui .new-comment-sequential-nav-button {
3824 top: unset;
3825 bottom: unset;
3826 padding: 2px 7px;
3828 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
3829 padding: 2px 7px 3px 7px;
3831 #new-comment-nav-ui .new-comments-count {
3832 padding: 4px 0 5px 0;
3834 #new-comment-nav-ui .new-comments-count::before {
3835 display: none;
3837 #new-comment-nav-ui button::after {
3838 position: absolute;
3839 font-size: 0.375rem;
3840 left: 0;
3841 right: 0;
3842 margin: auto;
3843 line-height: 1;
3844 text-transform: uppercase;
3845 pointer-events: none;
3847 #new-comment-nav-ui button.new-comment-previous::after {
3848 content: "Previous";
3849 bottom: 5px;
3851 #new-comment-nav-ui button.new-comment-next::after {
3852 content: "Next";
3853 top: 7px;
3856 /*=================*/
3857 /* HNS DATE PICKER */
3858 /*=================*/
3860 #hns-date-picker {
3861 max-height: 0px;
3862 bottom: 132px;
3863 right: 62px;
3864 transition:
3865 max-height 0.2s ease,
3866 visibility 0.2s ease;
3868 #hns-date-picker.engaged {
3869 max-height: 1000px;
3871 #hns-date-picker::before {
3872 width: calc(100% + 2px);
3873 border-width: 1px !important;
3876 /*=========*/
3877 /* NAV BAR */
3878 /*=========*/
3880 #bottom-bar {
3881 padding: 0 4.5rem;
3883 #bottom-bar .nav-item {
3884 box-shadow: none;
3885 position: relative;
3887 #bottom-bar .nav-inner {
3888 font-size: 2rem;
3889 padding: 1rem 0 1.25rem 0;
3890 visibility: hidden;
3891 position: static;
3892 width: 0;
3894 #content #bottom-bar .nav-item .nav-inner::before {
3895 margin: 0;
3896 visibility: visible;
3897 position: absolute;
3898 width: 100%;
3899 height: 100%;
3900 left: 0;
3901 top: 0;
3902 padding: 1rem 0;
3904 #bottom-bar .nav-inner::after {
3905 display: block;
3906 visibility: visible;
3907 text-transform: uppercase;
3908 color: unset;
3909 font-size: 0.75rem;
3910 top: unset;
3911 left: 0;
3912 bottom: 1rem;
3913 width: 100%;
3915 #bottom-bar #nav-item-first .nav-inner::after {
3916 content: "First Page";
3918 #bottom-bar #nav-item-prev .nav-inner::after {
3919 content: "Prev. Page";
3921 #bottom-bar #nav-item-top .nav-inner::after {
3922 content: "Top";
3924 #bottom-bar #nav-item-next .nav-inner::after {
3925 content: "Next Page";
3927 #bottom-bar #nav-item-last .nav-inner::after {
3928 content: "Last Page";
3931 @media only screen and (max-width: 900px) {
3932 #primary-bar,
3933 #secondary-bar {
3934 font-size: 0.75rem;
3936 .nav-bar {
3937 width: calc(100% + 8px);
3938 margin: 0 -4px;
3940 .nav-bar .nav-inner::after {
3941 display: none;
3944 #primary-bar .nav-item {
3945 flex: 1 1 100%;
3947 #secondary-bar .nav-item:not(#nav-item-search) {
3948 flex: 1 1 60px;
3950 #primary-bar .nav-inner,
3951 #secondary-bar .nav-inner {
3952 text-transform: uppercase;
3953 padding: 6px;
3955 #primary-bar .nav-inner::before,
3956 #secondary-bar .nav-inner::before {
3957 display: block;
3958 font-family: "Font Awesome";
3959 font-size: 2em;
3960 font-weight: 900;
3963 #nav-item-home .nav-inner::before {
3964 content: "\F015";
3966 #nav-item-featured .nav-inner::before {
3967 content: "\F005";
3969 #nav-item-all .nav-inner::before {
3970 content: "\F069";
3972 #nav-item-meta .nav-inner::before {
3973 content: "\F077";
3975 #nav-item-recent-comments > * > span {
3976 display: none;
3978 #nav-item-recent-comments .nav-inner::before {
3979 content: "\F036";
3981 #nav-item-archive .nav-inner::before {
3982 content: "\F187";
3984 #nav-item-about .nav-inner::before {
3985 content: "\F129";
3987 #nav-item-search {
3988 font-size: 2em;
3989 padding: 10px;
3991 #nav-item-search .nav-inner::before {
3992 content: none;
3994 #nav-item-search .nav-inner {
3995 height: 100%;
3996 display: flex;
3998 #nav-item-search input {
3999 width: 100%;
4000 height: 100%;
4002 #nav-item-search button {
4003 height: 100%;
4004 padding: 5px 5px 5px 10px;
4005 width: 40px;
4006 overflow: visible;
4007 visibility: hidden;
4009 #nav-item-search button::before {
4010 content: "\F002";
4011 font-family: Font Awesome;
4012 font-weight: 900;
4013 visibility: visible;
4015 #nav-item-login {
4016 padding: 0;
4018 #nav-item-login .nav-inner::before {
4019 content: "\F007";
4022 @media only screen and (max-width: 520px) {
4023 #primary-bar,
4024 #secondary-bar {
4025 font-size: 0.5rem;
4028 #nav-item-search .nav-inner {
4029 padding: 0;
4031 #nav-item-search button {
4032 width: 31px;
4035 #bottom-bar #nav-item-first .nav-inner::after {
4036 content: "First";
4038 #bottom-bar #nav-item-prev .nav-inner::after {
4039 content: "Prev";
4041 #bottom-bar #nav-item-next .nav-inner::after {
4042 content: "Next";
4044 #bottom-bar #nav-item-last .nav-inner::after {
4045 content: "Last";
4049 /*=================*/
4050 /* INBOX INDICATOR */
4051 /*=================*/
4053 @media only screen and (max-width: 900px) {
4054 #inbox-indicator {
4055 width: 100%;
4056 top: 0;
4057 pointer-events: none;
4059 #inbox-indicator::before {
4060 width: 100%;
4061 font-size: 1rem;
4062 text-align: right;
4063 padding: 1px 6px;
4065 #inbox-indicator.new-messages {
4066 pointer-events: auto;
4068 #inbox-indicator.new-messages::before {
4069 box-shadow: 0 0 8px 1px #f00 inset;
4072 @media only screen and (max-width: 520px) {
4073 #inbox-indicator::before {
4074 font-size: 0.75rem;
4075 padding: 2px 5px;
4078 @media only screen and (max-width: 374px) {
4079 #inbox-indicator::before {
4080 font-size: 0.625rem;
4084 /*===================*/
4085 /* TOP PAGINATION UI */
4086 /*===================*/
4088 #top-nav-bar {
4089 font-size: 1.75rem;
4092 /*==============*/
4093 /* PAGE TOOLBAR */
4094 /*==============*/
4096 @media only screen and (max-width: 900px) {
4097 #content > .page-toolbar {
4098 font-size: 1rem;
4099 margin-right: 0;
4101 #content.user-page > .page-toolbar {
4102 grid-column: 2 / span 2;
4103 margin: 0 0 6px 0;
4106 @media only screen and (max-width: 520px) {
4107 #content:not(.user-page) .page-toolbar {
4108 display: flex;
4109 flex-direction: column-reverse;
4110 text-align: right;
4111 align-self: start;
4112 padding: 4px 0 0 0;
4114 #content.user-page .page-toolbar {
4115 display: flex;
4116 flex-flow: row;
4117 justify-content: flex-end;
4118 padding: 2px 0 0 0;
4120 #content.user-page .page-toolbar > form,
4121 #content.user-page .page-toolbar > .button {
4122 text-align: center;
4123 flex-basis: 25%;
4124 margin-left: 1.5em;
4126 #content.user-page .page-toolbar .button {
4127 text-transform: uppercase;
4128 font-size: 0.625rem;
4130 #content.user-page .page-toolbar .button::before {
4131 font-size: 1.375rem;
4132 display: block;
4133 padding: 0;
4135 #content.user-page .page-toolbar .rss {
4136 white-space: nowrap;
4137 margin: 0 0 0 1.5em;
4139 .page-toolbar > * {
4140 line-height: 1.15;
4141 padding: 6px 0;
4142 margin: 0;
4146 /*==============*/
4147 /* SUBLEVEL NAV */
4148 /*==============*/
4150 @media only screen and (max-width: 900px) {
4151 .sublevel-nav:not(.sort) {
4152 flex-wrap: wrap;
4153 width: calc(100vw - 100px);
4155 .sublevel-nav:not(.sort) .sublevel-item {
4156 margin: 1px;
4157 flex-basis: 7em;
4160 @media only screen and (max-width: 720px) {
4161 .sublevel-nav:not(.sort) {
4162 width: calc(100vw - 200px);
4165 @media only screen and (max-width: 520px) {
4166 .sublevel-nav:not(.sort) {
4167 width: calc(100vw - 100px);
4169 .sublevel-nav:not(.sort) .sublevel-item {
4170 font-size: 1rem;
4174 /*=====================*/
4175 /* SORT ORDER SELECTOR */
4176 /*=====================*/
4178 @media only screen and (max-width: 720px) {
4179 #content.index-page > .sublevel-nav.sort {
4180 flex-flow: column;
4181 margin-left: 4px;
4185 /*==========*/
4186 /* ARCHIVES */
4187 /*==========*/
4189 @media only screen and (max-width: 900px) {
4190 div[class^='archive-nav-'] {
4191 flex-wrap: wrap;
4192 justify-content: flex-start;
4194 .archive-nav *[class^='archive-nav-item'],
4195 .archive-nav *[class^='archive-nav-item']:first-child {
4196 padding: 10px;
4197 margin: 2px;
4198 max-width: unset;
4199 flex: 0 1 calc((100% / 8) - 4px);
4201 .archive-nav .archive-nav-item-day,
4202 .archive-nav .archive-nav-item-day:first-child {
4203 flex-basis: calc((100% / 16) - 4px);
4205 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4206 margin-top: 8px;
4207 position: relative;
4209 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4210 content: "";
4211 display: block;
4212 position: absolute;
4213 height: 1px;
4214 width: calc(100% + 8px);
4215 left: -4px;
4216 top: -4px;
4219 @media only screen and (max-width: 720px) {
4220 .archive-nav .archive-nav-item-day,
4221 .archive-nav .archive-nav-item-day:first-child {
4222 flex-basis: calc((100% / 12) - 4px);
4225 @media only screen and (max-width: 520px) {
4226 .archive-nav *[class^='archive-nav-item'],
4227 .archive-nav *[class^='archive-nav-item']:first-child {
4228 flex-basis: calc((100% / 5) - 4px);
4230 .archive-nav .archive-nav-item-day,
4231 .archive-nav .archive-nav-item-day:first-child {
4232 flex-basis: calc((100% / 8) - 4px);
4236 /*==========*/
4237 /* LISTINGS */
4238 /*==========*/
4240 h1.listing {
4241 max-height: unset;
4244 /*============*/
4245 /* USER PAGES */
4246 /*============*/
4248 @media only screen and (max-width: 720px) {
4249 #content.user-page h1.page-main-heading {
4250 align-self: center;
4252 #content.user-page .user-stats {
4253 padding: 4px 0;
4254 line-height: 1.3;
4258 /*============*/
4259 /* LOGIN PAGE */
4260 /*============*/
4262 @media only screen and (max-width: 640px) {
4263 .login-container {
4264 flex-flow: column;
4265 margin: 0 auto 3em auto;
4266 max-width: 400px;
4268 .login-container #login-form,
4269 .login-container #signup-form {
4270 padding: 0 1em 1.25em 1em;
4271 grid-row-gap: 0;
4273 .login-container #signup-form {
4274 padding-top: 1em;
4276 .login-container #login-form > *,
4277 .login-container #signup-form > * {
4278 grid-column: 1 / span 2;
4280 .login-container form label {
4281 text-align: left;
4282 padding: 0;
4283 line-height: 1;
4285 .login-container form input {
4286 margin: 0.25em 0 0.75em 0;
4287 padding: 0.5em;
4289 .login-container form h1 {
4290 grid-column: 1 / span 2;
4291 margin: 0 0 0.25em 0;
4293 .login-container form a {
4294 margin: 0.75em 0 0 0;
4296 .login-container .login-tip {
4297 margin: 1.5em 1em 0 1em;
4301 /*==================*/
4302 /* POSTS & COMMENTS */
4303 /*==================*/
4305 /*===========*/
4306 /* POST-META */
4307 /*===========*/
4309 .post-meta {
4310 line-height: 1.9;
4312 @media only screen and (max-width: 720px) {
4313 .post-meta .lw2-link span,
4314 .post-meta .karma-value span,
4315 .post-meta .comment-count span {
4316 display: none;
4318 .post-meta .comment-count::before {
4319 content: "\F086";
4320 font-family: Font Awesome;
4321 font-size: 0.875em;
4322 margin: 0 0.25em 0 0;
4323 font-weight: 400;
4327 /*=======*/
4328 /* POSTS */
4329 /*=======*/
4331 @media only screen and (max-width: 900px) {
4332 .post-body,
4333 .post > h1:first-child {
4334 padding: 0 6px;
4337 @media only screen and (max-width: 520px) {
4338 .post-body {
4339 font-size: 1.2rem;
4340 line-height: 1.45;
4342 .post > h1:first-child {
4343 font-size: 2em;
4347 /*==========*/
4348 /* COMMENTS */
4349 /*==========*/
4351 @media only screen and (max-width: 900px) {
4352 .comment-body ul {
4353 padding-left: 30px;
4355 .comment-body ol {
4356 padding-left: 30px;
4360 /*==============*/
4361 /* COMMENT-META */
4362 /*==============*/
4364 a.comment-parent-link::after {
4365 display: none;
4367 @media only screen and (max-width: 900px) {
4368 .comment-meta {
4369 padding: 2px 40px 2px 10px;
4372 @media only screen and (max-width: 720px) {
4373 .comment-meta .karma-value span {
4374 display: none;
4376 .comment-meta .comment-parent-link {
4377 opacity: 1.0;
4380 @media only screen and (max-width: 520px) {
4381 .comment-meta {
4382 padding: 2px 10px;
4383 position: relative;
4385 .comment-meta .author {
4386 flex-basis: 100%;
4388 .comment-post-title2 {
4389 display: block;
4390 text-overflow: ellipsis;
4391 overflow: hidden;
4393 .comment-meta .lw2-link {
4394 display: none;
4398 /*=======================*/
4399 /* COMMENTS COMPACT VIEW */
4400 /*=======================*/
4402 /*===========================*/
4403 /* COMMENT THREAD NAVIGATION */
4404 /*===========================*/
4406 @media only screen and (max-width: 900px) {
4407 a.comment-parent-link {
4408 width: 0;
4409 visibility: hidden;
4410 position: relative;
4412 a.comment-parent-link::before {
4413 padding: 0;
4414 font-size: 1em;
4415 left: 0;
4416 top: 0;
4417 line-height: inherit;
4418 visibility: visible;
4419 content: "\F3BF";
4420 transform: scaleX(-1);
4421 width: 2em;
4422 text-align: center;
4425 @media only screen and (max-width: 520px) {
4426 a.comment-parent-link {
4427 position: static;
4429 a.comment-parent-link::before {
4430 padding: 6px;
4431 left: unset;
4432 right: 0;
4433 top: unset;
4434 bottom: 0;
4435 height: 2em;
4439 /*=================================*/
4440 /* COMMENT THREAD MINIMIZE BUTTONS */
4441 /*=================================*/
4443 @media only screen and (max-width: 520px) {
4444 .comment-minimize-button{
4445 right: 2px;
4449 /*===========================*/
4450 /* COMMENTING AND POSTING UI */
4451 /*===========================*/
4453 @media only screen and (max-width: 900px) {
4454 .comment-controls .edit-button,
4455 .comment-controls .cancel-comment-button {
4456 max-width: 1.3em;
4457 overflow: hidden;
4458 margin-right: 0.125em;
4460 .comment-controls .edit-button {
4461 color: #0b0;
4463 .comment-controls .edit-button::before {
4464 font-size: 1rem;
4466 #comments > .comment-controls .cancel-comment-button {
4467 right: 8px;
4469 .comment-controls .cancel-comment-button::before {
4470 font-size: 1.25rem;
4473 @media only screen and (max-width: 520px) {
4474 .comment-controls {
4475 position: static;
4477 .comment-controls:focus-within {
4478 z-index: 10001;
4480 .comment-controls .cancel-comment-button {
4481 right: 10px;
4483 .textarea-container:focus-within textarea {
4484 position: fixed;
4485 top: 0;
4486 left: 2px;
4487 width: calc(100vw - 4px);
4488 height: calc(100% - 100px);
4489 min-height: unset;
4490 max-height: unset;
4491 border-width: 1px;
4492 z-index: 11001;
4494 #content.conversation-page .textarea-container:focus-within textarea {
4495 height: calc(100% - 54px);
4497 #content.conversation-page .textarea-container:focus-within::after {
4498 content: "";
4499 display: block;
4500 width: 100%;
4501 height: 50px;
4502 position: fixed;
4503 left: 0;
4504 bottom: 0;
4505 z-index: 11000;
4507 .textarea-container:focus-within .guiedit-buttons-container {
4508 position: fixed;
4509 z-index: 11002;
4510 left: 0;
4511 width: 100vw;
4512 height: auto;
4513 background-image: none;
4514 padding: 3px 4px 4px 4px;
4515 margin: 0;
4516 text-align: center;
4517 top: auto;
4518 bottom: 0;
4520 .textarea-container:focus-within button.guiedit {
4521 font-size: 0.9375rem;
4522 line-height: 1.5;
4523 height: auto;
4524 width: calc((100% / 10) - 2px);
4525 padding: 10px 1px 8px 0;
4526 position: relative;
4527 margin: 1px;
4529 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
4530 z-index: 11011;
4531 position: fixed;
4532 bottom: 7px;
4533 width: calc(((100% - 16px) / 10) * 3 - 7px);
4534 font-size: 1.25rem;
4535 padding: 5px 5px 6px 5px;
4536 display: block;
4538 .textarea-container:focus-within button.guiedit sup {
4539 position: absolute;
4540 left: calc(50% + 0.65em);
4541 top: calc(50% - 1.3em);
4543 .textarea-container:focus-within .guiedit-mobile-help-button {
4544 left: 8px;
4546 .textarea-container:focus-within .guiedit-mobile-exit-button {
4547 right: 8px;
4549 .guiedit::after {
4550 display: none;
4553 .markdown-hints,
4554 #edit-post-form .markdown-hints {
4555 z-index: 11111;
4556 position: fixed;
4557 top: 40px;
4558 left: 0;
4559 right: 0;
4560 margin: auto;
4561 padding: 4px 0 4px 8px;
4562 width: 310px;
4563 border-width: 3px;
4564 border-style: double;
4565 pointer-events: none;
4567 .markdown-hints::after {
4568 content: "(Type to hide this help box.)";
4569 color: #090;
4570 display: block;
4571 margin: 12px 18px 13px 10px;
4572 padding: 5px;
4573 font-size: 0.9em;
4574 text-align: center;
4578 /*================*/
4579 /* EDIT POST FORM */
4580 /*================*/
4582 @media only screen and (max-width: 520px) {
4583 #edit-post-form {
4584 padding-bottom: 0;
4586 #edit-post-form .post-meta-fields {
4587 grid-template-columns: 4em auto auto auto 1fr 4.25em;
4589 #edit-post-form label[for='url'],
4590 #edit-post-form label[for='section'],
4591 #edit-post-form label[for='title'] {
4592 padding-left: 0;
4594 #edit-post-form label[for='link-post'] {
4595 white-space: normal;
4596 line-height: 0.9;
4597 top: -1px;
4599 #edit-post-form .textarea-container:focus-within textarea {
4600 top: -1px;
4601 height: calc(100% - 101px);
4602 min-height: unset;
4605 #markdown-hints-checkbox,
4606 #markdown-hints-checkbox + label {
4607 display: none;
4610 #edit-post-form div:last-child {
4611 clear: both;
4612 overflow: auto;
4614 #edit-post-form input[type='submit'] {
4615 float: none;
4616 display: block;
4617 font-size: 1.5rem;
4618 margin: 1rem auto 1.5rem auto;
4619 padding: 6px 12px 8px 12px;
4623 /*===================*/
4624 /* TABLE OF CONTENTS */
4625 /*===================*/
4627 @media only screen and (max-width: 900px) {
4628 .contents {
4629 float: none;
4630 display: table;
4631 max-width: none;
4632 margin-left: auto;
4633 margin-right: auto;
4636 @media only screen and (max-width: 520px) {
4637 .contents {
4638 max-width: 100%;
4639 margin: 1em auto 0 auto;
4640 display: table;
4642 .contents-head {
4643 font-size: 1.2em;
4645 div.post-body .contents ul {
4646 font-size: unset;
4650 /*========================*/
4651 /* QUALIFIED HYPERLINKING */
4652 /*========================*/
4654 @media only screen and (max-width: 520px) {
4655 .qualified-linking-toolbar {
4656 right: -5em;
4660 } /* END MOBILE LAYOUT */
4663 /**************/
4664 /* THEME ZERO */
4665 /**************/
4667 body {
4668 color: #000;
4669 font-family: Trade Gothic, Helvetica, sans-serif;
4670 background-color: #eee;
4672 #content {
4673 line-height: 1.55;
4676 /*=========*/
4677 /* NAV BAR */
4678 /*=========*/
4680 .nav-bar {
4681 background-color: #e4e4e4;
4683 .nav-inner {
4684 font-size: 1.125em;
4685 padding: 11px 30px 13px 30px;
4687 #secondary-bar .nav-inner {
4688 font-size: 0.875em;
4690 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
4691 padding: 6px 0 3px 0;
4693 .active-bar {
4694 border-top: 2px solid #eee;
4697 .nav-bar a:visited {
4698 color: #00e;
4701 #bottom-bar.decorative {
4702 background-color: transparent;
4704 #bottom-bar.decorative::before,
4705 #bottom-bar.decorative::after {
4706 content: "GW";
4707 display: block;
4708 text-align: center;
4709 padding: 0.25em 0 1em 0;
4711 #bottom-bar.decorative::before {
4712 width: 100%;
4713 color: transparent;
4714 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4715 background-repeat: repeat-x;
4716 background-position: center 35%;
4717 margin: 0 30px;
4718 filter: contrast(90%);
4720 #bottom-bar.decorative::after {
4721 color: #d8d8d8;
4722 position: absolute;
4723 left: 0;
4724 right: 0;
4725 margin: auto;
4726 background-color: #eee;
4727 padding-right: 4px;
4728 padding-left: 4px;
4730 @supports (width: -moz-fit-content) {
4731 #bottom-bar.decorative::after {
4732 width: -moz-fit-content;
4735 @supports (width: fit-content) {
4736 #bottom-bar.decorative::after {
4737 width: fit-content;
4741 /* Accesskey hints */
4743 .nav-inner::after {
4744 display: block;
4745 position: absolute;
4746 left: 5px;
4747 top: -1px;
4748 font-weight: 400;
4749 font-size: 0.7em;
4750 color: #d8d8d8;
4752 .inactive-bar .nav-inner::after {
4753 color: #ccc;
4755 .nav-inner:hover::after {
4756 color: #bbb;
4759 /* "Tabs" */
4761 .nav-current {
4762 background-color: #eee;
4765 /* Search tab */
4767 #nav-item-search form::before {
4768 font-size: 1.125em;
4770 #nav-item-search button {
4771 border: none;
4772 font-weight: inherit;
4775 /*==============*/
4776 /* PAGE TOOLBAR */
4777 /*==============*/
4779 .new-post,
4780 .new-post:visited,
4781 .new-private-message,
4782 .new-private-message:visited {
4783 color: #090;
4785 .logout-button {
4786 color: #d33;
4789 /*==============*/
4790 /* SUBLEVEL NAV */
4791 /*==============*/
4793 .sublevel-nav .sublevel-item {
4794 border-color: #ccc;
4795 border-style: solid;
4796 border-width: 1px 1px 1px 0;
4797 color: #777;
4799 .sublevel-nav .sublevel-item:first-child {
4800 border-radius: 8px 0 0 8px;
4801 border-width: 1px;
4803 .sublevel-nav .sublevel-item:last-child {
4804 border-radius: 0 8px 8px 0;
4806 .sublevel-nav .sublevel-item:hover {
4807 background-color: #ddd;
4808 color: #000;
4809 text-decoration: none;
4810 text-shadow: none;
4812 .sublevel-nav .sublevel-item:active,
4813 .sublevel-nav .sublevel-item:disabled,
4814 .sublevel-nav span.sublevel-item {
4815 background-color: #ddd;
4816 border-color: #ccc;
4817 color: #000;
4818 text-shadow:
4819 0 -1px 0 #fff,
4820 0 0.5px 0.5px #000;
4821 transform: none;
4824 /*=====================*/
4825 /* SORT ORDER SELECTOR */
4826 /*=====================*/
4828 .sublevel-nav.sort {
4829 padding: 18px 0 0 0;
4830 border-radius: 8px;
4832 .sublevel-nav.sort::before {
4833 text-transform: uppercase;
4834 font-weight: 600;
4835 color: #444;
4836 text-shadow: 0.5px 0.5px 0 #fff;
4838 .sublevel-nav.sort .sublevel-item {
4839 padding: 6px 6px 5px 6px;
4840 text-transform: uppercase;
4841 border: 1px solid #ccc;
4844 /* Vertical */
4845 .sublevel-nav.sort .sublevel-item:first-child {
4846 border-radius: 6px 6px 0 0;
4848 .sublevel-nav.sort .sublevel-item:last-child {
4849 border-radius: 0 0 6px 6px;
4851 .sublevel-nav.sort .sublevel-item:nth-child(n+2) {
4852 border-width: 0 1px 1px 1px;
4855 /* Horizontal */
4856 .sublevel-nav.sort.horizontal .sublevel-item:first-child {
4857 border-radius: 6px 0 0 6px;
4859 .sublevel-nav.sort.horizontal .sublevel-item:last-child {
4860 border-radius: 0 6px 6px 0;
4862 .sublevel-nav.sort.horizontal .sublevel-item:nth-child(n+2) {
4863 border-width: 1px 1px 1px 0;
4866 .sublevel-nav.sort .sublevel-item:active {
4867 border-color: #ccc;
4870 /*================*/
4871 /* WIDTH SELECTOR */
4872 /*================*/
4874 #width-selector button {
4875 box-shadow:
4876 0 0 0 4px #eee inset,
4877 0 0 0 5px #aaa inset;
4879 #width-selector button:hover,
4880 #width-selector button.selected {
4881 box-shadow:
4882 0 0 0 1px #eee inset,
4883 0 0 0 2px #aaa inset,
4884 0 0 0 4px #eee inset,
4885 0 0 0 5px #aaa inset;
4887 #width-selector button::after {
4888 color: #999;
4891 /*================*/
4892 /* THEME SELECTOR */
4893 /*================*/
4895 #theme-selector button {
4896 box-shadow:
4897 0 0 0 4px #eee inset,
4898 0 0 0 5px #999 inset;
4900 #theme-selector button:hover,
4901 #theme-selector button.selected {
4902 box-shadow:
4903 0 0 0 1px #eee inset,
4904 0 0 0 2px #999 inset,
4905 0 0 0 4px #eee inset,
4906 0 0 0 5px #999 inset;
4909 #theme-selector button::before {
4910 color: #aaa;
4911 background-color: #eee;
4913 #theme-selector button:hover::before,
4914 #theme-selector button.selected::before {
4915 color: #666;
4918 /*======================*/
4919 /* THEME TWEAKER TOGGLE */
4920 /*======================*/
4922 #theme-tweaker-toggle button {
4923 color: #777;
4926 /*=================*/
4927 /* QUICKNAV WIDGET */
4928 /*=================*/
4930 #quick-nav-ui a {
4931 color: #00c;
4932 border-radius: 4px;
4933 box-shadow: 0 0 0 1px #ddf;
4934 text-decoration: none;
4936 #quick-nav-ui a[href='#bottom-bar'] {
4937 line-height: 1.8;
4939 #quick-nav-ui a:active {
4940 transform: scale(0.9);
4942 #quick-nav-ui a[href='#comments'].no-comments {
4943 opacity: 0.4;
4944 color: #bbb;
4946 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
4947 #quick-nav-ui a:hover {
4948 color: #f00;
4949 box-shadow: 0 0 0 1px #faa;
4951 #quick-nav-ui a:focus:not(:hover) {
4952 transform: none;
4953 text-shadow: none;
4957 /*======================*/
4958 /* NEW COMMENT QUICKNAV */
4959 /*======================*/
4961 #new-comment-nav-ui .new-comments-count {
4962 font-weight: 600;
4963 color: #666;
4964 text-shadow: 0.5px 0.5px 0 #fff;
4966 #new-comment-nav-ui .new-comments-count::after {
4967 font-weight: 600;
4968 color: #777;
4970 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
4971 color: #bbb;
4972 text-shadow: none;
4974 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
4975 #new-comment-nav-ui .new-comments-count:hover {
4976 text-shadow:
4977 0 0 1px #fff,
4978 0 0 3px #fff,
4979 0 0 5px #fff,
4980 0 0 8px #fff,
4981 0.5px 0.5px 0 #fff;
4983 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
4984 color: #d00;
4985 text-shadow:
4986 0 0 1px #fff,
4987 0 0 3px #fff,
4988 0 0 5px #fff;
4992 /*=================*/
4993 /* HNS DATE PICKER */
4994 /*=================*/
4996 #hns-date-picker span {
4997 color: #777;
4998 text-shadow: 0.5px 0.5px 0 #fff;
4999 font-weight: 600;
5001 #hns-date-picker input {
5002 border: 1px solid #777;
5003 background-color: transparent;
5004 color: #666;
5006 #hns-date-picker input:focus {
5007 color: #000;
5010 /*======================*/
5011 /* ANTI-KIBITZER TOGGLE */
5012 /*======================*/
5014 #anti-kibitzer-toggle button::before,
5015 #anti-kibitzer-toggle button::after {
5016 background-color: #aaa;
5017 -webkit-background-clip: text;
5018 color: transparent;
5019 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5021 #anti-kibitzer-toggle button:hover::before,
5022 #anti-kibitzer-toggle button:hover::after {
5023 background-color: #777;
5026 /*======================*/
5027 /* TEXT SIZE ADJUSTMENT */
5028 /*======================*/
5030 #text-size-adjustment-ui button {
5031 color: #777;
5033 #text-size-adjustment-ui button.default {
5034 font-weight: 600;
5036 #text-size-adjustment-ui button:disabled:hover {
5037 text-shadow: none;
5039 #text-size-adjustment-ui::after {
5040 color: #999;
5043 /*=============================*/
5044 /* COMMENTS VIEW MODE SELECTOR */
5045 /*=============================*/
5047 #comments-view-mode-selector a {
5048 color: #777;
5051 /*==========*/
5052 /* ARCHIVES */
5053 /*==========*/
5055 .archive-nav {
5056 border: 1px solid #aaa;
5058 .archive-nav *[class^='archive-nav-item'] {
5059 border-style: solid;
5060 border-color: #ddd;
5061 border-width: 1px 0 1px 1px;
5062 background-color: #eee;
5064 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5065 border-top-width: 0;
5066 border-bottom-width: 0;
5068 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5069 border-bottom-width: 1px;
5071 .archive-nav *[class^='archive-nav-item']:last-child {
5072 border-right-width: 1px;
5074 .archive-nav span[class^='archive-nav-item'] {
5075 font-weight: bold;
5076 background-color: #ddd;
5079 .archive-nav a:link,
5080 .archive-nav a:visited {
5081 color: rgba(0, 0, 238, 0.7);
5083 .archive-nav a:hover {
5084 text-decoration: none;
5085 color: #c00;
5086 background-color: #e0e0e0;
5087 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5089 .archive-nav a:active {
5090 transform: scale(0.9);
5092 .archive-nav a:focus:not(:hover) {
5093 transform: none;
5095 .archive-nav a.archive-nav-item-day:hover {
5096 background-color: #ddd;
5099 /*==========*/
5100 /* LISTINGS */
5101 /*==========*/
5103 h1.listing {
5104 margin: 0.7em 20px 0.1em 20px;
5105 max-width: calc(100% - 40px);
5106 font-family: Trade Gothic, Helvetica, sans-serif, 'Font Awesome';
5107 font-size: 1.375rem;
5108 line-height: 1.2;
5111 h1.listing a[href^="http"] {
5112 color: #00c;
5113 font-size: 0.75em;
5115 h1.listing a[href^="/posts"] {
5116 color: #000;
5117 font-weight: bold;
5120 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5121 h1.listing a:hover,
5122 h1.listing a:focus {
5123 color: #777;
5124 background-color: rgba(238,238,238,0.85);
5126 h1.listing:focus-within::before {
5127 color: #00f;
5128 left: -0.625em;
5129 top: 1px;
5131 h1.listing a[href^="http"]:hover {
5132 color: #4879ec;
5133 text-shadow:
5134 0.5px 0.5px 0 #fff,
5135 -0.5px -0.5px 0 #fff,
5136 0 0 2px #fff,
5137 0 0 3px #00c;
5141 h1.listing .edit-post-link {
5142 padding: 6px 3px 32px 0.5em;
5143 top: 0;
5144 right: 0;
5146 h1.listing .edit-post-link:hover {
5147 text-decoration: none;
5149 #content.user-page h1.listing .edit-post-link {
5150 background-color: #eee;
5153 /*===================*/
5154 /* LISTING POST-META */
5155 /*===================*/
5157 h1.listing + .post-meta {
5158 font-size: 0.875rem;
5161 h1.listing + .post-meta .karma-value {
5162 cursor: default;
5165 /*============*/
5166 /* USER PAGES */
5167 /*============*/
5169 #content.user-page h1.page-main-heading {
5170 border-bottom: 1px solid #ccc;
5173 #content.user-page h1.listing,
5174 #content.user-page h1.listing + .post-meta {
5175 border-style: solid;
5176 border-color: #ccc;
5178 #content.user-page h1.listing {
5179 padding: 0 6px;
5180 padding-top: 0.25em;
5181 border-width: 1px 1px 0 1px;
5182 margin: 1rem 0 0 0;
5183 max-width: 100%;
5185 #content.own-user-page h1.listing,
5186 h1.listing.own-post-listing {
5187 padding-right: 36px;
5189 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5190 #content.user-page h1.listing:focus-within::before {
5191 left: -0.625em;
5192 top: 6px;
5195 #content.user-page h1.listing + .post-meta {
5196 padding: 0.75em 6px 0.5em 32px;
5197 border-width: 0 1px 1px 1px;
5198 margin: 0 0 1rem 0;
5200 #content.user-page h1.listing + .post-meta .post-section::before {
5201 left: 0;
5204 #content.conversations-user-page h1.listing {
5205 padding: 6px 6px 4px 9px;
5206 font-size: 1.5rem;
5208 #content.conversations-user-page h1.listing + .post-meta {
5209 padding: 6px 4px;
5210 margin: 0;
5213 .user-stats .karma-total {
5214 font-weight: bold;
5217 /*===============*/
5218 /* CONVERSATIONS */
5219 /*===============*/
5221 /*============*/
5222 /* LOGIN PAGE */
5223 /*============*/
5225 .login-container form input[type='submit'] {
5226 font-weight: bold;
5227 background-color: #eee;
5228 border: 1px solid #ccc;
5230 .login-container form input[type='submit']:hover,
5231 .login-container form input[type='submit']:focus {
5232 background-color: #ddd;
5233 border: 1px solid #aaa;
5236 /* “Create account” form */
5238 #signup-form {
5239 background-color: #f3f3f3;
5240 border: 1px solid #ddd;
5242 #signup-form input[type='submit'] {
5243 background-color: #e4e4e4;
5244 border: 1px solid #ccc;
5246 #signup-form input[type='submit']:hover {
5247 background-color: #d8d8d8;
5248 border: 1px solid #aaa;
5251 /* Log in tip */
5253 .login-container .login-tip {
5254 border: 1px solid #eee;
5257 /* Message box */
5259 .error-box {
5260 border: 1px solid red;
5261 background-color: #faa;
5263 .success-box {
5264 border: 1px solid green;
5265 background-color: #afa;
5268 /*=====================*/
5269 /* PASSWORD RESET PAGE */
5270 /*=====================*/
5272 .reset-password-container input[type='submit'] {
5273 background-color: #e4e4e4;
5274 border: 1px solid #ccc;
5275 font-weight: bold;
5278 /*===================*/
5279 /* TABLE OF CONTENTS */
5280 /*===================*/
5282 .contents {
5283 font-family: Trade Gothic, Helvetica, sans-serif;
5284 background-color: #eee;
5286 .contents-head {
5287 font-weight: bold;
5289 .post-body .contents li::before {
5290 color: #999;
5291 font-feature-settings: "tnum";
5294 /*==================*/
5295 /* POSTS & COMMENTS */
5296 /*==================*/
5298 .post-body,
5299 .comment-body {
5300 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
5303 /*=======*/
5304 /* POSTS */
5305 /*=======*/
5307 .post-body {
5308 font-size: 1.25rem;
5311 .post > h1:first-child {
5312 font-size: 2rem;
5313 line-height: 1.1;
5314 margin: 1em 0 0.25em 0;
5317 /*===========*/
5318 /* POST-META */
5319 /*===========*/
5321 .post-meta .post-section::before {
5322 color: #fff;
5323 text-shadow:
5324 1px 1px 0 #090,
5325 0 1px 0 #090,
5326 0 0 5px #090;
5328 a.post-section:hover {
5329 text-decoration: none;
5331 a.post-section:hover::before {
5332 color: #97ff7c;
5334 .post-meta .post-section.alignment-forum::before {
5335 text-shadow:
5336 1px 1px 0 #626dd7,
5337 0 1px 0 #626dd7,
5338 0 0 5px #626dd7;
5340 a.post-section.alignment-forum:hover::before {
5341 color: #e6e5ff;
5342 text-decoration: none;
5344 .post-meta .date {
5345 color: #888;
5347 .post-meta .author {
5348 color: #090;
5350 .bottom-post-meta {
5351 border-top: 1px solid #ddd;
5354 /*============*/
5355 /* LINK POSTS */
5356 /*============*/
5358 .post.link-post a.link-post-link {
5359 text-decoration: none;
5360 font-family: Trade Gothic, Helvetica, sans-serif;
5361 font-weight: 600;
5363 .post.link-post a.link-post-link:hover {
5364 color: #c00;
5366 .post.link-post a.link-post-link:hover::before {
5367 color: #4879ec;
5368 text-shadow:
5369 0.5px 0.5px 0 #fff,
5370 -0.5px -0.5px 0 #fff,
5371 0 0 2px #fff,
5372 0 0 3px #00c;
5374 .post.link-post a.link-post-link:focus {
5375 color: #999;
5376 border-bottom: 2px dotted #999;
5379 /*==========*/
5380 /* COMMENTS */
5381 /*==========*/
5383 #comments {
5384 border-top: 1px solid transparent;
5386 #content > .comment-thread .comment-meta a.date:focus,
5387 #content > .comment-thread .comment-meta a.permalink:focus {
5388 color: #888;
5389 outline: 2px dotted #999;
5390 padding: 0 5px;
5391 position: relative;
5392 background-color: #fff;
5394 .comment-item {
5395 border: 1px solid #ccc;
5399 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5400 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5401 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5402 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5403 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5404 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5405 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5406 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5407 .comment-item .comment-item .comment-item .comment-item .comment-item,
5408 .comment-item .comment-item .comment-item,
5409 .comment-item {
5410 background-color: #eee;
5412 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5413 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5414 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5415 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5416 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5417 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5418 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5419 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5420 #comments.threaded .comment-item .comment-item #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5421 #comments.threaded .comment-item .comment-item .comment-item a.comment-parent-link::after,
5422 .comment-item a.comment-parent-link::after {
5423 box-shadow:
5424 0 28px 16px -16px #fff inset,
5425 4px 16px 0 12px #ffd inset,
5426 4px 4px 0 12px #ffd inset;
5429 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5430 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5431 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5432 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5433 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5434 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5435 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5436 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5437 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5438 .comment-item .comment-item .comment-item .comment-item,
5439 .comment-item .comment-item {
5440 background-color: #fff;
5442 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5443 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5444 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5445 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5446 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5447 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5448 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5449 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5450 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5451 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5452 .comment-item .comment-item a.comment-parent-link::after {
5453 box-shadow:
5454 0 28px 16px -16px #eee inset,
5455 4px 16px 0 12px #ffd inset,
5456 4px 4px 0 12px #ffd inset;
5459 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5460 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5461 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5462 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5463 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5464 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5465 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5466 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5467 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5468 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5469 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5470 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5471 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5472 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5473 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5474 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5475 .comment-item .comment-item .comment-item .comment-item:target,
5476 .comment-item .comment-item .comment-item:target,
5477 .comment-item .comment-item:target,
5478 .comment-item:target {
5479 background-color: #ffd;
5481 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5482 box-shadow:
5483 0 28px 16px -16px #ffd inset,
5484 4px 16px 0 12px #ffd inset,
5485 4px 4px 0 12px #ffd inset !important;
5488 .comment-body {
5489 font-size: 1.1875rem;
5492 /*================================*/
5493 /* DEEP COMMENT THREAD COLLAPSING */
5494 /*================================*/
5496 .comment-item input[id^="expand"] + label::after {
5497 color: #00e;
5498 font-weight: 600;
5500 .comment-item input[id^="expand"] + label:hover::after {
5501 color: #c00;
5503 .comment-item input[id^="expand"] + label:active::after,
5504 .comment-item input[id^="expand"] + label:focus::after{
5505 color: #c00;
5507 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5508 border-width: 1px 0 0 0;
5511 /*==============*/
5512 /* COMMENT-META */
5513 /*==============*/
5515 .comment-meta .author {
5516 font-size: 1.125em;
5517 color: #090;
5519 .comment-item .author:not(.redacted).original-poster::after {
5520 opacity: 0.6;
5521 filter: brightness(60%);
5524 .comment-item .karma.active-controls::after,
5525 .comment-item .karma .karma-value::after,
5526 .post .karma.active-controls::after,
5527 .post .karma .karma-value::after {
5528 background-color: #eee;
5529 color: #777;
5530 border-radius: 4px;
5531 box-shadow: 0 0 0 1px #bbb inset;
5533 .comment-item .karma.active-controls::after,
5534 .post .karma.active-controls::after {
5535 padding: 6px;
5536 bottom: -46px;
5538 .comment-item .karma .karma-value::after,
5539 .post .karma .karma-value::after {
5540 padding: 2px 8px;
5541 top: -26px;
5542 min-width: 60px;
5545 /*====================*/
5546 /* ANTI-KIBITZER MODE */
5547 /*====================*/
5549 .author.redacted,
5550 .inline-author.redacted {
5551 opacity: 0.6;
5552 font-weight: 400;
5555 .karma-value.redacted {
5556 opacity: 0.4;
5559 .link-post-domain.redacted {
5560 opacity: 0.4;
5563 /*===========================*/
5564 /* COMMENT THREAD NAVIGATION */
5565 /*===========================*/
5567 div.comment-parent-link {
5568 font-weight: bold;
5570 a.comment-parent-link {
5571 font-weight: normal;
5573 a.comment-parent-link::before {
5574 color: #bbb;
5576 a.comment-parent-link:hover::before {
5577 background-color: #ffd;
5578 color: #999;
5581 div.comment-child-links {
5582 font-weight: bold;
5584 div.comment-child-links a {
5585 font-weight: normal;
5587 .comment-child-link::before {
5588 color: #aaa;
5591 .comment-item-highlight {
5592 box-shadow:
5593 0 0 2px #e7b200,
5594 0 0 3px #e7b200,
5595 0 0 5px #e7b200,
5596 0 0 7px #e7b200,
5597 0 0 10px #e7b200;
5598 border: 1px solid #e7b200;
5600 .comment-item-highlight-faint {
5601 box-shadow:
5602 0 0 2px #f8e7b5,
5603 0 0 3px #f8e7b5,
5604 0 0 5px #f8e7b5,
5605 0 0 7px #f8e7b5,
5606 0 0 10px #f8e7b5;
5607 border: 1px solid #f8e7b5;
5610 .comment-popup {
5611 background-color: #fff;
5614 /*=======================*/
5615 /* COMMENTS COMPACT VIEW */
5616 /*=======================*/
5618 #comments-list-mode-selector button {
5619 box-shadow:
5620 0 0 0 4px #eee inset,
5621 0 0 0 5px #aaa inset;
5623 #comments-list-mode-selector button:hover,
5624 #comments-list-mode-selector button.selected {
5625 box-shadow:
5626 0 0 0 1px #eee inset,
5627 0 0 0 2px #aaa inset,
5628 0 0 0 4px #eee inset,
5629 0 0 0 5px #aaa inset;
5631 #content.compact > .comment-thread .comment-item {
5632 max-height: 58px;
5634 #content.compact > .comment-thread .comment-item::after {
5635 color: #00e;
5636 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
5639 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5640 #content.compact > .comment-thread .comment-item:hover .comment,
5641 #content.compact > .comment-thread .comment-item.expanded .comment {
5642 background-color: #fff;
5643 outline: 3px solid #00c;
5645 #content.compact > .comment-thread .comment-item:hover .comment::before,
5646 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5647 background-color: #fff;
5648 box-shadow:
5649 0 0 3px #fff,
5650 0 0 5px #fff,
5651 0 0 7px #fff,
5652 0 0 10px #fff,
5653 0 0 20px #fff,
5654 0 0 30px #fff,
5655 0 0 40px #fff;
5658 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
5659 #content.compact > .comment-thread.expanded .comment-item .comment {
5660 background-color: #fff;
5661 outline: 3px solid #00c;
5663 #content.compact > .comment-thread.expanded .comment-item .comment::before {
5664 background-color: #fff;
5665 box-shadow:
5666 0 0 3px #fff,
5667 0 0 5px #fff,
5668 0 0 7px #fff,
5669 0 0 10px #fff,
5670 0 0 20px #fff,
5671 0 0 30px #fff,
5672 0 0 40px #fff;
5676 #content.user-page.compact > h1.listing {
5677 margin-top: 0.5rem;
5679 #content.user-page.compact > h1.listing + .post-meta {
5680 margin-bottom: 0.5rem;
5683 /*===========================*/
5684 /* HIGHLIGHTING NEW COMMENTS */
5685 /*===========================*/
5687 .new-comment::before {
5688 display: none;
5690 .new-comment {
5691 border: 1px solid #e00;
5692 outline: 1px solid #e00;
5695 /*=================================*/
5696 /* COMMENT THREAD MINIMIZE BUTTONS */
5697 /*=================================*/
5699 .comment-minimize-button {
5700 color: #ccc;
5702 .comment-minimize-button:hover {
5703 color: #aaa;
5704 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5706 .comment-minimize-button::after {
5707 font-family: Trade Gothic, Helvetica, sans-serif;
5708 color: #777;
5710 .comment-minimize-button.maximized::after {
5711 color: #ccc;
5714 /*==============*/
5715 /* VOTE BUTTONS */
5716 /*==============*/
5718 .vote::before {
5719 content: "";
5720 border-radius: 50%;
5721 background-size: 17px 17px;
5722 width: 17px;
5723 height: 17px;
5724 display: inline-block;
5725 position: relative;
5726 top: 2.5px;
5728 .vote:active {
5729 transform: none;
5731 .vote:hover::before,
5732 .vote.selected::before,
5733 .vote.clicked-once::before,
5734 .vote.clicked-twice::before {
5735 filter: drop-shadow(0 0 1px #fff);
5738 .upvote::before,
5739 .waiting .upvote.big-vote.clicked-twice::before {
5740 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
5741 filter: grayscale(100%) brightness(128%);
5743 .downvote::before,
5744 .waiting .downvote.big-vote.clicked-twice::before {
5745 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
5746 filter: grayscale(100%) brightness(188%);
5749 .vote.clicked-once::before,
5750 .vote.big-vote.clicked-once::before {
5751 box-shadow:
5752 0 0 0 1px #fff,
5753 0 0 0 4px #c8c8c8,
5754 0 0 0 5px transparent;
5757 .vote.big-vote.clicked-twice::before,
5758 .waiting .vote.big-vote:not(.clicked-twice)::before,
5759 .waiting .vote:not(.big-vote).clicked-once::before {
5760 box-shadow: none;
5763 .upvote.clicked-twice::before,
5764 .upvote.big-vote::before {
5765 box-shadow:
5766 0 0 0 1px #fff,
5767 0 0 0 4px #00d800,
5768 0 0 0 5px transparent;
5771 .downvote.clicked-twice::before,
5772 .downvote.big-vote::before {
5773 box-shadow:
5774 0 0 0 1px #fff,
5775 0 0 0 4px #eb4c2a,
5776 0 0 0 5px transparent;
5779 /*===========================*/
5780 /* COMMENTING AND POSTING UI */
5781 /*===========================*/
5783 .posting-controls input[type='submit'] {
5784 background-color: #fff;
5785 border: 1px solid #aaa;
5786 font-weight: bold;
5788 .posting-controls input[type='submit']:hover,
5789 .posting-controls input[type='submit']:focus {
5790 background-color: #ddd;
5791 border: 1px solid #999;
5794 .comment-controls .cancel-comment-button {
5795 font-weight: 600;
5796 color: #c00;
5797 text-shadow:
5798 0 0 1px #fff,
5799 0 0 2px #fff;
5801 .comment-controls .cancel-comment-button:hover {
5802 color: #f00;
5803 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5806 .new-comment-button {
5807 font-weight: 600;
5810 .comment-controls .edit-button {
5811 color: #0b0;
5813 .comment-controls .edit-button:hover {
5814 color: #f00;
5817 .post-controls {
5818 margin: 0.25em -1em 0 0;
5820 h1.listing .edit-post-link,
5821 h1.listing .edit-post-link:visited,
5822 .post-controls .edit-post-link,
5823 .post-controls .edit-post-link:visited {
5824 color: #090;
5826 h1.listing .edit-post-link:hover,
5827 .post-controls .edit-post-link:hover {
5828 color: #d00;
5831 .posting-controls textarea {
5832 font-family: 'News Gothic BT', 'Helvetica', sans-serif;
5833 color: #000;
5834 border-color: #00e;
5836 .posting-controls textarea:focus {
5837 border-width: 29px 1px 1px 1px;
5838 box-shadow: 0 0 0 1px #00e;
5840 .posting-controls.edit-existing-post textarea:focus,
5841 .posting-controls form.edit-existing-comment textarea:focus {
5842 border-color: #090;
5843 box-shadow: 0 0 0 1px #090;
5846 /*= Scroll bars =*/
5848 .posting-controls textarea::-webkit-scrollbar {
5849 width: 16px;
5850 background-color: transparent;
5852 .posting-controls textarea::-webkit-scrollbar-track {
5853 background-color: #fff;
5854 border-left: 1px solid #0040ff;
5855 border-top: 1px solid #eee;
5857 .posting-controls textarea:focus::-webkit-scrollbar-track {
5858 border-top: 1px solid #ddf;
5859 border-left: 2px solid #0040ff;
5861 .posting-controls textarea::-webkit-scrollbar-thumb {
5862 background-color: #acacff;
5863 box-shadow: 0 0 0 1px #eee inset;
5864 border-left: 1px solid #0040ff;
5866 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
5867 background-color: #0040ff;
5868 border-left: 2px solid #0040ff;
5869 box-shadow:
5870 0 1px 0 0 #ddf inset,
5871 0 0 0 1px #eee inset;
5874 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
5875 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
5876 border-left: 2px solid #090;
5878 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
5879 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
5880 border-left: 2px solid #090;
5881 background-color: #28a708;
5884 /* GUIEdit buttons */
5886 .guiedit-buttons-container {
5887 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
5890 .posting-controls.edit-existing-post .guiedit-buttons-container button,
5891 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
5892 color: #050;
5894 .guiedit-buttons-container button {
5895 font-family: Font Awesome, 'News Gothic BT', 'Helvetica', sans-serif;
5898 .guiedit::after {
5899 font-family: Trade Gothic, Helvetica, sans-serif;
5900 color: #777;
5901 text-shadow: none;
5904 /* Markdown hints */
5906 #markdown-hints-checkbox + label {
5907 color: #00e;
5909 #markdown-hints-checkbox + label:hover {
5910 color: #e00;
5911 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5913 .markdown-hints {
5914 border: 1px solid #c00;
5915 background-color: #ffa;
5918 /*================*/
5919 /* EDIT POST FORM */
5920 /*================*/
5922 #edit-post-form .link-post-checkbox + label {
5923 top: -2px;
5925 #edit-post-form .link-post-checkbox + label::before {
5926 border-radius: 3px;
5927 border: 1px solid #ddd;
5928 color: #777;
5930 #edit-post-form .link-post-checkbox + label:hover,
5931 #edit-post-form .link-post-checkbox:focus + label {
5932 text-shadow:
5933 0 0 1px #fff,
5934 0 0 2px #fff,
5935 0 0 2.5px #aaa;
5937 #edit-post-form .link-post-checkbox + label:hover::before,
5938 #edit-post-form .link-post-checkbox:focus + label::before {
5939 border-color: #aaa;
5941 #edit-post-form .link-post-checkbox:checked + label::before {
5942 content: "\F00C";
5944 #edit-post-form input[type='radio'] + label {
5945 color: #777;
5946 border-color: #ddd;
5948 #edit-post-form input[type='radio'][value='all'] + label {
5949 border-radius: 8px 0 0 8px;
5950 border-width: 1px;
5952 #edit-post-form input[type='radio'][value='drafts'] + label {
5953 border-radius: 0 8px 8px 0;
5955 #edit-post-form input[type='radio'] + label:hover,
5956 #edit-post-form input[type='radio']:focus + label {
5957 background-color: #ddd;
5958 color: #000;
5960 #edit-post-form input[type='radio']:focus + label {
5961 color: #000;
5962 box-shadow:
5963 0 0 0 1px #aaa;
5965 #edit-post-form input[type='radio']:checked + label {
5966 background-color: #ddd;
5967 border-color: #ddd;
5968 color: #000;
5969 text-shadow:
5970 0 -1px 0 #fff,
5971 0 0.5px 0.5px #000;
5974 /*=======*/
5975 /* LINKS */
5976 /*=======*/
5979 text-decoration: none;
5980 color: #00e;
5982 a:visited {
5983 color: #551a8b;
5985 a:hover {
5986 text-decoration: underline;
5989 /*=========*/
5990 /* BUTTONS */
5991 /*=========*/
5993 button,
5994 input[type='submit'] {
5995 color: #00e;
5998 button:hover,
5999 input[type='submit']:hover,
6000 button:focus,
6001 input[type='submit']:focus {
6002 color: #d00;
6003 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6005 button:active,
6006 input[type='submit']:active {
6007 color: #f00;
6008 transform: scale(0.9);
6010 .button:visited {
6011 color: #00e;
6013 .button:hover {
6014 color: #d00;
6015 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6016 text-decoration: none;
6018 .button:active {
6019 transform: scale(0.9);
6021 .button:focus:not(:hover) {
6022 transform: none;
6024 @-moz-document url-prefix() {
6025 .button:active {
6026 transform: none;
6030 /*==========*/
6031 /* HEADINGS */
6032 /*==========*/
6034 .post-body h1,
6035 .post-body h2,
6036 .post-body h3,
6037 .post-body h4,
6038 .post-body h5,
6039 .post-body h6,
6040 .comment-body h1,
6041 .comment-body h2,
6042 .comment-body h3,
6043 .comment-body h4,
6044 .comment-body h5,
6045 .comment-body h6 {
6046 font-family: Trade Gothic, Helvetica, sans-serif;
6048 .post-body h6,
6049 .comment-body h6 {
6050 color: #555;
6053 /*========*/
6054 /* QUOTES */
6055 /*========*/
6057 blockquote {
6058 border-left: 5px solid #ccc;
6061 /*========*/
6062 /* IMAGES */
6063 /*========*/
6065 .post-body img,
6066 .comment-body img {
6067 border: 1px solid #ccc;
6069 .post-body img[src$='.svg'],
6070 .comment-body img[src$='.svg'] {
6071 border: none;
6073 #content figure img {
6074 border: 1px solid #000;
6076 #content figure img[src$='.svg'] {
6077 border: none;
6080 /*========*/
6081 /* TABLES */
6082 /*========*/
6084 .post-body table,
6085 .comment-body table,
6086 .post-body table th,
6087 .post-body table td,
6088 .comment-body table th,
6089 .comment-body table td {
6090 border: 1px solid #ccc;
6093 /*======*/
6094 /* MISC */
6095 /*======*/
6097 hr {
6098 border-bottom: 1px solid #999;
6101 code {
6102 background-color: #f6f6ff;
6103 border: 1px solid #ddf;
6104 border-radius: 4px;
6107 input[type='text'],
6108 input[type='search'],
6109 input[type='password'] {
6110 border: 1px solid #999;
6111 color: #000;
6112 background-color: transparent;
6114 input[type='text']:focus,
6115 input[type='search']:focus,
6116 input[type='password']:focus {
6117 border: 1px solid #00e;
6118 outline: 1px solid #00e;
6121 select {
6122 color: #000;
6125 /*============*/
6126 /* ABOUT PAGE */
6127 /*============*/
6129 .about-page u {
6130 background-color: #e6e6e6;
6131 text-decoration: none;
6132 box-shadow:
6133 0 -1px 0 0 #000 inset,
6134 0 -3px 1px -2px #000 inset;
6135 padding: 0 1px;
6138 #content.about-page .accesskey-table {
6139 font-family: Trade Gothic, Helvetica, sans-serif;
6140 border-color: #ddd;
6143 #content.about-page img {
6144 border: 1px solid #000;
6147 /*========================*/
6148 /* QUALIFIED HYPERLINKING */
6149 /*========================*/
6151 #aux-about-link a {
6152 color: #777;
6154 #aux-about-link a:hover {
6155 opacity: 1.0;
6156 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6159 .qualified-linking label {
6160 color: #00e;
6162 .qualified-linking label:hover {
6163 text-shadow:
6164 0 0 1px #fff,
6165 0 0 3px #fff,
6166 0 0 5px #00e;
6169 .qualified-linking-toolbar {
6170 border: 1px solid #000;
6171 background-color: #fff;
6173 .qualified-linking-toolbar a {
6174 background-color: #eee;
6175 border: 1px solid #ccc;
6176 border-radius: 4px;
6178 .qualified-linking-toolbar a:visited {
6179 color: #00e;
6181 .qualified-linking-toolbar a:hover {
6182 text-decoration: none;
6183 background-color: #ddd;
6184 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6186 .qualified-linking label::after {
6187 background-color: #eee;
6188 opacity: 0.8;
6191 /*======*/
6192 /* MATH */
6193 /*======*/
6195 .mathjax-block-container::-webkit-scrollbar {
6196 height: 12px;
6197 background-color: #f6f6ff;
6198 border-radius: 6px;
6199 border: 1px solid #ddf;
6201 .mathjax-block-container::-webkit-scrollbar-thumb {
6202 background-color: #dde;
6203 border-radius: 6px;
6204 border: 1px solid #cce;
6206 .mathjax-inline-container::-webkit-scrollbar {
6207 height: 8px;
6208 background-color: #f6f6ff;
6209 border-radius: 4px;
6210 border: 1px solid #ddf;
6212 .mathjax-inline-container::-webkit-scrollbar-thumb {
6213 background-color: #dde;
6214 border-radius: 4px;
6215 border: 1px solid #cce;
6218 /*====================*/
6219 /* FOR NARROW SCREENS */
6220 /*====================*/
6222 @media only screen and (max-width: 1440px) {
6223 #hns-date-picker {
6224 background-color: #d8d8d8;
6225 opacity: 1.0;
6227 #hns-date-picker::before {
6228 border: 1px solid #999;
6229 border-width: 1px 0 1px 1px;
6232 @media only screen and (max-width: 1200px) {
6233 #hns-date-picker {
6234 background-color: #eee;
6236 #hns-date-picker::before {
6237 display: none;
6240 @media only screen and (max-width: 1080px) {
6241 #text-size-adjustment-ui button {
6242 border: 1px solid #999;
6243 padding: 0 0 0 1px;
6244 border-radius: 50%;
6245 box-shadow:
6246 0 0 6px #999 inset,
6247 0 0 0 1px transparent;
6249 #theme-tweaker-toggle button {
6250 border: 1px solid #999;
6251 box-shadow:
6252 0 0 10px #999 inset,
6253 0 0 0 1px transparent;
6254 border-radius: 50%;
6255 transform: scale(0.8);
6258 @media only screen and (max-width: 1020px) {
6259 #quick-nav-ui a {
6260 box-shadow:
6261 0 0 0 1px #999,
6262 0 0 0 2px transparent;
6264 #new-comment-nav-ui .new-comments-count::before {
6265 background-color: #d8d8d8;
6266 box-shadow:
6267 0 0 0 1px #999,
6268 0 0 0 2px transparent;
6269 border-radius: 8px;
6272 @media only screen and (max-width: 1000px) {
6273 #theme-selector {
6274 background-color: #eee;
6275 box-shadow:
6276 0 0 0 1px #999,
6277 0 0 0 2px transparent;
6279 #theme-selector:hover::after {
6280 background-color: #999;
6281 width: calc(6em - 3px);
6282 height: calc(100% - 5px);
6283 top: 3px;
6284 left: 100%;
6286 #text-size-adjustment-ui button {
6287 background-color: #ddd;
6289 #text-size-adjustment-ui button:hover {
6290 background-color: #eee;
6292 #theme-tweaker-toggle button {
6293 background-color: #ddd;
6297 /*========*/
6298 /* MOBILE */
6299 /*========*/
6301 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6302 #ui-elements-container > div[id$='-ui-toggle'] button,
6303 #theme-selector .theme-selector-close-button {
6304 color: #aaa;
6305 text-shadow:
6306 0 0 1px #fff,
6307 0 0 3px #fff,
6308 0 0 5px #fff,
6309 0 0 10px #fff,
6310 0 0 20px #fff,
6311 0 0 30px #fff;
6314 #theme-selector {
6315 background-color: #eee;
6316 box-shadow:
6317 0 0 0 1px #999,
6318 0 0 1px 3px #fff,
6319 0 0 3px 3px #fff,
6320 0 0 5px 3px #fff,
6321 0 0 10px 3px #fff,
6322 0 0 20px 3px #fff;
6323 border-radius: 12px;
6325 #theme-selector::before {
6326 color: #777;
6327 font-weight: normal;
6328 text-shadow: 0.5px 0.5px 0 #aaa;
6330 #theme-selector button {
6331 background-color: #e6e6e6;
6332 border-radius: 10px;
6334 #theme-selector button::after {
6335 color: #000;
6336 max-width: calc(100% - 3.5em);
6337 overflow: hidden;
6338 text-overflow: ellipsis;
6339 padding: 0 0 2px 0;
6341 #theme-selector button.selected::after {
6342 text-shadow:
6343 0 -1px 0 #fff,
6344 0 0.5px 0.5px #000;
6347 #quick-nav-ui {
6348 background-color: #fff;
6350 #quick-nav-ui,
6351 #new-comment-nav-ui,
6352 #hns-date-picker {
6353 box-shadow:
6354 0 0 1px 3px #fff,
6355 0 0 3px 3px #fff,
6356 0 0 5px 3px #fff,
6357 0 0 10px 3px #fff,
6358 0 0 20px 3px #fff;
6360 #quick-nav-ui a::after,
6361 #new-comment-nav-ui::before {
6362 font-family: Trade Gothic, Helvetica, sans-serif;
6363 font-weight: bold;
6364 box-shadow:
6365 0 0 1px 0 #fff,
6366 0 0 3px 0 #fff,
6367 0 0 5px 0 #fff;
6368 background-color: #fff;
6369 border-radius: 4px;
6371 #quick-nav-ui,
6372 #new-comment-nav-ui {
6373 border-radius: 8px;
6375 #new-comment-nav-ui {
6376 background-color: #fff;
6377 border: 1px solid #999;
6379 #new-comment-nav-ui::before {
6380 color: #777;
6381 font-weight: bold;
6383 #new-comment-nav-ui .new-comment-sequential-nav-button {
6384 box-shadow: 0 0 0 1px #999;
6385 color: #00c;
6387 #new-comment-nav-ui .new-comments-count {
6388 background-color: inherit;
6389 box-shadow: 0 -1px 0 0 #999;
6391 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6392 color: #bbb;
6394 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6395 border-radius: 7px 0 0 7px;
6397 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6398 border-radius: 0 7px 7px 0;
6400 #new-comment-nav-ui button::after {
6401 font-family: Trade Gothic, Helvetica, sans-serif;
6403 #hns-date-picker {
6404 background-color: #fff;
6405 border: 1px solid #999;
6408 /*****************************************/
6409 @media only screen and (max-width: 900px) {
6410 /*****************************************/
6411 h1.listing + .post-meta > * {
6412 line-height: 1.5;
6414 h1.listing + .post-meta .post-section {
6415 overflow: visible;
6416 order: 1;
6418 h1.listing + .post-meta .post-section::before {
6419 position: unset;
6422 #primary-bar .nav-inner {
6423 font-size: 1.375em;
6425 #secondary-bar .nav-inner {
6426 font-size: 1.125em;
6428 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
6429 padding: 6px 10px;
6432 .archive-nav *[class^='archive-nav-item-'] {
6433 border-width: 1px !important;
6435 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6436 background-color: #aaa;
6439 .comment-item .comment-item {
6440 margin: 0.75em 3px 3px 6px;
6442 .comment-item .comment-item + .comment-item {
6443 margin: 1.5em 3px 3px 6px;
6446 .sublevel-nav .sublevel-item,
6447 .sublevel-nav .sublevel-item:first-child,
6448 .sublevel-nav .sublevel-item:last-child {
6449 border-width: 1px;
6450 border-radius: 8px;
6452 /*******************************************/
6453 } @media only screen and (max-width: 720px) {
6454 /*******************************************/
6455 /*******************************************/
6456 } @media only screen and (max-width: 520px) {
6457 /*******************************************/
6458 h1.listing {
6459 font-size: 1.25rem;
6460 margin: 18px 6px 4px 6px;
6461 max-width: calc(100% - 12px);
6463 h1.listing + .post-meta {
6464 margin: 4px 6px;
6466 h1.listing a[href^='http'] {
6467 top: 2px;
6469 #content.conversations-user-page h1.listing::after {
6470 height: calc(100% + 2.25em);
6472 #content.conversations-user-page h1.listing + .post-meta .date {
6473 margin: 0 0 0 1em;
6476 .comment-body {
6477 font-size: 1.125rem;
6480 #content.compact > .comment-thread .comment-item {
6481 max-height: 105px;
6484 .textarea-container:focus-within textarea {
6485 background-color: #fff;
6487 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6488 padding: 5px 6px 6px 6px;
6489 font-weight: bold;
6491 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6492 box-shadow:
6493 0 0 0 2px #c00;
6494 color: #c00;
6496 .textarea-container:focus-within .guiedit-buttons-container {
6497 background-color: #fff;
6498 border-top: 1px solid #ddf;
6500 .posting-controls .textarea-container:focus-within .guiedit-buttons-container {
6501 box-shadow: none;
6503 #content.conversation-page .textarea-container:focus-within::after {
6504 background-color: #fff;
6506 .textarea-container:focus-within button.guiedit {
6507 border: 1px solid #00c;
6508 border-radius: 6px;
6510 .markdown-hints::after {
6511 color: #090;
6514 #edit-post-form label[for='section'] {
6515 width: 4.3em;
6517 #edit-post-form input[name='title'],
6518 #edit-post-form input[name='url'] {
6519 max-width: calc(100% - 6.75em);