ChenyuRabbitLove commited on
Commit
19514a4
1 Parent(s): 4859033

fix: modify css code to check the deployment env

Browse files
Files changed (1) hide show
  1. css/style.css +6 -10
css/style.css CHANGED
@@ -159,10 +159,6 @@ h1::after {
159
  flex-direction: column;
160
  }
161
 
162
- input[type="range"]{
163
- order: -1;
164
- }
165
-
166
  input[type="range"] {
167
  -webkit-appearance: none; /* Removes default styling for Webkit browsers */
168
  height: 20px; /* Makes the track thicker */
@@ -176,7 +172,7 @@ input[type="range"] {
176
  }
177
 
178
  /* Styles for the slider thumb for Webkit browsers like Chrome and Safari */
179
- input[type="range"]::-webkit-slider-thumb {
180
  -webkit-appearance: none; /* Overrides default webkit styles */
181
  appearance: none;
182
  height: 24px; /* Height of the thumb */
@@ -188,7 +184,7 @@ input[type="range"] {
188
  }
189
 
190
  /* Styles for the slider thumb for Firefox */
191
- input[type="range"]::-moz-range-thumb {
192
  appearance: none;
193
  height: 24px; /* Height of the thumb */
194
  width: 24px; /* Width of the thumb */
@@ -199,7 +195,7 @@ input[type="range"] {
199
  }
200
 
201
  /* Styles for the slider thumb for IE */
202
- input[type="range"]::-ms-thumb {
203
  appearance: none;
204
  height: 24px; /* Height of the thumb */
205
  width: 24px; /* Width of the thumb */
@@ -210,7 +206,7 @@ input[type="range"] {
210
  }
211
 
212
  /* Styles for the track (progress) for Webkit browsers */
213
- input[type="range"]::-webkit-slider-runnable-track {
214
  width: 100%;
215
  height: 10px; /* Height of the track */
216
  background: #eee;
@@ -219,7 +215,7 @@ input[type="range"] {
219
  }
220
 
221
  /* Styles for the track for Firefox */
222
- input[type="range"]::-moz-range-track {
223
  width: 100%;
224
  height: 10px; /* Height of the track */
225
  background: #eee;
@@ -228,7 +224,7 @@ input[type="range"] {
228
  }
229
 
230
  /* Styles for the track for IE */
231
- input[type="range"]::-ms-track {
232
  width: 100%;
233
  height: 10px; /* Height of the track */
234
  background: #eee;
 
159
  flex-direction: column;
160
  }
161
 
 
 
 
 
162
  input[type="range"] {
163
  -webkit-appearance: none; /* Removes default styling for Webkit browsers */
164
  height: 20px; /* Makes the track thicker */
 
172
  }
173
 
174
  /* Styles for the slider thumb for Webkit browsers like Chrome and Safari */
175
+ ::-webkit-slider-thumb {
176
  -webkit-appearance: none; /* Overrides default webkit styles */
177
  appearance: none;
178
  height: 24px; /* Height of the thumb */
 
184
  }
185
 
186
  /* Styles for the slider thumb for Firefox */
187
+ ::-moz-range-thumb {
188
  appearance: none;
189
  height: 24px; /* Height of the thumb */
190
  width: 24px; /* Width of the thumb */
 
195
  }
196
 
197
  /* Styles for the slider thumb for IE */
198
+ ::-ms-thumb {
199
  appearance: none;
200
  height: 24px; /* Height of the thumb */
201
  width: 24px; /* Width of the thumb */
 
206
  }
207
 
208
  /* Styles for the track (progress) for Webkit browsers */
209
+ ::-webkit-slider-runnable-track {
210
  width: 100%;
211
  height: 10px; /* Height of the track */
212
  background: #eee;
 
215
  }
216
 
217
  /* Styles for the track for Firefox */
218
+ ::-moz-range-track {
219
  width: 100%;
220
  height: 10px; /* Height of the track */
221
  background: #eee;
 
224
  }
225
 
226
  /* Styles for the track for IE */
227
+ ::-ms-track {
228
  width: 100%;
229
  height: 10px; /* Height of the track */
230
  background: #eee;