Guest User

Dark Theme

a guest
Jan 7th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. /* Import Tomorrow style */
  2. @import url('/stylesheets/tomorrow.css');
  3.  
  4. /* Remove top boards */
  5. /* span.sub:nth-child(3), span.sub:nth-child(4), span.sub:nth-child(5) {
  6. display:none;
  7. } */
  8.  
  9. /* Make posts max. 960px wide */
  10. form[name=postcontrols] {
  11. margin-left:auto;
  12. margin-right:auto;
  13. max-width:960px;
  14. border-left:1px solid #282a2e;
  15. border-right:1px solid #282a2e;
  16. }
  17.  
  18. div.post.reply {
  19. width:100%;
  20. }
  21.  
  22. /* Color (you) same as greenpost */
  23. .own_post {
  24. color:#ADBD68;
  25. opacity:1;
  26. font-weight:bold;
  27. }
  28.  
  29. /* Bigger Youtube embed, 16:9 */
  30. iframe {
  31. width:720px;
  32. height:405px;
  33. }
  34.  
  35. /* Fix user CSS field size (for Firefox) */
  36. /* div.options_tab:nth-child(5) > textarea:nth-child(2) {
  37. width:500px;
  38. height:282px;
  39. } */
  40.  
  41. /*------------------------------------------------------
  42. * Don't hide post count
  43. *------------------------------------------------------*/
  44. .posts_by_id{
  45. display:initial!important;
  46. font-weight:bold;
  47. }
  48.  
  49. /*------------------------------------------------------
  50. * Fake yous are obvious
  51. *------------------------------------------------------*/
  52. .body small {
  53. font-weight:bold;
  54. color: #117743;
  55. text-shadow: #ffffff 0 0 8px;
  56. }
  57. .body small:hover {
  58. color:#11bb11;
  59. }
  60.  
  61. /*------------------------------------------------------
  62. * The only real trips are Patriot Trips
  63. *------------------------------------------------------*/
  64. time:before, span.trip::before{
  65. font-size:18px;
  66. content:" ";
  67. color:#bbbbff;
  68. }
  69. time::after, span.trip::after {
  70. font-size:18px;
  71. content: " ";
  72. color:#bbbbff;
  73. }
  74.  
  75.  
  76. span.trip, span.capcode{
  77. padding:1px 3px 1px 3px;
  78. background-color:black;
  79. border-radius:8px;
  80. border:1px solid #bbbbee;
  81. color:gold;
  82. background: linear-gradient(300deg, #ff0000, #ff0000, #ff0000, #bbbbbb, #4444ff);
  83. background-size: 1800% 1800%;
  84.  
  85. -webkit-animation: Patriot 6s ease infinite;
  86. -moz-animation: Patriot 6s ease infinite;
  87. -o-animation: Patriot 6s ease infinite;
  88. animation: Patriot 6s ease infinite;
  89. -webkit-text-fill-color: transparent;
  90.  
  91. background: -o-linear-gradient(transparent, transparent);
  92. -webkit-background-clip: text;
  93. }
  94.  
  95. @-webkit-keyframes Patriot {
  96. 0%{background-position:0% 19%}
  97. 50%{background-position:100% 82%}
  98. 100%{background-position:0% 19%}
  99. }
  100. @-moz-keyframes Patriot {
  101. 0%{background-position:0% 19%}
  102. 50%{background-position:100% 82%}
  103. 100%{background-position:0% 19%}
  104. }
  105. @-o-keyframes Patriot {
  106. 0%{background-position:0% 19%}
  107. 50%{background-position:100% 82%}
  108. 100%{background-position:0% 19%}
  109. }
  110. @keyframes Patriot {
  111. 0%{background-position:0% 19%}
  112. 50%{background-position:100% 82%}
  113. 100%{background-position:0% 19%}
  114. }
Add Comment
Please, Sign In to add comment