26 lines
332 B
CSS
26 lines
332 B
CSS
.navbar {
|
|
background-color: #222;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
.navbar-list {
|
|
list-style: none;
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.navbar-item {
|
|
margin-right: 1.5rem;
|
|
}
|
|
|
|
.navbar-link {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.navbar-link:hover {
|
|
color: #90caf9;
|
|
}
|