Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.26 KB | None | 0 0
  1. /* Haluatko tägit pois näkyvistä?
  2.  
  3. .tag {
  4. display: none;
  5. }
  6.  
  7.  
  8. .postedbyop, .admin {
  9. display: inline;
  10. }
  11.  
  12. */
  13.  
  14.  
  15. body {
  16. background: #222222;
  17. }
  18.  
  19.  
  20. body.menu_opened #left nav {
  21. border-bottom: 1px solid #222222;
  22. }
  23.  
  24.  
  25. p.infobar a {
  26. color: #000000 !important;
  27. }
  28.  
  29.  
  30. a {
  31. color: #17a45c;
  32. }
  33.  
  34.  
  35. a:link {
  36. color: #17a45c;
  37. }
  38.  
  39.  
  40. a:visited {
  41. color: #17a45c;
  42. }
  43.  
  44.  
  45. a:hover {
  46. color: #ba1f27;
  47. }
  48.  
  49.  
  50. a[onclick] {
  51. cursor:pointer
  52. color: #ba1f27;
  53. }
  54.  
  55.  
  56. a:active {
  57. color: #17a45c;
  58. }
  59.  
  60.  
  61. .icon-share2 {
  62. display: none !important;
  63. }
  64.  
  65.  
  66. .icon-text-align-justify {
  67. display: none !important;
  68. }
  69.  
  70.  
  71. /* Näyttää kaikkien nimenä Anonyymi eli piilottaa nimihomojen nimet */
  72. .postername {
  73. display: none;
  74. }
  75.  
  76.  
  77. .tags:before {
  78. content: 'Anonyymi';
  79. color: #117442;
  80. font-weight: 600;
  81. }
  82.  
  83.  
  84. .pure-table {
  85. border: 1px solid #000;
  86. }
  87.  
  88.  
  89. .pure-table thead {
  90. background: #17a45c;
  91. }
  92.  
  93.  
  94. .pure-table td, .pure-table th {
  95. border-left: 1px solid #000;
  96. }
  97.  
  98.  
  99. .pure-table-striped tr:nth-child(2n-1) td {
  100. background-color: #000;
  101. }
  102.  
  103.  
  104. .boardheader h1 {
  105. color: #17a45c;
  106. }
  107.  
  108.  
  109. .infobar {
  110. background-color: #17a45c;
  111. border-radius: 0px;
  112. }
  113.  
  114.  
  115. .postedbyop {
  116. background-color: #17a45c;
  117. }
  118.  
  119.  
  120. .tooltip {
  121. background-color: #1c1c1c;
  122. }
  123.  
  124.  
  125. .tooltip .postuid {
  126. background-color: #333333;
  127. border: 1px solid #3a3a3a;
  128. }
  129.  
  130.  
  131. .tooltip .goldhide-info {
  132. background-color: #252525;
  133. border-top: 1px solid #17a45c;
  134. }
  135.  
  136.  
  137. .tooltip .postername {
  138. color:#ff5656;
  139. }
  140.  
  141.  
  142. .tooltip .postinfo {
  143. background-color: #252525;
  144. }
  145.  
  146.  
  147. .tooltip .replies {
  148. border-top:1px solid #3c3c3c;
  149. }
  150.  
  151.  
  152. .tooltip .post a:hover,.tooltip .replies a:hover {
  153. color: #17a45c;
  154. }
  155.  
  156.  
  157. .tooltip .filecontainer figcaption a:hover {
  158. color: #17a45c;
  159. }
  160.  
  161.  
  162. .tooltip .post a,.tooltip .replies a {
  163. color: #17a45c;
  164. }
  165.  
  166.  
  167. .linkbutton:hover {
  168. border-color: #17a45c;
  169. }
  170.  
  171.  
  172. .linkbutton {
  173. border-right: 1px solid #17a45c;
  174. border-bottom: 1px solid #17a45c;
  175. }
  176.  
  177.  
  178. .dialog {
  179. border: 1px solid #222;
  180. }
  181.  
  182.  
  183. input, select, textarea, button {
  184. background-color: #333333 !important;
  185. border-color: #404040 !important;
  186. color: #d4d4d4;
  187. }
  188.  
  189.  
  190. #notifications .notification.unread {
  191. background-color: #252525;
  192. }
  193.  
  194.  
  195. #left {
  196. background-color: #292929;
  197. }
  198.  
  199.  
  200. #left nav {
  201. border-bottom: 1px solid #333333;
  202. }
  203.  
  204.  
  205. #front .box {
  206. background: #252525;
  207. }
  208.  
  209.  
  210. #front .news .newstext {
  211. background-color: #222;
  212. }
  213.  
  214.  
  215. #front nav#front-boards a:hover {
  216. background-color: #333333;
  217. }
  218.  
  219.  
  220. #left a {
  221. color: rgb(238, 238, 238);
  222. }
  223.  
  224.  
  225. #left a:not(.logo):hover {
  226. background: #292929;
  227. }
  228.  
  229.  
  230. #right {
  231. background-color: #222;
  232. }
  233.  
  234.  
  235. #right .threads .thread .postuid {
  236. background-color: #333333;
  237. border: 1px solid #3a3a3a;
  238. }
  239.  
  240.  
  241. #right .threads .thread .edits h4 {
  242. background-color: #383838;
  243. }
  244.  
  245.  
  246. #right .threads .thread .edits .edit {
  247. border-top: 1px solid #3c3c3c;
  248. }
  249.  
  250.  
  251. #right form#post.asyncreply {
  252. background-color: #252525;
  253. }
  254.  
  255.  
  256. #right .hidden [class^="icon-"], #right .hidden [class*=" icon-"] {
  257. background-color: #17a45c;
  258. }
  259.  
  260.  
  261. #right .threads .thread .goldhide-info {
  262. border-top: 1px solid #17a45c;
  263. }
  264.  
  265.  
  266. #right .threads .thread .postinfo {
  267. background-color: #252525;
  268. }
  269.  
  270.  
  271. #right .threads .thread .post a,#right .threads .thread .replies a {
  272. color: #17a45c;
  273. }
  274.  
  275.  
  276. #right .threads .thread .post a:hover,#right .threads .thread .replies a:hover {
  277. color: #ba1f27;
  278. }
  279.  
  280.  
  281. #right .threads .thread .filecontainer figcaption a:hover {
  282. color: #ba1f27;
  283. }
  284.  
  285.  
  286. #right .threads.style-box .thread, #right .threads.style-box .hidden {
  287. border: 1px solid #17a45c;
  288. }
  289.  
  290.  
  291. #right .threads .thread .postername {
  292. color: #ff5656;
  293. }
  294.  
  295.  
  296. #right form#post .label {
  297. color: #17a45c;
  298. }
  299.  
  300.  
  301. #right form#post #postbuttons {
  302. border: 1px solid #17a45c;
  303. }
  304.  
  305.  
  306. #right form#post #postoptions {
  307. border: 1px solid #17a45c;
  308. background-color: #252525;
  309. }
  310.  
  311.  
  312. #right .threads .thread .post a, #right .threads .thread .replies a {
  313. color: #17a45c;
  314. }
  315.  
  316.  
  317. #right .navigationbar .pagination .cur {
  318. background-color: #17a45c;
  319. }
  320.  
  321.  
  322. #right .navigationbar {
  323. border-top: 1px solid #222;
  324. border-bottom: 1px solid #222;
  325. }
  326.  
  327. #right .navigationbar .pagination {
  328. border: 1px solid #333333;
  329. border-radius: 0px;
  330. }
  331.  
  332.  
  333. #front h3 {
  334. background: #17a45c;
  335. }
  336.  
  337.  
  338. #right .threads .thread .messageoptions a, #right .threads .thread .messageoptions_mobile, #right .threads .thread .icon-share2 {
  339. /* background-color: rgba(255,255,255,0.05); */
  340. background-color: #333;
  341. color: #eee;
  342. }
  343.  
  344.  
  345. #right .navigationbar .pagination {
  346. background-color: #252525;
  347. }
  348.  
  349.  
  350. #right.preferences .tag-preview-box {
  351. border: 1px solid #17a45c;
  352. }
  353.  
  354.  
  355. #right.preferences .tag-preview-box h4 {
  356. background-color: #252525;
  357. border-bottom: 1px solid #17a45c;
  358. }
  359.  
  360.  
  361. #right .threads.style-replies .thread .messageoptions {
  362. border: 0;
  363. }
  364.  
  365.  
  366. #right .threads.style-replies .post .postcontent {
  367. background-color: #1c1c1c;
  368. }
  369.  
  370.  
  371. #right .threads .thread .post {
  372. background-color: #1c1c1c;
  373. }
  374.  
  375.  
  376. #right .thread .answers .answer.highlighted {
  377. border: 5px dashed #17a45c;
  378. border-radius: 0px;
  379. }
  380.  
  381.  
  382. #right .threads .thread .answer.highlighted .postinfo {
  383. background-color: #252525;
  384. border-color: #1C1C1C;
  385. }
  386.  
  387.  
  388. #right .threads.style-box .thread .file, #right .threads.style-box .hidden .file {
  389. background-color: #252525;
  390. }
  391.  
  392.  
  393. #right .threads .thread .answer {
  394. background-color: #252525;
  395. border-bottom: 1px solid #17a45c;
  396. border-right: 1px solid #17a45c;
  397. border-radius: 0px;
  398. }
  399.  
  400.  
  401. #right .threads .thread .postinfo {
  402. background-color: #252525;
  403. border-bottom: 1px solid #1C1C1C;
  404. }
  405.  
  406.  
  407. #right.preferences form input[type="submit"] {
  408. color: #d4d4d4;
  409. }
  410.  
  411.  
  412. #right.preferences form textarea {
  413. background-color: #333333;
  414. color: #d4d4d4;
  415. border: 1px solid #404040;
  416. }
  417.  
  418.  
  419. #right.preferences form select {
  420. background-color: #333333;
  421. color: #d4d4d4;
  422. border: 1px solid #404040;
  423. }
  424.  
  425.  
  426. #right form#post #msg {
  427. border: 1px solid #17a45c;
  428. }
  429.  
  430.  
  431. #right form#post textarea, #right form#post input, #right form#post button, #right form#post select {
  432. background-color: #333333 !important;
  433. border-color: #404040 !important;
  434. }
  435.  
  436.  
  437. #right form#post textarea, #right form#post input, #right form#post :not(#postbuttons) button, #right form#post select {
  438. background-color: #333333 !important;
  439. border-color: #404040 !important;
  440. }
  441.  
  442.  
  443. #right form#post #embedtype {
  444. color: #d4d4d4;
  445. }
  446.  
  447.  
  448. #right form#post #file {
  449. color: #d4d4d4;
  450. }
  451.  
  452.  
  453. #right form#post #postbuttons button {
  454. color: #17a45c;
  455. }
  456.  
  457.  
  458. #right form#post #postbuttons, #right form#post #colorbuttons {
  459. border: 1px solid #404040;
  460. background-color: #333333;
  461. }
  462.  
  463.  
  464. #right form#post #colorbuttons {
  465. border-top: 1px solid #333333;
  466. }
  467.  
  468.  
  469. #right.preferences input[type="text"], #right.preferences input[type="password"] {
  470. border: 1px solid #404040;
  471. }
  472.  
  473.  
  474. #right .threads .thread .replies {
  475. border-top: 1px solid #3c3c3c;
  476. background-color: #1c1c1c;
  477. }
  478.  
  479.  
  480. #right .thread .answers .answer {
  481. border: 1px solid #222;
  482. }
  483.  
  484.  
  485. #right .threads .thread .answer.highlighted {
  486. background-color: #252525;
  487. border-color: #17a45c;
  488. }
  489.  
  490.  
  491. #right form#post #postbuttons #colorbuttons {
  492. border-top: 1px solid #17a45c;
  493. }
  494.  
  495.  
  496. ::-webkit-scrollbar {
  497. width: 10px;
  498. border-radius: 10px;
  499. }
  500.  
  501.  
  502. ::-webkit-scrollbar-track {
  503. background: #111;
  504. }
  505.  
  506.  
  507. ::-webkit-scrollbar-thumb {
  508. background: #117442;
  509. }
  510.  
  511.  
  512. ::-webkit-scrollbar-thumb:hover {
  513. background: #117442;
  514. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement