28 lines
243 B
CSS
28 lines
243 B
CSS
html
|
|
{
|
|
background-color: grey;
|
|
margin: 0;
|
|
padding: 0;
|
|
height:100vh;
|
|
}
|
|
|
|
/* NAVIGATION BAR */
|
|
.nav_bar
|
|
{
|
|
display: flex;
|
|
height: 30%;
|
|
width: 100vw;
|
|
}
|
|
|
|
.nav_left_holder
|
|
{
|
|
display: flex;
|
|
width: 33.33vw;
|
|
gap: 10px;
|
|
}
|
|
|
|
.nav_left_item
|
|
{
|
|
|
|
}
|