Advertisement
Guest User

julay Tomorrow 2019-09-13

a guest
Sep 13th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 9.19 KB | None | 0 0
  1. a:link, a:visited, p.intro a.email span.name {
  2.     color: #81a2be;
  3. }
  4.  
  5. a:link:hover {
  6.     color: #5f89ac;
  7. }
  8.  
  9. body {
  10.   background: #1d1f21;
  11.   color: #d6d6d6;
  12.   font-family: arial, helvetica, sans-serif;
  13.   font-size: 10pt;
  14.   margin: 0 0px;
  15.   padding-left: 0px;
  16.   padding-right: 0px;
  17. }
  18.  
  19. nav {
  20.   position: fixed;
  21.   top: 0;
  22.   left: 0;
  23.   right: 0;
  24.   margin-top: 0;
  25.   z-index: 30;
  26.   box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  27.   border-bottom: 1px solid #4d4d4c;
  28.   background-color: #282a2e;
  29.   color: #89A;
  30.   font-size: 9pt;
  31. }
  32.  
  33. a, .coloredIcon, .unhideButton, .embedButton, .checkedFavouriteButton:before,
  34.   #selectedTab, #showFormsButton {
  35.   color: #81a2be;
  36.   cursor: pointer
  37. }
  38.  
  39. .checkedFavouriteButton:before {
  40.   color: #FF0;
  41.   cursor: pointer;
  42.   text-shadow: 0px 0px 1px rgba(0, 0, 0, .50);
  43. }
  44.  
  45. #showFormsButton:hover {
  46.   color: #5f89ac;
  47. }
  48.  
  49. a:hover, .glowOnHover:hover {
  50.   text-shadow: 0px 0px 0px #111111;
  51.   color: #5f89ac;
  52. }
  53.  
  54. input, select, textarea {
  55.   border: 1px solid #4d4d4c;
  56.   border-radius: 0px;
  57.   background: #1d1f21;
  58.   color: #d6d6d6;
  59.   text-indent: 0;
  60.   text-shadow: none;
  61.   text-transform: none;
  62.   word-spacing: normal;
  63.   font-size: inherit;
  64.   font-family: sans-serif;
  65. }
  66.  
  67. #postingForm th, .modalTableBody th {
  68.   font-weight: bold;
  69.   text-align: left;
  70.   width: 85px;
  71.   font-size: inherit;
  72.   padding: 4px;
  73.   cursor: default;
  74.   border: 0px;
  75.   border-radius: 0px;
  76.   background: #4d4d4c;
  77. }
  78.  
  79. #newPostFieldset, #quick-reply table, .modalDecorationPanel,
  80.   .floatingMenu, #settingsFieldset, .reportFieldset {
  81.   border: none;
  82. }
  83.  
  84. input[type=button], input[type=submit], button, .dropzone, .selectedCell
  85.   {
  86.   border: 1px solid rgba(125, 125, 125, 0.8);
  87.   border-radius: 0px;
  88.   background: rgba(200, 200, 200, 0.5);
  89.   padding: 3px 0px;
  90.   cursor: pointer;
  91.   color: rgba(0, 0, 0, 0.5);
  92.   font-family: inherit;
  93.   font-size: inherit;
  94.   font-weight: normal;
  95.   margin-top: 0px;
  96.   margin-bottom: 0px;
  97. }
  98.  
  99. input[type=button], input[type=submit], button, .dropzone:hover, .selectedCell:hover
  100.   {
  101.   border: 1px solid rgba(0, 0, 0, 0.5);
  102.   background: rgba(200, 200, 200, 0.5);
  103.   color: rgba(0, 0, 0, 0.8)
  104. }
  105.  
  106. #postingForm input:focus, #postingForm textarea:focus,
  107.   .modalDecorationPanel input[type='text']:focus, #settingsMenu input[type='text']:focus,
  108.   #settingsMenu textarea:focus {
  109.   box-shadow: none;
  110. }
  111.  
  112. #postingForm button:active {
  113.   box-shadow: none;
  114. }
  115.  
  116. .boardHeader p {
  117.   color: #c82829;
  118. }
  119.  
  120. .boardHeader p#labelName {
  121.   font-size: 20pt;
  122.   font-family: tahoma;
  123.   font-weight: 700;
  124.   letter-spacing: -2px;
  125.   margin: 0;
  126.   display: inline-block;
  127.   text-shadow: none;
  128.   color: #c82829;
  129. }
  130.  
  131. .boardHeader #favouriteButton {
  132.   font-size: 16pt;
  133.   color: #81a2be;
  134. }
  135.  
  136. .boardHeader p#labelDescription {
  137.   font-size: 8pt;
  138.   color: #c82829;
  139. }
  140.  
  141. header {
  142.   margin-top: 12px;
  143. }
  144.  
  145. .postInfo, .opHead, .divMessage, .panelUploads, .panelIp, .panelProxyIp,
  146.   .contentOmissionIndicator, .labelOmission, .labelId {
  147.   font-size: 13px;
  148. }
  149.  
  150. .labelSubject {
  151.   color: #b294bb;
  152.   font-weight: bold;
  153. }
  154.  
  155. .title, .unhideButton {
  156.   font-weight:normal;
  157.   padding: 2px 0px;
  158. }
  159.  
  160. .quoteLink.you:after {
  161.   content: " (You)";
  162.   font-size: 75%;
  163.   color: #d6d6d6 !important;
  164. }
  165.  
  166. .linkSelf {
  167.   color: #d6d6d6 !important;
  168.   text-decoration: none;
  169. }
  170.  
  171. .linkSelf:hover {
  172.   color: #5f89ac !important;
  173. }
  174.  
  175. .linkQuote {
  176.   color: #d6d6d6 !important;
  177.   text-decoration: none;
  178. }
  179.  
  180. .linkQuote:hover {
  181.   color: #5f89ac !important;
  182. }
  183.  
  184. .labelYou {
  185.   color: #d6d6d6 !important;
  186.   font-weight: normal;
  187.   font-style: italic;
  188.   padding: 0 3px;
  189.   opacity: .666;
  190. }
  191.  
  192. .panelBacklinks a {
  193.   padding-left: 5px;
  194.   color: #81a2be;
  195.   text-decoration: underline;
  196.   font-size: 10px;
  197. }
  198.  
  199. a.rules:after {
  200.   font-family: Icons;
  201.   content: "\e052";
  202.   margin-right: 0.5em;
  203.   color: #81a2be;
  204.   height: 80%;
  205.   font-size: 80%;
  206.   padding-left: 0.25em;
  207.   vertical-align: middle;
  208. }
  209.  
  210. .innerPost, .markedPost {
  211.   display: inline-block;
  212.   padding: 0em 0em 0em 0em;
  213.   max-width: 94%;
  214.   min-width: 33%;
  215. }
  216.  
  217. #divLatestPosts .latestPostCell, .innerPost, .sideCatalogCell,
  218.   .markedPost, .sideCatalogMarkedCell, .catalogCell {
  219.   border: 1px;
  220.   border-style: none solid solid none;
  221.   border-color: #1a1a1a;
  222.  
  223. }
  224.  
  225. .markedPost, .sideCatalogMarkedCell {
  226.   background: #1d1f21 !important;
  227. }
  228.  
  229. .topBoards a, #divLatestImages img, #divLatestPosts .latestPostCell,
  230.   .innerPost, .sideCatalogCell, .markedPost, .sideCatalogMarkedCell,
  231.   .catalogCell {
  232.   background: #282a2e;
  233.   border-radius: 0px;
  234. }
  235.  
  236. #boardContentLinks {
  237.   margin-top: 10px;
  238.   font-size: 100%;
  239. }
  240.  
  241. #themeSelector {
  242.   font-size: 100%;
  243.   color: #d6d6d6;
  244. }
  245.  
  246. .divRefresh label, .divRefresh input {
  247.   display: inline-block;
  248.   margin: 3;
  249.   font-size: 80%;
  250. }
  251.  
  252. a:hover, .glowOnHover:hover {
  253.   text-shadow: none;
  254. }
  255.  
  256. .quoteLink {
  257.   color: #81a2be !important;
  258.   text-decoration: underline;
  259. }
  260.  
  261. .quoteLink:hover {
  262.   color: #5f89ac !important;
  263. }
  264.  
  265. .quoteLink.you:after {
  266.   content: " (You)";
  267.   font-size: 10px;
  268.   color: black;
  269.   text-decoration: none;
  270.   font-style: normal;
  271. }
  272.  
  273. .spoiler:hover {
  274.   color: white;
  275.   background: black;
  276. }
  277.  
  278. /* Quick Reply */
  279.  
  280. #quick-reply th {
  281.   text-align: center;
  282.   padding: 2px 0;
  283.   border: 1px solid #4d4d4c;
  284.   background: #4d4d4c;
  285. }
  286.  
  287. .floatingMenu, #quick-reply table {
  288.   background: #282a2e;
  289. }
  290.  
  291. #newPostFieldset, #quick-reply table, .modalDecorationPanel,
  292.   .floatingMenu, #settingsFieldset, .reportFieldset {
  293.   border: 1px black;
  294. }
  295.  
  296. #quick-reply table {
  297.   padding: 0em;
  298.   margin: 0;
  299.   width: 100%;
  300. }
  301.  
  302. .post-table td {
  303.   padding-bottom: 0em;
  304. }
  305.  
  306. hr {
  307.   height: 0px;
  308.   border-width: 1px medium medium;
  309.   border-style: solid none none;
  310.   border-color: #4d4d4c;
  311. }
  312.  
  313. .linkName {
  314.   font-weight: bold;
  315.   color: #81a2be;
  316. }
  317.  
  318. .linkName:hover {
  319.   color: #5f89ac;
  320. }
  321.  
  322. .noEmailName, .noEmailName:hover {
  323.   color: #d6d6d6;
  324.   text-shadow: none;
  325.   text-decoration: none;
  326. }
  327.  
  328. .divRefresh label, .divRefresh input {
  329.   display: inline-block;
  330.   margin: 3px;
  331.   font-size: inherit;
  332. }
  333.  
  334. .small {
  335.   font-size: 80%;
  336.   text-decoration: underline;
  337. }
  338.  
  339. .small:hover {
  340.   color: #5f89ac;
  341. }
  342.  
  343. .boardPages {
  344.   color: #81a2be;
  345.   padding: 0.1em 0.25em;
  346. }
  347.  
  348. #divLatestPosts .latestPostCell {
  349.   display: inline-block;
  350.   overflow: hidden;
  351.   padding: 0.5em;
  352.   margin: 0.5em;
  353.   max-width: 15%;
  354.   max-height: 8em;
  355.   font-size: 80%;
  356.   vertical-align: middle;
  357. }
  358.  
  359. #links, #divStats {
  360.   padding: 0.5em;
  361.   font-size: 80%;
  362.   text-align: center;
  363. }
  364.  
  365. .extraMenu, .hideMenu {
  366.   position: absolute;
  367.   top: 0;
  368.   left: 100%;
  369.   margin-left: 10px;
  370.   z-index: 1;
  371.   font-weight: normal;
  372.   white-space: nowrap;
  373.   cursor: default;
  374.   color: #d6d6d6;
  375.   text-shadow: none;
  376. }
  377.  
  378. .floatingMenu .header, .floatingMenu .headerLabel {
  379.   cursor: move;
  380.   text-align: center;
  381.   padding: 2px 0;
  382.   border: 1px solid #222;
  383.   background: #4d4d4c;
  384. }
  385.  
  386. .floatingMenu .headerLabel {
  387.   font-size: inherit;
  388.   border: none;
  389.   font-weight: bold;
  390. }
  391.  
  392. .floatingMenu {
  393.   padding: 0.25em;
  394.   border-style: solid;
  395.   border-color: #4d4d4c;
  396. }
  397.  
  398. #selectedTab {
  399.   text-shadow: none;
  400.   color: #81a2be !important;
  401. }
  402.  
  403. #selectedTab:hover {
  404.   color: #5f89ac !important;
  405. }
  406.  
  407. .settingsTab {
  408.   font-size: 80%;
  409.   cursor: pointer;
  410.   margin: 0.5em;
  411. }
  412.  
  413. .settingsTab:hover {
  414.   color: #5f89ac;
  415. }
  416.  
  417. #quick-reply {
  418.   position: fixed;
  419.   float: right;
  420.   padding: 0 0 0 0;
  421.   width: 300px;
  422.   z-index: 100;
  423.   display: none;
  424.   border-style: solid;
  425.   border-color: #4d4d4c;
  426.   border-width: 1px
  427. }
  428.  
  429. .postCell {
  430.   margin: 6px 0;
  431. }
  432.  
  433. .redText {
  434.     color: #c82829;
  435.     font-weight: bold;
  436.     font-size: 125%;
  437. }
  438.  
  439. .greenText {
  440.     color: #789922;
  441. }
  442.  
  443. /*Elements that show on threads on both catalogs and regular posting places*/
  444. .lockIndicator:before {
  445.   font-family: Icons;
  446.   content: "\e08a";
  447.   color: #81a2be;
  448. }
  449.  
  450. #galleryLink:before {
  451.   content: "\e02c";
  452. }
  453.  
  454. .pinIndicator:after {
  455.   font-family: Icons;
  456.   content: "\e0a8";
  457.   color: #81a2be;
  458. }
  459.  
  460. .archiveIndicator:after {
  461.   font-family: Icons;
  462.   content: "\e023";
  463.   color: #81a2be;
  464. }
  465.  
  466. .cyclicIndicator:after {
  467.   font-family: Icons;
  468.   content: "\e08c";
  469.   color: #81a2be;
  470. }
  471.  
  472. .bumpLockIndicator:after {
  473.   font-family: Icons;
  474.   content: "\e0db";
  475.   color: #81a2be;
  476. }
  477.  
  478. .galleryImage {
  479.   max-width: 100vw;
  480.   max-height: 100vh;
  481. }
  482.  
  483. .contentAction label, .contentAction img {
  484.   display: block;
  485. }
  486.  
  487. .Webring {
  488.     position: absolute;
  489.     top: 50%;
  490.     left: 50%;
  491.     transform: translate(-50%, -50%) scale(1);
  492.     font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  493.     min-width: 90%;
  494.     min-height: 500px;
  495.     max-height: 95%;
  496.     background-image: linear-gradient(to right bottom, #2e2f32, #1d1f21);
  497.     animation: webring-slidein .3s cubic-bezier(.21,.75,0,1);
  498.     -webkit-user-select: none;
  499.     -moz-user-select: none;
  500.     -ms-user-select: none;
  501.     -o-user-select: none;
  502.     user-select: none;
  503. }
  504.  
  505. .WebringImageboardButton__title {
  506.     position: absolute;
  507.     color: #d6d6d6;
  508.     top: 50%;
  509.     left: 50%;
  510.     transform: translate(-50%, -50%);
  511.     font-size: 2rem;
  512.     text-align: center;
  513.     pointer-events: none;
  514. }
  515.  
  516. .WebringImageboard a:hover {
  517.     color: #5f89ac;
  518. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement