Upload styles.css
Browse files- styles.css +55 -0
styles.css
CHANGED
|
@@ -2,6 +2,61 @@
|
|
| 2 |
* Run LLMs locally in your browser with WebGPU
|
| 3 |
* Made with 💚 by Ivy
|
| 4 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
:root {
|
| 6 |
/* Dark theme with Ivy Green accents */
|
| 7 |
--bg-primary: #0a0e1a;
|
|
|
|
| 2 |
* Run LLMs locally in your browser with WebGPU
|
| 3 |
* Made with 💚 by Ivy
|
| 4 |
*/
|
| 5 |
+
|
| 6 |
+
/* ============================================
|
| 7 |
+
CUSTOM SCROLLBARS — Ivy Style 🌿
|
| 8 |
+
============================================ */
|
| 9 |
+
|
| 10 |
+
/* Webkit browsers (Chrome, Safari, Edge) */
|
| 11 |
+
::-webkit-scrollbar {
|
| 12 |
+
width: 10px;
|
| 13 |
+
height: 10px;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
::-webkit-scrollbar-track {
|
| 17 |
+
background: var(--bg-secondary);
|
| 18 |
+
border-radius: 5px;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
::-webkit-scrollbar-thumb {
|
| 22 |
+
background: var(--border-secondary);
|
| 23 |
+
border-radius: 5px;
|
| 24 |
+
border: 2px solid var(--bg-secondary);
|
| 25 |
+
transition: background 0.2s ease;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
::-webkit-scrollbar-thumb:hover {
|
| 29 |
+
background: var(--accent-primary);
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
::-webkit-scrollbar-thumb:active {
|
| 33 |
+
background: var(--accent-secondary);
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
::-webkit-scrollbar-corner {
|
| 37 |
+
background: var(--bg-secondary);
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
/* Firefox */
|
| 41 |
+
* {
|
| 42 |
+
scrollbar-width: thin;
|
| 43 |
+
scrollbar-color: var(--border-secondary) var(--bg-secondary);
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
/* Thin scrollbar variant for smaller elements */
|
| 47 |
+
.thin-scrollbar::-webkit-scrollbar {
|
| 48 |
+
width: 6px;
|
| 49 |
+
height: 6px;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.thin-scrollbar::-webkit-scrollbar-thumb {
|
| 53 |
+
border: 1px solid var(--bg-secondary);
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
/* ============================================
|
| 57 |
+
CSS CUSTOM PROPERTIES
|
| 58 |
+
============================================ */
|
| 59 |
+
|
| 60 |
:root {
|
| 61 |
/* Dark theme with Ivy Green accents */
|
| 62 |
--bg-primary: #0a0e1a;
|