dreamyshambles

Old AID base theme (OUTDATED)

Aug 23rd, 2020 (edited)
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.94 KB | None | 0 0
  1. /* Font I personally used for the css below: https://www.behance.net/gallery/31268855/Determination-Better-Undertale-Font */
  2.  
  3. /*main text color and font*/
  4. div[style*="font-family: helvetica"], span[style*="font-family: helvetica"] {
  5.     font-family: "Determination Sans" !important;
  6.     color: #fd0 !important;
  7. }
  8.  
  9. /*leave these transparant*/
  10. .r-13awgt0 {
  11.     background-color: #0000 !important;
  12. }
  13.  
  14. .r-eqz5dr {
  15.     background-color: #0000 !important;
  16. }
  17.  
  18. /*background (remove the background-image line for solid color background)*/
  19. div[style*="padding-left: 90px"], div[style*="display: flex; justify-content: flex-start; padding-bottom: 40px; padding-top: 64px"] {
  20.     background-image: url(https://i.imgur.com/1jDzqYV.jpeg) !important;
  21.     background-color: #111 !important;
  22.     background-size: cover;    
  23.     background-position: 50% 50%;
  24. }
  25.  
  26. /*button text color */
  27. div[style*="font-family: MaterialCommunityIcons"] {
  28.     color: #fd0 !important;
  29. }
  30.  
  31. /*button color*/
  32. div[style*="border-radius: 10px"] {
  33.     background-color: #0000004f !important;
  34. }
  35.  
  36. /*Do/Say/Story text color and font*/
  37. .css-901oao.css-bfa6kz[style*="font-size: 20px; padding-right: 10px; padding-left: 10px; text-transform: none;"] {
  38.     color: #fd0 !important;
  39.     font-family: "Determination Sans" !important;
  40. }
  41.  
  42. /*Do/Say/Story button color*/
  43. div[style*="align-self: center; background-image: linear-gradient"]{
  44.     background-image:  linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0)) !important;
  45.     background-color: #0000004f !important;
  46. }
  47.  
  48. /*input box font*/
  49. textarea[style*="font-family: HelveticaNeueMedium"] {
  50.     font-family: "Determination Sans" !important;
  51. }
  52.  
  53. /*input box border color*/
  54. .css-1dbjc4n.r-13awgt0.r-18u37iz {
  55.     border-color: #0000005c !important;
  56. }
  57.  
  58. /*hide scrollbars Chromium*/
  59. *::-webkit-scrollbar {
  60.   display: none;
  61. }
  62.  
  63. /* Hide scrollbars firefox (maybe didnt test actually) */
  64. * {
  65.   scrollbar-width: none;  /* Firefox */
  66. }
Add Comment
Please, Sign In to add comment