dreamyshambles

spooky theme

Aug 21st, 2020 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.30 KB | None | 0 0
  1. /*main text color and font*/
  2. div[style*="font-family: helvetica"], span[style*="font-family: helvetica"] {
  3.     font-family: "Comic Sans MS", "Comic Sans" !important;
  4.     color: #f9ecb0 !important;
  5.     text-shadow: -1px 1px 0 #f00,
  6.                   1px 1px 0 #000,
  7.                  1px -1px 0 #fff;
  8. }
  9.  
  10. /*leave these transparant*/
  11. .r-13awgt0 {
  12.     background-color: #0000 !important;
  13. }
  14.  
  15. .r-eqz5dr {
  16.     background-color: #0000 !important;
  17. }
  18.  
  19. /*background image*/
  20.  
  21. div[style*="padding-left: 90px"], div[style*="display: flex; justify-content: flex-start; padding-bottom: 40px; padding-top: 64px;"] {
  22.     background-image: url(https://motherboard-images.vice.com/content-images/contentimage/38932/147756946091461.gif) !important;
  23. }
  24.  
  25. /*button text color */
  26. div[style*="font-family: MaterialCommunityIcons"] {
  27.     color: #b0b0b0 !important;
  28. }
  29.  
  30. /*Do/Say/Story text color and font*/
  31. div[style*="font-family: HelveticaNeueMedium"] {
  32.     color: #b7b7b7 !important;
  33.     font-family: "Determination Sans" !important;
  34. }
  35.  
  36. /*input box font*/
  37. textarea[style*="font-family: HelveticaNeueMedium"] {
  38.     font-family: "Determination Sans" !important;
  39. }
  40.  
  41. /*hide scrollbars Chromium*/
  42. *::-webkit-scrollbar {
  43.   display: none;
  44. }
  45.  
  46. /* Hide scrollbars firefox (maybe didnt test actually) */
  47. * {
  48.   scrollbar-width: none;  /* Firefox */
  49. }
Add Comment
Please, Sign In to add comment