Guest User

Untitled

a guest
Apr 19th, 2026
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.55 KB | None | 0 0
  1. * {
  2. font-family: "Futura", "Trebuchet MS", "Arial", "Helvetica", sans-serif;
  3. }
  4.  
  5. /* Body with a sky-to-ocean gradient */
  6. body {
  7. background:
  8. linear-gradient(
  9. rgba(0, 0, 0, 0.8),
  10. rgba(0, 0, 0, 0.8)
  11. ),
  12. url(https://soybooru.com/api/booru/posts/31454/file)
  13. no-repeat center fixed;
  14.  
  15. background-size: cover; /* ensures the image fills the screen */
  16.  
  17. color: #FFFFFF;
  18. font-family: Arial, Helvetica, sans-serif;
  19. font-size: 10pt;
  20. margin: 0 4px;
  21. min-height: 100vh;
  22. }
  23.  
  24. /* Sun styling with pseudo-element to create a larger sun in the background */
  25. body::before {
  26. content: '';
  27. position: fixed;
  28. width: 100px;
  29. height: 100px;
  30. background: radial-gradient(circle, rgba(255, 245, 84, 1) 0%, rgba(255, 205, 0, 1) 100%);
  31. border-radius: 50%;
  32. top: var(--sun-top, 60%);
  33. left: var(--sun-left, 0);
  34. z-index: -3; /* Below clouds (z-index: -2) */
  35. box-shadow: 0 0 30px #FFCD00, 0 0 60px #FFCD00;
  36. transition: left 2s linear, top 2s linear;
  37. }
  38.  
  39. /* Sun element for JS to target */
  40. #dynamic-sun {
  41. position: fixed;
  42. width: 100px;
  43. height: 100px;
  44. top: 40%;
  45. left: 0;
  46. z-index: -1;
  47. }
  48.  
  49.  
  50. a:visited, .intro a.email span.name {
  51. color: #0000CD;
  52. text-decoration: underline;
  53. }
  54. a {
  55. color: #4B4BCC;
  56. }
  57.  
  58. a:hover, .intro a.post_no:hover {
  59. color: #FFD700;
  60. }
  61.  
  62. header div.subtitle,
  63. h1 {
  64. animation: flashColors3 5s infinite steps(1, end);
  65. text-align: center;
  66. }
  67.  
  68. a.post_no {
  69. color: #006400;
  70. text-decoration: none;
  71. }
  72.  
  73. .intro a.post_no {
  74. color: inherit;
  75. }
  76.  
  77. div.post.reply {
  78. color: #FFFFFF;
  79. background: linear-gradient(to bottom, #545454, #363636);
  80. border: 0px solid #000000;
  81. }
  82.  
  83. div.post.reply.highlighted {
  84. background: linear-gradient(to bottom, #5E5E5E, #737373);
  85. color: #00FFFF;
  86. animation: flashColors 6s infinite linear;
  87. border: 0px solid #000000;
  88. }
  89.  
  90. div.post.reply div.body a {
  91. color: #4682B4;
  92. }
  93.  
  94. div.post div.body {
  95. color: #FFFFFF;
  96. word-wrap: break-word;
  97. white-space: pre-wrap;
  98. }
  99.  
  100. .intro span.subject {
  101. text-shadow: 0 0 10px #FF0073;
  102. color: #FF0073;
  103. font-weight: bold;
  104. }
  105.  
  106. .intro span.name {
  107. color: #D600CD;
  108. font-weight: bold;
  109. }
  110.  
  111. div.banner {
  112. color: #000000;
  113. animation: flashColors2 5s infinite steps(1, end);
  114. font-size: 12pt;
  115. font-weight: bold;
  116. text-align: center;
  117. margin: 1em 0;
  118. }
  119.  
  120. div.banner a {
  121. color: #000000;
  122. }
  123.  
  124. /* Form tables with tropical gradient */
  125. form table tr th {
  126. background: #D600CD;
  127. color: #FFFFFF;
  128. font-weight: 700;
  129. border: 1px solid #404040;
  130. font-size: 10pt;
  131. }
  132.  
  133. /* Ban styling with lush foliage gradient */
  134. div.ban {
  135. background: linear-gradient(to bottom, #F5F5F5, #E0FFFF);
  136. border: 1px solid #006400;
  137. max-width: 700px;
  138. }
  139.  
  140. div.ban h2 {
  141. background: linear-gradient(to right, #90EE90, #98FB98);
  142. color: #006400;
  143. font-size: 12pt;
  144. }
  145.  
  146. div.ban p {
  147. color: black;
  148. font-size: 12px;
  149. }
  150.  
  151. /* Pagination with sandy gradient */
  152. div.pages {
  153. background: linear-gradient(to bottom, #FFFACD, #F4E4BC);
  154. border-right: 1px solid #60DCEA;
  155. border-bottom: 1px solid #60DCEA;
  156. color: #89A;
  157. }
  158.  
  159. div.pages a.selected {
  160. color: #006400;
  161. font-weight: bolder;
  162. }
  163.  
  164. h1 {
  165. font-family: Tahoma;
  166. letter-spacing: -2px;
  167. font-size: 20pt;
  168. }
  169.  
  170. header div.subtitle {
  171. font-size: 8pt;
  172. }
  173.  
  174. /* Horizontal rules with wet sand */
  175. hr {
  176. border: none;
  177. border-top: 1px solid #00E0FF;
  178. }
  179.  
  180. /* Board list with sunny gradient */
  181. div.boardlist {
  182. color: #79498C;
  183. font-size: 9pt;
  184. background: linear-gradient(to bottom, #545454, #363636);
  185. }
  186.  
  187. div.boardlist a {
  188. color: #D600CD;
  189. text-decoration: none;
  190. }
  191.  
  192. /* Modlog table with tropical gradient */
  193. table.modlog tr th {
  194. background: linear-gradient(to right, #545454, #363636);
  195. }
  196.  
  197. /* Options and alert dialogs with sandy gradient */
  198. #options_div, #alert_div {
  199. background: linear-gradient(to bottom, #545454, #363636);
  200. border: 1px solid #60DCEA;
  201. }
  202.  
  203. div.ban {
  204. background: linear-gradient(to bottom, #363636, #545454);
  205. border: 1px solid #00FFF7;
  206. max-width: 700px;
  207. margin: 30px auto;
  208. }
  209.  
  210. div.ban h2 {
  211. background: linear-gradient(to right, #00FFF7, #00FFF7);
  212. color: #005956;
  213. font-size: 12pt;
  214. }
  215.  
  216. div.ban p {
  217. color: red;
  218. font-size: 12px;
  219. }
  220.  
  221. /* Fixed boardlist with sandy gradient */
  222. .desktop-style div.boardlist:nth-child(1) {
  223. background: linear-gradient(to bottom, #545454, #363636);
  224. z-index: 30;
  225. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  226. border-bottom: 1px solid #60DCEA;
  227. }
  228.  
  229. span.quote { color: #789922; }
  230. span.quote2 { color: #f6750b; }
  231. span.spoiler {
  232. background: black;
  233. color: black;
  234. }
  235. span.spoiler:hover, div.post.reply div.body span.spoiler:hover a {
  236. color: white;
  237. }
  238. div.post.reply div.body span.spoiler a {
  239. color: black;
  240. }
  241. span.heading {
  242. color: #AF0A0F;
  243. font-size: 11pt;
  244. font-weight: bold;
  245. }
  246. span.heading2 {
  247. color: #2424ad;
  248. font-size: 11pt;
  249. font-weight: bold;
  250. }
  251. span.omitted {
  252. display: block;
  253. margin-top: 1em;
  254. color: #707070;
  255. }
  256. input[type="text"], input[type="password"], textarea {
  257. border: 1px solid #a9a9a9;
  258. }
  259. textarea { width: 100%; }
  260. div.banner a:hover {
  261. color: #EEF2FF;
  262. text-decoration: none;
  263. }
  264. img.banner, img.board_image {
  265. border: 1px solid #a9a9a9;
  266. }
  267.  
  268. textarea, input {
  269. background-color: #242424;
  270. color: #60DCEA;
  271. }
  272. td#upload_selection {
  273. background: linear-gradient(to bottom, #545454, #363636);
  274. }
  275. div.dropzone-wrap {
  276. background: linear-gradient(to bottom,#545454, #363636);
  277. }
  278.  
  279. .flash-border {
  280. border: 2px solid #04FF00 !important;
  281. }
  282.  
  283. @keyframes flashColors {
  284. 0% { box-shadow: 0 0 10px #04FF00; }
  285. 20% { box-shadow: 0 0 10px #FF0000; }
  286. 40% { box-shadow: 0 0 10px #0000FF; }
  287. 60% { box-shadow: 0 0 10px #FFFF00; }
  288. 80% { box-shadow: 0 0 10px #FF00FF; }
  289. 100% { box-shadow: 0 0 10px #04FF00; }
  290. }
  291.  
  292. @keyframes flashColors2 {
  293. 0% { background-color: #04FF00; }
  294. 20% { background-color: #FF0000; }
  295. 40% { background-color: #0000FF; }
  296. 60% { background-color: #FFFF00; }
  297. 80% { background-color: #FF00FF; }
  298. 100% { background-color: #04FF00; }
  299. }
  300.  
  301. @keyframes flashColors3 {
  302. 0% { color: #04FF00; }
  303. 20% { color: #FF0000; }
  304. 40% { color: #0000FF; }
  305. 60% { color: #FFFF00; }
  306. 80% { color: #FF00FF; }
  307. 100% { color: #04FF00; }
  308. }
Advertisement
Add Comment
Please, Sign In to add comment