GreerTech

robowaifu css v1

Feb 17th, 2026
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. /* Everpresent Actions */
  2. #actionform {
  3. background: var(--post-color);
  4. bottom: 5px;
  5. position: fixed;
  6. }
  7.  
  8. .bottom-reply {
  9. background: var(--post-color);
  10. bottom: 0px;
  11. left:161px;
  12. position: fixed;
  13. }
  14.  
  15. .stickynav .nav-item {
  16. line-height: 35.5px;
  17. }
  18.  
  19. /* Selected Post Styling */
  20. .post-container {
  21. min-width: 0;
  22. transition: transform 0.2s ease-in-out,
  23. box-shadow 0.2s ease-in-out,
  24. background-color 0.2s ease-in-out,
  25. opacity 0.2s ease-in-out;
  26. }
  27.  
  28. .anchor:target + .post-container {
  29. transform: translate(1.5px, 1.5px);
  30. box-shadow: none;
  31. }
  32.  
  33. .thread .post-container.op,
  34. .thread .post-container.op * {
  35. transition: none !important;
  36. transform: none !important;
  37. background-color: transparent !important;
  38. border: none !important;
  39. }
  40.  
  41. #bottom {
  42. margin-bottom: 0px;
  43. }
  44.  
  45. /* Colored (hidden) Text */
  46. .spoiler {
  47. background: #00a2e8;
  48. color: #00a2e8;
  49. cursor: none;
  50. padding: .2px 0px
  51. }
  52.  
  53. .spoiler:not(:hover) * {
  54. color: #00a2e8;
  55. background: #00a2e8!important
  56. }
  57.  
  58. .greentext .spoiler:hover,
  59. .pinktext .spoiler:hover,
  60. .purpletext .spoiler:hover,
  61. .bluetext .spoiler:hover,
  62. .spoiler:hover a {
  63. color: inherit;
  64. }
  65.  
  66. /* Scrollbar */
  67. ::-webkit-scrollbar {
  68. width: 12px;
  69. height: 12px;
  70. }
  71.  
  72. ::-webkit-scrollbar-track {
  73. background: #00a2e8;
  74. }
  75.  
  76. ::-webkit-scrollbar-thumb {
  77. background-color: #00a2e8;
  78. border-radius: 4px;
  79. border: 2px solid #00a2e8;
  80. }
  81.  
  82. html {
  83. scrollbar-color: #00a2e8 #FFFFFF;
  84. scrollbar-width: thin;
  85. }
  86. html, body {
  87. background:#000000
  88. repeat fixed center;
  89. color: #00a2e8;
  90. font-family: "Trebuchet MS",Trebuchet,serif;
  91. font-size: 12pt;
  92. }
Advertisement
Add Comment
Please, Sign In to add comment