Advertisement
dreamyshambles

Terminal

Aug 21st, 2020 (edited)
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.54 KB | None | 0 0
  1. /*main text color and font*/
  2. div[style*="font-family: helvetica"], span[style*="font-family: helvetica"] {
  3.     color: #abea78 !important;
  4.     font-family: "04b03" !important;
  5.     text-transform: uppercase;
  6. }
  7.  
  8. /*leave these transparant*/
  9. .r-13awgt0 {
  10.     background-color: #0000 !important;
  11. }
  12.  
  13. .r-eqz5dr {
  14.     background-color: #0000 !important;
  15. }
  16.  
  17. /*background image*/
  18.  
  19. div[style*="padding-left: 90px"], div[style*="display: flex; justify-content: flex-start; padding-bottom: 40px; padding-top: 64px;"] {
  20.     background-color: #111 !important;
  21. }
  22.  
  23. /*button text color */
  24. div[style*="font-family: MaterialCommunityIcons"] {
  25.     color: #abea78 !important;
  26. }
  27.  
  28. /*button color*/
  29. div[style*="border-radius: 10px"] {
  30.     background-color: #0000004f !important;
  31. }
  32.  
  33. /*Do/Say/Story text color and font*/
  34. div[style*="font-family: HelveticaNeueMedium"] {
  35.     color: #abea78 !important;
  36.     font-family: "04b03" !important;
  37.     text-transform: uppercase;
  38. }
  39.  
  40. /*Do/Say/Story button color*/
  41. div[aria-label*="Do"],div[aria-label*="Say"],div[aria-label*="Story"] {
  42.     background-color: #555 !important;
  43. }
  44.  
  45. /*input box font*/
  46. textarea[style*="font-family: HelveticaNeueMedium"] {
  47.     font-family: "04b03" !important;
  48.     text-transform: uppercase;
  49. }
  50.  
  51. /*input box border color*/
  52. .css-1dbjc4n.r-13awgt0.r-18u37iz {
  53.     border-color: #0000005c !important;
  54. }
  55.  
  56. /*hide scrollbars Chromium*/
  57. *::-webkit-scrollbar {
  58.   display: none;
  59. }
  60.  
  61. /* Hide scrollbars firefox (maybe didnt test actually) */
  62. * {
  63.   scrollbar-width: none;  /* Firefox */
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement