wagtail/client/scss/components/_progressbar.scss

26 wiersze
574 B
SCSS
Czysty Zwykły widok Historia

.progress {
border-radius: 1.2em;
background-color: $color-teal-dark;
border: 1px solid $color-teal;
opacity: 0;
2014-07-04 16:07:35 +00:00
&.active {
2014-07-07 09:14:23 +00:00
@include transition(opacity 0.3s ease);
2015-11-03 12:15:33 +00:00
opacity: 1;
}
.bar {
2014-07-04 16:07:35 +00:00
@include transition(width 0.3s ease);
border-radius: 1.5em;
overflow: hidden;
box-sizing: border-box;
text-align: right;
line-height: 1.2em;
2015-11-03 12:15:33 +00:00
color: $color-white;
font-size: 0.85em;
background-color: $color-teal;
height: 1.2em;
padding-right: 1em;
}
2015-11-03 12:15:33 +00:00
}