72 lines
960 B
CSS
72 lines
960 B
CSS
@font-face {
|
|
font-family: 'ipixel';
|
|
src: url('../fonts/vt323/VT323-Regular.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
|
|
}
|
|
html
|
|
{
|
|
background-color: grey;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100vw;
|
|
height:100vh;
|
|
font-family: 'ipixel', sans-serif;
|
|
}
|
|
|
|
/* NAVIGATION BAR */
|
|
.nav_bar
|
|
{
|
|
padding-top: 1rem;
|
|
padding-left: .5rem;
|
|
padding-right: .5rem;
|
|
display: flex;
|
|
height: 30%;
|
|
width: 100%;
|
|
}
|
|
|
|
.nav_left_holder
|
|
{
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-grow:1;
|
|
justify-content: center;
|
|
}
|
|
|
|
.nav_left_holder > button
|
|
{
|
|
font-family: 'ipixel';
|
|
min-width: 100px;
|
|
}
|
|
|
|
.search_field
|
|
{
|
|
|
|
font-family: 'ipixel', sans-serif;
|
|
min-width: 200px;
|
|
flex-grow:2;
|
|
}
|
|
.nav_right_holder
|
|
{
|
|
display:flex;
|
|
gap:2px;
|
|
flex-grow: 3;
|
|
padding-left:20px;
|
|
justify-content: center;
|
|
}
|
|
.nav_right_item
|
|
{
|
|
background: none;
|
|
border: 0px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.nav_right_item > img
|
|
{
|
|
min-height: 30px;
|
|
min-width: 30px;
|
|
max-height: 30px;
|
|
max-width: 30px;
|
|
}
|