lamentusrobotus

Untitled

Dec 19th, 2025 (edited)
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.56 KB | Source Code | 0 0
  1. <style>
  2. html, body {
  3.   background-color: white !important;
  4.   color: red !important;
  5.   overflow-x: hidden;
  6.   perspective: 900px;
  7. }
  8.  
  9. #q, button,
  10. nav .top, nav .links,
  11. main, .heading, .url-info,
  12. .profile .inner, .profile-info, .profile .contact, .profile .table-section, .home-actions,
  13. footer, td, table.details-table {
  14.   background-color: white !important;
  15.   background-image: none !important;
  16.   color: red !important;
  17.   border-color: grey !important;
  18. }
  19.  
  20. #q, button {
  21.   background-color: white !important;
  22.   color: red !important;
  23.   border: 1px solid grey !important;
  24. }
  25.  
  26. td {
  27.   background-color: white !important;
  28.   color: red !important;
  29. }
  30.  
  31. p, i, b, .count,
  32. a, .profile .friends .person p, .logout-btn,
  33. nav, nav .links a, .heading, .url-info, .profile h1, footer p {
  34.   color: red !important;
  35.   text-decoration: underline !important;
  36. }
  37.  
  38. *[style*="background-color: black"],
  39. *[style*="background:black"],
  40. *[style*="background:#000"] {
  41.   background-color: white !important;
  42.   background-image: none !important;
  43. }
  44.  
  45. html::before {
  46.   content: "";
  47.   position: fixed;
  48.   inset: 0;
  49.   pointer-events: none;
  50.   z-index: 999999;
  51.   background:
  52.     linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.25) 50%),
  53.     repeating-linear-gradient(transparent, transparent 1px, rgba(0,0,0,0.06) 2px);
  54.   background-size: 100% 2px, 3px 100%;
  55.   mix-blend-mode: multiply;
  56. }
  57.  
  58. body {
  59.   transform-style: preserve-3d;
  60.   transform:
  61.     rotateY(-9deg)
  62.     rotateZ(-3deg)
  63.     rotateX(2deg);
  64.   transform-origin: 50% 0;
  65. }
  66.  
  67. footer p { color: red !important; }
  68. </style>
  69.  
Advertisement
Add Comment
Please, Sign In to add comment