2023-10-19 16:09:19 +02:00
|
|
|
h1 {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
2023-10-19 18:56:46 +02:00
|
|
|
.OnlineTgl {
|
|
|
|
transform: scale(.25, .25);
|
2023-10-20 00:40:05 +02:00
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
padding: auto;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2023-10-20 17:54:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nav a {
|
|
|
|
color: lightgray;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: .25s ease;
|
|
|
|
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-right: 30px;
|
|
|
|
padding: 0.25rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav .active {
|
|
|
|
color: white;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: cadetblue;
|
|
|
|
opacity: 80%;
|
|
|
|
padding: 0.25rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav a:hover:not(.active) {
|
|
|
|
color: cadetblue;
|
2023-10-20 00:40:05 +02:00
|
|
|
|
2023-10-20 17:54:36 +02:00
|
|
|
box-shadow: 0 1.5px 0 0 currentcolor;
|
2023-10-19 18:56:46 +02:00
|
|
|
}
|
2023-10-20 10:55:16 +02:00
|
|
|
|
|
|
|
|
2023-10-20 17:54:36 +02:00
|
|
|
[data-darkreader-scheme="dark"] nav a {
|
|
|
|
color: darkslategrey;
|
2023-10-20 10:55:16 +02:00
|
|
|
}
|
|
|
|
|
2023-10-20 17:54:36 +02:00
|
|
|
[data-darkreader-scheme="dark"] nav .active {
|
|
|
|
color: white;
|
|
|
|
box-shadow: 0 1.5px 0 0 currentcolor;
|
|
|
|
}
|