Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 7.19 KB | None | 0 0
  1. /**
  2.  * amber.css
  3.  * For /cyber/ by user
  4.  * * Colours changed to own system colours
  5.  */
  6. body {
  7.     background: #060808;
  8.     color: #29A9AB  ;
  9.     font-family: sans-serif;
  10.     font-size: 12px;
  11. }
  12.  
  13. .quote {
  14.     color: #009300;
  15. }
  16.  
  17. element {
  18.     color: #11FFFF;
  19.     text-decoration: none;
  20. }
  21.  
  22. .dropzone {
  23.     color: #009393;
  24.     cursor: default;
  25.     margin: auto;
  26.     padding: 0px 4px;
  27.     text-align: center;
  28.     min-height: 50px;
  29.     max-height: 140px;
  30.     transition: all 0.2s ease 0s;
  31.     background: #060808;
  32.     border: #29A9AB 1px solid;
  33.     padding: 1px 1px;
  34.     border-width: 1px;
  35.     border-style: solid solid solid solid;
  36.     border-color: #29A9AB;
  37. }
  38.  
  39. .dropzone .remove-btn {
  40.     cursor: pointer;
  41.     color: rgba(255, 119, 0, 1);
  42.     display: inline-block;
  43.     vertical-align: bottom;
  44.     bottom: 10px;
  45.     position: relative;
  46.     margin-right: 5px;
  47.     font-size: 20px;
  48. }
  49.  
  50. .dropzone .remove-btn:hover {
  51.     cursor: pointer;
  52.     color: #AF0A0F;
  53. }
  54.  
  55. .dropzone .file-hint {
  56.     color: #009393;
  57.     cursor: pointer;
  58.     position: relative;
  59.     margin-bottom: 5px;
  60.     padding: 10px 0px;
  61.         padding-top: 10px;
  62.         padding-right: 0px;
  63.         padding-bottom: 10px;
  64.         padding-left: 0px;
  65.     top: 5px;
  66.     transition: all 0.2s ease 0s;
  67.         transition-property: all;
  68.         transition-duration: 0.2s;
  69.         transition-timing-function: ease;
  70.         transition-delay: 0s;
  71.     border: 2px dashed #009393;
  72.         border-top-width: 2px;
  73.         border-right-width: 2px;
  74.         border-bottom-width: 2px;
  75.         border-left-width: 2px;
  76.         border-top-style: dashed;
  77.         border-right-style: dashed;
  78.         border-bottom-style: dashed;
  79.         border-left-style: dashed;
  80.         border-top-color: #009393;
  81.         border-right-color: #009393;
  82.         border-bottom-color: #009393;
  83.         border-left-color: #009393;
  84.         -moz-border-top-colors: none;
  85.         -moz-border-right-colors: none;
  86.         -moz-border-bottom-colors: none;
  87.         -moz-border-left-colors: none;
  88.         border-image-source: none;
  89.         border-image-slice: 100% 100% 100% 100%;
  90.         border-image-width: 1 1 1 1;
  91.         border-image-outset: 0 0 0 0;
  92.         border-image-repeat: stretch stretch;
  93. }
  94.  
  95. .file-hint:hover, .dropzone.dragover .file-hint {
  96.     color: #29A9AB;
  97.     border-color: #29A9AB;
  98. }
  99.  
  100.  
  101.  
  102. h1 {
  103.     font-size: 20pt;
  104.     text-align: center;
  105.     letter-spacing: 0px;
  106. }
  107. div.title, h1 {
  108.     color: #29A9AB ;
  109.     font-family: Arial, Helvetica, sans-serif;
  110. }
  111. div.title p {
  112.     font-size: 10px;
  113. }
  114. a:link, a:visited, .intro a.email span.name {
  115.     color: #009393;
  116.     text-decoration: none;
  117.     font-family: sans-serif;
  118. }
  119. a:link:hover, a:visited:hover {
  120.     color: #29A9AB;
  121.     font-family: sans-serif;
  122.     text-decoration: none;
  123. }
  124.  
  125. a.post_no {
  126.     color: #009393 ;
  127.     text-decoration: none;
  128. }
  129. a.post_no:hover {
  130.     color: #29A9AB !important;
  131.     text-decoration: underline overline;
  132. }
  133. div.post.reply {
  134.     background: #060808;
  135.     border: #29A9AB  1px solid;
  136. }
  137. div.post.reply.highlighted {
  138.     background: #0b2f2f;
  139.     border: #009393 1px solid;
  140. }
  141. div.post.reply div.body a:link, div.post.reply div.body a:visited {
  142.     color: #009393;
  143. }
  144. div.post.reply div.body a:link:hover, div.post.reply div.body a:visited:hover {
  145.     color: #29A9AB ;
  146. }
  147. .intro span.subject {
  148.     font-size: 12px;
  149.     font-family: sans-serif;
  150.     color: #009393 ;
  151.     font-weight: 800;
  152. }
  153.  
  154. .intro span.name {
  155.     color: #009393 ;
  156.     font-weight: 800;
  157. }
  158. .intro a.capcode, p.intro a.nametag {
  159.     color: magenta;
  160.     margin-left: 0;
  161. }
  162. .intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name {
  163.     color: #009393 ;
  164. }
  165. input[type="text"], textarea, select {
  166.     background: #060808;
  167.     color: #29A9AB ;
  168.     border: #29A9AB 1px solid;
  169.     padding-left: 5px;
  170.     padding-right: 5px;
  171.     font-family: sans-serif;
  172.     font-size: 10pt;
  173. }
  174. input[type="password"] {
  175.     background: #29A9AB ;
  176.     color: #29A9AB ;
  177.     border: #29A9AB 1px solid;
  178. }
  179. form table tr th {
  180.     background: #29A9AB ;
  181.     color: #060808;
  182.     border: #29A9AB;
  183.     font-weight: 800;
  184.     text-align: left;
  185.     padding: 0;
  186. }
  187. div.banner {
  188.     background: #009393 ;
  189.     color: #060808;
  190.     text-align: center;
  191.     width: 250px;
  192.     padding: 4px;
  193.     padding-left: 12px;
  194.     padding-right: 12px;
  195.     margin-left: auto;
  196.     margin-right: auto;
  197.     font-size: 12px;
  198. }
  199. div.banner a {
  200.     color:#060808;
  201. }
  202. input[type="submit"] {
  203.     background: #29A9AB ;
  204.     border: #29A9AB  1px solid;
  205.     color: #060808;
  206. }
  207. input[type="submit"]:hover {
  208.     background: #060808;
  209.     border: #29A9AB 1px solid;
  210.     color: #009393 ;
  211. }
  212. input[type="text"]:focus {
  213.     border:#29A9AB 1px solid;
  214. }
  215. p.fileinfo a:hover {
  216.     text-decoration: underline;
  217. }
  218. span.trip {
  219.     color: #009393 ;
  220. }
  221. div.pages {
  222.     color: #009393 ;
  223.     background: #060808;
  224.     border: #29A9AB 1px solid;
  225.     font-family: sans-serif;
  226.     font-size: 10pt;
  227. }
  228. div.pages a.selected {
  229.     color: #29A9AB;
  230. }
  231. hr {
  232.     height: 1px;
  233.     border: #29A9AB  1px solid;
  234. }
  235. div.boardlist {
  236.     color: #29A9AB ;
  237.     background-color: #060808;
  238. }
  239.  
  240. div.ban {
  241.     background-color: transparent;
  242.     border: transparent 0px solid;
  243. }
  244. div.ban h2 {
  245.     background: transparent;
  246.     color: lime;
  247.     font-size: 12px;
  248. }
  249.  
  250. span.spoiler {
  251.   background: #29A9AB none repeat scroll 1% 0%;
  252.     border: #29A9AB 1px solid;
  253.     padding: 1px 0px;
  254.     border-width: 1px;
  255.   border-style: solid solid solid solid;
  256.   border-color: #060808;
  257.   color: #29A9AB;
  258.     margin: auto;
  259.   display: inline-block;
  260. }
  261.  
  262. div.post.reply div.body span.spoiler a {
  263.   color: #29A9AB;
  264. }
  265.  
  266. span.spoiler:hover,div.post.reply div.body span.spoiler:hover a {
  267.   color: #009393;
  268.     background: #060808
  269. }
  270.  
  271.  
  272. table.modlog tr th {
  273.     background: #060808;
  274.     color: #009393 ;
  275. }
  276.  
  277. .desktop-style div.boardlist:not(.bottom) {
  278.   text-shadow: #060808 1px 1px 1px, #060808 -1px -1px 1px, #060808 -1px 1px 1px, #060808 1px -1px 1px;
  279.   background-color: #060808;
  280. }
  281.  
  282.  
  283. .desktop-style div.boardlist:not(.bottom):hover, .desktop-style div.boardlist:not(.bottom).cb-menu {
  284.   background-color: #060808;
  285. }
  286.  
  287. div.report {
  288.     color: #060808;
  289. }
  290.  
  291. /* options.js */
  292. #options_div, #alert_div {
  293.     background: #060808;
  294. }
  295. .options_tab_icon {
  296.     color: #004545;
  297. }
  298. .options_tab_icon.active {
  299.     color: #29A9AB;
  300. }
  301.  
  302. #quick-reply table {
  303.     background: none repeat scroll 0% 0% #060808 !important;
  304. }
  305.  
  306. .modlog tr:nth-child(even), .modlog th {
  307.     background-color: #060808;
  308. }
  309.  
  310.  
  311.  
  312. .box {
  313.     background: #060808;
  314.     border-color: #060808;
  315.     color: #29A9AB;
  316.     border-radius: 10px;
  317. }
  318. .box-title {
  319.     background: transparent;
  320.     color: #29A9AB ;
  321. }
  322.  
  323. table thead th {
  324.     background: #060808;
  325.     border-color: #060808;
  326.     color: #060808;
  327.     border-radius: 4px;
  328. }
  329. table tbody tr:nth-of-type( even ) {
  330.     background-color: #060808;
  331. }
  332.  
  333. table.board-list-table .board-uri .board-sfw {
  334.     color: #29A9AB;
  335. }
  336. tbody.board-list-omitted td {
  337.     background: #060808;
  338.     border-color: #060808;
  339. }
  340.  
  341. table.board-list-table .board-tags .board-cell:hover {
  342.     background: #060808;
  343. }
  344. table.board-list-table tr:nth-of-type( even ) .board-tags .board-cell {
  345.     background: #060808;
  346. }
  347. div.thread:hover
  348. {
  349.     background: #060808 !important;
  350.     border-color: #29A9AB !important;
  351. }
  352. span.spoiler:hover {background: #29A9AB !important;}
  353. .post-menu ul, .theme-catalog div.thread {background: #060808 !important;}
  354. .inline {border: #29A9AB  1px dashed;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement