laravelEcomm/public/sass/_breadcrumb.scss
2024-07-04 10:19:45 +05:45

58 lines
1014 B
SCSS

/*---------------------
Breadcrumb
-----------------------*/
.breadcrumb-option {
background: #f3f2ee;
padding: 40px 0;
}
.breadcrumb__text {
h4 {
color: $heading-color;
font-weight: 700;
margin-bottom: 8px;
}
}
.breadcrumb__links {
a {
font-size: 15px;
color: $heading-color;
margin-right: 18px;
display: inline-block;
position: relative;
&:after {
position: absolute;
right: -14px;
top: 0;
content: '\f105';
font-family: "FontAwesome";
}
}
span {
font-size: 15px;
color: #b7b7b7;
display: inline-block;
}
}
/*---------------------
Breadcrumb Blog
-----------------------*/
.breadcrumb-blog {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 350px;
h2 {
color: $white-color;
font-size: 60px;
font-weight: 700;
}
}