www/assets/header.css

48 lines
764 B
CSS
Raw Normal View History

header {
2023-01-25 17:45:06 +01:00
background-color: var(--bg-0);
}
2023-01-27 23:05:50 +01:00
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;
}
2023-01-27 23:05:50 +01:00
header nav ol li a {
display: block;
2023-01-27 23:05:50 +01:00
font-size: 1.25rem;
padding: 4px 16px 14px 16px;
text-align: center;
text-decoration: none;
}
2023-01-27 23:05:50 +01:00
header nav ol li a:hover {
2023-01-25 17:45:06 +01:00
background-color: var(--bg-1);
2021-08-16 12:44:18 +02:00
}
2023-01-27 23:05:50 +01:00
#nav-menu {
align-items: baseline;
display: flex;
flex-wrap: nowrap;
}
#nav-menu li {
flex-direction: column;
}
2021-08-16 12:35:32 +02:00
.nav-menu-active {
2023-01-25 17:45:06 +01:00
background-color: var(--bg-1);
}
2023-01-27 23:05:50 +01:00
#title {
font-weight: 700;
2023-01-27 23:05:50 +01:00
text-transform: uppercase;
}
2023-01-27 23:05:50 +01:00
#themes {
background-color: var(--bg-0);
border: none;
color: var(--fg-1);
font-size: 1.25rem;
margin: 0;
padding: 0;
}