forked from basscss/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
34 lines (28 loc) · 666 Bytes
/
index.css
File metadata and controls
34 lines (28 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Basscss Progress */
.progress {
display: block;
width: 100%;
height: calc( var(--form-field-height) / 4 );
margin: var(--form-field-padding-y) 0;
overflow: hidden;
background-color: var(--darken-2);
border: 0;
border-radius: 10000px;
-webkit-appearance: none;
}
.progress::-webkit-progress-bar {
-webkit-appearance: none;
background-color: var(--darken-2)
}
.progress::-webkit-progress-value {
-webkit-appearance: none;
background-color: currentcolor;
}
.progress::-moz-progress-bar {
background-color: currentcolor;
}
:root {
--form-field-height: 2.25rem;
--form-field-padding-y: .5rem;
--darken-2: rgba(0, 0, 0, .125);
}