Spaces:
Running
Running
File size: 564 Bytes
aedd342 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | .navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 25rem 1rem 15rem;
background-color: transparent;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
}
.navbar-logo img {
height: 50px;
}
.navbar-links {
display: flex;
justify-content: flex-end;
}
.navbar-links a {
margin-left: 10px;
text-decoration: none;
color: var(--amarilloclaro);
cursor: pointer;
}
.navbar-links a:hover {
color: var(--amarillooscuro);
}
|