Guest User

Untitled

a guest
May 26th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 20.28 KB | None | 0 0
  1. /* MISC CSS
  2.    --------- */
  3.  
  4. .uploadCell img:not(.imgExpanded) {
  5.     max-width: 250px;
  6.     max-height: 250px;
  7.     height: initial;
  8. }
  9.  
  10. .multipleUploads .uploadCell:not(.expandedCell) {
  11.     max-width: 250px;
  12. }
  13.  
  14. /* Webkit Scrollbar Metrics */
  15. ::-webkit-scrollbar {
  16.     width: 9px;
  17.     height: 9px;
  18. }
  19.  
  20. ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {
  21.     display: block;
  22.     height: 0;
  23.     background-color: transparent;
  24. }
  25.  
  26. ::-webkit-scrollbar-track-piece {
  27.     -webkit-border-radius: 0;
  28.     -webkit-border-bottom-right-radius: 8px;
  29.     -webkit-border-bottom-left-radius: 8px;
  30. }
  31.  
  32. ::-webkit-scrollbar-thumb:vertical {
  33.     height: 50px;
  34.     -webkit-border-radius: 8px;
  35. }
  36.  
  37. ::-webkit-scrollbar-thumb:horizontal {
  38.     width:50px;
  39.     -webkit-border-radius:8px;
  40. }
  41.  
  42. #mainPanel {overflow-y: initial; } /* Move scrollbar to body element. */
  43.  
  44.  
  45.  
  46.  
  47. /* ========================================================================== */
  48. /* DEFAULT THEME
  49.    ------------- */
  50.  
  51. /* Basic Page Colors and Metrics
  52.    ----------------------------- */
  53.  
  54. body {
  55.     background: url('https://prolikewoah.com/.media/87c679e54cee0ab4f43e7b1e67d0aa7edf8ff6a2b66f16bcc725ba9cde6f4f9c.png') top repeat-x, #eef2ff;
  56.     color: black;
  57.     font-family: Arial, Helvetica, sans-serif;
  58.     font-size: 10pt;
  59. }
  60.  
  61. .topBoards a, #divLatestImages img, #divLatestPosts .latestPostCell,
  62.   .innerPost, .sideCatalogCell, .markedPost, .sideCatalogMarkedCell,
  63.   .catalogCell {
  64.     background-color: #D6DAF0;
  65. }
  66.  
  67. /* Highlighted posts. Make it subtle. */
  68. .markedPost, .sideCatalogMarkedCell {
  69.     background-color: #D5CEF8;
  70. }
  71.  
  72. a, .coloredIcon, .unhideButton, .embedButton, #selectedTab, #showFormsButton {
  73.     color: #34345C;
  74. }
  75.  
  76. a:hover, .coloredIcon:hover, .unhideButton:hover, .embedButton:hover, #selectedTab:hover, #showFormsButton:hover {
  77.     color: #DD0000;
  78. }
  79.  
  80. .glowOnHover:hover, a:hover { text-shadow: none; }
  81.  
  82. hr { border-color: #B7C5D9; }
  83.  
  84. .small {font-size: 80%; }
  85.  
  86.  
  87. /* Replies (and other things like them) backgrounds
  88.    ------------------------------------------------ */
  89. #divLatestPosts .latestPostCell, .innerPost, .sideCatalogCell, .markedPost, .sideCatalogMarkedCell, .catalogCell {
  90.     border-color: #B7C5D9;
  91.     border-width: 1px;
  92.     border-style: none solid solid none;
  93.     border-radius: 0px;
  94. }
  95.  
  96. .postInfo, .opHead, .divMessage, .panelUploads, .panelIp, .panelProxyIp, .contentOmissionIndicator, .labelOmission, .labelId, .panelASN {
  97.     font-size: 97.5%; /* 13px when body 10pt */
  98. }
  99.  
  100. .postCell {margin: 0.4em 0;}
  101.  
  102. /* Post information and other formatting
  103.    ------------------------------------- */
  104.  
  105. .title {
  106.     font-weight: normal;
  107. }
  108.  
  109. .title .coloredIcon {
  110.     font-weight: bold;
  111.     font-size: 90%;
  112. }
  113.  
  114. .title .linkName {
  115.     color: #34345C;
  116.     font-weight: bold;
  117.     text-decoration: underline; /* Fix for others */
  118. }
  119.  
  120. .title .linkName.noEmailName {
  121.     color: #117743;
  122.     text-decoration: none;
  123. }
  124.  
  125. .panelBacklinks { font-size: 76.9%; /* 10px when body 10pt */ }
  126.  
  127. .panelBacklinks a {
  128.     color: #34345c;
  129.     text-decoration: underline;
  130. }
  131.  
  132. .panelBacklinks a:not(:first-child) { margin-left: 5px; }
  133. .panelBacklinks a:first-child { margin-left: 2px; } /* less due to whitespace before */
  134.  
  135. .panelBacklinks a:hover { color: #DD0000; }
  136.  
  137. .labelSubject { color: #0F0C5D; }
  138.  
  139. .linkSelf, .linkQuote {
  140.     font-weight: normal;
  141.     color: #303030;
  142. }
  143.  
  144. .linkSelf:hover, .linkQuote:hover { color: red; }
  145.  
  146. /* Make hovering over filenames less annoying. Red is too much. */
  147. .uploadDetails .originalNameLink:hover { color: #004758; }
  148.  
  149. .divMessage .quoteLink { color: #d00; }
  150.  
  151. .divMessage a {
  152.     color: #34345C;
  153.     text-decoration: underline;
  154. }
  155. .divMessage a:hover { color: red; }
  156.  
  157. .greenText { color: #789922; }
  158. .redText { color: #AF0A0F; }
  159.  
  160. /* Stop theme colors breaking spoilers. */
  161. .spoiler:hover { background: black; color: white !important; }
  162. .spoiler a {
  163.     color: black !important;
  164.     text-decoration: underline;
  165. }
  166. .spoiler:hover a { color: white !important; }
  167.  
  168.  
  169. /* Navigation Bar
  170.    -------------- */
  171.  
  172. nav {
  173.     background-color: #D6DAF0;
  174.     border-color: #89A;
  175.     box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  176.     font-size: 80%;
  177. }
  178.  
  179.  
  180. /* Input elements and controls
  181.    --------------------------- */
  182.  
  183. input, select, textarea {
  184.   border: 1px solid #A9A9A9;
  185.   background: white;
  186.   color: black;
  187.   font-family: arial,helvetica,sans-serif;
  188.   font-size: 80%;
  189.   border-radius: 0;
  190. }
  191.  
  192. input[type="button"], input[type="submit"], button, .dropzone, .selectedCell {
  193.     border: 2px solid #c1c6da;
  194.     border-radius: 5px;
  195.     background: #e1e5f5;
  196.     color: #34345c;
  197.     padding-left: 0.25em;
  198.     font-family: Arial, Helvetica, sans-serif;
  199.     font-size: 80%;
  200.     font-weight: bold;
  201.     margin-top: 0.5em;
  202.     margin-bottom: 0.5em;
  203.     cursor: pointer;
  204. }
  205.  
  206. .dropzone, .selectedCell { border-radius: 0; }
  207.  
  208. .floatingMenu, #quick-reply table {
  209.     background: #E4E8FB;
  210.     box-shadow: 3px 3px 3px 0 rgba(0,0,0,.25);
  211. }
  212.  
  213. .modalDecorationPanel { background: #E4E8FB; } /* Report Form */
  214.  
  215. .extraMenu, .hideMenu { color: black; }
  216.  
  217. /* The dashing around the post form and various panels. */
  218. #newPostFieldset {
  219.     border: 1px dashed #B7C5D9;
  220. }
  221.  
  222. #quick-reply table, .modalDecorationPanel, .floatingMenu, #settingsFieldset, .reportFieldset {
  223.     border: 1px dashed #787a99;
  224. }
  225.  
  226. /* The tick/cross checkboxes would be green otherwise. */
  227. input.postingCheckbox[type="checkbox"] + label::before {
  228.     color: #7D66ED;
  229. }
  230.  
  231. /* A hopefully subtle focus ring for the text inputs. */
  232. #postingForm input:focus,
  233. #postingForm textarea:focus,
  234. .modalDecorationPanel input[type="text"]:focus,
  235. #settingsMenu input[type="text"]:focus,
  236. #settingsMenu textarea:focus {
  237.     box-shadow: 0px 0px 2px 0px #0911AE75;
  238. }
  239.  
  240. /* Mainly in settings menu */
  241. #selectedTab {
  242.     text-shadow: none;
  243.     font-weight: bold;
  244. }
  245.  
  246. #cssInput, #jsInput { font-size: 90%; }
  247.  
  248.  
  249. /* Posting Form
  250.    ------------ */
  251.  
  252. /* Left column labels of the form. */
  253. #postingForm th, .modalTableBody th {
  254.     background: #98E;
  255.     border: none;
  256.     font-size: 100%;
  257.     padding-left: 0.5em;
  258.     padding-right: 0.5em;
  259.     color: #303030;
  260.     border-radius: 0;
  261.     min-width: 80px;
  262. }
  263.  
  264. #postingTable textarea,
  265. #postingTable input[type="text"] {
  266.     font-size: 90%;
  267.     padding: 0.1em 0.3em;
  268. }
  269.  
  270. #fieldMessage { width: 300px; min-width: 300px; } /* Captcha is 300px. */
  271.  
  272. /* Make post form fields line up. */
  273. #postingTable td * { box-sizing: border-box; }
  274.  
  275. /* The little rules icon next to the link. */
  276. a.rules::after {
  277.     color: #7D66ED;
  278. }
  279.  
  280.  
  281. /* Board Heading
  282.    ------------- */
  283.  
  284. #labelDescription { color: #AF0A0F; }
  285.  
  286. #labelName {
  287.     font-weight: bold;
  288.     font-family: tahoma;
  289.     letter-spacing: -2px;
  290.     color: #AF0A0F;
  291.     margin: 0.25em 0 0 0;
  292. }
  293.  
  294.  
  295. /* Theme Misc
  296.    ------------- */
  297.  
  298. body::-webkit-scrollbar-track-piece { background-color: #c5c9e4; }
  299. body::-webkit-scrollbar-thumb { background-color: #8C8ABB; }
  300.  
  301.  
  302.  
  303. /* ========================================================================== */
  304. /* DARK THEME (CLEAR)
  305.    ------------------ */
  306.  
  307. /* Basic Page Colors and Metrics
  308.    ----------------------------- */
  309. body.theme_clear {
  310.     background: #2f2f2f;
  311.     color: #c5c8c6;
  312.     font-family: Arial, Helvetica, sans-serif;
  313.     font-size: 10pt;
  314. }
  315.  
  316. .theme_clear .topBoards a,
  317. .theme_clear #divLatestImages img,
  318. .theme_clear #divLatestPosts .latestPostCell,
  319. .theme_clear .innerPost,
  320. .theme_clear .sideCatalogCell,
  321. .theme_clear .markedPost,
  322. .theme_clear .sideCatalogMarkedCell,
  323. .theme_clear .catalogCell {
  324.     background-color: #2f343e;
  325. }
  326.  
  327. /* Highlighted posts. Make it subtle. */
  328. .theme_clear .markedPost,
  329. .theme_clear .sideCatalogMarkedCell {
  330.     background-color: #394156;
  331. }
  332.  
  333. .theme_clear a,
  334. .theme_clear .coloredIcon,
  335. .theme_clear .unhideButton,
  336. .theme_clear .embedButton,
  337. .theme_clear #selectedTab,
  338. .theme_clear #showFormsButton {
  339.     color: #81a2be;
  340. }
  341.  
  342. .theme_clear a:hover,
  343. .theme_clear .coloredIcon:hover,
  344. .theme_clear .unhideButton:hover,
  345. .theme_clear .embedButton:hover,
  346. .theme_clear #selectedTab:hover,
  347. .theme_clear #showFormsButton:hover {
  348.     color: #c95f5f;
  349. }
  350.  
  351. .theme_clear .glowOnHover:hover,
  352. .theme_clear a:hover {
  353.     text-shadow: none;
  354. }
  355.  
  356. .theme_clear hr,
  357. .theme_clear #threadList hr {
  358.     border-color: #282a2e;
  359. }
  360.  
  361. .theme_clear .small {font-size: 80%; }
  362.  
  363.  
  364. /* Replies (and other things like them) backgrounds
  365.    ------------------------------------------------ */
  366.  
  367. .theme_clear .topBoards a,
  368. .theme_clear #divLatestImages img,
  369. .theme_clear #divLatestPosts .latestPostCell,
  370. .theme_clear .innerPost,
  371. .theme_clear .sideCatalogCell,
  372. .theme_clear .markedPost,
  373. .theme_clear .sideCatalogMarkedCell,
  374. .theme_clear .catalogCell {
  375.     border-radius: 7px 7px 7px 0;
  376.     border: none;
  377.     box-shadow: 1px 2px 4px rgba(0,0,0,.24);
  378. }
  379.  
  380. .theme_clear .postInfo,
  381. .theme_clear .opHead,
  382. .theme_clear .divMessage,
  383. .theme_clear .panelUploads,
  384. .theme_clear .panelIp,
  385. .theme_clear .panelProxyIp,
  386. .theme_clear .contentOmissionIndicator,
  387. .theme_clear .labelOmission,
  388. .theme_clear .labelId,
  389. .theme_clear .panelASN {
  390.     font-size: 100%;
  391. }
  392.  
  393. .theme_clear .postCell {
  394.     padding-bottom: 4px;
  395.     margin: 0.4em 0;
  396. }
  397.  
  398.  
  399. /* Post information and other formatting
  400.    ------------------------------------- */
  401.  
  402. .theme_clear .title a,
  403. .theme_clear .title .coloredIcon {
  404.     color: #5f89ac;
  405. }
  406.  
  407. .theme_clear .title a:not(.linkName):hover,
  408. .theme_clear .title .coloredIcon:hover {
  409.     color: #6B9BC2;
  410. }
  411.  
  412. .theme_clear .title {
  413.     font-size: 90%;
  414.     font-weight: normal;
  415. }
  416.  
  417. .theme_clear .title .coloredIcon {
  418.     font-weight: bold;
  419.     font-size: 90%;
  420. }
  421.  
  422. .theme_clear .title .linkName {
  423.     color: #bd8f8f;
  424.     font-weight: bold;
  425.     text-decoration: underline;
  426. }
  427.  
  428. .theme_clear .title .linkName.noEmailName {
  429.     color: #c1b8b8;
  430.     text-decoration: none;
  431. }
  432.  
  433. .theme_clear .labelOmission {
  434.     color: #c1b8b8;
  435.     font-size: 90%;
  436. }
  437.  
  438. .theme_clear .panelBacklinks { font-size: 80%; }
  439.  
  440. .theme_clear .panelBacklinks a { text-decoration: none; }
  441.  
  442. .theme_clear .labelSubject { color: #ce52c9; }
  443.  
  444. .theme_clear .linkSelf, .theme_clear .linkQuote { font-weight: normal; }
  445.  
  446. .theme_clear .uploadDetails { font-size: 90%; }
  447.  
  448. .theme_clear .uploadDetails .hideMobile,
  449. .theme_clear .uploadDetails .sizeLabel,
  450. .theme_clear .uploadDetails .dimensionLabel,
  451. .theme_clear .uploadDetails .originalNameLink { font-size: 80%; }
  452.  
  453. /* Make hovering over filenames less annoying. Red is too much. */
  454. .theme_clear .uploadDetails .originalNameLink:hover { color: #92B6D5; }
  455.  
  456. .theme_clear .divMessage a { text-decoration: none; } /* Undo Yotsuba B Style */
  457. .theme_clear .divMessage a { color: #5f89ac; }
  458. .theme_clear .divMessage a:hover { color: #6B9BC2; }
  459.  
  460. .theme_clear .redText { color: #DD293F; }
  461.  
  462. .theme_clear .greenText { color: #b5bd68; }
  463.  
  464. .theme_clear .orangeText { color: #E0727F; }
  465.  
  466. .theme_clear .spoiler:hover { color: #c5c8c6; background: #00000040; }
  467.  
  468.  
  469. /* Navigation Bar
  470.    -------------- */
  471.  
  472. .theme_clear nav {
  473.     background-color: #423756;
  474.     border: none;
  475.     border-top: 3px solid #2F2F2F;
  476.     font-size: 80%;
  477.     box-shadow: none;
  478. }
  479.  
  480.  
  481. /* Input elements and controls
  482.    --------------------------- */
  483.  
  484. .theme_clear input,
  485. .theme_clear select,
  486. .theme_clear textarea {
  487.     border: 1px double #282830;
  488.     background: #3D3E42;
  489.     color: #BDBDBD;
  490.     font-family: Arial, Helvetica, sans-serif;
  491.     font-size: 80%;
  492. }
  493.  
  494. .theme_clear input[type="button"],
  495. .theme_clear input[type="submit"],
  496. .theme_clear button,
  497. .theme_clear .dropzone,
  498. .theme_clear .selectedCell {
  499.     border: 3px double #282830;
  500.     border-radius: 5px;
  501.     background: #34353C;
  502.     color: #ABABAB;
  503.     padding-left: 0.25em;
  504.     font-family: Arial, Helvetica, sans-serif;
  505.     font-size: 80%;
  506.     font-weight: bold;
  507.     margin-top: 0.5em;
  508.     margin-bottom: 0.5em;
  509.     cursor: pointer;
  510. }
  511.  
  512. .theme_clear .dropzone,
  513. .theme_clear .selectedCell { border-radius: 0; }
  514.  
  515. .theme_clear .floatingMenu,
  516. .theme_clear #quick-reply table {
  517.     background: #30343C;
  518.     box-shadow: 3px 3px 3px 0 rgba(0,0,0,.5);
  519. }
  520.  
  521. .theme_clear .modalDecorationPanel { background: #404757; }
  522.  
  523. .theme_clear .extraMenu,
  524. .theme_clear .hideMenu {
  525.     color: #c5c8c6;
  526. }
  527.  
  528. /* The dashing around the post form and various panels. */
  529. .theme_clear #newPostFieldset,
  530. .theme_clear #quick-reply table,
  531. .theme_clear .modalDecorationPanel,
  532. .theme_clear .floatingMenu,
  533. .theme_clear #settingsFieldset,
  534. .theme_clear .reportFieldset {
  535.     border: 1px dashed #181818;
  536. }
  537.  
  538. /* The tick/cross checkboxes would be green otherwise. */
  539. .theme_clear input.postingCheckbox[type="checkbox"] + label::before {
  540.     color: #81a2be;
  541. }
  542.  
  543. /* A hopefully subtle focus ring for the text inputs. */
  544. .theme_clear #postingForm input:focus,
  545. .theme_clear #postingForm textarea:focus,
  546. .theme_clear .modalDecorationPanel input[type="text"]:focus,
  547. .theme_clear #settingsMenu input[type="text"]:focus,
  548. .theme_clear #settingsMenu textarea:focus {
  549.     box-shadow: 0px 0px 5px 0px #004F91;
  550. }
  551.  
  552. /* Mainly in settings menu */
  553. .theme_clear #selectedTab {
  554.     text-shadow: none;
  555.     font-weight: bold;
  556. }
  557.  
  558. .theme_clear #cssInput,
  559. .theme_clear #jsInput {
  560.     font-size: 90%;
  561. }
  562.  
  563.  
  564. /* Posting Form
  565.    ------------ */
  566.  
  567. /* Left column labels of the form. */
  568. .theme_clear #postingForm th,
  569. .theme_clear .modalTableBody th {
  570.     background: #1D1D21;
  571.     border:1px solid #000;
  572.     font-size: 90%;
  573.     padding-left: 0.5em;
  574.     padding-right: 0.5em;
  575.     color: #c5c8c6; /* Undo Yotsuba B Style */
  576. }
  577.  
  578. .theme_clear #postingTable textarea,
  579. .theme_clear #postingTable input[type="text"] {
  580.     font-size: 90%;
  581.     padding: 0.1em 0.3em;
  582. }
  583.  
  584. /* The text inputs need a width adjustment because the cols attribute is
  585.    dependant on the font metrics.
  586.    The JS can override this if the user adjusts the posting form width. */
  587. .theme_clear #fieldMessage { width: 265px; }
  588. .theme_clear #newPostFieldset { width: 30em; }
  589.  
  590. /* The little rules icon next to the link. */
  591. .theme_clear a.rules::after {
  592.     color: #81a2be;
  593. }
  594.  
  595.  
  596. /* Board Heading
  597.    ------------- */
  598.  
  599. .theme_clear #labelName,
  600. .theme_clear #labelDescription {
  601.     color: #E0727F;
  602. }
  603.  
  604. .theme_clear #labelName {
  605.     font-weight: bold;
  606.     font-family: Arial, Helvetica, sans-serif;
  607.     letter-spacing: inherit;
  608.     margin: 0.25em 0 0 0;
  609. }
  610.  
  611. .theme_clear #favouriteButton::before {
  612.     font-family: Icons;
  613.     content: "☯";
  614.     margin-left: 0.5em;
  615.     cursor: pointer;
  616. }
  617.  
  618. .theme_clear .checkedFavouriteButton::before { color: red; }
  619.  
  620.  
  621. /* Theme Misc
  622.    ------------- */
  623.  
  624. body.theme_clear::-webkit-scrollbar-track-piece { background-color: #292929; }
  625. body.theme_clear::-webkit-scrollbar-thumb { background-color: #666; }
  626.  
  627.  
  628. /* ========================================================================== */
  629. /* Tomorrow Theme
  630.    -------------- */
  631.  
  632. body.theme_tomorrow {
  633.     background: #1d1f21;
  634.     color: #C5C8C6;
  635. }
  636.  
  637. .theme_tomorrow .topBoards a,
  638. .theme_tomorrow #divLatestImages img,
  639. .theme_tomorrow #divLatestPosts .latestPostCell,
  640. .theme_tomorrow .innerPost,
  641. .theme_tomorrow .sideCatalogCell,
  642. .theme_tomorrow .markedPost,
  643. .theme_tomorrow .sideCatalogMarkedCell,
  644. .theme_tomorrow .catalogCell {
  645.     background-color: #282a2e;
  646. }
  647.  
  648. .theme_tomorrow .markedPost,
  649. .theme_tomorrow .sideCatalogMarkedCell {
  650.     background-color: #1d1d21;
  651.     border: 1px solid #111;
  652. }
  653.  
  654. .theme_tomorrow a,
  655. .theme_tomorrow .coloredIcon,
  656. .theme_tomorrow .unhideButton,
  657. .theme_tomorrow .embedButton,
  658. .theme_tomorrow #selectedTab,
  659. .theme_tomorrow #showFormsButton {
  660.     color: #81a2be;
  661. }
  662.  
  663. .theme_tomorrow a:hover,
  664. .theme_tomorrow .coloredIcon:hover,
  665. .theme_tomorrow .unhideButton:hover,
  666. .theme_tomorrow .embedButton:hover,
  667. .theme_tomorrow #selectedTab:hover,
  668. .theme_tomorrow #showFormsButton:hover {
  669.     color: #5F89AC;
  670. }
  671.  
  672. .theme_tomorrow hr { border-color: #282a2e; }
  673. .theme_tomorrow .floatingMenu hr { border-color: #000; }
  674.  
  675. .theme_tomorrow #divLatestPosts .latestPostCell,
  676. .theme_tomorrow .innerPost,
  677. .theme_tomorrow .sideCatalogCell,
  678. .theme_tomorrow .markedPost,
  679. .theme_tomorrow .sideCatalogMarkedCell,
  680. .theme_tomorrow .catalogCell {
  681.     border-color: #282a2e;
  682. }
  683.  
  684. .theme_tomorrow .title .linkName { text-decoration: none; } /* Undo Yotsuba B Style */
  685.  
  686. .theme_tomorrow .title .linkName { color: #81a2be; }
  687. .theme_tomorrow .title .linkName:not(.noEmailName):hover { color: #5F89AC; }
  688.  
  689. .theme_tomorrow .title .linkName.noEmailName { color: #C5C8C6; }
  690.  
  691. .theme_tomorrow .panelBacklinks a {
  692.     color: #81a2be;
  693.     text-decoration: none;
  694. }
  695.  
  696. .theme_tomorrow .panelBacklinks a:hover { color: #5F89AC; }
  697.  
  698. .theme_tomorrow .labelSubject { color: #b294bb; }
  699.  
  700. .theme_tomorrow .linkSelf,
  701. .theme_tomorrow .linkQuote {
  702.     color: #C5C8C6;
  703. }
  704.  
  705. .theme_tomorrow .uploadDetails .originalNameLink:hover { color: #5F89AC; }
  706.  
  707. .theme_tomorrow .divMessage .quoteLink,
  708. .theme_tomorrow .divMessage a { text-decoration: none; } /* Undo Yotsuba B Style */
  709.  
  710. .theme_tomorrow .divMessage .quoteLink { color: #81a2be; }
  711. .theme_tomorrow .divMessage .quoteLink:hover { color: #5F89AC; }
  712.  
  713. .theme_tomorrow .divMessage a { color: #81a2be; }
  714. .theme_tomorrow .divMessage a:hover { color: #5F89AC; }
  715.  
  716. .theme_tomorrow .greenText { color: #adbd68; }
  717. .theme_tomorrow .redText { color: red; }
  718.  
  719. .theme_tomorrow nav {
  720.     background-color: #282a2e;
  721.     border-color: #111;
  722. }
  723.  
  724. .theme_tomorrow input[type="button"],
  725. .theme_tomorrow input[type="submit"],
  726. .theme_tomorrow button,
  727. .theme_tomorrow .dropzone,
  728. .theme_tomorrow .selectedCell {
  729.     border: 2px solid #111;
  730.     background: #353535;
  731.     color: #bcbcbc;
  732. }
  733.  
  734. .theme_tomorrow .floatingMenu,
  735. .theme_tomorrow #quick-reply table {
  736.     background: #282A2E;
  737. }
  738.  
  739. .theme_tomorrow .modalDecorationPanel { background: #383B42; }
  740.  
  741. .theme_tomorrow #newPostFieldset,
  742. .theme_tomorrow #quick-reply table,
  743. .theme_tomorrow .modalDecorationPanel,
  744. .theme_tomorrow .floatingMenu,
  745. .theme_tomorrow #settingsFieldset,
  746. .theme_tomorrow .reportFieldset {
  747.     border: 1px solid #000;
  748. }
  749.  
  750. .theme_tomorrow input.postingCheckbox[type="checkbox"] + label::before {
  751.     color: #81a2be;
  752. }
  753.  
  754. .theme_tomorrow #postingForm th,
  755. .theme_tomorrow .modalTableBody th {
  756.     background: #282A2E;
  757.     border: 1px solid #000;
  758.     color: #C5C8C6; /* Undo Yotsuba B Style */
  759. }
  760.  
  761. .theme_tomorrow a.rules::after {
  762.     color: #81a2be;
  763. }
  764.  
  765. .theme_tomorrow #labelDescription { color: #C5C8C6; }
  766.  
  767. .theme_tomorrow #labelName { color: #C5C8C6; }
  768.  
  769. body.theme_tomorrow::-webkit-scrollbar-track-piece { background-color: #292929; }
  770. body.theme_tomorrow::-webkit-scrollbar-thumb { background-color: #666; }
  771.  
  772. .theme_tomorrow .labelOmission { color: #707070; }
  773.  
  774. .theme_tomorrow .extraMenu,
  775. .theme_tomorrow .hideMenu {
  776.     color: #C5C8C6;
  777. }
  778.  
  779. /**************** Make Role Indicator Like ViChan ****************/
  780.  
  781. .labelRole { font-weight: normal; }
  782.  
  783. .labelRole::before {
  784.     font-family: inherit;
  785.     content: "## ";
  786.     color: red;
  787. }
  788.  
  789.  
  790. /**************** Changes to Navigation Header ****************/
  791.  
  792. /* Make Webring a normal link */
  793. .WebringButton {
  794.     animation: none;
  795.     text-shadow: none;
  796.     padding-top: 1px;
  797.     font-size: 9pt;
  798. }
  799.  
  800. /* Change Help/Info Icon */
  801. #navPosting::before {
  802.     content: "\e0b0";
  803.     font-weight: bold;
  804. }
  805.  
  806.  
  807. /* Height and font size adjustment */
  808. .theme_clear nav, /* Need to override for clear theme. */
  809. nav {
  810.     font-size: 9pt;
  811.     padding: 0 !important;
  812. }
  813.  
  814. nav .coloredIcon::before {
  815.     font-size: 8pt;
  816. }
  817.  
  818. nav .coloredIcon,
  819. nav .coloredIcon span {
  820.     margin: 0;
  821. }
  822.  
  823. #navLinkSpan { margin-left: 3px; }
  824. #navOptionsSpan { margin-right: 3px; }
  825.  
  826.  
  827. /* Remove Text from Icon Links */
  828. nav .coloredIcon::after {
  829.     display: none;
  830. }
  831.  
  832. nav > * > span {
  833.     margin: 0;
  834. }
  835.  
  836. /* Try to make things more vertically aligned */
  837. #navBoardsSpan {
  838.     line-height: 18px;
  839. }
  840.  
  841. nav .WebringButton {
  842.     padding: 0;
  843.     line-height: 18px;
  844. }
  845.  
  846. #themeSelector { height: 18px; }
  847.  
  848.  
  849. /* Add square brackets to webring link */
  850. @media only screen and (min-width: 813px) {
  851. nav .WebringButton::before {
  852.     content: "[";
  853.     margin-right: 2px;
  854.     margin-left: 5px;
  855.     color: #000;
  856. }
  857.  
  858. nav .WebringButton::after {
  859.     content: "]";
  860.     margin-left: 2px;
  861.     margin-right: 5px;
  862.     color: #000;
  863. }
  864.  
  865. .theme_clear nav .WebringButton::before,
  866. .theme_clear nav .WebringButton::after,
  867. .theme_tomorrow nav .WebringButton::before,
  868. .theme_tomorrow nav .WebringButton::after{
  869.     color: #c5c8c6;
  870. }
  871.  
  872. } /* end @media */
  873.  
  874.  
  875. /* Fix Header wrapping issues. */
  876. #navBoardsSpan {
  877.     display: inline;
  878. }
  879.  
  880. nav {
  881.     text-align: left;
  882.     height: auto;
  883. }
  884.  
  885.  
  886. /* Settings link probably shouldn't hide at small sizes. */
  887. #settingsButton { display: unset !important; }
Advertisement
Add Comment
Please, Sign In to add comment