46 lines
637 B
SCSS
46 lines
637 B
SCSS
.demo__actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
.btn {
|
|
font-weight: 600;
|
|
}
|
|
|
|
> *:not(:last-child) {
|
|
margin-right: .5rem;
|
|
}
|
|
}
|
|
|
|
.demo__times {
|
|
flex: 1 1 auto;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.demo__time-total {
|
|
font-size: .8rem;
|
|
font-weight: 700;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.demo__time-splits {
|
|
border-radius: 0;
|
|
height: .4rem;
|
|
display: flex;
|
|
}
|
|
|
|
.demo__time-split {
|
|
height: 100%;
|
|
}
|
|
|
|
.demo__time-split--tokenization {
|
|
background: $color-accent;
|
|
}
|
|
|
|
.demo__time-split--processing {
|
|
background: darken($color-accent, 10%);
|
|
}
|
|
|
|
.demo__time-split--formatting {
|
|
background: darken($color-accent, 20%);
|
|
}
|