obscreen/data/www/scss/components/_breadcrumb.scss
2024-07-15 23:43:18 +02:00

65 lines
987 B
SCSS

.breadcrumb-container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
align-self: stretch;
border-bottom: $layoutBorder;
background: transparent;
padding: 10px;
ul.breadcrumb {
background: #222;
padding: 6px 4px 5px 4px;
box-shadow: 1px 1px .5px .5px inset rgba(0, 0, 0, 0.2);
border: 1px solid #222;
border-radius: $baseRadius;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
list-style: none;
margin: 0;
li {
&.divider {
margin: 0 5px;
i {
color: #AAA;
}
}
span,
a {
border-radius: $baseRadius;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
color: $white;
text-align: center;
padding: 0 3px;
i {
margin-right: 5px;
}
}
&:hover {
a {
color: #fff;
background: $seaBlue;
}
}
&:last-child a {
margin-right: 0;
}
}
}
}