This is the CSS file for the breadcrumbs on Chronocentric. It's a mess of confusing, overlapping, and generally unpleasant lines of code.
.breadcrumb {
border: 4px solid #FF0000;
border-radius: 0;
background-color: #FFD700;
padding: 8px 16px;
font-size: 18px;
font-weight: bold;
text-align: center;
color: #333;
margin-bottom: 8px;
display: inline-block;
box-shadow: 0 0 0 4px #000000;
transition: background-color 0.5s ease;
width: 100%;
}
.breadcrumb-item {
display: inline-block;
width: 100%;
background-color: #333;
color: #fff;
font-size: 16px;
font-weight: bold;
line-height: 20px;
border: 1px solid #000;
border-radius: 0;
padding: 8px 16px;
margin-left: 4px;
text-align: center;
box-shadow: 0 0 0 4px #000;
transition: background-color 0.5s ease;
}