Guest User

Untitled

a guest
May 20th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 18.78 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://i.imgur.com/Bjyf1oj.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 { color: #34345c; }
  128. .panelBacklinks a:hover { color: #DD0000; }
  129.  
  130. .labelSubject { color: #0F0C5D; }
  131.  
  132. .linkSelf, .linkQuote {
  133.     font-weight: normal;
  134.     color: #303030;
  135. }
  136.  
  137. .linkSelf:hover, .linkQuote:hover { color: red; }
  138.  
  139. /* Make hovering over filenames less annoying. Red is too much. */
  140. .uploadDetails .originalNameLink:hover { color: #004758; }
  141.  
  142. .divMessage .quoteLink { color: #d00; }
  143.  
  144. .divMessage a {
  145.     color: #34345C;
  146.     text-decoration: underline;
  147. }
  148. .divMessage a:hover { color: red; }
  149.  
  150. .greenText { color: #789922; }
  151. .redText { color: #AF0A0F; }
  152.  
  153. /* Stop theme colors breaking spoilers. */
  154. .spoiler:hover { background: black; color: white !important; }
  155. .spoiler a {
  156.     color: black !important;
  157.     text-decoration: underline;
  158. }
  159. .spoiler:hover a { color: white !important; }
  160.  
  161.  
  162. /* Navigation Bar
  163.    -------------- */
  164.  
  165. nav {
  166.     background-color: #D6DAF0;
  167.     border-color: #89A;
  168.     box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  169.     font-size: 80%;
  170. }
  171.  
  172.  
  173. /* Input elements and controls
  174.    --------------------------- */
  175.  
  176. input, select, textarea {
  177.   border: 1px solid #A9A9A9;
  178.   background: white;
  179.   color: black;
  180.   font-family: arial,helvetica,sans-serif;
  181.   font-size: 80%;
  182.   border-radius: 0;
  183. }
  184.  
  185. input[type="button"], input[type="submit"], button, .dropzone, .selectedCell {
  186.     border: 2px solid #c1c6da;
  187.     border-radius: 5px;
  188.     background: #e1e5f5;
  189.     color: #34345c;
  190.     padding-left: 0.25em;
  191.     font-family: Arial, Helvetica, sans-serif;
  192.     font-size: 80%;
  193.     font-weight: bold;
  194.     margin-top: 0.5em;
  195.     margin-bottom: 0.5em;
  196.     cursor: pointer;
  197. }
  198.  
  199. .dropzone, .selectedCell { border-radius: 0; }
  200.  
  201. .floatingMenu, #quick-reply table {
  202.     background: #E4E8FB;
  203.     box-shadow: 3px 3px 3px 0 rgba(0,0,0,.25);
  204. }
  205.  
  206. .modalDecorationPanel { background: #E4E8FB; } /* Report Form */
  207.  
  208. .extraMenu, .hideMenu { color: black; }
  209.  
  210. /* The dashing around the post form and various panels. */
  211. #newPostFieldset {
  212.     border: 1px dashed #B7C5D9;
  213. }
  214.  
  215. #quick-reply table, .modalDecorationPanel, .floatingMenu, #settingsFieldset, .reportFieldset {
  216.     border: 1px dashed #787a99;
  217. }
  218.  
  219. /* The tick/cross checkboxes would be green otherwise. */
  220. input.postingCheckbox[type="checkbox"] + label::before {
  221.     color: #7D66ED;
  222. }
  223.  
  224. /* A hopefully subtle focus ring for the text inputs. */
  225. #postingForm input:focus,
  226. #postingForm textarea:focus,
  227. .modalDecorationPanel input[type="text"]:focus,
  228. #settingsMenu input[type="text"]:focus,
  229. #settingsMenu textarea:focus {
  230.     box-shadow: 0px 0px 2px 0px #0911AE75;
  231. }
  232.  
  233. /* Mainly in settings menu */
  234. #selectedTab {
  235.     text-shadow: none;
  236.     font-weight: bold;
  237. }
  238.  
  239. #cssInput, #jsInput { font-size: 90%; }
  240.  
  241.  
  242. /* Posting Form
  243.    ------------ */
  244.  
  245. /* Left column labels of the form. */
  246. #postingForm th, .modalTableBody th {
  247.     background: #98E;
  248.     border: none;
  249.     font-size: 100%;
  250.     padding-left: 0.5em;
  251.     padding-right: 0.5em;
  252.     color: #303030;
  253.     border-radius: 0;
  254.     width: 85px;
  255. }
  256.  
  257. #postingTable textarea,
  258. #postingTable input[type="text"] {
  259.     font-size: 90%;
  260.     padding: 0.1em 0.3em;
  261. }
  262.  
  263. /* The text inputs need a width adjustment because the cols attribute is
  264.    dependant on the font metrics.
  265.    The JS can override this if the user adjusts the posting form width. */
  266. #fieldMessage { width: 265px; }
  267. #newPostFieldset { width: 30em; }
  268.  
  269. /* The little rules icon next to the link. */
  270. a.rules::after {
  271.     color: #7D66ED;
  272. }
  273.  
  274.  
  275. /* Board Heading
  276.    ------------- */
  277.  
  278. #labelDescription { color: #AF0A0F; }
  279.  
  280. #labelName {
  281.     font-weight: bold;
  282.     font-family: tahoma;
  283.     letter-spacing: -2px;
  284.     color: #800000;
  285.     margin: 0.25em 0 0 0;
  286. }
  287.  
  288.  
  289. /* Theme Misc
  290.    ------------- */
  291.  
  292. body::-webkit-scrollbar-track-piece { background-color: #c5c9e4; }
  293. body::-webkit-scrollbar-thumb { background-color: #8C8ABB; }
  294.  
  295.  
  296.  
  297. /* ========================================================================== */
  298. /* DARK THEME (CLEAR)
  299.    ------------------ */
  300.  
  301. /* Basic Page Colors and Metrics
  302.    ----------------------------- */
  303. body.theme_clear {
  304.     background: #2f2f2f;
  305.     color: #c5c8c6;
  306.     font-family: Arial, Helvetica, sans-serif;
  307.     font-size: 10pt;
  308. }
  309.  
  310. .theme_clear .topBoards a,
  311. .theme_clear #divLatestImages img,
  312. .theme_clear #divLatestPosts .latestPostCell,
  313. .theme_clear .innerPost,
  314. .theme_clear .sideCatalogCell,
  315. .theme_clear .markedPost,
  316. .theme_clear .sideCatalogMarkedCell,
  317. .theme_clear .catalogCell {
  318.     background-color: #2f343e;
  319. }
  320.  
  321. /* Highlighted posts. Make it subtle. */
  322. .theme_clear .markedPost,
  323. .theme_clear .sideCatalogMarkedCell {
  324.     background-color: #394156;
  325. }
  326.  
  327. .theme_clear a,
  328. .theme_clear .coloredIcon,
  329. .theme_clear .unhideButton,
  330. .theme_clear .embedButton,
  331. .theme_clear #selectedTab,
  332. .theme_clear #showFormsButton {
  333.     color: #81a2be;
  334. }
  335.  
  336. .theme_clear a:hover,
  337. .theme_clear .coloredIcon:hover,
  338. .theme_clear .unhideButton:hover,
  339. .theme_clear .embedButton:hover,
  340. .theme_clear #selectedTab:hover,
  341. .theme_clear #showFormsButton:hover {
  342.     color: #c95f5f;
  343. }
  344.  
  345. .theme_clear .glowOnHover:hover,
  346. .theme_clear a:hover {
  347.     text-shadow: none;
  348. }
  349.  
  350. .theme_clear hr,
  351. .theme_clear #threadList hr {
  352.     border-color: #282a2e;
  353. }
  354.  
  355. .theme_clear .small {font-size: 80%; }
  356.  
  357.  
  358. /* Replies (and other things like them) backgrounds
  359.    ------------------------------------------------ */
  360.  
  361. .theme_clear .topBoards a,
  362. .theme_clear #divLatestImages img,
  363. .theme_clear #divLatestPosts .latestPostCell,
  364. .theme_clear .innerPost,
  365. .theme_clear .sideCatalogCell,
  366. .theme_clear .markedPost,
  367. .theme_clear .sideCatalogMarkedCell,
  368. .theme_clear .catalogCell {
  369.     border-radius: 7px 7px 7px 0;
  370.     border: none;
  371.     box-shadow: 1px 2px 4px rgba(0,0,0,.24);
  372. }
  373.  
  374. .theme_clear .postInfo,
  375. .theme_clear .opHead,
  376. .theme_clear .divMessage,
  377. .theme_clear .panelUploads,
  378. .theme_clear .panelIp,
  379. .theme_clear .panelProxyIp,
  380. .theme_clear .contentOmissionIndicator,
  381. .theme_clear .labelOmission,
  382. .theme_clear .labelId,
  383. .theme_clear .panelASN {
  384.     font-size: 100%;
  385. }
  386.  
  387. .theme_clear .postCell {
  388.     padding-bottom: 4px;
  389.     margin: 0.4em 0;
  390. }
  391.  
  392.  
  393. /* Post information and other formatting
  394.    ------------------------------------- */
  395.  
  396. .theme_clear .title a,
  397. .theme_clear .title .coloredIcon {
  398.     color: #5f89ac;
  399. }
  400.  
  401. .theme_clear .title a:not(.linkName):hover,
  402. .theme_clear .title .coloredIcon:hover {
  403.     color: #6B9BC2;
  404. }
  405.  
  406. .theme_clear .title {
  407.     font-size: 90%;
  408.     font-weight: normal;
  409. }
  410.  
  411. .theme_clear .title .coloredIcon {
  412.     font-weight: bold;
  413.     font-size: 90%;
  414. }
  415.  
  416. .theme_clear .title .linkName {
  417.     color: #bd8f8f;
  418.     font-weight: bold;
  419.     text-decoration: underline;
  420. }
  421.  
  422. .theme_clear .title .linkName.noEmailName {
  423.     color: #c1b8b8;
  424.     text-decoration: none;
  425. }
  426.  
  427. .theme_clear .labelOmission {
  428.     color: #c1b8b8;
  429.     font-size: 90%;
  430. }
  431.  
  432. .theme_clear .panelBacklinks { font-size: 80%; }
  433.  
  434. .theme_clear .labelSubject { color: #ce52c9; }
  435.  
  436. .theme_clear .linkSelf, .theme_clear .linkQuote { font-weight: normal; }
  437.  
  438. .theme_clear .uploadDetails { font-size: 90%; }
  439.  
  440. .theme_clear .uploadDetails .hideMobile,
  441. .theme_clear .uploadDetails .sizeLabel,
  442. .theme_clear .uploadDetails .dimensionLabel,
  443. .theme_clear .uploadDetails .originalNameLink { font-size: 80%; }
  444.  
  445. /* Make hovering over filenames less annoying. Red is too much. */
  446. .theme_clear .uploadDetails .originalNameLink:hover { color: #92B6D5; }
  447.  
  448. .theme_clear .divMessage a { text-decoration: none; } /* Undo Yotsuba B Style */
  449. .theme_clear .divMessage a { color: #5f89ac; }
  450. .theme_clear .divMessage a:hover { color: #6B9BC2; }
  451.  
  452. .theme_clear .redText { color: #DD293F; }
  453.  
  454. .theme_clear .greenText { color: #b5bd68; }
  455.  
  456. .theme_clear .orangeText { color: #E0727F; }
  457.  
  458. .theme_clear .spoiler:hover { color: #c5c8c6; background: #00000040; }
  459.  
  460.  
  461. /* Navigation Bar
  462.    -------------- */
  463.  
  464. .theme_clear nav {
  465.     background-color: #423756;
  466.     border: none;
  467.     border-top: 3px solid #2F2F2F;
  468.     font-size: 80%;
  469.     box-shadow: none;
  470. }
  471.  
  472.  
  473. /* Input elements and controls
  474.    --------------------------- */
  475.  
  476. .theme_clear input,
  477. .theme_clear select,
  478. .theme_clear textarea {
  479.     border: 1px double #282830;
  480.     border-radius: 5px;
  481.     background: #3D3E42;
  482.     color: #BDBDBD;
  483.     font-family: Arial, Helvetica, sans-serif;
  484.     font-size: 80%;
  485. }
  486.  
  487. .theme_clear input[type="button"],
  488. .theme_clear input[type="submit"],
  489. .theme_clear button,
  490. .theme_clear .dropzone,
  491. .theme_clear .selectedCell {
  492.     border: 3px double #282830;
  493.     border-radius: 5px;
  494.     background: #34353C;
  495.     color: #ABABAB;
  496.     padding-left: 0.25em;
  497.     font-family: Arial, Helvetica, sans-serif;
  498.     font-size: 80%;
  499.     font-weight: bold;
  500.     margin-top: 0.5em;
  501.     margin-bottom: 0.5em;
  502.     cursor: pointer;
  503. }
  504.  
  505. .theme_clear .floatingMenu,
  506. .theme_clear #quick-reply table {
  507.     background: #30343C;
  508.     box-shadow: 3px 3px 3px 0 rgba(0,0,0,.5);
  509. }
  510.  
  511. .theme_clear .modalDecorationPanel { background: #404757; }
  512.  
  513. .theme_clear .extraMenu,
  514. .theme_clear .hideMenu {
  515.     color: #c5c8c6;
  516. }
  517.  
  518. /* The dashing around the post form and various panels. */
  519. .theme_clear #newPostFieldset,
  520. .theme_clear #quick-reply table,
  521. .theme_clear .modalDecorationPanel,
  522. .theme_clear .floatingMenu,
  523. .theme_clear #settingsFieldset,
  524. .theme_clear .reportFieldset {
  525.     border: 1px dashed #181818;
  526. }
  527.  
  528. /* The tick/cross checkboxes would be green otherwise. */
  529. .theme_clear input.postingCheckbox[type="checkbox"] + label::before {
  530.     color: #81a2be;
  531. }
  532.  
  533. /* A hopefully subtle focus ring for the text inputs. */
  534. .theme_clear #postingForm input:focus,
  535. .theme_clear #postingForm textarea:focus,
  536. .theme_clear .modalDecorationPanel input[type="text"]:focus,
  537. .theme_clear #settingsMenu input[type="text"]:focus,
  538. .theme_clear #settingsMenu textarea:focus {
  539.     box-shadow: 0px 0px 5px 0px #004F91;
  540. }
  541.  
  542. /* Mainly in settings menu */
  543. .theme_clear #selectedTab {
  544.     text-shadow: none;
  545.     font-weight: bold;
  546. }
  547.  
  548. .theme_clear #cssInput,
  549. .theme_clear #jsInput {
  550.     font-size: 90%;
  551. }
  552.  
  553.  
  554. /* Posting Form
  555.    ------------ */
  556.  
  557. /* Left column labels of the form. */
  558. .theme_clear #postingForm th,
  559. .theme_clear .modalTableBody th {
  560.     background: #1D1D21;
  561.     border:1px solid #000;
  562.     font-size: 90%;
  563.     padding-left: 0.5em;
  564.     padding-right: 0.5em;
  565.     color: #c5c8c6; /* Undo Yotsuba B Style */
  566. }
  567.  
  568. .theme_clear #postingTable textarea,
  569. .theme_clear #postingTable input[type="text"] {
  570.     font-size: 90%;
  571.     padding: 0.1em 0.3em;
  572. }
  573.  
  574. /* The text inputs need a width adjustment because the cols attribute is
  575.    dependant on the font metrics.
  576.    The JS can override this if the user adjusts the posting form width. */
  577. .theme_clear #fieldMessage { width: 265px; }
  578. .theme_clear #newPostFieldset { width: 30em; }
  579.  
  580. /* The little rules icon next to the link. */
  581. .theme_clear a.rules::after {
  582.     color: #81a2be;
  583. }
  584.  
  585.  
  586. /* Board Heading
  587.    ------------- */
  588.  
  589. .theme_clear #labelName,
  590. .theme_clear #labelDescription {
  591.     color: #E0727F;
  592. }
  593.  
  594. .theme_clear #labelName {
  595.     font-weight: bold;
  596.     font-family: Arial, Helvetica, sans-serif;
  597.     letter-spacing: inherit;
  598.     margin: 0.25em 0 0 0;
  599. }
  600.  
  601. .theme_clear #favouriteButton::before {
  602.     font-family: Icons;
  603.     content: "☯";
  604.     margin-left: 0.5em;
  605.     cursor: pointer;
  606. }
  607.  
  608. .theme_clear .checkedFavouriteButton::before { color: red; }
  609.  
  610.  
  611. /* Theme Misc
  612.    ------------- */
  613.  
  614. body.theme_clear::-webkit-scrollbar-track-piece { background-color: #292929; }
  615. body.theme_clear::-webkit-scrollbar-thumb { background-color: #666; }
  616.  
  617.  
  618. /* ========================================================================== */
  619. /* Tomorrow Theme
  620.    -------------- */
  621.  
  622. body.theme_tomorrow {
  623.     background: #1d1f21;
  624.     color: #C5C8C6;
  625. }
  626.  
  627. .theme_tomorrow .topBoards a,
  628. .theme_tomorrow #divLatestImages img,
  629. .theme_tomorrow #divLatestPosts .latestPostCell,
  630. .theme_tomorrow .innerPost,
  631. .theme_tomorrow .sideCatalogCell,
  632. .theme_tomorrow .markedPost,
  633. .theme_tomorrow .sideCatalogMarkedCell,
  634. .theme_tomorrow .catalogCell {
  635.     background-color: #282a2e;
  636. }
  637.  
  638. .theme_tomorrow .markedPost,
  639. .theme_tomorrow .sideCatalogMarkedCell {
  640.     background-color: #1d1d21;
  641.     border: 1px solid #111;
  642. }
  643.  
  644. .theme_tomorrow a,
  645. .theme_tomorrow .coloredIcon,
  646. .theme_tomorrow .unhideButton,
  647. .theme_tomorrow .embedButton,
  648. .theme_tomorrow #selectedTab,
  649. .theme_tomorrow #showFormsButton {
  650.     color: #81a2be;
  651. }
  652.  
  653. .theme_tomorrow a:hover,
  654. .theme_tomorrow .coloredIcon:hover,
  655. .theme_tomorrow .unhideButton:hover,
  656. .theme_tomorrow .embedButton:hover,
  657. .theme_tomorrow #selectedTab:hover,
  658. .theme_tomorrow #showFormsButton:hover {
  659.     color: #5F89AC;
  660. }
  661.  
  662. .theme_tomorrow hr { border-color: #282a2e; }
  663. .theme_tomorrow .floatingMenu hr { border-color: #000; }
  664.  
  665. .theme_tomorrow #divLatestPosts .latestPostCell,
  666. .theme_tomorrow .innerPost,
  667. .theme_tomorrow .sideCatalogCell,
  668. .theme_tomorrow .markedPost,
  669. .theme_tomorrow .sideCatalogMarkedCell,
  670. .theme_tomorrow .catalogCell {
  671.     border-color: #282a2e;
  672. }
  673.  
  674. .theme_tomorrow .title .linkName { text-decoration: none; } /* Undo Yotsuba B Style */
  675.  
  676. .theme_tomorrow .title .linkName { color: #81a2be; }
  677. .theme_tomorrow .title .linkName:not(.noEmailName)[href="mailto:sage"]::after {
  678.     content: "SAGE!";
  679.     color: red;
  680.     margin-left: 5px;
  681. }
  682. .theme_tomorrow .title .linkName:not(.noEmailName):hover { color: #5F89AC; }
  683.  
  684. .theme_tomorrow .title .linkName.noEmailName { color: #C5C8C6; }
  685.  
  686. .theme_tomorrow .panelBacklinks a { color: #81a2be; }
  687. .theme_tomorrow .panelBacklinks a:hover { color: #5F89AC; }
  688.  
  689. .theme_tomorrow .labelSubject { color: #b294bb; }
  690.  
  691. .theme_tomorrow .linkSelf,
  692. .theme_tomorrow .linkQuote {
  693.     color: #C5C8C6;
  694. }
  695.  
  696. .theme_tomorrow .uploadDetails .originalNameLink:hover { color: #5F89AC; }
  697.  
  698. .theme_tomorrow .divMessage .quoteLink,
  699. .theme_tomorrow .divMessage a { text-decoration: none; } /* Undo Yotsuba B Style */
  700.  
  701. .theme_tomorrow .divMessage .quoteLink { color: #81a2be; }
  702. .theme_tomorrow .divMessage .quoteLink:hover { color: #5F89AC; }
  703.  
  704. .theme_tomorrow .divMessage a { color: #81a2be; }
  705. .theme_tomorrow .divMessage a:hover { color: #5F89AC; }
  706.  
  707. .theme_tomorrow .greenText { color: #adbd68; }
  708. .theme_tomorrow .redText { color: red; }
  709.  
  710. .theme_tomorrow nav {
  711.     background-color: #282a2e;
  712.     border-color: #111;
  713. }
  714.  
  715. .theme_tomorrow input[type="button"],
  716. .theme_tomorrow input[type="submit"],
  717. .theme_tomorrow button,
  718. .theme_tomorrow .dropzone,
  719. .theme_tomorrow .selectedCell {
  720.     border: 2px solid #111;
  721.     background: #353535;
  722.     color: #bcbcbc;
  723. }
  724.  
  725. .theme_tomorrow .floatingMenu,
  726. .theme_tomorrow #quick-reply table {
  727.     background: #282A2E;
  728. }
  729.  
  730. .theme_tomorrow .modalDecorationPanel { background: #383B42; }
  731.  
  732. .theme_tomorrow #newPostFieldset,
  733. .theme_tomorrow #quick-reply table,
  734. .theme_tomorrow .modalDecorationPanel,
  735. .theme_tomorrow .floatingMenu,
  736. .theme_tomorrow #settingsFieldset,
  737. .theme_tomorrow .reportFieldset {
  738.     border: 1px solid #000;
  739. }
  740.  
  741. .theme_tomorrow input.postingCheckbox[type="checkbox"] + label::before {
  742.     color: #81a2be;
  743. }
  744.  
  745. .theme_tomorrow #postingForm th,
  746. .theme_tomorrow .modalTableBody th {
  747.     background: #282A2E;
  748.     border: 1px solid #000;
  749.     color: #C5C8C6; /* Undo Yotsuba B Style */
  750. }
  751.  
  752. .theme_tomorrow a.rules::after {
  753.     color: #81a2be;
  754. }
  755.  
  756. .theme_tomorrow #labelDescription { color: #C5C8C6; }
  757.  
  758. .theme_tomorrow #labelName { color: #C5C8C6; }
  759.  
  760. body.theme_tomorrow::-webkit-scrollbar-track-piece { background-color: #292929; }
  761. body.theme_tomorrow::-webkit-scrollbar-thumb { background-color: #666; }
  762.  
  763. .theme_tomorrow .labelOmission { color: #707070; }
  764.  
  765. .theme_tomorrow .extraMenu,
  766. .theme_tomorrow .hideMenu {
  767.     color: #C5C8C6;
  768. }
  769.  
  770.  
  771. /***************** I'm a very serious board admin ********************/
  772. @keyframes intensify {
  773.      50% { transform:rotate(-15deg); }
  774.     100% { transform:rotate(15deg); }
  775. }
  776.  
  777. .labelRole::before {
  778.     animation: intensify .1s linear infinite;
  779.     display: inline-block;
  780.     content: "\1F346";
  781. }
  782.  
  783. /**************** since people can't find the catalog ****************/
  784.  
  785. a#navCatalog::after {
  786.     content: "(Catalog)";
  787. }
  788.  
  789. /* Make Webring a normal link */
  790. .WebringButton {
  791.     animation: none;
  792.     text-shadow: none;
  793.     padding-top: 1px;
  794.     font-size: 9pt;
  795. }
Advertisement
Add Comment
Please, Sign In to add comment