Website/styles/Navbar.module.css

33 lines
699 B
CSS
Raw Normal View History

2021-12-21 19:08:36 +00:00
.NavBarBackbone {
background-color: rgba(0,0,0,0.1);
border-bottom: 2px solid #3b3b58;
width: 100%;
height: 41px;
z-index: 0;
float:left;
position: absolute;
z-index: 1;
backdrop-filter: blur(30px);
2021-11-01 11:36:45 +00:00
}
.NavBar {
2021-12-21 19:08:36 +00:00
position: relative;
float: right;
z-index: 1;
}
.NavBar>a>button {
cursor: pointer;
background-color: rgba(255,255,255,0.00);
2021-11-01 11:36:45 +00:00
color: white;
2021-12-21 19:08:36 +00:00
border: none;
border-bottom: 2px solid #3b3b58;
padding: 10px;
2021-11-01 11:36:45 +00:00
padding-left: 20px;
2021-12-21 19:08:36 +00:00
padding-right: 20px;
transition: all .2s ease;
font-size: 10pt;
}
.NavBar>a>button:hover {
background-color: rgba(255,255,255,0.08);
border-bottom: 2px solid #6060dd;
2021-11-01 11:36:45 +00:00
}