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

38 lines
584 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 {
/* color: #CCC; */
opacity: .3;
text-decoration: none;
transition: .25s ease;
margin-left: 30px;
margin-right: 30px;
}
.active {
opacity: 1;
box-shadow: 0 2px 0 0 currentcolor;
}
a:hover:not(.active) {
/* color: #000; */
opacity: .5;
}
2023-10-19 18:56:46 +02:00
}