Files
Polaris/static/assets/css/nav.css
T
Russell2259 6e0371d12f save
Co-authored-by: fowntain <dean@skool.gq>
Co-authored-by: Cobalt-60 <plastics-eater@users.noreply.github.com>
2023-08-14 19:38:51 -06:00

47 lines
823 B
CSS

.navbar {
position: sticky;
display: flex;
justify-content: space-between;
margin: 1.5vh;
}
.navbar>.title>img {
width: 6vh;
border-radius: 1vh;
}
.navbar>.title>span {
font-family: 'Lato-Black';
font-size: 3vh;
margin-left: 1.3vh;
position: relative;
top: -2.8vh;
}
.navbar>.title>span>span {
display: block;
position: relative;
font-size: 12px;
margin-left: 3vh;
}
.navbar>.end {
display: flex;
justify-content: space-between;
}
.navbar>.end>a {
border-style: solid;
border-width: 0.2vh;
margin: 0.5rem;
padding: 1rem;
cursor: pointer;
font-size: 3vh;
border-radius: 2vh;
border-color: rgba( 0, 0, 0, 0);
transition: border-color 0.4s linear;
}
.navbar>.end>a:hover {
border-color: rgba(255, 255, 255, 1);
}