You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
1.7 KiB
90 lines
1.7 KiB
/* FEO GmbH Custom Bootstrap Theme - Breadcrumbs
|
|
* Breadcrumb styling
|
|
*/
|
|
|
|
/* Breadcrumb styling */
|
|
.breadcrumb-section {
|
|
background-color: #f8f9fa;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
|
|
position: relative;
|
|
}
|
|
|
|
.breadcrumb-section::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -1px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 1px;
|
|
background: linear-gradient(to right, var(--bs-primary), #2ecc71, transparent);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.breadcrumb-section h1 {
|
|
margin-bottom: 0.5rem;
|
|
font-weight: var(--font-weight-light);
|
|
color: #333;
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.breadcrumb-section h1::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -6px;
|
|
left: 0;
|
|
width: 60px;
|
|
height: 3px;
|
|
background: linear-gradient(to right, var(--bs-primary), #2ecc71);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.breadcrumb {
|
|
background: transparent;
|
|
margin-bottom: 0;
|
|
padding: 0.5rem 0;
|
|
font-weight: var(--font-weight-light);
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
content: "›";
|
|
color: #999;
|
|
font-size: 1.1rem;
|
|
line-height: 1;
|
|
padding-right: 0.5rem;
|
|
padding-left: 0.5rem;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.breadcrumb-item a {
|
|
color: #666;
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.breadcrumb-item.active {
|
|
color: var(--bs-primary);
|
|
font-weight: var(--font-weight-regular);
|
|
}
|
|
|
|
/* Responsive adjustments for breadcrumbs */
|
|
@media (max-width: 767.98px) {
|
|
.breadcrumb-section {
|
|
padding: 1.5rem 0 !important;
|
|
}
|
|
|
|
.breadcrumb-section h1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.breadcrumb {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
padding-right: 0.3rem;
|
|
padding-left: 0.3rem;
|
|
}
|
|
}
|
|
|