Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. html, body {
  2. font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  3. font-size: 10pt;
  4.  
  5. background-color: #000000;
  6. background-image: url("https://screenshot.codepen.io/18932.YBPpwG.6332e68e-93ac-462b-b44c-034f96de220f.png");
  7. background-repeat: repeat;
  8.  
  9. position: relative;
  10. height: 100%;
  11.  
  12. color: #fcf005;
  13. }
  14.  
  15. .innerPost, .markedPost {
  16. display: inline-block;
  17. max-width: 100%;
  18.  
  19. margin: 0.2rem 4px;
  20. padding: 0.5rem 0.3rem 0.5rem 0.6rem;
  21. border-width: 1px;
  22. border-style: none solid solid none;
  23. border-color: #292929;
  24. background-color: #292929;
  25. }
  26.  
  27. .top-nav {
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. z-index: 100;
  32. display: block;
  33. width: 100%;
  34. padding: 0.25rem 0.75rem;
  35. background-color: #000000;
  36. border-bottom: 1px solid #000000;
  37. }
  38.  
  39. a, a:visited {
  40. color: #ba0707;
  41. text-decoration: none;
  42. }
  43.  
  44. a:hover {
  45. color: #f20a0a;
  46. }
  47.  
  48. a:active {
  49. outline: none;
  50. }
  51.  
  52. .linkSelf, .linkQuote,
  53. .linkSelf:visited, .linkQuote:visited {
  54. color: #ffffff;
  55. }
  56.  
  57. .labelSubject {
  58. color: #948e8e;
  59. font-weight: bold;
  60. }
  61.  
  62. .linkName.noEmailName {
  63. color: #ffffff;
  64. cursor: default;
  65. text-decoration: none;
  66. font-weight: bold;
  67. }
  68.  
  69. hr {
  70. height: 0px;
  71. border-width: 1px medium medium;
  72. border-style: solid none none;
  73. border-color: #292929;
  74. }
  75.  
  76. .reportFieldset,
  77. #settingsFieldset {
  78. text-align: left;
  79. position: relative;
  80. display: inline-block;
  81. vertical-align: top;
  82. margin: 1rem;
  83. padding: 1rem;
  84. min-height: 300px;
  85. background-color: #000000;
  86. border-width: 1px;
  87. border-style: none solid solid none;
  88. border-color: #000000;
  89. }
  90.  
  91. [type=text], [type=password], [type=number], textarea {
  92. background-color: #919191;
  93. color: black;
  94. border: 1px solid #000000;
  95. padding: 0.25rem;
  96. }
  97.  
  98. #postingForm th{
  99. background: #292929 url('https://anon.cafe/.media/7c268c65bf3e08ae7f2a65379684a6ef-imagepng.png');
  100. }
  101.  
  102. .floatingMenu {
  103. background-color: #000000;
  104. border: 1px solid #ffffff;
  105. padding: 0.5rem;
  106. }
  107.  
  108. .menuClose {
  109. color: #ba0707;
  110. cursor: pointer;
  111. float: right;
  112. font-size: 1.5rem;
  113. line-height: 1.5rem;
  114. }
  115.  
  116. .menuClose:hover {
  117. color: #f20a0a;
  118. }
  119.  
  120. .dropzone {
  121. background-color: #292929;
  122. padding: 0.5rem;
  123. cursor: pointer;
  124. }
  125.  
  126. span.detected::after {
  127. content: "Republic Credits were deposited into this user's account.";
  128.  
  129. position: absolute;
  130. left: 50%;
  131. transform: translateX(-50%);
  132. width: 10rem;
  133. font-size: 0.9rem;
  134. text-align: center;
  135. color: white;
  136. background: black;
  137. top: 0;
  138. opacity: 0;
  139. transition: .25s ease;
  140. transition-property: top, opacity;
  141. pointer-events: none;
  142. }
  143.  
  144. .settingsTab {
  145. background-color: #919191;
  146. padding: 0.25rem 0.5rem;
  147. margin: 0.25rem;
  148. border-radius: 4px;
  149. cursor: pointer;
  150. color: black;
  151. -webkit-user-select: none;
  152. -moz-user-select: none;
  153. -ms-user-select: none;
  154. -o-user-select: none;
  155. user-select: none;
  156. }
  157.  
  158. .settingsTab:hover {
  159. color: #ffffff;
  160. }
  161.  
  162. #selectedTab {
  163. background-color: #292929;
  164. color: white;
  165. }
  166.  
  167. #quick-reply {
  168. background-color: #292929;
  169. transform: rotate3d(1, 0, 0, 30deg);
  170. transition: transform .1s ease-in;
  171. }
  172.  
  173. #quick-reply .handle {
  174. background-color: #292929;
  175. display: block;
  176. border: 1px solid black;
  177. margin: -2px;
  178. padding: 2px;
  179. cursor: move;
  180. -webkit-user-select: none;
  181. -moz-user-select: none;
  182. -ms-user-select: none;
  183. -o-user-select: none;
  184. user-select: none;
  185. }
  186.  
  187. #selectedDiv, #selectedDivQr {
  188. background: #292929;
  189. min-width: 300px;
  190. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement