corda-checkers/webapp/src/components/Header.css

51 lines
875 B
CSS
Raw Normal View History

2023-10-19 18:56:46 +02:00
.OnlineTgl {
transform: scale(.5);
margin-left: -19px;
}
.app-header {
display: flex;
}
.app-header nav {
align-items: center;
justify-content: center;
display: flex;
flex-wrap: wrap;
padding-top: 10px;
2023-10-20 17:54:36 +02:00
}
.app-header a {
2023-10-20 17:54:36 +02:00
color: lightgray;
text-decoration: none;
transition: .25s ease;
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;
}
.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;
}
.app-header a:hover:not(.active) {
2023-10-20 17:54:36 +02:00
color: cadetblue;
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
[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
}
[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;
}