118 lines
3.2 KiB
SCSS
118 lines
3.2 KiB
SCSS
/*==========================================================================
|
|
* Breadcrumb CSS
|
|
==========================================================================*/
|
|
.breadcrumb__area {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 230px 0 130px 0;
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--color-1);
|
|
opacity: 0.45;
|
|
z-index: -1;
|
|
}
|
|
&-content {
|
|
h2 {
|
|
color: var(--text-white);
|
|
margin-bottom: 10px;
|
|
}
|
|
ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
display: inline-flex;
|
|
gap: 15px;
|
|
align-items: center;
|
|
li {
|
|
list-style: none;
|
|
color: var(--primary-color-1);
|
|
font-size: 20px;
|
|
line-height: 30px;
|
|
display: inline-flex;
|
|
gap: 15px;
|
|
align-items: center;
|
|
a {
|
|
color: var(--text-white);
|
|
transition: 0.4s;
|
|
&:hover {
|
|
color: var(--primary-color-1);
|
|
}
|
|
}
|
|
i {
|
|
color: var(--primary-color-1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/*==========================================================================
|
|
* Error CSS
|
|
==========================================================================*/
|
|
.error {
|
|
&-page {
|
|
text-align: center;
|
|
h1 {
|
|
font-size: 240px;
|
|
line-height: 1;
|
|
font-weight: 600;
|
|
span {
|
|
color: var(--primary-color-1);
|
|
}
|
|
}
|
|
h2 {
|
|
margin: 15px 0 30px 0;
|
|
}
|
|
p {
|
|
margin-bottom: 35px;
|
|
}
|
|
}
|
|
}
|
|
/*==========================================================================
|
|
* Theme Pagination CSS
|
|
==========================================================================*/
|
|
.theme__pagination {
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: inline-flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
li {
|
|
list-style: none;
|
|
.active {
|
|
background: var(--primary-color-1);
|
|
color: var(--color-1);
|
|
border-color: var(--primary-color-1);
|
|
}
|
|
a {
|
|
border: 1px solid var(--border-color-1);
|
|
display: flex;
|
|
height: 50px;
|
|
width: 50px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: 0.4s;
|
|
border-radius: 5px;
|
|
background: var(--bg-white);
|
|
&:hover {
|
|
background: var(--primary-color-1);
|
|
border-color: var(--primary-color-1);
|
|
color: var(--color-1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@media (max-width: 575px) {
|
|
.error-page h1 {
|
|
font-size: 140px;
|
|
line-height: 150px;
|
|
}
|
|
} |