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.
38 lines
656 B
38 lines
656 B
/* Style the list */
|
|
ul.breadcrumb {
|
|
padding: 6px 8px;
|
|
list-style: none;
|
|
background-color: #eee;
|
|
}
|
|
|
|
/* Display list items side by side */
|
|
ul.breadcrumb li {
|
|
display: inline;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Add a slash symbol (/) before/behind each list item */
|
|
ul.breadcrumb li+li:before {
|
|
padding: 8px;
|
|
color: black;
|
|
content: "/\00a0";
|
|
}
|
|
|
|
/* Add a color to all links inside the list */
|
|
ul.breadcrumb li a {
|
|
color: #0275d8;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Add a color on mouse-over */
|
|
ul.breadcrumb li a:hover {
|
|
color: #01447e;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.homecrumb {
|
|
color: black;
|
|
width: 14px;
|
|
height: 14px;
|
|
padding-right: 5px;
|
|
} |