kowalski/header.css

26 lines
318 B
CSS
Raw Normal View History

2024-12-14 18:20:12 -03:00
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 0 30px 0;
}
.logo {
font-size: 1.5rem;
font-weight: 640;
}
nav {
display: flex;
gap: 15px;
}
nav a {
color: #f0f6fc;
text-decoration: none;
font-size: 1rem;
}
nav a:hover {
text-decoration: underline;
}