2023-10-19 18:56:46 +02:00
|
|
|
.OnlineTgl {
|
2023-10-27 13:41:56 +02:00
|
|
|
transform: scale(.5);
|
|
|
|
margin-left: -19px;
|
2023-10-20 00:40:05 +02:00
|
|
|
}
|
|
|
|
|
2023-10-24 20:35:27 +02:00
|
|
|
.app-header {
|
2023-10-27 13:41:56 +02:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-header nav {
|
2023-10-20 00:40:05 +02:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2023-10-27 13:41:56 +02:00
|
|
|
|
|
|
|
padding-top: 10px;
|
2023-10-20 17:54:36 +02:00
|
|
|
}
|
|
|
|
|
2023-10-24 20:35:27 +02:00
|
|
|
.app-header a {
|
2023-10-20 17:54:36 +02:00
|
|
|
color: lightgray;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: .25s ease;
|
2023-10-24 20:35:27 +02:00
|
|
|
width: fit-content;
|
2023-10-20 17:54:36 +02:00
|
|
|
|
2023-10-24 09:37:02 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
2023-10-20 17:54:36 +02:00
|
|
|
padding: 0.25rem 1rem;
|
|
|
|
}
|
|
|
|
|
2023-10-24 20:35:27 +02:00
|
|
|
.app-header .active {
|
2023-10-20 17:54:36 +02:00
|
|
|
color: white;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: cadetblue;
|
|
|
|
opacity: 80%;
|
|
|
|
padding: 0.25rem 1rem;
|
|
|
|
}
|
|
|
|
|
2023-10-24 20:35:27 +02:00
|
|
|
.app-header a:hover:not(.active) {
|
2023-10-20 17:54:36 +02:00
|
|
|
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-24 20:35:27 +02:00
|
|
|
[data-darkreader-scheme="dark"] .app-header a {
|
2023-10-20 17:54:36 +02:00
|
|
|
color: darkslategrey;
|
2023-10-20 10:55:16 +02:00
|
|
|
}
|
|
|
|
|
2023-10-24 20:35:27 +02:00
|
|
|
[data-darkreader-scheme="dark"] .app-header .active {
|
2023-10-20 17:54:36 +02:00
|
|
|
color: white;
|
|
|
|
box-shadow: 0 1.5px 0 0 currentcolor;
|
|
|
|
}
|