www/assets/header.css
Julien Dessaux 6039e9eb3b
All checks were successful
/ all (push) Successful in 19s
chore(css): update typography and spacing
2025-03-23 16:14:07 +01:00

50 lines
825 B
CSS

header {
background-color: var(--bg-0);
margin-left: auto;
margin-right: auto;
width: 960px;
}
header nav {
align-items: center;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
header nav ol {
list-style-type: none;
margin: 0;
padding: 0;
}
header nav ol li a {
display: block;
padding: 4px 12px 14px 12px;
text-align: center;
text-decoration: none;
}
header nav ol li a:hover {
background-color: var(--bg-1);
}
#nav-menu {
align-items: baseline;
display: flex;
flex-wrap: nowrap;
}
#nav-menu li {
flex-direction: column;
}
.nav-menu-active {
background-color: var(--bg-1);
}
#title {
font-weight: bold;
text-transform: uppercase;
}
#themes {
background-color: var(--bg-0);
border: none;
color: var(--fg-1);
display: none;
font-size: 100%;
margin: 0;
padding: 0;
}