Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. ::-webkit-scrollbar {
  2. width: 12px;
  3. height: 12px;
  4. }
  5. ::-webkit-scrollbar-track {
  6. background: rgba(0, 0, 0, 0.1);
  7. }
  8. ::-webkit-scrollbar-thumb {
  9. background: rgba(0, 255, 0, 0.3);
  10. }
  11. body {
  12. background: #000;
  13. color: #6F0;
  14. font-family: consolas;
  15. font-size: 15px;
  16. }
  17. .quote {
  18. color: #ff8f00
  19. }
  20. a,
  21. a:visited {
  22. color: rgb(162, 0, 255);
  23. }
  24. div.boardlist a {
  25. color: #0f0
  26. }
  27. .desktop-style div.boardlist:not(.bottom) {
  28. background-color: #000!important;
  29. color: #A200FF
  30. }
  31. #alert_background,
  32. #options_background {
  33. background: #32026F
  34. }
  35. #alert_div,
  36. #options_div {
  37. background-color: #4D4871
  38. }
  39. form table tr th {
  40. background: #464646
  41. }
  42. .intro span.subject {
  43. color: #e600ff;
  44. }
  45. input[type=text],
  46. textarea {
  47. background-color: #000;
  48. color: #0f0
  49. }
  50. @keyframes rainbow-text-boarder {
  51. from {
  52. border-color: #ff0;
  53. box-shadow: 0 0 10px #ff0
  54. }
  55. 33% {
  56. border-color: #0f0;
  57. box-shadow: 0 0 10px #0f0
  58. }
  59. 66% {
  60. border-color: #00f;
  61. box-shadow: 0 0 10px #00f
  62. }
  63. to {
  64. border-color: #ff0;
  65. box-shadow: 0 0 10px #ff0
  66. }
  67. }
  68. @keyframes rainbow-text {
  69. from {
  70. color: red
  71. }
  72. 20% {
  73. color: orange
  74. }
  75. 40% {
  76. color: yellow
  77. }
  78. 60% {
  79. color: lime
  80. }
  81. 80% {
  82. color: violet
  83. }
  84. to {
  85. color: red
  86. }
  87. }
  88. .intro span.name,
  89. span.trip {
  90. animation-name: rainbow-text;
  91. animation-duration: 4s;
  92. animation-iteration-count: infinite
  93. }
  94. div.post.reply:not(.post-hover) {
  95. margin-left: 1em;
  96. transition: 1s ease-in-out;
  97. }
  98. div.post.reply.highlighted {
  99. margin-left: 4em;
  100. background: RGBA(0, 0, 0, 0.69) !important;
  101. transition: 1s ease-in-out;
  102. animation-name: rainbow-text-boarder;
  103. animation-duration: 3s;
  104. animation-iteration-count: infinite
  105. }
  106. div.post.reply {
  107. border-color: #191919;
  108. background: RGBA(0, 0, 0, 0.49);
  109. box-shadow: 5px 5px 7px rgb(114, 0, 255);
  110. }
  111. div.post {
  112. min-width: 40vw
  113. }
  114. @keyframes turn-on {
  115. 100% {
  116. transform: scale(1, 1.3) translate3d(0, 0, 0);
  117. -webkit-filter: brightness(1);
  118. filter: brightness(1);
  119. opacity: 1;
  120. }
  121. 60% {
  122. transform: scale(1.3, 0.001) translate3d(0, 0, 0);
  123. -webkit-filter: brightness(10);
  124. filter: brightness(10);
  125. }
  126. 0% {
  127. animation-timing-function: $ease-in-quint;
  128. transform: scale(0.000, 0.0001) translate3d(0, 0, 0);
  129. -webkit-filter: brightness(50);
  130. filter: brightness(50);
  131. }
  132. }
  133. .ui-draggable,
  134. .post-image {
  135. animation: turn-on 0.55s linear;
  136. animation-fill-mode: none;
  137. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement