mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
25 lines
478 B
Sass
25 lines
478 B
Sass
|
//- 💫 CSS > COMPONENTS > PROGRESS
|
||
|
|
||
|
.c-progress
|
||
|
display: block
|
||
|
flex: 105%
|
||
|
width: 105%
|
||
|
height: 3px
|
||
|
color: $color-theme
|
||
|
background: transparent
|
||
|
border: none
|
||
|
position: absolute
|
||
|
bottom: 0
|
||
|
left: -2.5%
|
||
|
|
||
|
&::-webkit-progress-bar
|
||
|
background: $color-back
|
||
|
border-radius: none
|
||
|
|
||
|
&::-webkit-progress-value
|
||
|
background: $color-theme
|
||
|
border-radius: none
|
||
|
|
||
|
&::-moz-progress-bar
|
||
|
background: $color-theme
|