Advertisement
Guest User

AID Automata

a guest
Aug 24th, 2020
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.20 KB | None | 0 0
  1. /* Text */
  2. * {
  3. font-family: "Arial" !important; /* ----> Change "Arial" to whatever font you want */
  4. font-weight: lighter !important;
  5. color: #454138 !important;
  6.  
  7. }
  8.  
  9. /* background */
  10. div[style*="padding-left: 90px"], div[style*="display: flex; justify-content: flex-start; padding-bottom: 40px; padding-top: 64px"] {
  11. background-size: 0.3rem 0.3rem;
  12. background-image: -webkit-linear-gradient(left, #ccc8b1 1px, rgba(204,200,177,0) 1px), -webkit-linear-gradient(top, #ccc8b1 1px, rgba(204,200,177,0) 1px);
  13. background-image: -moz-linear-gradient(left, #ccc8b1 1px, rgba(204,200,177,0) 1px), -moz-linear-gradient(top, #ccc8b1 1px, rgba(204,200,177,0) 1px);
  14. background-image: -o-linear-gradient(left, #ccc8b1 1px, rgba(204,200,177,0) 1px), -o-linear-gradient(top, #ccc8b1 1px, rgba(204,200,177,0) 1px);
  15. background-image: -ms-linear-gradient(left, #ccc8b1 1px, rgba(204,200,177,0) 1px), -ms-linear-gradient(top, #ccc8b1 1px, rgba(204,200,177,0) 1px);
  16. background-image: linear-gradient(to right, #ccc8b1 1px, rgba(204,200,177,0) 1px), linear-gradient(to bottom, #ccc8b1 1px, rgba(204,200,177,0) 1px)
  17. !important;
  18. background-color: #d1cdb7 !important; /* ----> Click the box to pick a background color */
  19. background-position: center ; /* ----> Background position. Other options: top, right, bottom, left */
  20. }
  21.  
  22.  
  23. /* Buttons */
  24. 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"] {
  25. background-color: #bab5a1 !important; /* ----> Changes the background color of the in-game buttons (And also the "Continue" button) */
  26. background-image: none !important; /* ----> Removes the gradient from the do/say/story button */
  27. }
  28.  
  29. div[style*="max-width: 450px;"] {
  30. background-color: #bab5a1 !important; /* ----> Changes the background color of the main menu buttons (Except for "Continue" button which inherents background color from above) */
  31. }
  32.  
  33. /* Input Box */
  34.  
  35. .css-1dbjc4n.r-13awgt0.r-18u37iz[style*="border-radius: 8px; border-width: 1.5px; margin-right: 10px; min-height: 45px;"] {
  36. border-color: #0000004d !important; /* ----> Changes the border color of the input box */
  37. }
  38.  
  39. .css-1cwyjr8.r-jwli3a.r-13awgt0.r-eam2wb.r-1ag4vb1::placeholder {
  40. color: #bab5a1 !important; /* ----> Changes the input placeholder text color */
  41. }
  42.  
  43. /* Scrollbar styling (Chromium only) */
  44.  
  45. *::-webkit-scrollbar {
  46. width: 6px !important; /* ----> Scrollbar width in pixels */
  47. }
  48. *::-webkit-scrollbar-track {
  49. background: #0000007d !important; /* ----> Scrollbar track color */
  50. }
  51. *::-webkit-scrollbar-thumb {
  52. background: #bab5a1 !important; /* ----> Scrollbar color */
  53. }
  54. *::-webkit-scrollbar-thumb:active {
  55. background: #454138 !important; /* ----> Scrollbar color while in use */
  56. }
  57.  
  58. .css-1dbjc4n.r-13awgt0[style*="padding-right"] {
  59. padding-right: 0px !important; /* ----> Removes some padding so the scrollbar is on the edge of the window instead of floating 90 pixels off the edge. */
  60. }
  61.  
  62. /* right sidebar */
  63.  
  64. .r-1pi2tsx.css-1dbjc4n[style*="width: 256px; z-index: 101;"] {
  65. background-color: #1a1815 !important;
  66. }
  67.  
  68. /* misc colors */
  69.  
  70. *[style*="background-color: rgb(59, 59, 59)"] {
  71. background-color: #0000006b !important; /* ----> Replaces all the grey colors (Setting buttons, My stuff/Explore buttons and search bar, maybe some more stuff) */
  72. }
  73.  
  74. *[style*="background-color: rgb(0, 150, 136)"] {
  75. background-color: #454138 !important; /* ----> Replaces the settings toggle button colors */
  76. }
  77.  
  78. *[style*="background-color: rgb(163, 211, 207)"] {
  79. background-color: #0000006e !important; /* ----> Replaces the settings toggle button bar colors */
  80. }
  81.  
  82. /* Don't touch these */
  83. div[style*="border-radius: 5px; height: 30px; width: auto;"] {
  84. background-color: #0000 !important;
  85. }
  86.  
  87. *[style*="font-family: MaterialCommunityIcons"] {
  88. font-family: "MaterialCommunityIcons" !important;
  89. }
  90.  
  91. *[style*="FontAwesome"] {
  92. font-family: "FontAwesome" !important;
  93. }
  94.  
  95. .r-13awgt0 {
  96. background-color: #0000 !important;
  97. }
  98.  
  99. .r-eqz5dr {
  100. background-color: #0000 !important;
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement