Introduce color variables

Signed-off-by: hossainemruz <hossainemruz@gmail.com>
This commit is contained in:
hossainemruz 2023-09-29 04:22:23 +06:00
parent b34c6860be
commit 6d5d1b9851
35 changed files with 696 additions and 909 deletions

View file

@ -1,13 +1,14 @@
.card {
box-shadow: none;
transition: all 0.3s ease-out;
@include transition();
overflow: hidden;
background: $bg-card;
&:hover,
&:focus {
box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
border: 1px solid #fff;
transition: all 0.3s ease-out;
box-shadow: $box-shadow;
border: 1px solid $bg-primary;
@include transition();
}
.card-head {
@ -21,7 +22,7 @@
}
.card-img-top {
transition: all 0.3s ease-out !important;
@include transition();
}
.card-img-sm {
@ -35,7 +36,7 @@
}
.card-footer {
background: #fff;
background: $bg-card !important;
}
}
@ -55,7 +56,7 @@
&:focus {
.card-img-top {
transform: scale(1.2);
transition: all 0.3s ease-out;
@include transition();
}
}
@ -79,7 +80,7 @@
span {
font-size: 10pt;
color: #6c757d !important;
color: $muted-text-color !important;
padding-top: 5px;
}
}