Advertisement
Guest User

Fixed terminal

a guest
Feb 20th, 2021
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. /*main text color and font*/
  2. div[style*="font-family: helvetica"], span[style*="font-family: helvetica"] {
  3. text-shadow: -1px 1px 0 #0000, 1px 1px 0 #0000, 1px -1px 0 #ff33f200, -1px -1px 0 #ff33f200;
  4. font-family: "monofonto" !important;
  5. color: #25fe38 !important;
  6. }
  7.  
  8. /*background color*/
  9. .r-13awgt0 {
  10. background-color: #11131700 !important;
  11. }
  12.  
  13. .r-eqz5dr {
  14. background-color: #11131700 !important;
  15. }
  16.  
  17. div[style*="border-radius: 10px; justify-content: flex-start; margin: 2px 5px; padding: 8px;"], div[style*="border-radius: 5px; height: 30px; width: auto;"], .css-1dbjc4n[style*="background-image: linear-gradient"] {
  18. background-color: #25fe38 !important; /* ----> Changes the background color of the in-game buttons (And also the "Continue" button) */
  19. background-image: none !important; /* ----> Removes the gradient from the do/say/story button */
  20. }
  21.  
  22. /*button text color */
  23. div[style*="font-family: MaterialCommunityIcons"] {
  24. text-shadow: -1px 1px 0 #0000, 1px 1px 0 #0000, 1px -1px 0 #ff33f200, -1px -1px 0 #ff33f200;
  25. color: #25fe38 !important;
  26. }
  27.  
  28. /*Do/Say/Story text color and font*/
  29. div[style*="font-family: HelveticaNeueMedium"] {
  30. text-shadow: -1px 1px 0 #0000, 1px 1px 0 #0000, 1px -1px 0 #ff33f200, -1px -1px 0 #ff33f200;
  31. color: #fff !important;
  32. font-family: "monofonto" !important;
  33. }
  34.  
  35. /*input box font*/
  36. textarea[style*="font-family: HelveticaNeueMedium"] {
  37. text-shadow: -1px 1px 0 #0000, 1px 1px 0 #0000, 1px -1px 0 #ff33f200, -1px -1px 0 #ff33f200;
  38. color: #fff !important
  39. font-family: "monofonto" !important;
  40. }
  41.  
  42. /*background image*/
  43. div[style*="padding-left: 90px"], .css-1dbjc4n.r-13awgt0.r-1udh08x.r-12vffkv {
  44. background-image: linear-gradient(rgba(0, 0, 0, .5),rgba(0, 0, 0, .5)),url(https://i.imgur.com/BDNxJeS.png?fb) !important;
  45. background-size: cover !important;
  46. }
  47.  
  48. /*hide scrollbars chromium*/
  49. *::-webkit-scrollbar {
  50. display: none !important;
  51. }
  52.  
  53. /*hide scrollbars firefox (maybe didnt test actually)*/
  54. * {
  55. scrollbar-width: none !important;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement