16 lines
220 B
CSS
16 lines
220 B
CSS
|
#navbar {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
#navbar a {
|
||
|
color: #ffffff;
|
||
|
margin-right: 20px;
|
||
|
text-decoration: none;
|
||
|
transition: color 0.2s ease;
|
||
|
}
|
||
|
|
||
|
#navbar a:hover {
|
||
|
cursor: pointer;
|
||
|
color: #91a4d2;
|
||
|
}
|