mirror of
https://github.com/CodingIsOurPassion/CodingIsOurPassion.git
synced 2025-01-04 17:49:31 -06:00
53 lines
944 B
CSS
53 lines
944 B
CSS
/* #breadcrumbs {
|
|
font-size: 18px;
|
|
margin: auto 15px;
|
|
padding: 20px 0 20px;
|
|
color: #ddd;
|
|
font-family: "Font Awesome 5 Free";
|
|
}
|
|
|
|
.skin-breadcrumb {
|
|
color: #06c;
|
|
font-weight: 900;
|
|
} */
|
|
#breadcrumbs {
|
|
display: flex;
|
|
flex-shrink: 1;
|
|
flex-wrap: wrap;
|
|
font-size: 1.2rem;
|
|
margin: auto 15px;
|
|
padding-bottom: 10px;
|
|
|
|
color: #ddd;
|
|
/* font-family: "Font Awesome 5 Free"; */
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
z-index: -1;
|
|
}
|
|
|
|
.breadcrumb-link {
|
|
color: #06c;
|
|
text-decoration: none;
|
|
font-weight: 900;
|
|
}
|
|
.breadcrumb-link:not(:first-child):before,
|
|
.breadcrumb-current:before {
|
|
content: "/";
|
|
margin: 0 5px;
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
.breadcrumb-current {
|
|
color: #999;
|
|
}
|
|
@media (max-width: 768px) {
|
|
#breadcrumbs {
|
|
padding: 10px 0;
|
|
}
|
|
}
|
|
|
|
@media only print {
|
|
#breadcrumbs {
|
|
display: none !important;
|
|
}
|
|
}
|