46af925df7
Co-authored-by: Cobalt-60 <plastics-eater@users.noreply.github.com> Co-authored-by: fowntain <dean@skool.gq>
39 lines
621 B
CSS
39 lines
621 B
CSS
|
|
.navbar {
|
|
position: sticky;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 1.5vh;
|
|
}
|
|
|
|
.navbar>.title>img {
|
|
width: 11vh;
|
|
border-radius: 1.5vh;
|
|
}
|
|
|
|
.navbar>.title>span {
|
|
font-family: 'Lato-Black';
|
|
font-size: 9vh;
|
|
margin-left: 2vh;
|
|
position: relative;
|
|
bottom: 2vh;
|
|
}
|
|
|
|
.navbar>.end {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.navbar>.end>a {
|
|
margin: 0.5rem;
|
|
padding: 1.5rem;
|
|
padding-left: 0.5rem;
|
|
padding-right: 0.5rem;
|
|
cursor: pointer;
|
|
font-size: 3vh;
|
|
transition: color 0.3s ease-in-out;
|
|
}
|
|
|
|
.navbar>.end>a:hover {
|
|
color: ;
|
|
} |