Sebastiankay commited on
Commit
690f674
·
1 Parent(s): c0e7a6b

28. Sept. 2024, 19:28

Browse files
Files changed (1) hide show
  1. _res/_custom.css +51 -6
_res/_custom.css CHANGED
@@ -30,14 +30,26 @@ div.tabs div.tabitem {
30
  border-radius: var(--container-radius) !important;
31
  }
32
 
33
- #input_column div.tabs div.tabitem {
34
- background-color: var(--neutral-800) !important;
35
- border: 1px solid var(--neutral-800) !important;
36
- border-top: 8px solid var(--primary-600) !important;
37
- border-radius: var(--container-radius) !important;
38
- padding: 0 !important;
 
 
 
 
 
 
 
 
 
 
 
39
  }
40
 
 
41
  .top-description h1 {
42
  color: var(--neutral-400);
43
  font-size: 2rem;
@@ -110,4 +122,37 @@ div.tabs div.tabitem {
110
  &>label:has(input[type="checkbox"]:checked) {
111
  background: var(--primary-600);
112
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  }
 
30
  border-radius: var(--container-radius) !important;
31
  }
32
 
33
+ #input_column {
34
+
35
+ & div.tabs div.tabitem {
36
+ background-color: var(--neutral-800) !important;
37
+ border: 1px solid var(--neutral-800) !important;
38
+ border-top: 8px solid var(--primary-600) !important;
39
+ border-radius: var(--container-radius) !important;
40
+ padding: 0 !important;
41
+ }
42
+
43
+ & div.radioradio-btn-group {
44
+
45
+ & label:has(input[type="radio"]:checked),
46
+ label:not(input[type="radio"]:checked):hover {
47
+ color: var(--neutral-900) !important;
48
+ }
49
+ }
50
  }
51
 
52
+
53
  .top-description h1 {
54
  color: var(--neutral-400);
55
  font-size: 2rem;
 
122
  &>label:has(input[type="checkbox"]:checked) {
123
  background: var(--primary-600);
124
  }
125
+ }
126
+
127
+
128
+ /* MARK: Range Input */
129
+ input[type=range].svelte-pc1gm4 {
130
+ accent-color: var(--slider-color);
131
+ background: var(--neutral-700) !important;
132
+ background-image: linear-gradient(var(--slider-color), var(--slider-color)) !important;
133
+ background-size: 0% 100%;
134
+ }
135
+
136
+ input[type=range].svelte-pc1gm4::-webkit-slider-thumb {
137
+ background-color: var(--primary-600);
138
+ border-width: 0;
139
+ }
140
+
141
+ input[type=range].svelte-pc1gm4::-webkit-slider-thumb:hover {
142
+ background-color: var(--primary-500);
143
+ }
144
+
145
+ /* MARK: Text-Color Override */
146
+ label.svelte-1b6s6s,
147
+ label.svelte-9gxdi0,
148
+ span.svelte-1gfkn6j,
149
+ span.svelte-1gfkn6j,
150
+ .primary.svelte-cmf5ev,
151
+ label.selected.svelte-1k4wjf2.svelte-1k4wjf2.svelte-1k4wjf2 {
152
+ color: var(--neutral-900) !important;
153
+ }
154
+
155
+ .md-header h1,
156
+ .md-header p {
157
+ color: var(--primary-950) !important;
158
  }