Penambahan FrontEnd All-New-Manufacture

This commit is contained in:
pand03
2026-01-31 14:23:04 +07:00
parent 1b2e320b2b
commit 4feb21dcbc
2891 changed files with 426849 additions and 135 deletions

View File

@@ -0,0 +1,81 @@
// Variable.scss
.progress-bar {
background-color: var(--primary);
}
.progress-bar-primary {
background-color: var(--primary);
}
.progress-bar-success {
background-color: $success;
}
.progress-bar-info {
background-color: $info;
}
.progress-bar-danger {
background-color: $danger;
}
.progress-bar-warning {
background-color: $warning;
}
.progress-bar-pink {
background-color: $pink;
}
.progress {
height: 6px;
background-color:var(--light);
overflow: hidden;
&-bar{
border-radius: $radius;
}
}
.progress-vertical {
display: inline-block;
margin-bottom: 0;
margin-#{$dlab-pos-right}: 2rem;
min-height: 17rem;
position: relative;
@include media-breakpoint-down(md) {
margin-#{$dlab-pos-right}: 1rem;
}
}
.progress-vertical-bottom {
display: inline-block;
margin-bottom: 0;
margin-#{$dlab-pos-right}: 2rem;
min-height: 17rem;
position: relative;
transform: rotate(180deg);
@include media-breakpoint-down(md) {
margin-#{$dlab-pos-right}: 1rem;
}
}
.progress-animated {
animation-duration: 5s;
animation-name: myanimation;
transition: all 5s ease 0s;
}
@keyframes myanimation {
0% {
width: 0;
}
}
@keyframes myanimation {
0% {
width: 0;
}
}