|
| 1 | +@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap"); |
| 2 | +@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap"); |
| 3 | + |
| 4 | +:root { |
| 5 | + /* Background Variables */ |
| 6 | + --background-image: url("/./assets/media/background/full2.png"); /* Background Image */ |
| 7 | + --backdrop-filter: blur(10px) brightness(80%); /* Nav Backdrop filter */ |
| 8 | + --background-nav: rgba(255, 255, 255, 0.02); /* Nav Background */ |
| 9 | + --background-color: #222; /* Main Background Color */ |
| 10 | + --background-input: #4545459e; /* Input Field Background Color */ |
| 11 | + --background-column: #353535; /* Background for Apps Container */ |
| 12 | + --background-settings: #2a2a2a; /* Settings Card Background */ |
| 13 | + --background-buttons: #333; /* Button Background Color */ |
| 14 | + --background-accent: #444; /* Accent Color for Tabs */ |
| 15 | + --background-slider: #4caf50; /* Active Slider Background Color */ |
| 16 | + --slider-accent: #ccc; /* Slider Background Color */ |
| 17 | + /* Text Variables */ |
| 18 | + --text-primary: #fff; /* Primary Text Color */ |
| 19 | + --text-dark: #555; /* Dark Text Color for Error Page, Scrollbar, and Particles */ |
| 20 | + --text-placeholder: #aaa; /* Placeholder Text Color */ |
| 21 | + /* Other Variables */ |
| 22 | + --tab-hover: #6c6e79; /* Tab Color on Hover */ |
| 23 | +} |
| 24 | + |
| 25 | +::-webkit-scrollbar { |
| 26 | + width: 6px; |
| 27 | + background-color: var(--background-color); |
| 28 | +} |
| 29 | + |
| 30 | +::-webkit-scrollbar-track { |
| 31 | + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); |
| 32 | + border-radius: 10px; |
| 33 | + background-color: var(--background-color); |
| 34 | +} |
| 35 | + |
| 36 | +::-webkit-scrollbar-thumb { |
| 37 | + border-radius: 10px; |
| 38 | + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); |
| 39 | + background-color: var(--text-primary); |
| 40 | +} |
| 41 | + |
| 42 | +::-webkit-scrollbar-thumb:hover { |
| 43 | + background-color: var(--text-dark); |
| 44 | +} |
| 45 | + |
| 46 | +body { |
| 47 | + font-family: "Inter", sans-serif; |
| 48 | + text-decoration: none; |
| 49 | + background: var(--background-image); |
| 50 | + height: 100%; |
| 51 | + background-position: center; |
| 52 | + background-repeat: no-repeat; |
| 53 | + background-size: cover; |
| 54 | + background-attachment: fixed; |
| 55 | +} |
| 56 | + |
| 57 | +::placeholder { |
| 58 | + color: var(--text-placeholder); |
| 59 | + opacity: 1; |
| 60 | +} |
| 61 | + |
| 62 | +.main { |
| 63 | + letter-spacing: 0px; |
| 64 | + font-family: "Inter", sans-serif; |
| 65 | + width: 99%; |
| 66 | + display: flex; |
| 67 | + flex-direction: column; |
| 68 | + justify-content: center; |
| 69 | + align-items: center; |
| 70 | + top: 0%; |
| 71 | + position: absolute; |
| 72 | + z-index: 99; |
| 73 | +} |
0 commit comments