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

@ -12,17 +12,17 @@
margin-left: 7px;
margin-right: 7px;
z-index: 1;
background-color: #e5e9f2;
background-color: $bg-secondary;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
position: relative;
overflow: hidden;
transition: all 0.3s ease-out;
@include transition();
.title {
color: #e5e9f2;
background-color: rgba(0, 0, 0, 0.7);
color: $inverse-text-color;
background-color: rgba($bg-primary-inverse, 0.7);
opacity: 0;
padding: 5px;
position: absolute;
@ -35,19 +35,19 @@
&:hover {
cursor: pointer;
transform: scale(1.1);
transition: all 0.3s ease-out;
@include transition();
z-index: 20000;
.svg-inline--fa {
opacity: 1;
font-size: 1rem;
transition: all 0.3s ease-out;
@include transition();
}
.title {
opacity: 1;
bottom: 0px;
transition: bottom 0.3s ease-out;
@include transition();
}
}
}
@ -85,28 +85,28 @@
}
.svg-inline--fa {
color: #8392a5;
background-color: rgba(0, 0, 0, 0.7);
color: $muted-text-color;
background-color: rgba($bg-primary-inverse, 0.7);
padding: 10px;
font-size: 0rem;
opacity: 0;
}
.caption {
background-color: rgba(0, 0, 0, 0.7);
background-color: rgba($bg-primary-inverse, 0.7);
bottom: 1rem;
left: 1rem;
color: #e5e9f2;
color: $inverse-text-color;
padding: 15px;
position: absolute;
transition: all 0.3s ease-out;
@include transition();
h4 {
color: #e5e9f2;
color: $inverse-text-color;
}
p {
font-size: 16px;
font-weight: 300;
color: #e5e9f2;
color: $inverse-text-color;
}
}