Merge branch 'next' of https://github.com/kronusaturn/lw2-viewer into next
[lw2-viewer.git] / www / style.windows.css
blobf8c9d05177921bce8cd651c993803c7afe7fff66
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 /* DEFAULT THEME */
4665 /*****************/
4667 body {
4668 color: #000;
4669 background-color: #d8d8d8;
4670 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
4671 font-feature-settings: 'ss07';
4673 #content {
4674 background-color: #fff;
4675 box-shadow: 0px 0px 10px #555;
4676 line-height: 1.55;
4679 /*=========*/
4680 /* NAV BAR */
4681 /*=========*/
4683 .nav-inner {
4684 font-size: 1.375em;
4685 font-weight: 600;
4687 #secondary-bar .nav-inner {
4688 font-size: 1em;
4691 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4692 #bottom-bar a:hover,
4693 #nav-item-search:not(.nav-current):focus-within {
4694 background-color: #ddd;
4696 .inactive-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4697 .inactive-bar #nav-item-search:not(.nav-current):focus-within {
4698 background-color: #d8d8d8;
4701 .nav-bar a:visited {
4702 color: #00e;
4704 .nav-bar a:hover,
4705 .nav-bar a:focus {
4706 text-decoration: none;
4707 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
4710 #bottom-bar.decorative::before,
4711 #bottom-bar.decorative::after {
4712 content: "GW";
4713 display: block;
4714 text-align: center;
4715 padding: 0.25em 0 1em 0;
4717 #bottom-bar.decorative::before {
4718 width: 100%;
4719 color: transparent;
4720 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4721 background-repeat: repeat-x;
4722 background-position: center 35%;
4723 margin: 0 30px;
4725 #bottom-bar.decorative::after {
4726 color: #d8d8d8;
4727 position: absolute;
4728 left: 0;
4729 right: 0;
4730 margin: auto;
4731 background-color: #fff;
4732 padding-right: 4px;
4733 padding-left: 4px;
4735 @supports (width: -moz-fit-content) {
4736 #bottom-bar.decorative::after {
4737 width: -moz-fit-content;
4740 @supports (width: fit-content) {
4741 #bottom-bar.decorative::after {
4742 width: fit-content;
4746 /* Accesskey hints */
4748 .nav-inner::after {
4749 display: block;
4750 position: absolute;
4751 left: 5px;
4752 top: -2px;
4753 font-weight: 400;
4754 font-size: 0.7em;
4755 color: #d8d8d8;
4757 .inactive-bar .nav-inner::after {
4758 color: #ccc;
4760 .nav-inner:hover::after {
4761 color: #bbb;
4764 /* This makes the navbar items look like tabs: */
4766 .nav-inactive {
4767 box-shadow:
4768 0 -1px #d8d8d8 inset,
4769 1px 0 #fff inset;
4771 .nav-inactive:first-child {
4772 box-shadow: 0 -1px #d8d8d8 inset;
4774 .inactive-bar .nav-inactive {
4775 background-color: #e4e4e4;
4777 .active-bar .nav-inactive {
4778 background-color: #eee;
4780 .active-bar {
4781 position: relative;
4784 /* For Webkit: */
4785 .active-bar {
4786 box-shadow: 0 -3px 8px -2px #ccc;
4788 .active-bar .nav-inactive {
4789 box-shadow:
4790 0 -4px 8px -4px #bbb inset,
4791 1px 0 #fff inset;
4793 .active-bar .nav-inactive:first-child {
4794 box-shadow:
4795 0 -4px 8px -4px #bbb inset;
4797 .active-bar .nav-current + .nav-inactive {
4798 box-shadow:
4799 5px -4px 8px -4px #bbb inset;
4801 .active-bar .nav-item-last-before-current {
4802 box-shadow:
4803 -5px -4px 8px -4px #bbb inset,
4804 1px 0 #fff inset;
4806 .active-bar .nav-item-last-before-current:first-child {
4807 box-shadow:
4808 -5px -4px 8px -4px #bbb inset;
4810 /* And for Gecko: */
4811 @-moz-document url-prefix() {
4812 .active-bar {
4813 box-shadow: 0 -3px 4px -2px #ccc;
4816 .active-bar .nav-inactive {
4817 box-shadow:
4818 0 -4px 4px -4px #bbb inset,
4819 1px 0 #fff inset;
4821 .active-bar .nav-inactive:first-child {
4822 box-shadow:
4823 0 -4px 4px -4px #bbb inset;
4825 .active-bar .nav-current + .nav-inactive {
4826 box-shadow:
4827 5px -4px 4px -4px #bbb inset;
4829 .active-bar .nav-item-last-before-current {
4830 box-shadow:
4831 -5px -4px 4px -4px #bbb inset,
4832 1px 0 #fff inset;
4834 .active-bar .nav-item-last-before-current:first-child {
4835 box-shadow:
4836 -5px -4px 4px -4px #bbb inset;
4840 /* Search tab */
4842 #nav-item-search button {
4843 border: none;
4844 font-weight: inherit;
4847 /*==============*/
4848 /* PAGE TOOLBAR */
4849 /*==============*/
4851 .button.new-post:not(:hover),
4852 .button.new-private-message:not(:hover) {
4853 color: #090;
4855 .button.logout-button {
4856 color: #d33;
4859 /*==============*/
4860 /* SUBLEVEL NAV */
4861 /*==============*/
4863 .sublevel-nav .sublevel-item {
4864 background-color: #fff;
4865 border-color: #ddd;
4866 border-style: solid;
4867 border-width: 1px 1px 1px 0;
4868 color: #777;
4870 .sublevel-nav .sublevel-item:first-child {
4871 border-radius: 8px 0 0 8px;
4872 border-width: 1px;
4874 .sublevel-nav .sublevel-item:last-child {
4875 border-radius: 0 8px 8px 0;
4877 .sublevel-nav .sublevel-item:hover {
4878 background-color: #ddd;
4879 color: #000;
4880 text-decoration: none;
4881 text-shadow: none;
4883 .sublevel-nav .sublevel-item:active,
4884 .sublevel-nav .sublevel-item:disabled,
4885 .sublevel-nav span.sublevel-item {
4886 background-color: #ddd;
4887 border-color: #ddd;
4888 color: #000;
4889 text-shadow:
4890 0 -1px 0 #fff,
4891 0 0.5px 0.5px #000;
4892 transform: none;
4895 /*=====================*/
4896 /* SORT ORDER SELECTOR */
4897 /*=====================*/
4899 .sublevel-nav.sort .sublevel-item {
4900 font-family: 'Whitney Smallcaps', 'a_Avante', Arial, sans-serif;
4902 .sublevel-nav.sort {
4903 border: 2px solid #bbb;
4904 padding: 18px 0 0 0;
4905 border-radius: 8px;
4906 box-shadow: 0 18px #bbb inset;
4908 .sublevel-nav.sort::before {
4909 text-transform: uppercase;
4910 font-weight: 600;
4911 color: #444;
4912 text-shadow: 0.5px 0.5px 0 #fff;
4914 .sublevel-nav.sort .sublevel-item {
4915 border: 1px solid #aaa;
4916 padding: 5px 6px 5px 6px;
4917 text-transform: uppercase;
4920 /* Vertical */
4921 .sublevel-nav.sort .sublevel-item:first-child {
4922 border-radius: 6px 6px 0 0;
4924 .sublevel-nav.sort .sublevel-item:last-child {
4925 border-radius: 0 0 6px 6px;
4927 .sublevel-nav.sort .sublevel-item:nth-child(n+2) {
4928 border-width: 0 1px 1px 1px;
4931 /* Horizontal */
4932 .sublevel-nav.sort.horizontal .sublevel-item:first-child {
4933 border-radius: 6px 0 0 6px;
4935 .sublevel-nav.sort.horizontal .sublevel-item:last-child {
4936 border-radius: 0 6px 6px 0;
4938 .sublevel-nav.sort.horizontal .sublevel-item:nth-child(n+2) {
4939 border-width: 1px 1px 1px 0;
4942 .sublevel-nav.sort .sublevel-item:active {
4943 border-color: #aaa;
4946 /*================*/
4947 /* WIDTH SELECTOR */
4948 /*================*/
4949 /* THEME SELECTOR */
4950 /*================*/
4952 #width-selector button,
4953 #theme-selector button {
4954 box-shadow:
4955 0 0 0 4px #d8d8d8 inset,
4956 0 0 0 5px #bbb inset;
4958 #width-selector button:hover,
4959 #width-selector button.selected,
4960 #theme-selector button:hover,
4961 #theme-selector button.selected {
4962 box-shadow:
4963 0 0 0 5px #bbb inset;
4966 #theme-selector button::before {
4967 color: #999;
4968 background-color: #d8d8d8;
4970 #theme-selector button:hover::before,
4971 #theme-selector button.selected::before {
4972 color: #666;
4974 #width-selector button::after {
4975 color: #999;
4978 /*======================*/
4979 /* THEME TWEAKER TOGGLE */
4980 /*======================*/
4982 #theme-tweaker-toggle button {
4983 color: #777;
4986 /*=================*/
4987 /* QUICKNAV WIDGET */
4988 /*=================*/
4990 #quick-nav-ui a {
4991 color: #999;
4992 background-color: #e4e4e4;
4993 border-radius: 4px;
4994 text-decoration: none;
4996 #quick-nav-ui a[href='#bottom-bar'] {
4997 line-height: 1.8;
4999 #quick-nav-ui a:active {
5000 transform: scale(0.9);
5002 #quick-nav-ui a[href='#comments'].no-comments {
5003 opacity: 0.4;
5004 color: #bbb;
5006 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5007 #quick-nav-ui a:hover {
5008 color: #000;
5009 background-color: #eee;
5011 #quick-nav-ui a:focus:not(:hover) {
5012 transform: none;
5013 text-shadow: none;
5017 /*======================*/
5018 /* NEW COMMENT QUICKNAV */
5019 /*======================*/
5021 #new-comment-nav-ui .new-comments-count {
5022 font-weight: 600;
5023 color: #666;
5024 text-shadow: 0.5px 0.5px 0 #fff;
5026 #new-comment-nav-ui .new-comments-count::after {
5027 font-weight: 600;
5028 color: #777;
5030 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5031 color: #bbb;
5032 text-shadow: none;
5034 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
5035 #new-comment-nav-ui .new-comments-count:hover {
5036 text-shadow:
5037 0 0 1px #fff,
5038 0 0 3px #fff,
5039 0 0 5px #fff,
5040 0 0 8px #fff,
5041 0.5px 0.5px 0 #fff;
5043 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5044 color: #d00;
5045 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5049 /*=================*/
5050 /* HNS DATE PICKER */
5051 /*=================*/
5053 #hns-date-picker span {
5054 color: #777;
5055 text-shadow: 0.5px 0.5px 0 #fff;
5056 font-weight: 600;
5058 #hns-date-picker input {
5059 border: 1px solid #777;
5060 background-color: transparent;
5061 color: #666;
5062 box-shadow: 0 0 0 1px transparent;
5064 #hns-date-picker input:focus {
5065 color: #000;
5068 /*======================*/
5069 /* ANTI-KIBITZER TOGGLE */
5070 /*======================*/
5072 #anti-kibitzer-toggle button::before,
5073 #anti-kibitzer-toggle button::after {
5074 background-color: #888;
5075 -webkit-background-clip: text;
5076 color: transparent;
5077 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5079 #anti-kibitzer-toggle button:hover::before,
5080 #anti-kibitzer-toggle button:hover::after {
5081 background-color: #444;
5084 /*======================*/
5085 /* TEXT SIZE ADJUSTMENT */
5086 /*======================*/
5088 #text-size-adjustment-ui button {
5089 color: #777;
5091 #text-size-adjustment-ui button.default {
5092 font-weight: 600;
5094 #text-size-adjustment-ui button:disabled:hover {
5095 text-shadow: none;
5097 #text-size-adjustment-ui::after {
5098 color: #999;
5101 /*=============================*/
5102 /* COMMENTS VIEW MODE SELECTOR */
5103 /*=============================*/
5105 #comments-view-mode-selector a {
5106 color: #777;
5109 /*==========*/
5110 /* ARCHIVES */
5111 /*==========*/
5113 .archive-nav {
5114 border: 1px solid #aaa;
5116 .archive-nav *[class^='archive-nav-item'] {
5117 border-style: solid;
5118 border-color: #ddd;
5119 border-width: 1px 0 1px 1px;
5120 background-color: #eee;
5122 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5123 border-top-width: 0;
5124 border-bottom-width: 0;
5126 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5127 border-bottom-width: 1px;
5129 .archive-nav *[class^='archive-nav-item']:last-child {
5130 border-right-width: 1px;
5132 .archive-nav span[class^='archive-nav-item'] {
5133 font-weight: bold;
5134 background-color: #ddd;
5137 .archive-nav a:link,
5138 .archive-nav a:visited {
5139 color: rgba(0, 0, 238, 0.7);
5141 .archive-nav a:hover {
5142 text-decoration: none;
5143 color: #c00;
5144 background-color: #e0e0e0;
5145 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5147 .archive-nav a:active {
5148 transform: scale(0.9);
5150 .archive-nav a:focus:not(:hover) {
5151 transform: none;
5153 .archive-nav a.archive-nav-item-day:hover {
5154 background-color: #ddd;
5157 /*==========*/
5158 /* LISTINGS */
5159 /*==========*/
5161 h1.listing {
5162 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif, 'Font Awesome';
5163 font-weight: 800;
5164 margin: 0.7em 20px 0 20px;
5165 max-width: calc(100% - 40px);
5166 top: 0.125em; ;
5169 h1.listing a[href^='/posts'] {
5170 color: #000;
5172 h1.listing a[href^="http"] {
5173 color: #00c;
5176 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5177 h1.listing a:hover,
5178 h1.listing a:focus {
5179 color: #777;
5180 background-color: rgba(255,255,255,0.85);
5182 h1.listing:focus-within::before {
5183 color: #00f;
5184 left: -0.625em;
5186 h1.listing a[href^="http"]:hover {
5187 color: #4879ec;
5188 text-shadow:
5189 0.5px 0.5px 0 #fff,
5190 -0.5px -0.5px 0 #fff,
5191 0 0 2px #fff,
5192 0 0 3px #00c;
5196 h1.listing .edit-post-link {
5197 padding: 5px 3px 12px 0.5em;
5198 top: 0;
5199 right: 0;
5201 h1.listing .edit-post-link:hover {
5202 text-decoration: none;
5204 #content.user-page h1.listing .edit-post-link {
5205 background-color: #eee;
5208 /*===================*/
5209 /* LISTING POST-META */
5210 /*===================*/
5212 h1.listing + .post-meta {
5213 padding-right: 330px;
5215 h1.listing + .post-meta .karma-value,
5216 h1.listing + .post-meta .comment-count,
5217 h1.listing + .post-meta .lw2-link,
5218 h1.listing + .post-meta .read-time {
5219 border-radius: 4px;
5220 padding: 0 4px 0 2px;
5221 text-shadow: 0.5px 0.5px 0.5px #999;
5222 margin: 0 0.25em 0 0.5em;
5223 position: absolute;
5224 line-height: 1.15;
5225 bottom: -6px;
5227 h1.listing + .post-meta .karma-value span,
5228 h1.listing + .post-meta .comment-count span,
5229 h1.listing + .post-meta .lw2-link span,
5230 h1.listing + .post-meta .read-time span {
5231 display: none;
5233 h1.listing + .post-meta .karma-value::before,
5234 h1.listing + .post-meta .comment-count::before,
5235 h1.listing + .post-meta .lw2-link::before,
5236 h1.listing + .post-meta .read-time::before {
5237 color: #fff;
5238 font-family: Font Awesome;
5239 font-weight: 900;
5240 margin: 0 8px 0 0;
5241 box-shadow: 0 0 0 2px #ddd;
5243 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .karma-value::before,
5244 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .comment-count::before,
5245 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .lw2-link::before,
5246 _::-webkit-full-page-media, _:future, :root h1.listing + .post-meta .read-time::before {
5247 text-shadow: 0 0 3px #999;
5250 h1.listing + .post-meta .karma {
5251 margin: 0;
5253 h1.listing + .post-meta .karma-value {
5254 box-shadow:
5255 22px 0 0 0 #ddd inset,
5256 0 0 0 3px #ddd;
5257 cursor: default;
5258 color: #c00;
5259 right: 264px;
5261 h1.listing + .post-meta .karma-value::before {
5262 content: "\F139";
5263 text-shadow: none;
5264 font-size: 0.9375em;
5265 line-height: 1.3;
5268 h1.listing + .post-meta .comment-count::before {
5269 content: "\F086";
5271 h1.listing + .post-meta .comment-count {
5272 box-shadow:
5273 25px 0 0 0 #ddd inset,
5274 0 0 0 3px #ddd;
5275 color: #009100;
5276 right: 176px;
5278 h1.listing + .post-meta .comment-count:hover {
5279 text-decoration: none;
5280 color: #fff;
5281 background-color: #009100;
5283 h1.listing + .post-meta .comment-count:hover::before {
5284 color: #009100;
5286 h1.listing + .post-meta .comment-count.new-comments::before {
5287 color: #009100;
5288 text-shadow: 0.5px 0.5px 0.5px #fff;
5290 h1.listing + .post-meta .comment-count.new-comments:hover::before {
5291 text-shadow: 0.5px 0.5px 0.5px #999;
5295 h1.listing + .post-meta .lw2-link {
5296 box-shadow:
5297 23px 0 0 0 #ddd inset,
5298 0 0 0 3px #ddd;
5299 right: 0;
5301 h1.listing + .post-meta .lw2-link::before {
5302 content: "\F0C1";
5304 h1.listing + .post-meta .lw2-link:hover {
5305 text-decoration: none;
5306 color: #fff;
5307 background-color: #00f;
5309 h1.listing + .post-meta .lw2-link:hover::before {
5310 color: #00f;
5313 h1.listing + .post-meta .read-time {
5314 box-shadow:
5315 21px 0 0 0 #ddd inset,
5316 0 0 0 3px #ddd;
5317 right: 80px;
5319 h1.listing + .post-meta .read-time::before {
5320 content: "\F2F2";
5321 cursor: pointer;
5323 h1.listing + .post-meta .read-time::after {
5324 content: " min";
5326 h1.listing + .post-meta .read-time:hover::before {
5327 color: #777;
5330 h1.listing + .post-meta .word-count {
5331 box-shadow:
5332 22px 0 0 0 #ddd inset,
5333 0 0 0 3px #ddd;
5334 padding: 0 4px 0 4px;
5336 h1.listing + .post-meta .word-count::before {
5337 content: "\F15C";
5338 margin: 0 10px 0 0;
5340 h1.listing + .post-meta .read-time.word-count::after {
5341 content: none;
5344 h1.listing + .post-meta .link-post-domain {
5345 margin: 0 0 0 0.5em;
5348 h1.listing + .post-meta::after {
5349 content: "";
5350 display: block;
5351 height: 1px;
5352 width: 100%;
5353 background-color: #ddd;
5354 position: absolute;
5355 bottom: -14px;
5358 /*============*/
5359 /* USER PAGES */
5360 /*============*/
5362 #content.user-page h1.page-main-heading {
5363 border-bottom: 1px solid #ccc;
5366 #content.user-page h1.listing,
5367 #content.user-page h1.listing + .post-meta {
5368 background-color: #eee;
5369 border-style: solid;
5370 border-color: #ccc;
5372 #content.user-page h1.listing {
5373 padding: 0 6px;
5374 padding-top: 0.25em;
5375 border-width: 1px 1px 0 1px;
5376 margin: 1rem 0 0 0;
5377 max-width: 100%;
5379 #content.own-user-page h1.listing,
5380 h1.listing.own-post-listing {
5381 padding-right: 36px;
5383 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5384 #content.user-page h1.listing a:hover,
5385 #content.user-page h1.listing a:focus {
5386 background-color: #eee;
5388 #content.user-page h1.listing:focus-within::before {
5389 left: -0.625em;
5392 #content.user-page h1.listing + .post-meta {
5393 padding: 0.125em 6px 1em 36px;
5394 border-width: 0 1px 1px 1px;
5395 margin: 0 0 1rem 0;
5397 #content.user-page h1.listing + .post-meta::after {
5398 display: none;
5400 @media only screen and (min-width: 521px) {
5401 #content.user-page h1.listing + .post-meta .karma-value,
5402 #content.user-page h1.listing + .post-meta .comment-count,
5403 #content.user-page h1.listing + .post-meta .lw2-link,
5404 #content.user-page h1.listing + .post-meta .read-time {
5405 bottom: 10px;
5408 #content.user-page h1.listing + .post-meta .post-section::before {
5409 left: -1px;
5412 #content.conversations-user-page h1.listing {
5413 padding: 4px 6px;
5414 font-size: 1.75rem;
5416 #content.conversations-user-page h1.listing + .post-meta {
5417 padding: 6px 4px;
5418 margin: 0 0 0.25rem 0;
5421 .user-stats .karma-total {
5422 font-weight: bold;
5425 /*===============*/
5426 /* CONVERSATIONS */
5427 /*===============*/
5429 /*============*/
5430 /* LOGIN PAGE */
5431 /*============*/
5433 .login-container form input[type='submit'] {
5434 font-weight: bold;
5435 background-color: #eee;
5436 border: 1px solid #ccc;
5438 .login-container form input[type='submit']:hover,
5439 .login-container form input[type='submit']:focus {
5440 background-color: #ddd;
5441 border: 1px solid #aaa;
5444 /* “Create account” form */
5446 #signup-form {
5447 background-color: #f3f3f3;
5448 border: 1px solid #ddd;
5450 #signup-form input[type='submit'] {
5451 background-color: #e4e4e4;
5452 border: 1px solid #ccc;
5454 #signup-form input[type='submit']:hover {
5455 background-color: #d8d8d8;
5456 border: 1px solid #aaa;
5459 /* Log in tip */
5461 .login-container .login-tip {
5462 border: 1px solid #eee;
5465 /* Message box */
5467 .error-box {
5468 border: 1px solid red;
5469 background-color: #faa;
5471 .success-box {
5472 border: 1px solid green;
5473 background-color: #afa;
5476 /*=====================*/
5477 /* PASSWORD RESET PAGE */
5478 /*=====================*/
5480 .reset-password-container input[type='submit'] {
5481 background-color: #e4e4e4;
5482 border: 1px solid #ccc;
5483 font-weight: bold;
5486 /*===================*/
5487 /* TABLE OF CONTENTS */
5488 /*===================*/
5490 .contents {
5491 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5492 border: 1px solid #ddd;
5493 background-color: #eee;
5495 .contents-head {
5496 font-weight: bold;
5498 .post-body .contents li::before {
5499 color: #999;
5500 font-feature-settings: "tnum";
5503 /*==================*/
5504 /* POSTS & COMMENTS */
5505 /*==================*/
5507 .post-body,
5508 .comment-body {
5509 font-family: 'Charter', 'Georgia', serif;
5512 /*=======*/
5513 /* POSTS */
5514 /*=======*/
5516 .post > h1:first-child {
5517 font-family: 'Mundo Sans', 'a_Avante', Arial, sans-serif;
5518 font-weight: 800;
5521 /*===========*/
5522 /* POST-META */
5523 /*===========*/
5525 .post-meta .post-section::before {
5526 color: #fff;
5527 text-shadow:
5528 1px 1px 0 #090,
5529 0 1px 0 #090,
5530 0 0 5px #090;
5532 a.post-section:hover {
5533 text-decoration: none;
5535 a.post-section:hover::before {
5536 color: #97ff7c;
5538 .post-meta .post-section.alignment-forum::before {
5539 text-shadow:
5540 1px 1px 0 #626dd7,
5541 0 1px 0 #626dd7,
5542 0 0 5px #626dd7;
5544 a.post-section.alignment-forum:hover::before {
5545 color: #e6e5ff;
5547 .post-meta .date {
5548 color: #888;
5550 .post-meta .author {
5551 color: #090;
5553 .bottom-post-meta {
5554 border-top: 1px solid #ddd;
5557 /*============*/
5558 /* LINK POSTS */
5559 /*============*/
5561 .post.link-post a.link-post-link {
5562 text-decoration: none;
5563 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5564 font-weight: 600;
5566 .post.link-post a.link-post-link:hover {
5567 color: #c00;
5569 .post.link-post a.link-post-link:hover::before {
5570 color: #4879ec;
5571 text-shadow:
5572 0.5px 0.5px 0 #fff,
5573 -0.5px -0.5px 0 #fff,
5574 0 0 2px #fff,
5575 0 0 3px #00c;
5577 .post.link-post a.link-post-link:focus {
5578 color: #777;
5579 border-bottom: 2px dotted #777;
5582 /*==========*/
5583 /* COMMENTS */
5584 /*==========*/
5586 #comments {
5587 border-top: 1px solid #000;
5588 box-shadow: 0 3px 4px -4px #000 inset;
5590 @-moz-document url-prefix() {
5591 #comments {
5592 box-shadow: 0 3px 3px -4px #000 inset;
5595 #content > .comment-thread .comment-meta a.date:focus,
5596 #content > .comment-thread .comment-meta a.permalink:focus {
5597 color: #888;
5598 outline: 2px dotted #999;
5599 padding: 0 4px;
5600 position: relative;
5601 background-color: #fff;
5603 #content > .comment-thread .comment-meta a.permalink:focus {
5604 padding: 0 5px;
5606 .comment-item {
5607 border: 1px solid #ccc;
5611 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5612 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5613 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5614 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5615 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5616 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5617 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5618 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5619 .comment-item .comment-item .comment-item .comment-item .comment-item,
5620 .comment-item .comment-item .comment-item,
5621 .comment-item {
5622 background-color: #eee;
5624 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5625 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5626 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5627 .comment-item .comment-item .comment-item .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,
5628 .comment-item .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,
5629 .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,
5630 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5631 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5632 .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5633 .comment-item .comment-item .comment-item a.comment-parent-link::after,
5634 .comment-item a.comment-parent-link::after {
5635 box-shadow:
5636 0 28px 16px -16px #fff inset,
5637 4px 16px 0 12px #ffd inset,
5638 4px 4px 0 12px #ffd inset;
5641 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5642 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5643 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5644 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5645 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5646 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5647 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5648 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5649 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item,
5650 .comment-item .comment-item .comment-item .comment-item,
5651 .comment-item .comment-item {
5652 background-color: #fff;
5654 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5655 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5656 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5657 .comment-item .comment-item .comment-item .comment-item .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,
5658 .comment-item .comment-item .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,
5659 .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,
5660 .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,
5661 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5662 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5663 .comment-item .comment-item .comment-item .comment-item a.comment-parent-link::after,
5664 .comment-item .comment-item a.comment-parent-link::after {
5665 box-shadow:
5666 0 28px 16px -16px #eee inset,
5667 4px 16px 0 12px #ffd inset,
5668 4px 4px 0 12px #ffd inset;
5671 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5672 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5673 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5674 .comment-item .comment-item .comment-item .comment-item .comment-item .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,
5675 .comment-item .comment-item .comment-item .comment-item .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,
5676 .comment-item .comment-item .comment-item .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,
5677 .comment-item .comment-item .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,
5678 .comment-item .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,
5679 .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,
5680 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5681 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5682 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5683 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5684 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5685 .comment-item .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5686 .comment-item .comment-item .comment-item .comment-item .comment-item:target,
5687 .comment-item .comment-item .comment-item .comment-item:target,
5688 .comment-item .comment-item .comment-item:target,
5689 .comment-item .comment-item:target,
5690 .comment-item:target {
5691 background-color: #ffd;
5693 .comment-item:target > .comment-thread > .comment-item > .comment > .comment-meta > a.comment-parent-link::after {
5694 box-shadow:
5695 0 28px 16px -16px #ffd inset,
5696 4px 16px 0 12px #ffd inset,
5697 4px 4px 0 12px #ffd inset !important;
5700 /*================================*/
5701 /* DEEP COMMENT THREAD COLLAPSING */
5702 /*================================*/
5704 .comment-item input[id^="expand"] + label::after {
5705 color: #00e;
5706 font-weight: 600;
5708 .comment-item input[id^="expand"] + label:hover::after {
5709 color: #c00;
5711 .comment-item input[id^="expand"] + label:active::after,
5712 .comment-item input[id^="expand"] + label:focus::after{
5713 color: #c00;
5715 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5716 border-width: 1px 0 0 0;
5719 /*==============*/
5720 /* COMMENT-META */
5721 /*==============*/
5723 .comment-meta .author {
5724 font-weight: bold;
5725 font-size: 1.25em;
5726 color: #000;
5728 .comment-meta .author:hover {
5729 text-decoration: none;
5730 color: #090;
5732 .comment-item .author:not(.redacted).original-poster::after {
5733 opacity: 0.5;
5736 .comment-item .karma.active-controls::after,
5737 .comment-item .karma .karma-value::after,
5738 .post .karma.active-controls::after,
5739 .post .karma .karma-value::after {
5740 background-color: #fff;
5741 color: #999;
5742 border-radius: 4px;
5743 box-shadow: 0 0 0 1px #ddd inset;
5745 .comment-item .karma.active-controls::after,
5746 .post .karma.active-controls::after {
5747 padding: 6px 4px 4px 4px;
5748 bottom: -44px;
5750 .comment-item .karma .karma-value::after,
5751 .post .karma .karma-value::after {
5752 padding: 2px 8px 1px 8px;
5753 top: -25px;
5754 min-width: 56px;
5757 /*====================*/
5758 /* ANTI-KIBITZER MODE */
5759 /*====================*/
5761 .author.redacted,
5762 .inline-author.redacted {
5763 opacity: 0.6;
5764 font-weight: 400;
5767 .karma-value.redacted {
5768 opacity: 0.4;
5771 .link-post-domain.redacted {
5772 opacity: 0.4;
5775 /*===========================*/
5776 /* COMMENT THREAD NAVIGATION */
5777 /*===========================*/
5779 div.comment-parent-link {
5780 font-weight: 600;
5782 a.comment-parent-link {
5783 font-weight: 400;
5785 a.comment-parent-link::before {
5786 color: #bbb;
5788 a.comment-parent-link:hover::before {
5789 background-color: #ffd;
5790 color: #999;
5793 div.comment-child-links {
5794 font-weight: 600;
5796 div.comment-child-links a {
5797 font-weight: 400;
5799 .comment-child-link::before {
5800 color: #aaa;
5803 .comment-item-highlight {
5804 box-shadow:
5805 0 0 2px #e7b200,
5806 0 0 3px #e7b200,
5807 0 0 5px #e7b200,
5808 0 0 7px #e7b200,
5809 0 0 10px #e7b200;
5810 border: 1px solid #e7b200;
5812 .comment-item-highlight-faint {
5813 box-shadow:
5814 0 0 2px #f8e7b5,
5815 0 0 3px #f8e7b5,
5816 0 0 5px #f8e7b5,
5817 0 0 7px #f8e7b5,
5818 0 0 10px #f8e7b5;
5819 border: 1px solid #f8e7b5;
5822 .comment-popup {
5823 background-color: #fff;
5826 /*=======================*/
5827 /* COMMENTS COMPACT VIEW */
5828 /*=======================*/
5830 #comments-list-mode-selector button {
5831 box-shadow:
5832 0 0 0 4px #fff inset,
5833 0 0 0 5px #bbb inset;
5835 #comments-list-mode-selector button:hover,
5836 #comments-list-mode-selector button.selected {
5837 box-shadow:
5838 0 0 0 5px #bbb inset;
5840 #content.compact > .comment-thread .comment-item::after {
5841 color: #00e;
5842 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
5845 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5846 #content.compact > .comment-thread .comment-item:hover .comment,
5847 #content.compact > .comment-thread .comment-item.expanded .comment {
5848 background-color: #fff;
5849 outline: 3px solid #00c;
5851 #content.compact > .comment-thread .comment-item:hover .comment::before,
5852 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5853 background-color: #fff;
5854 box-shadow:
5855 0 0 3px #fff,
5856 0 0 5px #fff,
5857 0 0 7px #fff,
5858 0 0 10px #fff,
5859 0 0 20px #fff,
5860 0 0 30px #fff,
5861 0 0 40px #fff;
5864 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
5865 #content.compact > .comment-thread.expanded .comment-item .comment {
5866 background-color: #fff;
5867 outline: 3px solid #00c;
5869 #content.compact > .comment-thread.expanded .comment-item .comment::before {
5870 background-color: #fff;
5871 box-shadow:
5872 0 0 3px #fff,
5873 0 0 5px #fff,
5874 0 0 7px #fff,
5875 0 0 10px #fff,
5876 0 0 20px #fff,
5877 0 0 30px #fff,
5878 0 0 40px #fff;
5882 #content.user-page.compact > h1.listing {
5883 margin-top: 0.5rem;
5885 #content.user-page.compact > h1.listing + .post-meta {
5886 margin-bottom: 0.5rem;
5889 /*===========================*/
5890 /* HIGHLIGHTING NEW COMMENTS */
5891 /*===========================*/
5893 .new-comment::before {
5894 outline: 2px solid #5a5;
5895 box-shadow:
5896 0 0 6px -2px #5a5 inset,
5897 0 0 4px #5a5,
5898 0 0 6px #5a5;
5901 /*=================================*/
5902 /* COMMENT THREAD MINIMIZE BUTTONS */
5903 /*=================================*/
5905 .comment-minimize-button {
5906 color: #ccc;
5908 .comment-minimize-button:hover {
5909 color: #aaa;
5910 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
5912 .comment-minimize-button::after {
5913 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
5914 color: #777;
5916 .comment-minimize-button.maximized::after {
5917 color: #ccc;
5920 /*==============*/
5921 /* VOTE BUTTONS */
5922 /*==============*/
5924 .vote::before {
5925 content: "";
5926 border-radius: 50%;
5927 background-size: 17px 17px;
5928 width: 17px;
5929 height: 17px;
5930 display: inline-block;
5931 position: relative;
5932 top: 2.5px;
5934 .vote:active {
5935 transform: none;
5937 .vote:hover::before,
5938 .vote.selected::before,
5939 .vote.clicked-once::before,
5940 .vote.clicked-twice::before {
5941 filter: drop-shadow(0 0 1px #fff);
5944 .upvote::before,
5945 .waiting .upvote.big-vote.clicked-twice::before {
5946 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptMTQ0IDI3NmMwIDYuNi01LjQgMTItMTIgMTJoLTkydjkyYzAgNi42LTUuNCAxMi0xMiAxMmgtNTZjLTYuNiAwLTEyLTUuNC0xMi0xMnYtOTJoLTkyYy02LjYgMC0xMi01LjQtMTItMTJ2LTU2YzAtNi42IDUuNC0xMiAxMi0xMmg5MnYtOTJjMC02LjYgNS40LTEyIDEyLTEyaDU2YzYuNiAwIDEyIDUuNCAxMiAxMnY5Mmg5MmM2LjYgMCAxMiA1LjQgMTIgMTJ2NTZ6IiAgIGZpbGw9IiMwMEQ4MDAiLz48L3N2Zz4=');
5947 filter: grayscale(100%) brightness(128%);
5949 .downvote::before,
5950 .waiting .downvote.big-vote.clicked-twice::before {
5951 background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHpNMTI0IDI5NmMtNi42IDAtMTItNS40LTEyLTEydi01NmMwLTYuNiA1LjQtMTIgMTItMTJoMjY0YzYuNiAwIDEyIDUuNCAxMiAxMnY1NmMwIDYuNi01LjQgMTItMTIgMTJIMTI0eiIgZmlsbD0iI0VCNEMyQSIvPjwvc3ZnPg==');
5952 filter: grayscale(100%) brightness(188%);
5955 .vote.clicked-once::before,
5956 .vote.big-vote.clicked-once::before {
5957 box-shadow:
5958 0 0 0 1px #fff,
5959 0 0 0 4px #c8c8c8,
5960 0 0 0 5px transparent;
5963 .vote.big-vote.clicked-twice::before,
5964 .waiting .vote.big-vote:not(.clicked-twice)::before,
5965 .waiting .vote:not(.big-vote).clicked-once::before {
5966 box-shadow: none;
5969 .upvote.clicked-twice::before,
5970 .upvote.big-vote::before {
5971 box-shadow:
5972 0 0 0 1px #fff,
5973 0 0 0 4px #00d800,
5974 0 0 0 5px transparent;
5977 .downvote.clicked-twice::before,
5978 .downvote.big-vote::before {
5979 box-shadow:
5980 0 0 0 1px #fff,
5981 0 0 0 4px #eb4c2a,
5982 0 0 0 5px transparent;
5985 /*===========================*/
5986 /* COMMENTING AND POSTING UI */
5987 /*===========================*/
5989 .posting-controls input[type='submit'] {
5990 background-color: #fff;
5991 border: 1px solid #aaa;
5992 font-weight: bold;
5994 .posting-controls input[type='submit']:hover,
5995 .posting-controls input[type='submit']:focus {
5996 background-color: #ddd;
5997 border: 1px solid #999;
6000 .comment-controls .cancel-comment-button {
6001 font-weight: 600;
6002 color: #c00;
6003 text-shadow:
6004 0 0 1px #fff,
6005 0 0 2px #fff;
6007 .comment-controls .cancel-comment-button:hover {
6008 color: #f00;
6009 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6012 .new-comment-button {
6013 font-weight: 600;
6016 .comment-controls .edit-button {
6017 color: #0b0;
6019 .comment-controls .edit-button:hover {
6020 color: #f00;
6023 .button.edit-post-link:not(:hover) {
6024 color: #090;
6027 .posting-controls textarea {
6028 font-family: 'Charter', 'Georgia', serif;
6029 color: #000;
6030 background-color: #fff;
6031 border-color: #aaa;
6032 box-shadow:
6033 0 0 0 1px #eee inset;
6035 .posting-controls textarea:focus {
6036 background-color: #ffd;
6037 border-color: #00e;
6038 box-shadow:
6039 0 0 0 1px #ddf inset,
6040 0 0 0 1px #fff,
6041 0 0 0 2px #00e;
6043 .posting-controls.edit-existing-post textarea:focus,
6044 .posting-controls form.edit-existing-comment textarea:focus {
6045 border-color: #090;
6046 box-shadow:
6047 0 0 0 1px #81ff7f inset,
6048 0 0 0 1px #fff,
6049 0 0 0 2px #090;
6052 /*= Scroll bars =*/
6054 .posting-controls textarea::-webkit-scrollbar {
6055 width: 16px;
6056 background-color: transparent;
6058 .posting-controls textarea::-webkit-scrollbar-track {
6059 background-color: #eee;
6060 border-left: 1px solid #aaa;
6061 border-top: 1px solid #eee;
6063 .posting-controls textarea:focus::-webkit-scrollbar-track {
6064 border-left: 1px solid #00e;
6065 border-top: 1px solid #ddf;
6067 .posting-controls textarea::-webkit-scrollbar-thumb {
6068 background-color: #aaa;
6069 box-shadow: 0 0 0 1px #eee inset;
6070 border-left: 1px solid #aaa;
6072 .posting-controls textarea:focus::-webkit-scrollbar-thumb {
6073 border-left: 1px solid #00e;
6074 background-color: #0040ff;
6075 box-shadow:
6076 0 1px 0 0 #ddf inset,
6077 0 0 0 1px #eee inset;
6080 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-track,
6081 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-track {
6082 border-left: 1px solid #090;
6084 .posting-controls.edit-existing-post textarea:focus::-webkit-scrollbar-thumb,
6085 .posting-controls form.edit-existing-comment textarea:focus::-webkit-scrollbar-thumb {
6086 border-left: 1px solid #090;
6087 background-color: #28a708;
6090 /* GUIEdit buttons */
6092 .guiedit-buttons-container {
6093 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6096 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6097 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6098 color: #050;
6100 .guiedit-buttons-container button {
6101 font-family: Font Awesome, 'Charter', 'Georgia', serif;
6104 .guiedit::after {
6105 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6106 color: #777;
6107 text-shadow: none;
6110 /* Markdown hints */
6112 #markdown-hints-checkbox + label {
6113 color: #00e;
6115 #markdown-hints-checkbox + label:hover {
6116 color: #e00;
6117 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6119 .markdown-hints {
6120 border: 1px solid #c00;
6121 background-color: #ffa;
6124 /*================*/
6125 /* EDIT POST FORM */
6126 /*================*/
6128 #edit-post-form .link-post-checkbox + label {
6129 top: -1px;
6131 #edit-post-form .link-post-checkbox + label::before {
6132 border-radius: 3px;
6133 border: 1px solid #ddd;
6134 color: #777;
6136 #edit-post-form .link-post-checkbox + label:hover,
6137 #edit-post-form .link-post-checkbox:focus + label {
6138 text-shadow:
6139 0 0 1px #fff,
6140 0 0 2px #fff,
6141 0 0 2.5px #aaa;
6143 #edit-post-form .link-post-checkbox + label:hover::before,
6144 #edit-post-form .link-post-checkbox:focus + label::before {
6145 border-color: #aaa;
6147 #edit-post-form .link-post-checkbox:checked + label::before {
6148 content: "\F00C";
6150 #edit-post-form input[type='radio'] + label {
6151 color: #777;
6152 border-color: #ddd;
6153 padding: 4px 12px 5px 12px;
6155 #edit-post-form input[type='radio'][value='all'] + label {
6156 border-radius: 8px 0 0 8px;
6157 border-width: 1px;
6159 #edit-post-form input[type='radio'][value='drafts'] + label {
6160 border-radius: 0 8px 8px 0;
6162 #edit-post-form input[type='radio'] + label:hover,
6163 #edit-post-form input[type='radio']:focus + label {
6164 background-color: #ddd;
6165 color: #000;
6167 #edit-post-form input[type='radio']:focus + label {
6168 color: #000;
6169 box-shadow:
6170 0 0 0 1px #aaa;
6172 #edit-post-form input[type='radio']:checked + label {
6173 background-color: #ddd;
6174 border-color: #ddd;
6175 color: #000;
6176 text-shadow:
6177 0 -1px 0 #fff,
6178 0 0.5px 0.5px #000;
6181 /*=======*/
6182 /* LINKS */
6183 /*=======*/
6186 text-decoration: none;
6187 color: #00e;
6189 a:visited {
6190 color: #551a8b;
6192 a:hover {
6193 text-decoration: underline;
6196 /*=========*/
6197 /* BUTTONS */
6198 /*=========*/
6200 button,
6201 input[type='submit'] {
6202 color: #00e;
6205 button:active,
6206 input[type='submit']:active {
6207 color: #f00;
6208 transform: scale(0.9);
6210 .button:visited {
6211 color: #00e;
6213 .button:active {
6214 transform: scale(0.9);
6216 @-moz-document url-prefix() {
6217 .button:active {
6218 transform: none;
6222 @media only screen and (hover:hover), not screen and (-moz-touch-enabled) {
6223 button:hover,
6224 input[type='submit']:hover,
6225 button:focus,
6226 input[type='submit']:focus {
6227 color: #f00;
6228 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6231 .button:hover {
6232 color: #f00;
6233 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6234 text-decoration: none;
6236 .button:focus:not(:hover) {
6237 transform: none;
6241 /*==========*/
6242 /* HEADINGS */
6243 /*==========*/
6245 .post-body h1,
6246 .post-body h2,
6247 .post-body h4,
6248 .comment-body h1,
6249 .comment-body h2,
6250 .comment-body h4 {
6251 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6253 .post-body h3,
6254 .comment-body h3,
6255 .post-body h5,
6256 .post-body h6,
6257 .comment-body h5,
6258 .comment-body h6 {
6259 font-weight: 600;
6260 font-family: 'Whitney Smallcaps', 'a_Avante', Arial, sans-serif;
6262 .post-body h6,
6263 .comment-body h6 {
6264 color: #555;
6266 .post-body h1,
6267 .comment-body h1 {
6268 border-bottom: 1px solid #aaa;
6271 /*========*/
6272 /* QUOTES */
6273 /*========*/
6275 blockquote {
6276 border-left: 5px solid #ccc;
6279 /*========*/
6280 /* IMAGES */
6281 /*========*/
6283 #content img {
6284 border: 1px solid #ccc;
6286 #content img[style^='float'] {
6287 border: 1px solid transparent;
6289 #content img[src$='.svg'] {
6290 border: none;
6292 #content figure img {
6293 border: 1px solid #000;
6295 #content figure img[src$='.svg'] {
6296 border: none;
6299 /*========*/
6300 /* TABLES */
6301 /*========*/
6303 .post-body table,
6304 .comment-body table,
6305 .post-body table th,
6306 .post-body table td,
6307 .comment-body table th,
6308 .comment-body table td {
6309 border: 1px solid #ccc;
6312 /*======*/
6313 /* MISC */
6314 /*======*/
6316 hr {
6317 border-bottom: 1px solid #999;
6320 code {
6321 background-color: #f6f6ff;
6322 border: 1px solid #ddf;
6323 border-radius: 4px;
6326 input[type='text'],
6327 input[type='search'],
6328 input[type='password'] {
6329 background-color: #fff;
6330 border: 1px solid #ddd;
6331 color: #000;
6333 input[type='text']:focus,
6334 input[type='search']:focus,
6335 input[type='password']:focus {
6336 background-color: #ffd;
6337 border: 1px solid #bbb;
6338 box-shadow: 0 0 1px #bbb;
6341 select {
6342 color: #000;
6345 @-moz-document url-prefix() {
6346 h1.listing s,
6347 .post > h1:first-of-type s {
6348 position: relative;
6349 text-decoration: none;
6351 h1.listing s::after,
6352 .post > h1:first-of-type s::after {
6353 position: absolute;
6354 border-bottom: 3px solid #000;
6355 content: "";
6356 top: 0;
6357 left: 0;
6358 width: 100%;
6359 height: 50%;
6362 /*============*/
6363 /* ABOUT PAGE */
6364 /*============*/
6366 .about-page u {
6367 background-color: #e6e6e6;
6368 text-decoration: none;
6369 box-shadow:
6370 0 -1px 0 0 #000 inset,
6371 0 -3px 1px -2px #000 inset;
6372 padding: 0 1px;
6375 #content.about-page .accesskey-table {
6376 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6377 border-color: #ddd;
6380 #content.about-page img {
6381 border: 1px solid #000;
6384 /*========================*/
6385 /* QUALIFIED HYPERLINKING */
6386 /*========================*/
6388 #aux-about-link a {
6389 color: #777;
6391 #aux-about-link a:hover {
6392 opacity: 1.0;
6393 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6396 .qualified-linking label {
6397 color: #00e;
6399 .qualified-linking label:hover {
6400 text-shadow:
6401 0 0 1px #fff,
6402 0 0 3px #fff,
6403 0 0 5px #00e;
6406 .qualified-linking-toolbar {
6407 border: 1px solid #000;
6408 background-color: #fff;
6410 .qualified-linking-toolbar a {
6411 background-color: #eee;
6412 border: 1px solid #ccc;
6413 border-radius: 4px;
6415 .qualified-linking-toolbar a:visited {
6416 color: #00e;
6418 .qualified-linking-toolbar a:hover {
6419 text-decoration: none;
6420 background-color: #ddd;
6421 text-shadow: 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff;
6423 .qualified-linking label::after {
6424 background-color: #d8d8d8;
6425 opacity: 0.8;
6428 /*======*/
6429 /* MATH */
6430 /*======*/
6432 .mathjax-block-container::-webkit-scrollbar {
6433 height: 12px;
6434 background-color: #f6f6ff;
6435 border-radius: 6px;
6436 border: 1px solid #ddf;
6438 .mathjax-block-container::-webkit-scrollbar-thumb {
6439 background-color: #dde;
6440 border-radius: 6px;
6441 border: 1px solid #cce;
6443 .mathjax-inline-container::-webkit-scrollbar {
6444 height: 8px;
6445 background-color: #f6f6ff;
6446 border-radius: 4px;
6447 border: 1px solid #ddf;
6449 .mathjax-inline-container::-webkit-scrollbar-thumb {
6450 background-color: #dde;
6451 border-radius: 4px;
6452 border: 1px solid #cce;
6455 /*====================*/
6456 /* FOR NARROW SCREENS */
6457 /*====================*/
6459 @media only screen and (max-width: 1440px) {
6460 #hns-date-picker {
6461 background-color: #d8d8d8;
6462 opacity: 1.0;
6464 #hns-date-picker::before {
6465 border: 1px solid #999;
6466 border-width: 1px 0 1px 1px;
6469 @media only screen and (max-width: 1160px) {
6470 #theme-selector:hover::after {
6471 background-color: #999;
6474 @media only screen and (max-width: 1080px) {
6475 #text-size-adjustment-ui button {
6476 border: 1px solid #999;
6477 padding: 0 0 0 1px;
6478 border-radius: 50%;
6479 box-shadow:
6480 0 0 6px #999 inset,
6481 0 0 0 1px transparent;
6483 #theme-tweaker-toggle button {
6484 border: 1px solid #999;
6485 box-shadow:
6486 0 0 10px #999 inset,
6487 0 0 0 1px transparent;
6488 border-radius: 50%;
6489 transform: scale(0.8);
6492 @media only screen and (max-width: 1020px) {
6493 #quick-nav-ui a {
6494 box-shadow:
6495 0 0 0 1px #999,
6496 0 0 0 2px transparent;
6498 #new-comment-nav-ui .new-comments-count::before {
6499 background-color: #d8d8d8;
6500 box-shadow:
6501 0 0 0 1px #999,
6502 0 0 0 2px transparent;
6503 border-radius: 8px;
6505 #anti-kibitzer-toggle {
6506 box-shadow:
6507 0 0 0 1px #999,
6508 0 0 0 2px transparent;
6509 background-color: #d8d8d8;
6510 border-radius: 6px;
6511 overflow: hidden;
6514 @media only screen and (max-width: 1000px) {
6515 #theme-selector {
6516 background-color: #d8d8d8;
6517 box-shadow:
6518 0 0 0 1px #999,
6519 0 0 0 2px transparent;
6521 #theme-selector:hover::after {
6522 width: calc(6em - 3px);
6523 height: calc(100% - 5px);
6524 top: 3px;
6525 left: 100%;
6527 #text-size-adjustment-ui button {
6528 background-color: #ddd;
6530 #text-size-adjustment-ui button:hover {
6531 background-color: #eee;
6533 #theme-tweaker-toggle button {
6534 background-color: #ddd;
6538 /*========*/
6539 /* MOBILE */
6540 /*========*/
6542 /**************************************************************************/
6543 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6544 /**************************************************************************/
6545 #ui-elements-container > div[id$='-ui-toggle'] button {
6546 color: #888;
6547 text-shadow:
6548 0 0 1px #fff,
6549 0 0 3px #fff,
6550 0 0 5px #fff,
6551 0 0 10px #fff,
6552 0 0 20px #fff,
6553 0 0 30px #fff;
6556 #theme-selector {
6557 background-color: #d8d8d8;
6558 box-shadow:
6559 0 0 0 1px #999,
6560 0 0 1px 3px #fff,
6561 0 0 3px 3px #fff,
6562 0 0 5px 3px #fff,
6563 0 0 10px 3px #fff,
6564 0 0 20px 3px #fff;
6565 border-radius: 12px;
6567 #theme-selector::before,
6568 #theme-selector .theme-selector-close-button {
6569 color: #666;
6570 text-shadow: 0.5px 0.5px 0 #fff;
6572 #theme-selector button {
6573 background-color: #e6e6e6;
6574 border-radius: 10px;
6576 #theme-selector button::after {
6577 color: #000;
6578 padding-bottom: 2px;
6579 max-width: calc(100% - 3.25em);
6580 overflow: hidden;
6581 text-overflow: ellipsis;
6583 #theme-selector button.selected::after {
6584 text-shadow:
6585 0 -1px 0 #fff,
6586 0 0.5px 0.5px #000;
6589 #quick-nav-ui {
6590 background-color: #fff;
6592 #quick-nav-ui,
6593 #new-comment-nav-ui,
6594 #hns-date-picker {
6595 box-shadow:
6596 0 0 1px 3px #fff,
6597 0 0 3px 3px #fff,
6598 0 0 5px 3px #fff,
6599 0 0 10px 3px #fff,
6600 0 0 20px 3px #fff;
6602 #quick-nav-ui a::after,
6603 #new-comment-nav-ui::before {
6604 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6605 font-weight: 600;
6606 box-shadow:
6607 0 0 1px 0 #fff,
6608 0 0 3px 0 #fff,
6609 0 0 5px 0 #fff;
6610 background-color: #fff;
6611 border-radius: 4px;
6613 #quick-nav-ui,
6614 #new-comment-nav-ui {
6615 border-radius: 8px;
6617 #new-comment-nav-ui {
6618 background-color: #d8d8d8;
6619 border: 1px solid #999;
6621 #new-comment-nav-ui::before {
6622 color: #777;
6624 #new-comment-nav-ui .new-comment-sequential-nav-button {
6625 box-shadow: 0 0 0 1px #999;
6626 color: #777;
6628 #new-comment-nav-ui .new-comments-count {
6629 background-color: inherit;
6630 box-shadow: 0 -1px 0 0 #999;
6632 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
6633 color: #bbb;
6635 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6636 border-radius: 7px 0 0 7px;
6638 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6639 border-radius: 0 7px 7px 0;
6641 #new-comment-nav-ui button::after {
6642 font-family: 'Whitney', 'a_Avante', Arial, sans-serif;
6645 /*****************************************/
6646 @media only screen and (max-width: 900px) {
6647 /*****************************************/
6648 h1.listing {
6649 font-size: 1.75rem;
6650 line-height: 1;
6652 h1.listing a[href^='http'] {
6653 top: 2px;
6655 h1.listing + .post-meta .karma-value,
6656 h1.listing + .post-meta .comment-count,
6657 h1.listing + .post-meta .lw2-link,
6658 h1.listing + .post-meta .read-time {
6659 bottom: 0;
6661 h1.listing + .post-meta .post-section::before {
6662 position: unset;
6664 h1.listing + .post-meta .post-section {
6665 overflow: visible;
6666 order: 1;
6668 h1.listing + .post-meta .link-post-domain {
6669 order: 2;
6670 line-height: 1;
6671 flex-basis: 100%;
6673 h1.listing + .post-meta::after {
6674 bottom: -10px;
6676 #content.user-page h1.listing + .post-meta {
6677 margin-bottom: 1em;
6679 #content.user-page h1.link-post-listing::after {
6680 height: calc(100% + 2em);
6683 #nav-item-search button::before {
6684 color: #00e;
6687 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6688 background-color: #aaa;
6691 .comment-item .comment-item {
6692 margin: 0.75em 2px 4px 6px;
6693 box-shadow:
6694 0 0 2px #ccc,
6695 0 0 4px #ccc,
6696 0 0 7px #ccc;
6698 .comment-item .comment-item + .comment-item {
6699 margin: 1.5em 2px 4px 6px;
6701 .comment-body {
6702 font-size: 1.125rem;
6705 a.comment-parent-link:hover::before {
6706 background-color: unset;
6709 .sublevel-nav .sublevel-item,
6710 .sublevel-nav .sublevel-item:first-child,
6711 .sublevel-nav .sublevel-item:last-child {
6712 border-width: 1px;
6713 border-radius: 8px;
6715 /*******************************************/
6716 } @media only screen and (max-width: 720px) {
6717 /*******************************************/
6718 h1.listing {
6719 margin: 10px 6px 6px 6px;
6720 max-width: calc(100% - 12px);
6721 font-size: 1.5rem;
6722 padding-right: 35px;
6724 #content.conversations-user-page h1.listing {
6725 font-size: 1.5rem;
6727 h1.listing + .post-meta {
6728 margin: 0 6px 0 7px;
6729 clear: both;
6731 h1.listing + .post-meta {
6732 padding: .25em 254px 0 0;
6734 h1.listing + .post-meta::after {
6735 bottom: -2px;
6737 h1.listing + .post-meta > * {
6738 line-height: 1;
6739 display: block;
6741 #content.conversations-user-page h1.listing + .post-meta > * {
6742 line-height: 1.5;
6744 h1.listing + .post-meta .date,
6745 h1.listing + .post-meta .author {
6746 line-height: 1.3;
6748 h1.listing + .post-meta .karma-value,
6749 h1.listing + .post-meta .comment-count,
6750 h1.listing + .post-meta .lw2-link,
6751 h1.listing + .post-meta .read-time {
6752 top: unset;
6753 font-size: 1rem;
6754 box-shadow: none;
6756 h1.listing + .post-meta .karma-value::before,
6757 h1.listing + .post-meta .comment-count::before,
6758 h1.listing + .post-meta .lw2-link::before,
6759 h1.listing + .post-meta .read-time::before {
6760 box-shadow: none;
6762 h1.listing + .post-meta .karma-value,
6763 h1.listing + .post-meta .comment-count,
6764 h1.listing + .post-meta .read-time,
6765 h1.listing + .post-meta .lw2-link {
6766 bottom: 4px;
6769 h1.listing + .post-meta .karma-value {
6770 right: 192px;
6772 h1.listing + .post-meta .karma-value::before {
6773 text-shadow: 0.5px 0.5px 0.5px #999;
6775 h1.listing + .post-meta .comment-count {
6776 right: 132px;
6778 h1.listing + .post-meta .read-time {
6779 right: 56px;
6781 h1.listing + .post-meta .lw2-link {
6782 opacity: 1;
6783 right: 0;
6785 h1.listing + .post-meta .link-post-domain {
6786 margin: 0;
6787 line-height: 1.3;
6788 overflow: hidden;
6789 text-overflow: ellipsis;
6791 h1.listing + .post-meta .post-section::before {
6792 position: absolute;
6793 left: unset;
6794 right: 0;
6795 bottom: 30px;
6796 top: unset;
6798 h1.listing a {
6799 display: inline;
6801 /*******************************************/
6802 } @media only screen and (max-width: 520px) {
6803 /*******************************************/
6804 h1.listing + .post-meta {
6805 padding: .25em 144px 0 0;
6806 flex-flow: column;
6808 #content.conversations-user-page h1.listing + .post-meta {
6809 flex-flow: row wrap;
6811 h1.listing + .post-meta .date {
6812 margin: 0.375em 0 0.25em 0;
6813 line-height: 1;
6815 #content.user-page h1.listing::after {
6816 height: calc(100% + 2.125em);
6818 #content.user-page h1.link-post-listing::after {
6819 height: calc(100% + 3.125em);
6821 #content.user-page h1.listing + .post-meta {
6822 padding: 0.25em 144px 0.5em 36px;
6824 #content.conversations-user-page h1.listing + .post-meta .date {
6825 margin: 0 0 0 1em;
6828 h1.listing + .post-meta .karma-value {
6829 bottom: 28px;
6830 right: 0;
6832 h1.listing + .post-meta .comment-count {
6833 bottom: 28px;
6834 right: 56px;
6836 h1.listing + .post-meta .read-time {
6837 right: 56px;
6838 bottom: 4px;
6840 h1.listing + .post-meta .lw2-link {
6841 right: 0;
6842 bottom: 4px;
6844 h1.listing + .post-meta .link-post-domain {
6845 max-width: 100%;
6847 h1.listing + .post-meta .post-section::before {
6848 right: 120px;
6851 #content.compact > .comment-thread .comment-item {
6852 max-height: 110px;
6855 .textarea-container:focus-within button:active {
6856 background-color: #ccc;
6858 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6859 background-color: #eee;
6860 border: 1px solid #ddd;
6861 border-radius: 6px;
6863 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6864 border-color: #c00;
6865 box-shadow:
6866 0 0 0 1px #fff,
6867 0 0 0 2px #c00;
6868 color: #c00;
6869 font-weight: 600;
6871 #content.conversation-page .textarea-container:focus-within::after {
6872 background-color: #fff;
6874 .textarea-container:focus-within .guiedit-buttons-container {
6875 background-color: white;
6876 border-top: 1px solid #ddf;
6878 .textarea-container:focus-within button.guiedit {
6879 background-color: #eee;
6880 border: 1px solid #ddd;
6881 border-radius: 6px;
6883 .markdown-hints::after {
6884 color: #090;
6886 /*******************************************/
6887 } @media only screen and (max-width: 320px) {
6888 /*******************************************/
6889 h1.listing {
6890 font-size: 1.25rem;
6892 #content.user-page h1.listing::after {
6893 height: calc(100% + 2.625em);
6895 #content.user-page h1.link-post-listing::after {
6896 height: calc(100% + 3.75em);