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

54 lines
870 B
CSS
Raw Normal View History

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);
width: 1px;
height: 1px;
}
nav {
padding: auto;
align-items: center;
justify-content: center;
display: flex;
flex-wrap: wrap;
a {
2023-10-20 10:55:16 +02:00
color: lightgray;
text-decoration: none;
transition: .25s ease;
margin-left: 30px;
margin-right: 30px;
2023-10-20 10:55:16 +02:00
padding: 0.25rem 1rem;
}
.active {
2023-10-20 10:55:16 +02:00
color: white;
border-radius: 2px;
background-color: cadetblue;
opacity: 80%;
padding: 0.25rem 1rem;
}
a:hover:not(.active) {
2023-10-20 10:55:16 +02:00
color:cadetblue;
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"] nav {
a {
color: darkslategrey;
}
.active {
color: white;
box-shadow: 0 1.5px 0 0 currentcolor;
}
}