25 lines
416 B
CSS
25 lines
416 B
CSS
#navbar {
|
|
background: black;
|
|
border-bottom: 2px solid yellow;
|
|
box-shadow: 0 0 15px rgba(0,0,0,0.5);
|
|
margin-bottom: 25px !important;;
|
|
}
|
|
|
|
#navbar > .item {
|
|
--color-text: yellow;
|
|
}
|
|
|
|
#navbar > .item.active {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#navbar > a.item:hover {
|
|
background: none;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#navbar > .right.menu > .item .text {
|
|
--color-text: white;
|
|
color: var(--color-text);
|
|
}
|