Advertisement
Guest User

Fixed simple terminal

a guest
Feb 20th, 2021
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 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.css-1dbjc4n.r-13awgt0.r-1udh08x.r-12vffkv {
  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