Improved code block styling in ultramodern and RTS themes
[lw2-viewer.git] / www / style-rts.mac.css
blob8107978e32374e6e3da2db5f53a334002dc5ac32
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;
2870 pointer-events: none;
2872 @supports (width: -moz-fit-content) {
2873 #images-overlay div::after {
2874 width: -moz-fit-content;
2877 @supports (width: fit-content) {
2878 #images-overlay div::after {
2879 width: fit-content;
2882 #images-overlay div:hover::after {
2883 opacity: 1.0;
2886 #images-overlay img {
2887 width: 100%;
2890 /***************/
2891 /* IMAGE FOCUS */
2892 /***************/
2894 #content img:hover,
2895 #images-overlay img:hover {
2896 filter: drop-shadow(0 0 3px #777);
2897 cursor: zoom-in;
2899 #content img:active,
2900 #images-overlay img:active {
2901 transform: scale(0.975);
2904 #image-focus-overlay {
2905 position: fixed;
2906 top: 0;
2907 right: 0;
2908 bottom: 0;
2909 left: 0;
2910 display: none;
2911 cursor: zoom-out;
2913 #image-focus-overlay::before {
2914 content: "";
2915 display: block;
2916 position: absolute;
2917 top: 0;
2918 right: 0;
2919 bottom: 0;
2920 left: 0;
2921 background-color: #000;
2922 opacity: 0.5;
2923 z-index: -1;
2925 #image-focus-overlay.engaged {
2926 display: initial;
2929 #image-focus-overlay img {
2930 filter: drop-shadow(10px 10px 10px #000) drop-shadow(0 0 10px #444);
2931 margin: auto;
2932 position: absolute;
2933 left: 50%;
2934 top: 50%;
2935 transform: translateX(-50%) translateY(-50%);
2938 #image-focus-overlay .help-overlay {
2939 position: absolute;
2940 display: flex;
2941 flex-flow: column;
2942 z-index: 2;
2943 font-size: 1.5rem;
2944 padding: 1em;
2945 border-radius: 10px;
2946 bottom: 1em;
2947 right: 1em;
2948 overflow: hidden;
2949 white-space: nowrap;
2950 color: transparent;
2951 visibility: hidden;
2952 transition:
2953 visibility 1s ease,
2954 color 1s ease,
2955 background-color 1s ease,
2956 bottom 0.3s ease;
2958 #image-focus-overlay .help-overlay:hover {
2959 max-width: 420px;
2960 max-height: 300px;
2961 background-color: rgba(0,0,0,0.85);
2962 color: #fff;
2963 visibility: visible;
2964 transition:
2965 visibility 0.2s ease 0.3s,
2966 color 0.2s ease 0.3s,
2967 background-color 0.2s ease 0.3s;
2970 #image-focus-overlay .help-overlay::after {
2971 content: "\F128";
2972 font-family: Font Awesome;
2973 font-weight: 900;
2974 font-size: 2rem;
2975 position: absolute;
2976 right: 0;
2977 bottom: 0;
2978 padding: 10px;
2979 color: #000;
2980 filter: drop-shadow(0 0 6px #fff);
2981 visibility: visible;
2982 opacity: 0.85;
2983 transition:
2984 visibility 1s ease;
2986 #image-focus-overlay .help-overlay:hover::after {
2987 visibility: hidden;
2988 transition:
2989 visibility 0.2s ease 0.3s;
2992 #image-focus-overlay .help-overlay p {
2993 margin: 0;
2994 text-indent: -2em;
2995 padding-left: 2em;
2996 max-width: 100%;
2997 overflow: hidden;
2999 #image-focus-overlay .help-overlay p + p {
3000 margin: 0.75em 0 0 0;
3002 #image-focus-overlay .help-overlay.hidden {
3003 bottom: -2em;
3006 #image-focus-overlay .image-number {
3007 position: absolute;
3008 z-index: 2;
3009 font-size: 1.75rem;
3010 left: 1em;
3011 bottom: 1em;
3012 font-weight: 600;
3013 text-shadow:
3014 0 0 3px #fff,
3015 0 0 5px #fff,
3016 0 0 8px #fff,
3017 0 0 13px #fff;
3018 width: 1.5em;
3019 text-align: right;
3020 white-space: nowrap;
3021 transition: bottom 0.3s ease;
3023 #image-focus-overlay .image-number::before {
3024 content: "#";
3025 opacity: 0.3;
3027 #image-focus-overlay .image-number::after {
3028 content: " of " attr(data-number-of-images);
3029 opacity: 0.3;
3031 #image-focus-overlay .image-number:hover::before,
3032 #image-focus-overlay .image-number:hover::after {
3033 opacity: 1.0;
3035 #image-focus-overlay .image-number.hidden {
3036 bottom: -1.25em;
3039 #image-focus-overlay .slideshow-buttons {
3040 position: absolute;
3041 top: 0;
3042 left: 0;
3043 width: 100%;
3044 height: 100%;
3045 z-index: 1;
3046 display: flex;
3047 justify-content: space-between;
3048 pointer-events: none;
3050 #image-focus-overlay .slideshow-buttons button {
3051 font-family: Font Awesome;
3052 font-weight: 900;
3053 font-size: 3rem;
3054 padding: 0.5em;
3055 color: #ddd;
3056 position: relative;
3057 left: 0;
3058 transition:
3059 left 0.3s ease;
3060 pointer-events: auto;
3062 #image-focus-overlay .slideshow-buttons button::selection {
3063 background-color: transparent;
3065 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
3066 #image-focus-overlay .slideshow-buttons button:hover {
3067 background-color: rgba(0,0,0,0.1);
3068 color: #777;
3071 #image-focus-overlay .slideshow-buttons button:active {
3072 transform: none;
3073 color: #888;
3075 #image-focus-overlay .slideshow-buttons button:disabled {
3076 text-shadow: none;
3077 background-color: transparent;
3078 color: #ddd;
3079 cursor: default;
3080 opacity: 0.4;
3082 #image-focus-overlay .slideshow-button.previous.hidden {
3083 left: -1.75em;
3085 #image-focus-overlay .slideshow-button.next.hidden {
3086 left: 1.75em;
3089 .blurred {
3090 filter: blur(3px);
3093 /**************************/
3094 /* QUALIFIED HYPERLINKING */
3095 /**************************/
3097 #content.no-comments #comments,
3098 #content.no-comments .post-meta .comment-count,
3099 #content.no-comments .post-meta .karma,
3100 #content.no-comments + #ui-elements-container #new-comment-nav-ui,
3101 #content.no-comments + #ui-elements-container #hns-date-picker,
3102 #content.no-comments + #ui-elements-container #quick-nav-ui {
3103 display: none;
3106 #content.no-nav-bars #primary-bar,
3107 #content.no-nav-bars #secondary-bar {
3108 display: none;
3110 #content.no-nav-bars {
3111 margin: 8px auto;
3113 #content.no-nav-bars + #ui-elements-container > * {
3114 padding-top: 8px;
3117 #aux-about-link {
3118 position: fixed;
3119 top: 40px;
3120 left: calc((100% - 900px) / 2 - 69px);
3121 width: 1.5em;
3122 height: 1.5em;
3123 text-align: center;
3124 display: table;
3126 #aux-about-link a {
3127 display: table-cell;
3128 width: 100%;
3129 vertical-align: middle;
3130 font-family: Font Awesome;
3131 font-weight: 900;
3132 font-size: 1.25rem;
3133 opacity: 0.4;
3134 z-index: 1;
3137 .qualified-linking {
3138 margin: 0;
3139 position: relative;
3141 .qualified-linking input[type='checkbox'] {
3142 visibility: hidden;
3143 width: 0;
3144 height: 0;
3145 margin: 0;
3147 .qualified-linking label {
3148 font-family: Font Awesome;
3149 font-weight: 900;
3150 font-size: 1rem;
3151 padding: 0 0.5em;
3152 display: inline-block;
3153 margin-left: 0.25em;
3155 .qualified-linking label:hover {
3156 cursor: pointer;
3158 .qualified-linking label:active span {
3159 display: inline-block;
3160 transform: scale(0.9);
3162 .qualified-linking label::selection {
3163 background-color: transparent;
3166 .qualified-linking label::after {
3167 content: "";
3168 width: 100vw;
3169 height: 0;
3170 left: 0;
3171 top: 0;
3172 position: fixed;
3173 z-index: 1;
3174 cursor: default;
3176 .qualified-linking input[type='checkbox']:checked + label::after {
3177 height: 100vh;
3180 .qualified-linking-toolbar {
3181 position: absolute;
3182 right: 0.25em;
3183 top: 110%;
3184 z-index: 1;
3186 .qualified-linking input[type='checkbox'] ~ .qualified-linking-toolbar {
3187 display: none;
3189 .qualified-linking input[type='checkbox']:checked ~ .qualified-linking-toolbar {
3190 display: block;
3192 #qualified-linking-toolbar-toggle-checkbox-bottom ~ .qualified-linking-toolbar {
3193 top: unset;
3194 bottom: 125%;
3197 .qualified-linking-toolbar a {
3198 display: block;
3199 padding: 0 6px;
3200 margin: 4px;
3202 .qualified-linking-toolbar a::selection {
3203 background-color: transparent;
3206 /********/
3207 /* MATH */
3208 /********/
3210 .mathjax-block-container {
3211 overflow-y: hidden;
3212 border-radius: 6px;
3213 margin: 1em 0 1.5em 0;
3215 .mathjax-inline-container {
3216 max-width: 100%;
3217 display: inline-block;
3218 overflow-x: auto;
3219 overflow-y: hidden;
3220 position: relative;
3221 vertical-align: text-top;
3222 padding: 0 1px;
3224 .post .mathjax-inline-container {
3225 line-height: 0.8;
3226 top: 2px;
3228 .comment .mathjax-inline-container {
3229 top: 3px;
3230 line-height: 1;
3232 .mathjax-inline-container .mjx-chtml {
3233 padding: 0;
3236 /*******************/
3237 /* ALIGNMENT FORUM */
3238 /*******************/
3240 #content.alignment-forum-index-page::before {
3241 content: "Alignment Forum";
3242 grid-row: 3;
3243 font-size: 1.5rem;
3244 margin: 0.375em 0 0 -0.375em;
3247 /**********************/
3248 /* FOR NARROW SCREENS */
3249 /**********************/
3251 @media only screen and (max-width: 1440px) {
3252 #hns-date-picker {
3253 right: -81px;
3254 padding: 8px 10px 10px 10px;
3255 bottom: 62px;
3256 display: none;
3258 #hns-date-picker::before {
3259 content: "";
3260 position: absolute;
3261 display: block;
3262 z-index: -1;
3263 height: calc(100% + 2px);
3264 top: -1px;
3265 left: -1px;
3266 width: 50%;
3269 @media only screen and (max-width: 1160px) {
3270 #new-comment-nav-ui {
3271 bottom: 180px;
3272 right: -68px;
3274 #hns-date-picker {
3275 bottom: 200px;
3276 right: -36px;
3278 #hns-date-picker::before {
3279 width: calc(100% - 35px);
3281 #theme-selector button::before {
3282 right: unset;
3283 left: 100%;
3285 #theme-selector:hover::after {
3286 content: "";
3287 display: block;
3288 position: absolute;
3289 width: calc(6em - 7px);
3290 height: calc(100% + 2px);
3291 top: 0;
3292 left: calc(100% + 1px);
3294 #anti-kibitzer-toggle {
3295 bottom: 330px;
3298 @media only screen and (max-width: 1080px) {
3299 #width-selector {
3300 right: -30px;
3302 #width-selector button {
3303 display: block;
3305 #text-size-adjustment-ui {
3306 top: 90px;
3307 right: -30px;
3309 #text-size-adjustment-ui button {
3310 display: block;
3311 position: relative;
3313 #text-size-adjustment-ui button.increase {
3314 bottom: 48px;
3316 #text-size-adjustment-ui button.decrease {
3317 top: 50px;
3319 #theme-selector {
3320 top: 46px;
3321 left: -44px;
3323 #theme-tweaker-toggle {
3324 left: -44px;
3325 top: 2px;
3327 #theme-tweaker-toggle button {
3328 height: 2em;
3329 width: 2em;
3330 padding: 7px;
3332 #quick-nav-ui {
3333 right: -54px;
3335 #new-comment-nav-ui {
3336 right: -55px;
3338 #hns-date-picker {
3339 right: -23px;
3341 #hns-date-picker::before {
3342 width: calc(100% - 22px);
3344 #anti-kibitzer-toggle {
3345 right: -54px;
3348 @media only screen and (max-width: 1040px) {
3349 #quick-nav-ui {
3350 right: -49px;
3352 #new-comment-nav-ui {
3353 right: -50px;
3355 #hns-date-picker {
3356 right: -18px;
3358 #hns-date-picker::before {
3359 width: calc(100% - 17px);
3361 #anti-kibitzer-toggle {
3362 right: -50px;
3365 @media only screen and (max-width: 1020px) {
3366 #quick-nav-ui {
3367 right: -20px;
3369 #new-comment-nav-ui {
3370 right: -21px;
3372 #new-comment-nav-ui .new-comments-count::before {
3373 content: "";
3374 position: absolute;
3375 width: 100%;
3376 height: calc(100% + 45px);
3377 z-index: -1;
3378 left: 0;
3379 top: -22px;
3381 #hns-date-picker {
3382 right: 19px;
3384 #hns-date-picker::before {
3385 width: 100%;
3387 #anti-kibitzer-toggle {
3388 right: -20px;
3391 @media only screen and (max-width: 1000px) {
3392 #theme-selector {
3393 left: -17px;
3394 top: 120px;
3395 padding: 3px 0;
3396 max-width: 32px;
3398 #theme-selector button {
3399 margin: 1px 4px;
3401 #text-size-adjustment-ui {
3402 top: 100px;
3403 right: -12px;
3405 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3406 #quick-nav-ui,
3407 #new-comment-nav-ui,
3408 #new-comment-nav-ui + #hns-date-picker,
3409 #anti-kibitzer-toggle {
3410 opacity: 0.4;
3412 #quick-nav-ui:hover,
3413 #new-comment-nav-ui:hover,
3414 #new-comment-nav-ui + #hns-date-picker:hover,
3415 #new-comment-nav-ui + #hns-date-picker:focus-within,
3416 #new-comment-nav-ui:hover + #hns-date-picker,
3417 #anti-kibitzer-toggle:hover {
3418 opacity: 1.0;
3421 #theme-tweaker-toggle {
3422 top: 70px;
3423 left: -21px;
3427 /**************/
3428 /* PRINT VIEW */
3429 /**************/
3431 @media only print {
3432 .nav-bar {
3433 visibility: hidden;
3434 max-height: 0;
3435 overflow: hidden;
3437 #ui-elements-container {
3438 display: none;
3440 #images-overlay {
3441 display: none;
3443 #images-overlay + #content .post-body img {
3444 visibility: visible;
3446 .comment-controls {
3447 display: none;
3449 #comments-sort-mode-selector {
3450 display: none;
3452 .comment-minimize-button {
3453 display: none;
3455 .post-meta .qualified-linking,
3456 .post-meta .lw2-link {
3457 display: none;
3459 .comment-meta .permalink,
3460 .comment-meta .lw2-link,
3461 .comment-meta .comment-parent-link {
3462 display: none;
3464 .new-comment::before {
3465 display: none;
3467 #content {
3468 box-shadow: none;
3472 /*****************/
3473 /* MOBILE LAYOUT */
3474 /*****************/
3476 /* Hide the mobile elements on desktop screens: */
3478 @media not screen and (hover: none), not screen and (-moz-touch-enabled) {
3479 #post-nav-ui-toggle,
3480 #appearance-adjust-ui-toggle,
3481 #theme-selector .theme-selector-close-button {
3482 display: none;
3486 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
3488 /*====================*/
3489 /* MOBILE UI ELEMENTS */
3490 /*====================*/
3492 #ui-elements-container {
3493 height: unset;
3494 position: unset;
3496 #ui-elements-container > * {
3497 position: fixed;
3498 visibility: hidden;
3499 opacity: 1.0;
3500 z-index: 10000;
3503 #ui-elements-container > div[id$='-ui-toggle'] {
3504 visibility: visible;
3505 display: inline-block;
3506 border-radius: 50%;
3507 z-index: 10000;
3509 #ui-elements-container > div[id$='-ui-toggle'] button,
3510 #theme-selector .theme-selector-close-button {
3511 font-family: Font Awesome;
3512 font-weight: 900;
3513 font-size: 32px;
3514 padding: 10px;
3515 opacity: 0.8;
3516 -webkit-tap-highlight-color: transparent;
3517 transition: transform 0.2s ease;
3519 #ui-elements-container > div[id$='-ui-toggle'] button::selection,
3520 #theme-selector .theme-selector-close-button::selection {
3521 background-color: transparent;
3523 #ui-elements-container > div[id$='-ui-toggle'] button::-moz-focus-inner,
3524 #theme-selector .theme-selector-close-button::-moz-focus-inner {
3525 border: none;
3527 #ui-elements-container > div[id$='-ui-toggle'] button.engaged {
3528 transform: rotate(-90deg);
3529 opacity: 1.0;
3532 #appearance-adjust-ui-toggle {
3533 bottom: 10px;
3534 left: 10px;
3537 #post-nav-ui-toggle {
3538 bottom: 10px;
3539 right: 10px;
3542 #theme-selector.engaged,
3543 #quick-nav-ui.engaged,
3544 #new-comment-nav-ui.engaged,
3545 #hns-date-picker.engaged {
3546 visibility: visible;
3549 #image-focus-overlay.engaged {
3550 visibility: visible;
3552 #image-focus-overlay .help-overlay {
3553 display: none;
3556 /*=========*/
3557 /* GENERAL */
3558 /*=========*/
3560 @media only screen and (max-width: 900px) {
3561 #content,
3562 #images-overlay,
3563 #ui-elements-container {
3564 min-width: unset;
3565 width: unset;
3567 #content {
3568 padding: 0 4px;
3572 /*================*/
3573 /* THEME SELECTOR */
3574 /*================*/
3576 #theme-selector {
3577 display: flex;
3578 flex-flow: column;
3579 width: calc(100vw - 20px);
3580 max-width: 360px;
3581 padding: 0 0 3px 0;
3582 overflow: hidden;
3583 max-height: 0;
3584 transition:
3585 top 0.2s ease,
3586 max-height 0.2s ease,
3587 visibility 0.2s ease;
3588 top: calc(100% + 10px);
3589 left: 0;
3590 right: 0;
3591 margin: auto;
3593 #theme-selector.engaged {
3594 max-height: 1000px;
3595 top: 10px;
3596 z-index: 10001;
3598 #theme-selector::before {
3599 content: "Select theme";
3600 white-space: nowrap;
3601 display: block;
3602 font-weight: 600;
3603 font-size: 2rem;
3604 margin: 0.375em 1em 0.5em 1em;
3605 text-align: center;
3607 #theme-selector button {
3608 width: calc(100% - 0.5em);
3609 background-repeat: no-repeat;
3610 padding: 1em 0.875em;
3611 margin: 1px 4px;
3612 line-height: 1;
3613 height: unset;
3614 position: relative;
3616 #theme-selector button::after {
3617 content: attr(data-theme-description);
3618 white-space: nowrap;
3619 position: absolute;
3620 text-align: left;
3621 left: 2.5em;
3622 top: 1em;
3624 @media only screen and (max-height: 675px) {
3625 #theme-selector button {
3626 padding: 0.875em;
3628 #theme-selector button::after {
3629 top: 0.875em;
3632 #theme-selector .theme-selector-close-button {
3633 position: absolute;
3634 width: unset;
3635 background-color: transparent;
3636 top: 0;
3637 right: -3px;
3639 #theme-selector .theme-selector-close-button,
3640 #theme-selector .theme-selector-close-button:focus,
3641 #theme-selector .theme-selector-close-button:active,
3642 #theme-selector .theme-selector-close-button:hover {
3643 box-shadow: none;
3646 /*===============*/
3647 /* THEME TWEAKER */
3648 /*===============*/
3650 #theme-selector {
3651 padding: 0 0 64px 0;
3653 #theme-selector ~ #theme-tweaker-toggle {
3654 top: 100%;
3656 #theme-selector ~ #theme-tweaker-toggle::after {
3657 content: "Open theme tweaker";
3658 position: absolute;
3659 font-size: 0.625em;
3660 white-space: nowrap;
3661 left: -50%;
3662 top: 100%;
3664 #theme-selector.engaged ~ #theme-tweaker-toggle {
3665 visibility: visible;
3666 top: 530px;
3667 left: 0;
3668 right: 0;
3669 margin: auto;
3670 z-index: 11111;
3671 transition:
3672 top 0.2s ease,
3673 visibility 0.2s ease;
3675 @media only screen and (max-height: 675px) {
3676 #theme-selector.engaged ~ #theme-tweaker-toggle {
3677 top: 492px;
3680 @supports (width: -moz-fit-content) {
3681 #theme-selector.engaged ~ #theme-tweaker-toggle {
3682 width: -moz-fit-content;
3685 @supports (width: fit-content) {
3686 #theme-selector.engaged ~ #theme-tweaker-toggle {
3687 width: fit-content;
3690 #theme-selector.engaged ~ #theme-tweaker-toggle button {
3691 opacity: 1.0;
3694 #theme-tweaker-ui {
3695 visibility: visible;
3698 /*======================*/
3699 /* ANTI-KIBITZER TOGGLE */
3700 /*======================*/
3702 #theme-selector ~ #anti-kibitzer-toggle {
3703 top: 100%;
3704 bottom: unset;
3705 left: 0;
3706 right: 0;
3707 margin: auto;
3708 box-shadow: none;
3709 width: calc(100vw - 44px);
3710 max-width: 330px;
3711 text-align: right;
3712 pointer-events: none;
3714 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3715 visibility: visible;
3716 z-index: 11110;
3717 top: 530px;
3718 transition:
3719 top 0.2s ease,
3720 visibility 0.2s ease;
3722 @media only screen and (max-height: 675px) {
3723 #theme-selector.engaged ~ #anti-kibitzer-toggle {
3724 top: 492px;
3727 #theme-selector.engaged ~ #anti-kibitzer-toggle button {
3728 pointer-events: auto;
3729 display: inline-block;
3732 /*=================*/
3733 /* QUICKNAV WIDGET */
3734 /*=================*/
3736 #quick-nav-ui {
3737 max-width: 0px;
3738 transition:
3739 max-width 0.2s ease,
3740 visibility 0.2s ease;
3741 display: flex;
3742 right: 72px;
3743 bottom: 14px;
3745 #quick-nav-ui.engaged {
3746 max-width: 1000px;
3748 #quick-nav-ui a {
3749 position: relative;
3750 margin: 2px;
3752 #quick-nav-ui a + a {
3753 margin-left: 5px;
3755 #quick-nav-ui a::after {
3756 position: absolute;
3757 top: calc(100% + 2px);
3758 font-size: 0.375rem;
3759 left: 0;
3760 right: 0;
3761 margin: auto;
3762 line-height: 1;
3763 padding: 2px;
3764 text-transform: uppercase;
3765 z-index: -1;
3767 @supports (width: -moz-fit-content) {
3768 #quick-nav-ui a::after {
3769 width: -moz-fit-content;
3772 @supports (width: fit-content) {
3773 #quick-nav-ui a::after {
3774 width: fit-content;
3777 #quick-nav-ui a[href='#top']::after {
3778 content: "Top";
3779 left: -1px;
3781 #quick-nav-ui a[href='#comments']::after {
3782 content: "Comments";
3784 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui a[href='#comments'] {
3785 visibility: hidden;
3786 transition: visibility 0.2s ease;
3788 #content.post-page:not(.individual-thread-page) ~ #ui-elements-container #quick-nav-ui.engaged a[href='#comments'] {
3789 visibility: visible;
3791 #quick-nav-ui a[href='#bottom-bar']::after {
3792 content: "Bottom";
3795 /*======================*/
3796 /* NEW COMMENT QUICKNAV */
3797 /*======================*/
3799 #new-comment-nav-ui {
3800 max-width: 0px;
3801 max-height: 0px;
3802 transition:
3803 max-width 0.2s ease,
3804 max-height 0.2s ease,
3805 visibility 0.2s ease;
3806 display: flex;
3807 right: 78px;
3808 bottom: 70px;
3810 #new-comment-nav-ui::before {
3811 content: "New Comments";
3812 position: absolute;
3813 bottom: 100%;
3814 font-size: 0.5625rem;
3815 left: 0;
3816 right: 0;
3817 margin: auto;
3818 padding: 2px 3px;
3819 text-transform: uppercase;
3820 z-index: -1;
3822 @supports (width: -moz-fit-content) {
3823 #new-comment-nav-ui::before {
3824 width: -moz-fit-content;
3827 @supports (width: fit-content) {
3828 #new-comment-nav-ui::before {
3829 width: fit-content;
3832 #new-comment-nav-ui.engaged {
3833 max-width: 1000px;
3834 max-height: 1000px;
3836 #new-comment-nav-ui .new-comment-sequential-nav-button {
3837 top: unset;
3838 bottom: unset;
3839 padding: 2px 7px;
3841 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
3842 padding: 2px 7px 3px 7px;
3844 #new-comment-nav-ui .new-comments-count {
3845 padding: 4px 0 5px 0;
3847 #new-comment-nav-ui .new-comments-count::before {
3848 display: none;
3850 #new-comment-nav-ui button::after {
3851 position: absolute;
3852 font-size: 0.375rem;
3853 left: 0;
3854 right: 0;
3855 margin: auto;
3856 line-height: 1;
3857 text-transform: uppercase;
3858 pointer-events: none;
3860 #new-comment-nav-ui button.new-comment-previous::after {
3861 content: "Previous";
3862 bottom: 5px;
3864 #new-comment-nav-ui button.new-comment-next::after {
3865 content: "Next";
3866 top: 7px;
3869 /*=================*/
3870 /* HNS DATE PICKER */
3871 /*=================*/
3873 #hns-date-picker {
3874 max-height: 0px;
3875 bottom: 132px;
3876 right: 62px;
3877 transition:
3878 max-height 0.2s ease,
3879 visibility 0.2s ease;
3881 #hns-date-picker.engaged {
3882 max-height: 1000px;
3884 #hns-date-picker::before {
3885 width: calc(100% + 2px);
3886 border-width: 1px !important;
3889 /*=========*/
3890 /* NAV BAR */
3891 /*=========*/
3893 #bottom-bar {
3894 padding: 0 4.5rem;
3896 #bottom-bar .nav-item {
3897 box-shadow: none;
3898 position: relative;
3900 #bottom-bar .nav-inner {
3901 font-size: 2rem;
3902 padding: 1rem 0 1.25rem 0;
3903 visibility: hidden;
3904 position: static;
3905 width: 0;
3907 #content #bottom-bar .nav-item .nav-inner::before {
3908 margin: 0;
3909 visibility: visible;
3910 position: absolute;
3911 width: 100%;
3912 height: 100%;
3913 left: 0;
3914 top: 0;
3915 padding: 1rem 0;
3917 #bottom-bar .nav-inner::after {
3918 display: block;
3919 visibility: visible;
3920 text-transform: uppercase;
3921 color: unset;
3922 font-size: 0.75rem;
3923 top: unset;
3924 left: 0;
3925 bottom: 1rem;
3926 width: 100%;
3928 #bottom-bar #nav-item-first .nav-inner::after {
3929 content: "First Page";
3931 #bottom-bar #nav-item-prev .nav-inner::after {
3932 content: "Prev. Page";
3934 #bottom-bar #nav-item-top .nav-inner::after {
3935 content: "Top";
3937 #bottom-bar #nav-item-next .nav-inner::after {
3938 content: "Next Page";
3940 #bottom-bar #nav-item-last .nav-inner::after {
3941 content: "Last Page";
3944 @media only screen and (max-width: 900px) {
3945 #primary-bar,
3946 #secondary-bar {
3947 font-size: 0.75rem;
3949 .nav-bar {
3950 width: calc(100% + 8px);
3951 margin: 0 -4px;
3953 .nav-bar .nav-inner::after {
3954 display: none;
3957 #primary-bar .nav-item {
3958 flex: 1 1 100%;
3960 #secondary-bar .nav-item:not(#nav-item-search) {
3961 flex: 1 1 60px;
3963 #primary-bar .nav-inner,
3964 #secondary-bar .nav-inner {
3965 text-transform: uppercase;
3966 padding: 6px;
3968 #primary-bar .nav-inner::before,
3969 #secondary-bar .nav-inner::before {
3970 display: block;
3971 font-family: "Font Awesome";
3972 font-size: 2em;
3973 font-weight: 900;
3976 #nav-item-home .nav-inner::before {
3977 content: "\F015";
3979 #nav-item-featured .nav-inner::before {
3980 content: "\F005";
3982 #nav-item-all .nav-inner::before {
3983 content: "\F069";
3985 #nav-item-meta .nav-inner::before {
3986 content: "\F077";
3988 #nav-item-recent-comments > * > span {
3989 display: none;
3991 #nav-item-recent-comments .nav-inner::before {
3992 content: "\F036";
3994 #nav-item-archive .nav-inner::before {
3995 content: "\F187";
3997 #nav-item-about .nav-inner::before {
3998 content: "\F129";
4000 #nav-item-search {
4001 font-size: 2em;
4002 padding: 10px;
4004 #nav-item-search .nav-inner::before {
4005 content: none;
4007 #nav-item-search .nav-inner {
4008 height: 100%;
4009 display: flex;
4011 #nav-item-search input {
4012 width: 100%;
4013 height: 100%;
4015 #nav-item-search button {
4016 height: 100%;
4017 padding: 5px 5px 5px 10px;
4018 width: 40px;
4019 overflow: visible;
4020 visibility: hidden;
4022 #nav-item-search button::before {
4023 content: "\F002";
4024 font-family: Font Awesome;
4025 font-weight: 900;
4026 visibility: visible;
4028 #nav-item-login {
4029 padding: 0;
4031 #nav-item-login .nav-inner::before {
4032 content: "\F007";
4035 @media only screen and (max-width: 520px) {
4036 #primary-bar,
4037 #secondary-bar {
4038 font-size: 0.5rem;
4041 #nav-item-search .nav-inner {
4042 padding: 0;
4044 #nav-item-search button {
4045 width: 31px;
4048 #bottom-bar #nav-item-first .nav-inner::after {
4049 content: "First";
4051 #bottom-bar #nav-item-prev .nav-inner::after {
4052 content: "Prev";
4054 #bottom-bar #nav-item-next .nav-inner::after {
4055 content: "Next";
4057 #bottom-bar #nav-item-last .nav-inner::after {
4058 content: "Last";
4062 /*=================*/
4063 /* INBOX INDICATOR */
4064 /*=================*/
4066 @media only screen and (max-width: 900px) {
4067 #inbox-indicator {
4068 width: 100%;
4069 top: 0;
4070 pointer-events: none;
4072 #inbox-indicator::before {
4073 width: 100%;
4074 font-size: 1rem;
4075 text-align: right;
4076 padding: 1px 6px;
4078 #inbox-indicator.new-messages {
4079 pointer-events: auto;
4081 #inbox-indicator.new-messages::before {
4082 box-shadow: 0 0 8px 1px #f00 inset;
4085 @media only screen and (max-width: 520px) {
4086 #inbox-indicator::before {
4087 font-size: 0.75rem;
4088 padding: 2px 5px;
4091 @media only screen and (max-width: 374px) {
4092 #inbox-indicator::before {
4093 font-size: 0.625rem;
4097 /*===================*/
4098 /* TOP PAGINATION UI */
4099 /*===================*/
4101 #top-nav-bar {
4102 font-size: 1.75rem;
4105 /*==============*/
4106 /* PAGE TOOLBAR */
4107 /*==============*/
4109 @media only screen and (max-width: 900px) {
4110 #content > .page-toolbar {
4111 font-size: 1rem;
4112 margin-right: 0;
4114 #content.user-page > .page-toolbar {
4115 grid-column: 2 / span 2;
4116 margin: 0 0 6px 0;
4119 @media only screen and (max-width: 520px) {
4120 #content:not(.user-page) .page-toolbar {
4121 display: flex;
4122 flex-direction: column-reverse;
4123 text-align: right;
4124 align-self: start;
4125 padding: 4px 0 0 0;
4127 #content.user-page .page-toolbar {
4128 display: flex;
4129 flex-flow: row;
4130 justify-content: flex-end;
4131 padding: 2px 0 0 0;
4133 #content.user-page .page-toolbar > form,
4134 #content.user-page .page-toolbar > .button {
4135 text-align: center;
4136 flex-basis: 25%;
4137 margin-left: 1.5em;
4139 #content.user-page .page-toolbar .button {
4140 text-transform: uppercase;
4141 font-size: 0.625rem;
4143 #content.user-page .page-toolbar .button::before {
4144 font-size: 1.375rem;
4145 display: block;
4146 padding: 0;
4148 #content.user-page .page-toolbar .rss {
4149 white-space: nowrap;
4150 margin: 0 0 0 1.5em;
4152 .page-toolbar > * {
4153 line-height: 1.15;
4154 padding: 6px 0;
4155 margin: 0;
4159 /*==============*/
4160 /* SUBLEVEL NAV */
4161 /*==============*/
4163 @media only screen and (max-width: 900px) {
4164 .sublevel-nav:not(.sort) {
4165 flex-wrap: wrap;
4166 width: calc(100vw - 100px);
4168 .sublevel-nav:not(.sort) .sublevel-item {
4169 margin: 1px;
4170 flex-basis: 7em;
4173 @media only screen and (max-width: 720px) {
4174 .sublevel-nav:not(.sort) {
4175 width: calc(100vw - 200px);
4178 @media only screen and (max-width: 520px) {
4179 .sublevel-nav:not(.sort) {
4180 width: calc(100vw - 100px);
4182 .sublevel-nav:not(.sort) .sublevel-item {
4183 font-size: 1rem;
4187 /*=====================*/
4188 /* SORT ORDER SELECTOR */
4189 /*=====================*/
4191 @media only screen and (max-width: 720px) {
4192 #content.index-page > .sublevel-nav.sort {
4193 flex-flow: column;
4194 margin-left: 4px;
4198 /*==========*/
4199 /* ARCHIVES */
4200 /*==========*/
4202 @media only screen and (max-width: 900px) {
4203 div[class^='archive-nav-'] {
4204 flex-wrap: wrap;
4205 justify-content: flex-start;
4207 .archive-nav *[class^='archive-nav-item'],
4208 .archive-nav *[class^='archive-nav-item']:first-child {
4209 padding: 10px;
4210 margin: 2px;
4211 max-width: unset;
4212 flex: 0 1 calc((100% / 8) - 4px);
4214 .archive-nav .archive-nav-item-day,
4215 .archive-nav .archive-nav-item-day:first-child {
4216 flex-basis: calc((100% / 16) - 4px);
4218 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-'] {
4219 margin-top: 8px;
4220 position: relative;
4222 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
4223 content: "";
4224 display: block;
4225 position: absolute;
4226 height: 1px;
4227 width: calc(100% + 8px);
4228 left: -4px;
4229 top: -4px;
4232 @media only screen and (max-width: 720px) {
4233 .archive-nav .archive-nav-item-day,
4234 .archive-nav .archive-nav-item-day:first-child {
4235 flex-basis: calc((100% / 12) - 4px);
4238 @media only screen and (max-width: 520px) {
4239 .archive-nav *[class^='archive-nav-item'],
4240 .archive-nav *[class^='archive-nav-item']:first-child {
4241 flex-basis: calc((100% / 5) - 4px);
4243 .archive-nav .archive-nav-item-day,
4244 .archive-nav .archive-nav-item-day:first-child {
4245 flex-basis: calc((100% / 8) - 4px);
4249 /*==========*/
4250 /* LISTINGS */
4251 /*==========*/
4253 h1.listing {
4254 max-height: unset;
4257 /*============*/
4258 /* USER PAGES */
4259 /*============*/
4261 @media only screen and (max-width: 720px) {
4262 #content.user-page h1.page-main-heading {
4263 align-self: center;
4265 #content.user-page .user-stats {
4266 padding: 4px 0;
4267 line-height: 1.3;
4271 /*============*/
4272 /* LOGIN PAGE */
4273 /*============*/
4275 @media only screen and (max-width: 640px) {
4276 .login-container {
4277 flex-flow: column;
4278 margin: 0 auto 3em auto;
4279 max-width: 400px;
4281 .login-container #login-form,
4282 .login-container #signup-form {
4283 padding: 0 1em 1.25em 1em;
4284 grid-row-gap: 0;
4286 .login-container #signup-form {
4287 padding-top: 1em;
4289 .login-container #login-form > *,
4290 .login-container #signup-form > * {
4291 grid-column: 1 / span 2;
4293 .login-container form label {
4294 text-align: left;
4295 padding: 0;
4296 line-height: 1;
4298 .login-container form input {
4299 margin: 0.25em 0 0.75em 0;
4300 padding: 0.5em;
4302 .login-container form h1 {
4303 grid-column: 1 / span 2;
4304 margin: 0 0 0.25em 0;
4306 .login-container form a {
4307 margin: 0.75em 0 0 0;
4309 .login-container .login-tip {
4310 margin: 1.5em 1em 0 1em;
4314 /*==================*/
4315 /* POSTS & COMMENTS */
4316 /*==================*/
4318 /*===========*/
4319 /* POST-META */
4320 /*===========*/
4322 .post-meta {
4323 line-height: 1.9;
4325 @media only screen and (max-width: 720px) {
4326 .post-meta .lw2-link span,
4327 .post-meta .karma-value span,
4328 .post-meta .comment-count span {
4329 display: none;
4331 .post-meta .comment-count::before {
4332 content: "\F086";
4333 font-family: Font Awesome;
4334 font-size: 0.875em;
4335 margin: 0 0.25em 0 0;
4336 font-weight: 400;
4340 /*=======*/
4341 /* POSTS */
4342 /*=======*/
4344 @media only screen and (max-width: 900px) {
4345 .post-body,
4346 .post > h1:first-child {
4347 padding: 0 6px;
4350 @media only screen and (max-width: 520px) {
4351 .post-body {
4352 font-size: 1.2rem;
4353 line-height: 1.45;
4355 .post > h1:first-child {
4356 font-size: 2em;
4360 /*==========*/
4361 /* COMMENTS */
4362 /*==========*/
4364 @media only screen and (max-width: 900px) {
4365 .comment-body ul {
4366 padding-left: 30px;
4368 .comment-body ol {
4369 padding-left: 30px;
4373 /*==============*/
4374 /* COMMENT-META */
4375 /*==============*/
4377 a.comment-parent-link::after {
4378 display: none;
4380 @media only screen and (max-width: 900px) {
4381 .comment-meta {
4382 padding: 2px 40px 2px 10px;
4385 @media only screen and (max-width: 720px) {
4386 .comment-meta .karma-value span {
4387 display: none;
4389 .comment-meta .comment-parent-link {
4390 opacity: 1.0;
4393 @media only screen and (max-width: 520px) {
4394 .comment-meta {
4395 padding: 2px 10px;
4396 position: relative;
4398 .comment-meta .author {
4399 flex-basis: 100%;
4401 .comment-post-title2 {
4402 display: block;
4403 text-overflow: ellipsis;
4404 overflow: hidden;
4406 .comment-meta .lw2-link {
4407 display: none;
4411 /*=======================*/
4412 /* COMMENTS COMPACT VIEW */
4413 /*=======================*/
4415 /*===========================*/
4416 /* COMMENT THREAD NAVIGATION */
4417 /*===========================*/
4419 @media only screen and (max-width: 900px) {
4420 a.comment-parent-link {
4421 width: 0;
4422 visibility: hidden;
4423 position: relative;
4425 a.comment-parent-link::before {
4426 padding: 0;
4427 font-size: 1em;
4428 left: 0;
4429 top: 0;
4430 line-height: inherit;
4431 visibility: visible;
4432 content: "\F3BF";
4433 transform: scaleX(-1);
4434 width: 2em;
4435 text-align: center;
4438 @media only screen and (max-width: 520px) {
4439 a.comment-parent-link {
4440 position: static;
4442 a.comment-parent-link::before {
4443 padding: 6px;
4444 left: unset;
4445 right: 0;
4446 top: unset;
4447 bottom: 0;
4448 height: 2em;
4452 /*=================================*/
4453 /* COMMENT THREAD MINIMIZE BUTTONS */
4454 /*=================================*/
4456 @media only screen and (max-width: 520px) {
4457 .comment-minimize-button{
4458 right: 2px;
4462 /*===========================*/
4463 /* COMMENTING AND POSTING UI */
4464 /*===========================*/
4466 @media only screen and (max-width: 900px) {
4467 .comment-controls .edit-button,
4468 .comment-controls .cancel-comment-button {
4469 max-width: 1.3em;
4470 overflow: hidden;
4471 margin-right: 0.125em;
4473 .comment-controls .edit-button {
4474 color: #0b0;
4476 .comment-controls .edit-button::before {
4477 font-size: 1rem;
4479 #comments > .comment-controls .cancel-comment-button {
4480 right: 8px;
4482 .comment-controls .cancel-comment-button::before {
4483 font-size: 1.25rem;
4486 @media only screen and (max-width: 520px) {
4487 .comment-controls {
4488 position: static;
4490 .comment-controls:focus-within {
4491 z-index: 10001;
4493 .comment-controls .cancel-comment-button {
4494 right: 10px;
4496 .textarea-container:focus-within textarea {
4497 position: fixed;
4498 top: 0;
4499 left: 2px;
4500 width: calc(100vw - 4px);
4501 height: calc(100% - 100px);
4502 min-height: unset;
4503 max-height: unset;
4504 border-width: 1px;
4505 z-index: 11001;
4507 #content.conversation-page .textarea-container:focus-within textarea {
4508 height: calc(100% - 54px);
4510 #content.conversation-page .textarea-container:focus-within::after {
4511 content: "";
4512 display: block;
4513 width: 100%;
4514 height: 50px;
4515 position: fixed;
4516 left: 0;
4517 bottom: 0;
4518 z-index: 11000;
4520 .textarea-container:focus-within .guiedit-buttons-container {
4521 position: fixed;
4522 z-index: 11002;
4523 left: 0;
4524 width: 100vw;
4525 height: auto;
4526 background-image: none;
4527 padding: 3px 4px 4px 4px;
4528 margin: 0;
4529 text-align: center;
4530 top: auto;
4531 bottom: 0;
4533 .textarea-container:focus-within button.guiedit {
4534 font-size: 0.9375rem;
4535 line-height: 1.5;
4536 height: auto;
4537 width: calc((100% / 10) - 2px);
4538 padding: 10px 1px 8px 0;
4539 position: relative;
4540 margin: 1px;
4542 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
4543 z-index: 11011;
4544 position: fixed;
4545 bottom: 7px;
4546 width: calc(((100% - 16px) / 10) * 3 - 7px);
4547 font-size: 1.25rem;
4548 padding: 5px 5px 6px 5px;
4549 display: block;
4551 .textarea-container:focus-within button.guiedit sup {
4552 position: absolute;
4553 left: calc(50% + 0.65em);
4554 top: calc(50% - 1.3em);
4556 .textarea-container:focus-within .guiedit-mobile-help-button {
4557 left: 8px;
4559 .textarea-container:focus-within .guiedit-mobile-exit-button {
4560 right: 8px;
4562 .guiedit::after {
4563 display: none;
4566 .markdown-hints,
4567 #edit-post-form .markdown-hints {
4568 z-index: 11111;
4569 position: fixed;
4570 top: 40px;
4571 left: 0;
4572 right: 0;
4573 margin: auto;
4574 padding: 4px 0 4px 8px;
4575 width: 310px;
4576 border-width: 3px;
4577 border-style: double;
4578 pointer-events: none;
4580 .markdown-hints::after {
4581 content: "(Type to hide this help box.)";
4582 color: #090;
4583 display: block;
4584 margin: 12px 18px 13px 10px;
4585 padding: 5px;
4586 font-size: 0.9em;
4587 text-align: center;
4591 /*================*/
4592 /* EDIT POST FORM */
4593 /*================*/
4595 @media only screen and (max-width: 520px) {
4596 #edit-post-form {
4597 padding-bottom: 0;
4599 #edit-post-form .post-meta-fields {
4600 grid-template-columns: 4em auto auto auto 1fr 4.25em;
4602 #edit-post-form label[for='url'],
4603 #edit-post-form label[for='section'],
4604 #edit-post-form label[for='title'] {
4605 padding-left: 0;
4607 #edit-post-form label[for='link-post'] {
4608 white-space: normal;
4609 line-height: 0.9;
4610 top: -1px;
4612 #edit-post-form .textarea-container:focus-within textarea {
4613 top: -1px;
4614 height: calc(100% - 101px);
4615 min-height: unset;
4618 #markdown-hints-checkbox,
4619 #markdown-hints-checkbox + label {
4620 display: none;
4623 #edit-post-form div:last-child {
4624 clear: both;
4625 overflow: auto;
4627 #edit-post-form input[type='submit'] {
4628 float: none;
4629 display: block;
4630 font-size: 1.5rem;
4631 margin: 1rem auto 1.5rem auto;
4632 padding: 6px 12px 8px 12px;
4636 /*===================*/
4637 /* TABLE OF CONTENTS */
4638 /*===================*/
4640 @media only screen and (max-width: 900px) {
4641 .contents {
4642 float: none;
4643 display: table;
4644 max-width: none;
4645 margin-left: auto;
4646 margin-right: auto;
4649 @media only screen and (max-width: 520px) {
4650 .contents {
4651 max-width: 100%;
4652 margin: 1em auto 0 auto;
4653 display: table;
4655 .contents-head {
4656 font-size: 1.2em;
4658 div.post-body .contents ul {
4659 font-size: unset;
4663 /*========================*/
4664 /* QUALIFIED HYPERLINKING */
4665 /*========================*/
4667 @media only screen and (max-width: 520px) {
4668 .qualified-linking-toolbar {
4669 right: -5em;
4673 } /* END MOBILE LAYOUT */
4676 /******************************/
4677 /* READTHESEQUENCES.COM THEME */
4678 /******************************/
4680 body {
4681 color: #000;
4682 background-color: #fffffa;
4683 font-family: 'Proxima Nova', sans-serif;
4685 #content {
4686 line-height: 1.55;
4689 /*=========*/
4690 /* NAV BAR */
4691 /*=========*/
4693 .nav-inner {
4694 font-size: 1.375em;
4695 font-weight: 600;
4697 #secondary-bar .nav-inner {
4698 font-size: 1em;
4701 a.nav-inner,
4702 #nav-item-search button {
4703 font-weight: 200;
4704 color: #888;
4707 #bottom-bar.decorative {
4708 border: none;
4710 #bottom-bar.decorative::before,
4711 #bottom-bar.decorative::after {
4712 content: "GW";
4713 font-weight: 200;
4714 display: block;
4715 text-align: center;
4716 padding: 0.25em 0 1em 0;
4718 #bottom-bar.decorative::before {
4719 width: 100%;
4720 color: transparent;
4721 background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAMdXV1QUAACwAAAAAAQABAAACAkQBADs=');
4722 background-repeat: repeat-x;
4723 background-position: center 35%;
4724 margin: 0 30px;
4726 #bottom-bar.decorative::after {
4727 color: #d8d8d8;
4728 position: absolute;
4729 left: 0;
4730 right: 0;
4731 margin: auto;
4732 background-color: #fff;
4733 padding-right: 4px;
4734 padding-left: 4px;
4736 @supports (width: -moz-fit-content) {
4737 #bottom-bar.decorative::after {
4738 width: -moz-fit-content;
4741 @supports (width: fit-content) {
4742 #bottom-bar.decorative::after {
4743 width: fit-content;
4747 /* Accesskey hints */
4749 .nav-inner::after {
4750 display: block;
4751 position: absolute;
4752 left: 5px;
4753 top: -2px;
4754 font-weight: 200;
4755 font-size: 0.7em;
4756 color: #d8d8d8;
4758 .inactive-bar .nav-inner::after {
4759 color: #ccc;
4761 .nav-inner:hover::after {
4762 color: #bbb;
4765 /* This makes the navbar items look like tabs: */
4767 #bottom-bar {
4768 border-top: 1px solid #bbb;
4769 margin-top: 2em;
4771 .post-page #bottom-bar {
4772 margin-top: 0.5em;
4774 #content.no-nav-bars {
4775 margin: auto;
4777 #content.no-comments #bottom-bar {
4778 margin-top: 0.125em;
4780 .nav-bar .nav-item:not(:last-child) {
4781 border-right: 1px solid #bbb;
4783 .nav-bar .nav-item:not(.nav-current):not(#nav-item-search):hover,
4784 #nav-item-search:focus-within {
4785 background-color: #f0f0eb;
4787 .nav-bar a:hover,
4788 .nav-bar a:focus,
4789 .nav-bar button:hover,
4790 .nav-bar button:focus {
4791 color: #333;
4792 text-shadow: 0px 0px 0.5px #333;
4794 #bottom-bar .nav-item a::before,
4795 #top-nav-bar a::before {
4796 font-size: 1em;
4797 bottom: -2px;
4798 color: #aaa;
4800 #bottom-bar .nav-item a:hover::before,
4801 #top-nav-bar a:hover::before {
4802 color: #333;
4804 #bottom-bar #nav-item-first a::before,
4805 #top-nav-bar a.nav-item-first::before {
4806 content: "\F0D9\F0D9";
4808 #bottom-bar #nav-item-prev a::before,
4809 #top-nav-bar a.nav-item-prev::before {
4810 content: "\F0D9";
4812 #bottom-bar #nav-item-top a::before {
4813 content: "\F0D8";
4815 #bottom-bar #nav-item-next a::before,
4816 #top-nav-bar a.nav-item-next::before {
4817 content: "\F0DA";
4819 #bottom-bar #nav-item-next a::before {
4820 margin-left: -1em;
4821 left: 2.85em;
4823 .active-bar {
4824 position: relative;
4825 border-style: solid;
4826 border-color: #bbb;
4827 border-width: 1px 0;
4830 /* Search tab */
4832 #nav-item-search form::before {
4833 color: #999;
4835 #nav-item-search button:hover {
4836 color: #333;
4839 /* User/login tab */
4841 #inbox-indicator::before {
4842 color: #ddd;
4845 /*==============*/
4846 /* PAGE TOOLBAR */
4847 /*==============*/
4849 .page-toolbar {
4850 grid-row: 3;
4852 .page-toolbar * {
4853 color: #888;
4854 font-weight: 300;
4856 .page-toolbar a:hover,
4857 .page-toolbar button:hover {
4858 text-shadow: 0px 0px 0.5px #333;
4860 .logout-button {
4861 color: #d33;
4864 /*===================*/
4865 /* TOP PAGINATION UI */
4866 /*===================*/
4868 #top-nav-bar {
4869 margin: 0;
4870 flex-wrap: wrap;
4871 grid-column: 1 / span 3;
4872 grid-row: 3;
4874 #top-nav-bar .page-number {
4875 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
4876 padding-top: 7px;
4878 #top-nav-bar .page-number-label {
4879 font-family: 'Proxima Nova', sans-serif;
4880 bottom: 70%;
4882 #top-nav-bar::after {
4883 content: "";
4884 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
4885 background-origin: content-box;
4886 background-repeat: no-repeat;
4887 display: block;
4888 margin: 0.125em auto 0 auto;
4889 padding: 0 12.5%;
4890 height: 1px;
4891 flex: 1 0 100%;
4894 /*==============*/
4895 /* SUBLEVEL NAV */
4896 /*==============*/
4898 .sublevel-nav .sublevel-item {
4899 border-color: #ddd;
4900 border-style: solid;
4901 border-width: 1px 1px 1px 0;
4902 color: #777;
4904 .sublevel-nav .sublevel-item:first-child {
4905 border-radius: 8px 0 0 8px;
4906 border-width: 1px;
4908 .sublevel-nav .sublevel-item:last-child {
4909 border-radius: 0 8px 8px 0;
4911 .sublevel-nav .sublevel-item:hover {
4912 background-color: #ddd;
4913 color: #000;
4914 text-decoration: none;
4916 .sublevel-nav .sublevel-item:active,
4917 .sublevel-nav .sublevel-item:disabled,
4918 .sublevel-nav span.sublevel-item {
4919 background-color: #ddd;
4920 border-color: #ddd;
4921 color: #000;
4922 text-shadow:
4923 0 -1px 0 #fff,
4924 0 0.5px 0.5px #000;
4925 transform: none;
4927 .sublevel-nav + #top-nav-bar {
4928 margin-top: 0;
4931 /*=====================*/
4932 /* SORT ORDER SELECTOR */
4933 /*=====================*/
4935 .sublevel-nav.sort .sublevel-item {
4936 font-feature-settings: 'smcp';
4938 .sublevel-nav.sort {
4939 padding: 20px 0 0 0;
4940 border-radius: 8px;
4941 box-shadow: 0 20px #bbb inset;
4943 .sublevel-nav.sort::before {
4944 text-transform: uppercase;
4945 font-weight: 600;
4946 color: #444;
4947 text-shadow: 0.5px 0.5px 0 #fff;
4948 line-height: 2;
4950 .sublevel-nav.sort .sublevel-item {
4951 padding: 6px 6px 4px 6px;
4952 text-transform: uppercase;
4953 border: 1px solid #aaa;
4956 /* Vertical */
4957 .sublevel-nav.sort .sublevel-item:first-child {
4958 border-radius: 6px 6px 0 0;
4960 .sublevel-nav.sort .sublevel-item:last-child {
4961 border-radius: 0 0 6px 6px;
4963 .sublevel-nav.sort .sublevel-item:nth-child(n+2) {
4964 border-width: 0 1px 1px 1px;
4967 /* Horizontal */
4968 .sublevel-nav.sort.horizontal .sublevel-item:first-child {
4969 border-radius: 6px 0 0 6px;
4971 .sublevel-nav.sort.horizontal .sublevel-item:last-child {
4972 border-radius: 0 6px 6px 0;
4974 .sublevel-nav.sort.horizontal .sublevel-item:nth-child(n+2) {
4975 border-width: 1px 1px 1px 0;
4978 .sublevel-nav.sort .sublevel-item:active {
4979 border-color: #aaa;
4982 /*================*/
4983 /* WIDTH SELECTOR */
4984 /*================*/
4985 /* THEME SELECTOR */
4986 /*================*/
4988 #width-selector button,
4989 #theme-selector button {
4990 box-shadow:
4991 0 0 0 4px #fffffa inset,
4992 0 0 0 5px #bbb inset;
4994 #width-selector button:hover,
4995 #width-selector button.selected,
4996 #theme-selector button:hover,
4997 #theme-selector button.selected {
4998 box-shadow:
4999 0 0 0 1px #bbb inset,
5000 0 0 0 4px #fffffa inset,
5001 0 0 0 5px #bbb inset;
5004 #theme-selector button::before {
5005 font-size: 0.9375em;
5006 padding: 6px;
5007 font-weight: 300;
5008 color: #bbb;
5009 background-color: #fff;
5011 #theme-selector button:hover::before,
5012 #theme-selector button.selected::before {
5013 color: #444;
5015 #width-selector button::after {
5016 color: #aaa;
5017 font-weight: 300;
5020 /*======================*/
5021 /* THEME TWEAKER TOGGLE */
5022 /*======================*/
5024 #theme-tweaker-toggle button {
5025 color: #777;
5028 /*=================*/
5029 /* QUICKNAV WIDGET */
5030 /*=================*/
5032 #quick-nav-ui a {
5033 box-shadow: 0 0 0 1px #ccc inset;
5034 color: #bbb;
5035 border-radius: 4px;
5037 #quick-nav-ui a[href='#bottom-bar'] {
5038 line-height: 1.8;
5040 #quick-nav-ui a:active {
5041 transform: scale(0.9);
5043 #quick-nav-ui a[href='#comments'].no-comments {
5044 opacity: 0.4;
5045 color: #bbb;
5047 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5048 #quick-nav-ui a:hover {
5049 background-color: #f0f0eb;
5050 color: #333;
5051 text-shadow: 0px 0px 0.5px #333;
5053 #quick-nav-ui a:focus:not(:hover) {
5054 transform: none;
5055 text-shadow: none;
5059 /*======================*/
5060 /* NEW COMMENT QUICKNAV */
5061 /*======================*/
5063 #new-comment-nav-ui .new-comments-count,
5064 #new-comment-nav-ui .new-comments-count::after {
5065 color: #999;
5066 font-weight: normal;
5068 #new-comment-nav-ui .new-comments-count {
5069 text-shadow: 0.5px 0.5px 0 #fff;
5071 #new-comment-nav-ui .new-comment-sequential-nav-button {
5072 color: #999;
5074 #new-comment-nav-ui .new-comment-sequential-nav-button:disabled {
5075 color: #e6e6e6;
5076 text-shadow: none;
5078 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5079 #new-comment-nav-ui .new-comments-count:hover {
5080 text-shadow:
5081 0 0 1px #fff,
5082 0 0 3px #fff,
5083 0 0 5px #fff,
5084 0 0 8px #fff,
5085 0.5px 0.5px 0 #fff;
5087 #new-comment-nav-ui .new-comment-sequential-nav-button:focus {
5088 color: #d00;
5092 /*=================*/
5093 /* HNS DATE PICKER */
5094 /*=================*/
5096 #hns-date-picker span {
5097 color: #777;
5098 text-shadow: 0.5px 0.5px 0 #fff;
5099 font-weight: 600;
5101 #hns-date-picker input[type='text'] {
5103 #hns-date-picker input {
5104 border: 1px solid #bbb;
5105 color: #888;
5106 background-color: transparent;
5108 #hns-date-picker input:hover,
5109 #hns-date-picker input:focus {
5110 color: #666;
5112 #hns-date-picker span {
5113 color: #aaa;
5116 /*======================*/
5117 /* ANTI-KIBITZER TOGGLE */
5118 /*======================*/
5120 #anti-kibitzer-toggle button::before,
5121 #anti-kibitzer-toggle button::after {
5122 background-color: #bbb;
5123 -webkit-background-clip: text;
5124 color: transparent;
5125 text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
5127 #anti-kibitzer-toggle button:hover::before,
5128 #anti-kibitzer-toggle button:hover::after {
5129 background-color: #777;
5132 /*======================*/
5133 /* TEXT SIZE ADJUSTMENT */
5134 /*======================*/
5136 #text-size-adjustment-ui button {
5137 color: #777;
5139 #text-size-adjustment-ui button.default {
5140 font-weight: 600;
5142 #text-size-adjustment-ui button:disabled:hover {
5143 text-shadow: none;
5145 #text-size-adjustment-ui::after {
5146 color: #aaa;
5147 font-weight: 300;
5150 /*=============================*/
5151 /* COMMENTS VIEW MODE SELECTOR */
5152 /*=============================*/
5154 #comments-view-mode-selector a {
5155 color: #777;
5158 /*==========*/
5159 /* ARCHIVES */
5160 /*==========*/
5162 .archive-nav {
5163 border: 1px solid transparent;
5165 .archive-nav *[class^='archive-nav-item'] {
5166 border-style: solid;
5167 border-color: #ddd;
5168 border-width: 1px 0 1px 1px;
5170 .archive-nav div[class^='archive-nav-']:nth-of-type(2) *[class^='archive-nav-item'] {
5171 border-top-width: 0;
5172 border-bottom-width: 0;
5174 .archive-nav div[class^='archive-nav-']:last-of-type *[class^='archive-nav-item'] {
5175 border-bottom-width: 1px;
5177 .archive-nav *[class^='archive-nav-item']:last-child {
5178 border-right-width: 1px;
5180 .archive-nav span[class^='archive-nav-item'] {
5181 font-weight: bold;
5182 background-color: #ddd;
5185 .archive-nav a:link,
5186 .archive-nav a:visited {
5187 color: #999;
5188 font-weight: 300;
5190 .archive-nav a:hover,
5191 .archive-nav span[class^='archive-nav-item'] {
5192 font-weight: 300;
5193 background-color: #f0f0eb;
5194 color: #333;
5195 text-shadow: 0px 0px 0.5px #333;
5197 .archive-nav a:active {
5198 transform: scale(0.9);
5200 .archive-nav a:focus:not(:hover) {
5201 transform: none;
5203 .archive-nav a.archive-nav-item-day:hover {
5204 background-color: #ddd;
5207 /*==========*/
5208 /* LISTINGS */
5209 /*==========*/
5211 h1.listing {
5212 margin: 0.7em 20px 0.1em 20px;
5213 max-width: calc(100% - 40px);
5214 font-family: 'Proxima Nova', sans-serif, 'Font Awesome';
5215 text-align: center;
5218 h1.listing a[href^="http"] {
5219 font-size: 0.6875em;
5220 top: 6px;
5221 color: #888;
5223 h1.listing a[href^='/posts'] {
5224 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5225 text-decoration: none;
5226 color: #690010;
5227 font-weight: 500;
5228 text-shadow: 0.5px 0.5px 0.5px #de7069;
5229 padding: 0 2px 1px 1px;
5232 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5233 h1.listing a[href^='/posts'] {
5234 max-width: calc(100% - 60px);
5235 padding: 2px 2px 1px 1px;
5237 h1.listing a:hover,
5238 h1.listing a:focus {
5239 text-shadow:
5240 0px 0px 0.5px #ff987b,
5241 0px 0px 1.5px #c05651,
5242 0.5px 0.5px 0.5px #de7069;
5243 background-color: rgba(255,255,250,0.85);
5245 h1.listing:focus-within::before {
5246 display: inline-block;
5247 vertical-align: top;
5248 position: relative;
5249 left: -0.125em;
5250 top: 1px;
5251 color: #690010;
5253 h1.listing a[href^="http"]:hover {
5254 color: #690010;
5255 text-shadow:
5256 0.5px 0.5px 0 #fff,
5257 -0.5px -0.5px 0 #fff,
5258 0 0 2px #fff,
5259 0 0 3px #00c;
5263 h1.listing .edit-post-link {
5264 padding: 5px 3px 36px 0.5em;
5265 top: 0;
5266 right: 0;
5268 h1.listing .edit-post-link:hover {
5269 text-decoration: none;
5271 #content.user-page h1.listing .edit-post-link {
5272 background-color: #fff;
5275 /*===================*/
5276 /* LISTING POST-META */
5277 /*===================*/
5279 h1.listing + .post-meta {
5280 justify-content: center;
5282 h1.listing + .post-meta > * {
5283 line-height: 1.5;
5285 h1.listing + .post-meta .post-section {
5286 order: 1;
5288 h1.listing + .post-meta .post-section::before {
5289 left: unset;
5291 h1.listing + .post-meta .link-post-domain {
5292 order: 2;
5293 flex-basis: 100%;
5296 /*============*/
5297 /* USER PAGES */
5298 /*============*/
5300 #content.user-page h1.page-main-heading {
5301 border-bottom: 1px solid #ccc;
5304 #content.user-page #top-nav-bar {
5305 margin: -0.5em 0 0.25em 0;
5306 grid-column: 1 / span 3;
5309 #content.user-page h1.listing {
5310 padding: 6px 6px 0 6px;
5311 max-width: 100%;
5312 margin: 1rem 0 0 0;
5314 #content.own-user-page h1.listing,
5315 h1.listing.own-post-listing {
5316 padding-right: 36px;
5318 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5319 #content.user-page h1.listing:focus-within::before {
5320 top: -2px;
5323 #content.user-page h1.listing::after {
5324 content: "";
5325 display: block;
5326 position: absolute;
5327 top: 0;
5328 left: 0;
5329 width: 100%;
5330 height: calc(100% + 1.25em);
5331 box-shadow: 0px 0px 10px #555;
5333 #content.user-page h1.listing.link-post-listing::after {
5334 height: calc(100% + 2.125em);
5336 #content.user-page h1.listing + .post-meta {
5337 margin: 6px 6px 1.5rem 35px;
5339 #content.user-page h1.listing + .post-meta::after {
5340 display: none;
5343 #content.conversations-user-page h1.listing {
5344 padding: 8px 6px;
5345 font-size: 1.75rem;
5347 #content.conversations-user-page h1.listing + .post-meta {
5348 padding: 6px 4px;
5349 margin: 0;
5352 .user-stats .karma-total {
5353 font-weight: bold;
5356 /*===============*/
5357 /* CONVERSATIONS */
5358 /*===============*/
5360 #content.conversation-page h1.page-main-heading {
5361 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5364 /*============*/
5365 /* LOGIN PAGE */
5366 /*============*/
5368 .login-container form input[type='submit'] {
5369 font-weight: bold;
5370 background-color: #eee;
5371 border: 1px solid #ccc;
5373 .login-container form input[type='submit']:hover,
5374 .login-container form input[type='submit']:focus {
5375 background-color: #ddd;
5376 border: 1px solid #aaa;
5379 /* “Create account” form */
5381 #signup-form {
5382 background-color: #f3f3f3;
5383 border: 1px solid #ddd;
5385 #signup-form input[type='submit'] {
5386 background-color: #e4e4e4;
5387 border: 1px solid #ccc;
5389 #signup-form input[type='submit']:hover {
5390 background-color: #d8d8d8;
5391 border: 1px solid #aaa;
5394 /* Log in tip */
5396 .login-container .login-tip {
5397 border: 1px solid #eee;
5400 /* Message box */
5402 .error-box {
5403 border: 1px solid red;
5404 background-color: #faa;
5406 .success-box {
5407 border: 1px solid green;
5408 background-color: #afa;
5411 /*=====================*/
5412 /* PASSWORD RESET PAGE */
5413 /*=====================*/
5415 .reset-password-container input[type='submit'] {
5416 background-color: #e4e4e4;
5417 border: 1px solid #ccc;
5418 font-weight: bold;
5421 /*===================*/
5422 /* TABLE OF CONTENTS */
5423 /*===================*/
5425 .contents {
5426 font-family: 'Proxima Nova', sans-serif;
5427 margin-left: 1.5em;
5428 font-family: Garamond Premier Pro;
5429 min-width: unset;
5431 .contents-head {
5432 font-weight: bold;
5434 .contents-head::after {
5435 content: "";
5436 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
5437 display: block;
5438 margin: 0 auto 0.5em auto;
5439 width: 75%;
5440 height: 1px;
5442 .contents a::after {
5443 display: none;
5445 .post-body .contents ul {
5446 margin: 0 0.5em;
5447 padding: 0 1em;
5449 .post-body .contents a,
5450 .post-body .contents a:visited {
5451 color: #690010;
5452 font-weight: 600;
5454 .post-body .contents a:hover {
5455 color: #690010;
5456 text-shadow:
5457 0px 0px 0.5px #ff987b,
5458 0px 0px 1px #c05651;
5459 border: none;
5461 .post-body .contents li::before {
5462 color: #999;
5463 font-feature-settings: 'onum';
5466 /*==================*/
5467 /* POSTS & COMMENTS */
5468 /*==================*/
5470 .post-body,
5471 .comment-body {
5472 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5474 .post > h1:first-child {
5475 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5476 font-weight: 600;
5478 .post-body,
5479 .comment-body {
5480 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5481 font-weight: 500;
5482 line-height: 1.45;
5485 .post-body a,
5486 .post-body a:visited,
5487 .comment-body a,
5488 .comment-body a:visited {
5489 text-decoration: none;
5490 color: inherit;
5492 .post-body a:link::after,
5493 .post-body a:visited::after,
5494 .comment-body a:link::after,
5495 .comment-body a:visited::after {
5496 position: relative;
5497 content: "°";
5498 margin-left: 2px;
5499 margin-right: 1px;
5500 color: #933;
5502 .post-body a:hover,
5503 .comment-body a:hover {
5504 color: #999;
5505 border-bottom: 1px dotted #999;
5508 /*===========*/
5509 /* POST-META */
5510 /*===========*/
5512 .post-meta,
5513 h1.listing + .post-meta {
5514 text-align: center;
5515 font-weight: 300;
5517 .post-meta .post-section::before {
5518 color: #fff;
5519 top: -1px;
5520 text-shadow:
5521 1px 1px 0 #999,
5522 0 1px 0 #999,
5523 0 0 5px #999;
5524 margin: 0 0 0 0.5em;
5526 a.post-section:hover {
5527 text-decoration: none;
5529 .post-meta .post-section.alignment-forum::before {
5530 text-shadow:
5531 1px 1px 0 #b9bbff,
5532 0 1px 0 #b9bbff,
5533 0 0 5px #b9bbff;
5535 a.post-section.alignment-forum:hover::before {
5536 color: #e7e8ff;
5538 .post-meta > *,
5539 .comment-meta a {
5540 color: #999;
5542 .post-meta a:hover,
5543 .comment-meta a:hover {
5544 color: #333;
5545 text-shadow: 0px 0px 0.5px #333;=
5547 .bottom-post-meta {
5548 border-top: 1px solid #ddd;
5551 /*============*/
5552 /* LINK POSTS */
5553 /*============*/
5555 .post.link-post a.link-post-link {
5556 text-decoration: none;
5557 font-family: 'Proxima Nova', sans-serif;
5558 font-weight: 600;
5559 color: #77121a;
5561 .post.link-post a.link-post-link:hover {
5562 color: #942f2f;
5563 text-shadow:
5564 0px 0px 0.5px #ff987b,
5565 0px 0px 1.5px #c05651,
5566 0.5px 0.5px 0.5px #de7069;
5568 .post.link-post a.link-post-link:hover::before {
5569 color: #4879ec;
5570 text-shadow:
5571 0.5px 0.5px 0 #fff,
5572 -0.5px -0.5px 0 #fff,
5573 0 0 2px #fff,
5574 0 0 3px #00c;
5576 .post.link-post a.link-post-link:focus {
5577 text-shadow:
5578 0px 0px 0.5px #ff987b,
5579 0px 0px 1.5px #c05651,
5580 0.5px 0.5px 0.5px #de7069;
5583 /*=======*/
5584 /* POSTS */
5585 /*=======*/
5587 .post-body {
5588 font-size: 1.375rem;
5590 .post-page .post-meta::after {
5591 display: block;
5592 margin: 0.625em 0 0 0;
5593 font-size: 1.5rem;
5594 flex-basis: 100%;
5595 order: 2;
5597 .post-page .post-meta:first-of-type::after {
5598 content: "❦";
5600 .post-page .post-meta:last-of-type::after {
5601 content: "❖";
5602 font-size: 1.75rem;
5603 margin: 0.625em 0 0 0;
5605 .post-body {
5606 margin: 0;
5609 /*==========*/
5610 /* COMMENTS */
5611 /*==========*/
5613 #content > .comment-thread .comment-meta a.date:focus,
5614 #content > .comment-thread .comment-meta a.permalink:focus {
5615 color: #444;
5616 font-weight: normal;
5617 outline: 2px dotted #444;
5618 padding: 0 5px;
5619 position: relative;
5620 background-color: #fff;
5623 .comment-item {
5624 border: 1px solid transparent;
5627 .comment-item {
5628 box-shadow:
5629 0 0 3px #bbb,
5630 0 0 5px #bbb,
5631 0 0 7px #bbb,
5632 0 0 10px #bbb;
5634 .comment-body {
5635 font-size: 1.25rem;
5638 /*================================*/
5639 /* DEEP COMMENT THREAD COLLAPSING */
5640 /*================================*/
5642 .comment-item input[id^="expand"] + label::after {
5643 color: #888;
5644 font-weight: 600;
5646 .comment-item input[id^="expand"] + label:hover::after {
5647 color: #c00;
5649 .comment-item input[id^="expand"] + label:active::after,
5650 .comment-item input[id^="expand"] + label:focus::after{
5651 color: #c00;
5653 .comment-item input[id^="expand"]:checked ~ .comment-thread .comment-thread .comment-item {
5654 border-width: 1px 0 0 0;
5656 .comment-item input[id^="expand"] ~ .comment-thread {
5657 max-height: 39px;
5658 padding-top: 5px;
5661 /*==============*/
5662 /* COMMENT-META */
5663 /*==============*/
5665 .comment-meta {
5666 font-weight: 300;
5667 padding-top: 5px;
5668 padding-bottom: 4px;
5669 border-bottom: 1px dotted #bbb;
5672 .comment-meta .author {
5673 font-size: 1.125em;
5674 color: #666;
5675 font-weight: 600;
5677 .comment-item .author:not(.redacted).original-poster::after {
5678 opacity: 0.8;
5681 .comment-item .karma.active-controls::after,
5682 .comment-item .karma .karma-value::after,
5683 .post .karma.active-controls::after,
5684 .post .karma .karma-value::after {
5685 background-color: #fff;
5686 color: #777;
5687 box-shadow: 0 0 0 1px #ccc inset;
5688 border-radius: 4px;
5690 .comment-item .karma.active-controls::after,
5691 .post .karma.active-controls::after {
5692 padding: 6px;
5693 bottom: -46px;
5695 .comment-item .karma .karma-value::after,
5696 .post .karma .karma-value::after {
5697 padding: 2px 8px;
5698 top: -26px;
5699 min-width: 64px;
5702 /*====================*/
5703 /* ANTI-KIBITZER MODE */
5704 /*====================*/
5706 .author.redacted,
5707 .inline-author.redacted {
5708 opacity: 0.8;
5709 font-weight: 300;
5712 .karma-value.redacted {
5713 opacity: 0.5;
5716 .link-post-domain.redacted {
5717 opacity: 0.5;
5720 /*===========================*/
5721 /* COMMENT THREAD NAVIGATION */
5722 /*===========================*/
5724 a.comment-parent-link::after {
5725 display: none;
5727 a.comment-parent-link::before {
5728 color: #bbb;
5730 a.comment-parent-link:hover::before {
5731 color: #999;
5732 text-shadow: none;
5733 background-image: linear-gradient(to right, transparent 0%, #bbb 100%);
5734 background-repeat: no-repeat;
5735 box-shadow: 1px 0 0 0 #bbb;
5738 .comment-child-link::before {
5739 color: #ccc;
5742 .comment-item-highlight {
5743 box-shadow:
5744 0 0 2px #e7b200,
5745 0 0 3px #e7b200,
5746 0 0 5px #e7b200,
5747 0 0 7px #e7b200,
5748 0 0 10px #e7b200;
5749 border: 1px solid #e7b200;
5751 .comment-item-highlight-faint {
5752 box-shadow:
5753 0 0 2px #f8e7b5,
5754 0 0 3px #f8e7b5,
5755 0 0 5px #f8e7b5,
5756 0 0 7px #f8e7b5,
5757 0 0 10px #f8e7b5;
5758 border: 1px solid #f8e7b5;
5761 .comment-popup {
5762 background-color: #fff;
5765 /*====================*/
5766 /* COMMENT PERMALINKS */
5767 /*====================*/
5769 .comment-meta .permalink,
5770 .comment-meta .lw2-link,
5771 .individual-thread-page .comment-parent-link:empty {
5772 filter: grayscale(50%);
5774 .comment-meta .permalink:hover,
5775 .comment-meta .lw2-link:hover,
5776 .individual-thread-page .comment-parent-link:empty:hover {
5777 filter: unset;
5780 /*=======================*/
5781 /* COMMENTS COMPACT VIEW */
5782 /*=======================*/
5784 #comments-list-mode-selector button {
5785 box-shadow:
5786 0 0 0 4px #fff inset,
5787 0 0 0 5px #bbb inset;
5789 #comments-list-mode-selector button:hover,
5790 #comments-list-mode-selector button.selected {
5791 box-shadow:
5792 0 0 0 5px #bbb inset;
5794 #content.compact > .comment-thread .comment-item {
5795 max-height: 56px;
5797 #content.compact > .comment-thread .comment-item::after {
5798 color: #888;
5799 background: linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
5802 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
5803 #content.compact > .comment-thread .comment-item:hover .comment,
5804 #content.compact > .comment-thread .comment-item.expanded .comment {
5805 background-color: #fff;
5806 outline: 3px solid #888;
5808 #content.compact > .comment-thread .comment-item:hover .comment::before,
5809 #content.compact > .comment-thread .comment-item.expanded .comment::before {
5810 background-color: #fff;
5811 box-shadow:
5812 0 0 3px #fff,
5813 0 0 5px #fff,
5814 0 0 7px #fff,
5815 0 0 10px #fff,
5816 0 0 20px #fff,
5817 0 0 30px #fff,
5818 0 0 40px #fff;
5821 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
5822 #content.compact > .comment-thread.expanded .comment-item .comment {
5823 background-color: #fff;
5824 outline: 3px solid #888;
5826 #content.compact > .comment-thread.expanded .comment-item .comment::before {
5827 background-color: #fff;
5828 box-shadow:
5829 0 0 3px #fff,
5830 0 0 5px #fff,
5831 0 0 7px #fff,
5832 0 0 10px #fff,
5833 0 0 20px #fff,
5834 0 0 30px #fff,
5835 0 0 40px #fff;
5839 #content.user-page.compact > h1.listing {
5840 margin-top: 0.5rem;
5842 #content.user-page.compact > h1.listing + .post-meta {
5843 margin-bottom: 1rem;
5846 /*===========================*/
5847 /* HIGHLIGHTING NEW COMMENTS */
5848 /*===========================*/
5850 .new-comment::before {
5851 outline: 2px solid #5a5;
5852 box-shadow:
5853 0 0 6px -2px #5a5 inset,
5854 0 0 4px #5a5,
5855 0 0 6px #5a5;
5858 /*=================================*/
5859 /* COMMENT THREAD MINIMIZE BUTTONS */
5860 /*=================================*/
5862 .comment-minimize-button {
5863 color: #ccc;
5865 .comment-minimize-button:hover {
5866 color: #aaa;
5868 .comment-minimize-button::after {
5869 font-family: 'Proxima Nova', sans-serif;
5870 color: #777;
5872 .comment-minimize-button.maximized::after {
5873 color: #ccc;
5876 /*=================================*/
5877 /* INDIVIDUAL COMMENT THREAD PAGES */
5878 /*=================================*/
5880 .individual-thread-page > h1 a {
5881 color: #690010;
5883 .individual-thread-page > h1 a:hover {
5884 text-shadow:
5885 0px 0px 0.5px #ff987b,
5886 0px 0px 1.5px #c05651,
5887 0.5px 0.5px 0.5px #de7069;
5890 .individual-thread-page > h1 {
5891 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
5894 /*==============*/
5895 /* VOTE BUTTONS */
5896 /*==============*/
5898 .upvote,
5899 .downvote {
5900 color: #bbb;
5901 position: relative;
5903 .vote::before {
5904 position: relative;
5905 z-index: 1;
5907 .upvote::before {
5908 content: "\F077";
5909 top: 1px;
5911 .downvote::before {
5912 content: "\F078";
5913 position: relative;
5914 left: -2px;
5916 .upvote:hover,
5917 .upvote.selected {
5918 text-shadow:
5919 0 0 0.5px #fff,
5920 0 0 8px #0f0;
5922 .downvote:hover,
5923 .downvote.selected {
5924 text-shadow:
5925 0 0 0.5px #fff,
5926 0 0 8px #f00;
5929 .vote::after {
5930 position: absolute;
5931 color: transparent;
5933 .vote:not(:hover)::after {
5934 text-shadow: none;
5936 .karma.waiting .vote.big-vote::after {
5937 color: transparent;
5939 .vote.big-vote::after,
5940 .vote:not(.big-vote).clicked-twice::after {
5941 color: inherit;
5943 .karma:not(.waiting) .vote.clicked-once::after {
5944 color: #bbb;
5947 .upvote::after {
5948 content: "\F325";
5949 left: 7px;
5950 bottom: 4px;
5952 .downvote::after {
5953 content: "\F322";
5954 left: 5px;
5955 top: 4px;
5957 @-moz-document url-prefix() {
5958 .upvote::after {
5959 bottom: 2px;
5960 left: 8px;
5962 .downvote::after {
5963 top: 3px;
5964 left: 6px;
5968 /*===========================*/
5969 /* COMMENTING AND POSTING UI */
5970 /*===========================*/
5972 #comments > .comment-controls {
5973 margin: 0;
5975 .posting-controls input[type='submit'] {
5976 background-color: #fff;
5977 border: 1px solid #aaa;
5978 font-weight: bold;
5980 .posting-controls input[type='submit']:hover,
5981 .posting-controls input[type='submit']:focus {
5982 background-color: #ddd;
5983 border: 1px solid #999;
5985 .comment + .comment-controls .action-button {
5986 font-weight: 300;
5989 .comment-controls .cancel-comment-button {
5990 font-weight: 600;
5991 color: #c00;
5992 text-shadow:
5993 0 0 1px #fff,
5994 0 0 2px #fff;
5996 .comment-controls .cancel-comment-button:hover {
5997 color: #f00;
6000 .new-comment-button {
6001 font-weight: 600;
6004 .comment-controls .edit-button {
6005 color: #0b0;
6007 .comment-controls .edit-button:hover {
6008 color: #f00;
6011 .post-controls {
6012 margin: 0.5em -0.75em 0 0;
6014 .edit-post-link,
6015 .edit-post-link:visited {
6016 color: #090;
6019 .posting-controls textarea {
6020 font-family: 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6021 font-size: 1.25rem;
6022 font-weight: 500;
6023 color: #000;
6024 background-color: #fff;
6025 border-color: #aaa;
6026 box-shadow:
6027 0 0 0 1px #eee inset;
6029 .posting-controls textarea:focus {
6030 background-color: #ffd;
6031 border-color: #888;
6032 box-shadow:
6033 0 0 0 1px #ddf inset,
6034 0 0 0 1px #fff,
6035 0 0 0 2px #888;
6037 .posting-controls.edit-existing-post textarea:focus,
6038 .posting-controls form.edit-existing-comment textarea:focus {
6039 border-color: #090;
6040 box-shadow:
6041 0 0 0 1px #81ff7f inset,
6042 0 0 0 1px #fff,
6043 0 0 0 2px #090;
6046 /* GUIEdit buttons */
6048 .guiedit-buttons-container {
6049 background-image: linear-gradient(to bottom, #fff 0%, #ddf 50%, #ccf 75%, #aaf 100%);
6052 .posting-controls.edit-existing-post .guiedit-buttons-container button,
6053 .posting-controls form.edit-existing-comment .guiedit-buttons-container button {
6054 color: #050;
6056 .guiedit-buttons-container button {
6057 font-family: Font Awesome, 'Garamond Premier Pro', 'Georgia', 'Times New Roman', serif;
6060 .guiedit::after {
6061 font-family: 'Proxima Nova', sans-serif;
6062 color: #777;
6063 text-shadow: none;
6066 /* Markdown hints */
6068 #markdown-hints-checkbox + label {
6069 color: #888;
6071 #markdown-hints-checkbox + label:hover {
6072 color: #e00;
6074 .markdown-hints {
6075 border: 1px solid #c00;
6076 background-color: #ffa;
6079 /*================*/
6080 /* EDIT POST FORM */
6081 /*================*/
6083 #edit-post-form .link-post-checkbox + label::before {
6084 border-radius: 3px;
6085 border: 1px solid #ddd;
6086 color: #777;
6088 #edit-post-form .link-post-checkbox + label:hover,
6089 #edit-post-form .link-post-checkbox:focus + label {
6090 text-shadow:
6091 0 0 1px #fff,
6092 0 0 2px #fff,
6093 0 0 2.5px #aaa;
6095 #edit-post-form .link-post-checkbox + label:hover::before,
6096 #edit-post-form .link-post-checkbox:focus + label::before {
6097 border-color: #aaa;
6099 #edit-post-form .link-post-checkbox:checked + label::before {
6100 content: "\F00C";
6102 #edit-post-form input[type='radio'] + label {
6103 color: #777;
6104 border-color: #ddd;
6106 #edit-post-form input[type='radio'][value='all'] + label {
6107 border-radius: 8px 0 0 8px;
6108 border-width: 1px;
6110 #edit-post-form input[type='radio'][value='drafts'] + label {
6111 border-radius: 0 8px 8px 0;
6113 #edit-post-form input[type='radio'] + label:hover,
6114 #edit-post-form input[type='radio']:focus + label {
6115 background-color: #ddd;
6116 color: #000;
6118 #edit-post-form input[type='radio']:focus + label {
6119 color: #000;
6120 box-shadow:
6121 0 0 0 1px #aaa;
6123 #edit-post-form input[type='radio']:checked + label {
6124 background-color: #ddd;
6125 border-color: #ddd;
6126 color: #000;
6127 text-shadow:
6128 0 -1px 0 #fff,
6129 0 0.5px 0.5px #000;
6132 /*=======*/
6133 /* LINKS */
6134 /*=======*/
6137 text-decoration: none;
6138 color: #888;
6140 a:visited {
6141 color: #888;
6144 /*=========*/
6145 /* BUTTONS */
6146 /*=========*/
6148 button,
6149 input[type='submit'] {
6150 color: #888;
6153 button:active,
6154 input[type='submit']:active {
6155 color: #f00;
6156 transform: scale(0.9);
6158 .button:visited {
6159 color: #888;
6161 .button:active {
6162 transform: scale(0.9);
6164 @-moz-document url-prefix() {
6165 .button:active {
6166 transform: none;
6169 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6170 button:hover,
6171 input[type='submit']:hover,
6172 button:focus,
6173 input[type='submit']:focus {
6174 color: #333;
6175 text-shadow: 0px 0px 0.5px #333;
6178 .button:hover {
6179 color: #333;
6180 text-shadow: 0px 0px 0.5px #333;
6181 text-decoration: none;
6183 .button:focus:not(:hover) {
6184 transform: none;
6188 /*==========*/
6189 /* HEADINGS */
6190 /*==========*/
6192 .post-body h1,
6193 .post-body h2,
6194 .post-body h3,
6195 .post-body h4,
6196 .post-body h5,
6197 .post-body h6,
6198 .comment-body h1,
6199 .comment-body h2,
6200 .comment-body h3,
6201 .comment-body h4,
6202 .comment-body h5,
6203 .comment-body h6 {
6204 margin: 1.5em 0 0.25em 0;
6206 .post-body h4,
6207 .comment-body h4 {
6208 font-size: 1.15em;
6210 .post-body h3,
6211 .comment-body h3 {
6212 font-variant: small-caps;
6213 font-size: 1.3em;
6215 .post-body h2,
6216 .comment-body h2 {
6217 font-style: italic;
6218 font-size: 1.5em;
6220 .post-body h1,
6221 .comment-body h1 {
6222 font-size: 1.9em;
6223 border: none;
6225 .post-body h1 {
6226 text-align: center;
6227 margin: 1em 0 0 0;
6229 .post-body h2 {
6230 margin: 1em 0 0 0;
6232 .post-body h1::before {
6233 content: "❦";
6234 display: block;
6235 margin: 0 auto 1em auto;
6236 font-size: 0.625em;
6237 font-weight: normal;
6239 .post-body h2::before {
6240 content: "☙";
6241 text-align: center;
6242 display: block;
6243 margin: 0 auto 0.5em auto;
6244 font-weight: normal;
6245 font-style: normal;
6247 .post-body h1:first-child::before,
6248 .post-body .contents + h1::before,
6249 .post-body h2:first-child::before,
6250 .post-body .contents + h2::before {
6251 content: "";
6254 /*========*/
6255 /* QUOTES */
6256 /*========*/
6258 blockquote {
6259 border-left: 5px solid #ccc;
6262 /*========*/
6263 /* IMAGES */
6264 /*========*/
6266 #content img {
6267 border: 1px solid #ccc;
6269 #content img[style^='float'] {
6270 border: 1px solid transparent;
6272 #content img[src$='.svg'] {
6273 border: none;
6275 #content figure img {
6276 border: 1px solid #000;
6278 #content figure img[src$='.svg'] {
6279 border: none;
6282 /*========*/
6283 /* TABLES */
6284 /*========*/
6286 .post-body table,
6287 .comment-body table,
6288 .post-body table th,
6289 .post-body table td,
6290 .comment-body table th,
6291 .comment-body table td {
6292 border: 1px solid #ddd;
6295 /*======*/
6296 /* MISC */
6297 /*======*/
6299 hr {
6300 height: 1px;
6301 background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
6304 code,
6305 pre {
6306 font-family: Triplicate Code, Courier, Courier New, monospace;
6307 font-size: 0.8125em;
6310 pre {
6311 border: 1px solid #ceccc3;
6312 background-color: #f6f4ea;
6313 border-radius: 4px;
6314 padding: 0 1px;
6317 input[type='text'],
6318 input[type='search'],
6319 input[type='password'] {
6320 background-color: transparent;
6321 border: 1px solid #ccc;
6322 color: #000;
6324 input[type='text']:focus,
6325 input[type='search']:focus,
6326 input[type='password']:focus {
6327 background-color: #ffd;
6328 border: 1px solid #bbb;
6329 box-shadow: 0 0 1px #bbb;
6332 select {
6333 color: #000;
6336 /*============*/
6337 /* ABOUT PAGE */
6338 /*============*/
6340 .about-page u {
6341 background-color: #e6e6e6;
6342 text-decoration: none;
6343 box-shadow:
6344 0 -1px 0 0 #000 inset,
6345 0 -3px 1px -2px #000 inset;
6346 padding: 0 1px;
6349 #content.about-page .accesskey-table {
6350 font-family: 'Proxima Nova', sans-serif;
6351 border-color: #ddd;
6354 #content.about-page img {
6355 border: 1px solid #000;
6358 /*========================*/
6359 /* QUALIFIED HYPERLINKING */
6360 /*========================*/
6362 #aux-about-link a {
6363 color: #777;
6365 #aux-about-link a:hover {
6366 opacity: 1.0;
6369 .qualified-linking label {
6370 color: #bbb;
6372 .qualified-linking label:hover {
6373 color: #333;
6374 text-shadow: 0px 0px 0.5px #333;
6377 .qualified-linking-toolbar {
6378 border: 1px solid #000;
6379 background-color: #fff;
6381 .qualified-linking-toolbar a {
6382 background-color: #eee;
6383 border: 1px solid #ccc;
6384 border-radius: 4px;
6386 .qualified-linking-toolbar a:visited {
6387 color: #888;
6389 .qualified-linking-toolbar a:hover {
6390 text-decoration: none;
6391 background-color: #ddd;
6393 .qualified-linking label::after {
6394 background-color: #fffffa;
6395 opacity: 0.8;
6398 /*======*/
6399 /* MATH */
6400 /*======*/
6402 .mathjax-block-container::-webkit-scrollbar {
6403 height: 12px;
6404 background-color: #f6f6ff;
6405 border-radius: 6px;
6406 border: 1px solid #ddf;
6408 .mathjax-block-container::-webkit-scrollbar-thumb {
6409 background-color: #dde;
6410 border-radius: 6px;
6411 border: 1px solid #cce;
6413 .mathjax-inline-container::-webkit-scrollbar {
6414 height: 8px;
6415 background-color: #f6f6ff;
6416 border-radius: 4px;
6417 border: 1px solid #ddf;
6419 .mathjax-inline-container::-webkit-scrollbar-thumb {
6420 background-color: #dde;
6421 border-radius: 4px;
6422 border: 1px solid #cce;
6425 /*=================*/
6426 /* ALIGNMENT FORUM */
6427 /*=================*/
6429 #content.alignment-forum-index-page {
6430 background-color: #f4f5ff;
6431 border-color: #bbb;
6432 border-style: solid;
6433 border-width: 0 1px;
6435 #content.alignment-forum-index-page::before {
6436 grid-column: 1;
6437 font-family: "Concourse SmallCaps";
6438 font-weight: 600;
6439 background-color: #7f85b2;
6440 color: transparent;
6441 -webkit-background-clip: text;
6442 text-shadow:
6443 rgba(255,255,255,0.5) 0px 3px 3px;
6445 @media only screen and (hover: hover), not screen and (-moz-touch-enabled) {
6446 #content.alignment-forum-index-page h1.listing a:hover,
6447 #content.alignment-forum-index-page h1.listing a:focus {
6448 background-color: rgba(244,245,255,0.85);
6452 /*====================*/
6453 /* FOR NARROW SCREENS */
6454 /*====================*/
6456 @media only screen and (max-width: 1440px) {
6457 #hns-date-picker {
6458 background-color: #fffffa;
6459 opacity: 1.0;
6462 @media only screen and (max-width: 1160px) {
6463 #theme-selector:hover::after {
6464 background-color: #bbb;
6465 width: calc(6em - 13px);
6468 @media only screen and (max-width: 1080px) {
6469 #text-size-adjustment-ui button {
6470 border: 1px solid #999;
6471 padding: 0 0 0 1px;
6472 border-radius: 50%;
6473 box-shadow:
6474 0 0 6px #999 inset,
6475 0 0 0 1px transparent;
6477 #theme-tweaker-toggle button {
6478 border: 1px solid #999;
6479 box-shadow:
6480 0 0 10px #999 inset,
6481 0 0 0 1px transparent;
6482 border-radius: 50%;
6483 transform: scale(0.8);
6486 @media only screen and (max-width: 1000px) {
6487 #theme-selector:hover::after {
6488 width: calc(6em - 9px);
6489 height: calc(100% - 5px);
6490 top: 3px;
6491 left: 100%;
6493 #text-size-adjustment-ui button {
6494 background-color: #ddd;
6496 #text-size-adjustment-ui button:hover {
6497 background-color: #eee;
6499 #theme-tweaker-toggle button {
6500 background-color: #ddd;
6504 /*========*/
6505 /* MOBILE */
6506 /*========*/
6508 @media only screen and (hover: none), only screen and (-moz-touch-enabled) {
6509 #ui-elements-container > div[id$='-ui-toggle'] button {
6510 color: #bbb;
6511 text-shadow:
6512 0 0 1px #fffffa,
6513 0 0 3px #fffffa,
6514 0 0 5px #fffffa,
6515 0 0 10px #fffffa,
6516 0 0 20px #fffffa,
6517 0 0 30px #fffffa;
6520 #theme-selector {
6521 background-color: #fffffa;
6522 box-shadow:
6523 0 0 0 1px #ccc,
6524 0 0 1px 3px #fffffa,
6525 0 0 3px 3px #fffffa,
6526 0 0 5px 3px #fffffa,
6527 0 0 10px 3px #fffffa,
6528 0 0 20px 3px #fffffa;
6529 border-radius: 8px;
6531 #theme-selector::before {
6532 color: #999;
6533 font-weight: 300;
6534 text-shadow: 0.5px 0.5px 0 #fff;
6536 #theme-selector button {
6537 background-color: #fffffa;
6538 border-radius: 8px;
6540 #theme-selector button::after {
6541 color: #777;
6542 max-width: calc(100% - 3.5em);
6543 overflow: hidden;
6544 text-overflow: ellipsis;
6546 #theme-selector button.selected::after {
6547 color: #222;
6548 text-shadow:
6549 0 -1px 0 #fff,
6550 0 0.5px 0.5px #000;
6552 #theme-selector .theme-selector-close-button {
6553 color: #fffffa;
6554 text-shadow:
6555 1px 1px 0 #ccc,
6556 0 0 8px #ccc;
6557 opacity: 1.0;
6560 #quick-nav-ui {
6561 background-color: #fffffa;
6563 #quick-nav-ui,
6564 #new-comment-nav-ui,
6565 #hns-date-picker {
6566 box-shadow:
6567 0 0 1px 3px #fffffa,
6568 0 0 3px 3px #fffffa,
6569 0 0 5px 3px #fffffa,
6570 0 0 10px 3px #fffffa,
6571 0 0 20px 3px #fffffa;
6573 #quick-nav-ui a::after,
6574 #new-comment-nav-ui::before {
6575 font-family: 'Proxima Nova', sans-serif;
6576 font-weight: bold;
6577 box-shadow:
6578 0 0 1px 0 #fffffa,
6579 0 0 3px 0 #fffffa,
6580 0 0 5px 0 #fffffa;
6581 background-color: #fffffa;
6582 border-radius: 4px;
6584 #quick-nav-ui,
6585 #new-comment-nav-ui {
6586 border-radius: 8px;
6588 #new-comment-nav-ui {
6589 background-color: #fffffa;
6590 border: 1px solid #ccc;
6592 #new-comment-nav-ui::before {
6593 color: #777;
6594 font-weight: 600;
6596 #new-comment-nav-ui .new-comment-sequential-nav-button {
6597 box-shadow: 0 0 0 1px #ccc;
6598 color: #777;
6600 #new-comment-nav-ui .new-comments-count {
6601 background-color: inherit;
6602 box-shadow: 0 -1px 0 0 #ccc;
6604 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-previous {
6605 border-radius: 7px 0 0 7px;
6607 #new-comment-nav-ui .new-comment-sequential-nav-button.new-comment-next {
6608 border-radius: 0 7px 7px 0;
6610 #new-comment-nav-ui button::after {
6611 font-family: 'Proxima Nova', sans-serif;
6614 /*****************************************/
6615 @media only screen and (max-width: 900px) {
6616 /*****************************************/
6617 h1.listing {
6618 line-height: 1;
6620 h1.listing + .post-meta .post-section::before {
6621 position: unset;
6623 h1.listing + .post-meta .post-section {
6624 overflow: visible;
6627 #secondary-bar .nav-inner {
6628 font-size: 1.125em;
6630 #secondary-bar .nav-item:not(#nav-item-search) .nav-inner {
6631 padding: 6px 10px;
6634 #top-nav-bar .page-number {
6635 padding-top: 11px;
6637 #top-nav-bar::after {
6638 margin: 0 auto;
6641 .archive-nav *[class^='archive-nav-item-'] {
6642 border-width: 1px !important;
6644 .archive-nav > *[class^='archive-nav-'] + *[class^='archive-nav-']::before {
6645 background-color: #bbb;
6648 .comment-item .comment-item {
6649 margin: 0.75em 3px 3px 6px;
6651 .comment-item .comment-item + .comment-item {
6652 margin: 1.5em 3px 3px 6px;
6655 .sublevel-nav .sublevel-item,
6656 .sublevel-nav .sublevel-item:first-child,
6657 .sublevel-nav .sublevel-item:last-child {
6658 border-width: 1px;
6659 border-radius: 8px;
6662 .contents {
6663 margin-left: auto;
6665 /*******************************************/
6666 } @media only screen and (max-width: 720px) {
6667 /*******************************************/
6668 /*******************************************/
6669 } @media only screen and (max-width: 520px) {
6670 /*******************************************/
6671 h1.listing {
6672 font-size: 1.5rem;
6673 margin: 18px 6px 4px 6px;
6674 max-width: calc(100% - 12px);
6676 h1.listing + .post-meta {
6677 margin: 4px 6px;
6679 h1.listing + .post-meta > * {
6680 line-height: 1.4;
6682 h1.listing a[href^='http'] {
6683 top: 4px;
6686 #content.user-page h1.listing::after {
6687 height: calc(100% + 2.375em);
6689 #content.user-page h1.listing.link-post-listing::after {
6690 height: calc(100% + 3.375em);
6692 #content.user-page h1.listing + .post-meta {
6693 margin-bottom: 1.5rem;
6696 #content.compact > .comment-thread .comment-item {
6697 max-height: 104px;
6699 #content.compact.user-page h1.listing {
6700 margin-top: 0.5rem;
6702 #content.compact.user-page h1.listing + .post-meta {
6703 margin-bottom: 0.75rem;
6706 .comment-body {
6707 font-size: 1.1875rem;
6708 line-height: 1.35;
6711 .textarea-container:focus-within .guiedit-mobile-auxiliary-button {
6712 padding: 5px 6px 6px 6px;
6713 font-weight: 600;
6715 .textarea-container:focus-within .guiedit-mobile-help-button.active {
6716 box-shadow:
6717 0 0 0 1px #c00,
6718 0 0 0 1px #c00 inset;
6719 color: #c00;
6720 border-color: transparent;
6722 .textarea-container:focus-within .guiedit-buttons-container {
6723 background-color: #fff;
6724 border-top: 1px solid #ddf;
6726 #content.conversation-page .textarea-container:focus-within::after {
6727 background-color: #fff;
6729 .textarea-container:focus-within .guiedit-mobile-auxiliary-button,
6730 .textarea-container:focus-within button.guiedit {
6731 border: 1px solid #bbb;
6732 border-radius: 6px;
6734 .markdown-hints::after {
6735 color: #090;
6738 #edit-post-form label[for='section'] {
6739 width: 4.3em;
6741 #edit-post-form input[name='title'],
6742 #edit-post-form input[name='url'] {
6743 max-width: calc(100% - 6.75em);
6745 #edit-post-form textarea {
6746 min-height: calc(100vh - 360px);