UntilDot commited on
Commit
49124bc
·
verified ·
1 Parent(s): 4e7077c

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +30 -0
static/style.css CHANGED
@@ -49,3 +49,33 @@ button {
49
  button:hover {
50
  background-color: var(--visual_green);
51
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  button:hover {
50
  background-color: var(--visual_green);
51
  }
52
+
53
+ /* === Custom Scrollbars for Gruvbox === */
54
+
55
+ .options::-webkit-scrollbar {
56
+ width: 8px;
57
+ }
58
+
59
+ .options::-webkit-scrollbar-track {
60
+ background: #1d2021; /* Gruvbox darker background */
61
+ }
62
+
63
+ .options::-webkit-scrollbar-thumb {
64
+ background-color: #665c54; /* Gruvbox gray */
65
+ border-radius: 4px;
66
+ border: 2px solid #1d2021;
67
+ }
68
+
69
+ /* Firefox scrollbar */
70
+ .options {
71
+ scrollbar-width: thin;
72
+ scrollbar-color: #665c54 #1d2021;
73
+ }
74
+
75
+ /* === Additional optional improvements === */
76
+
77
+ /* Smooth hover effect for model options */
78
+ .options div:hover {
79
+ background-color: #458588; /* Gruvbox blue-green hover */
80
+ color: #fbf1c7; /* Gruvbox light text */
81
+ }