www/assets/header.css

48 lines
757 B
CSS
Raw Permalink 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-06-30 07:28:00 +02:00
padding: 4px 12px 14px 12px;
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 {
2023-06-30 07:28:00 +02:00
font-weight: bold;
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);
display: none;
2023-06-30 07:28:00 +02:00
font-size: 100%;
2023-01-27 23:05:50 +01:00
margin: 0;
padding: 0;
}