|
|
|
@ -14,32 +14,42 @@
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
background-color: rgb(65, 154, 28);
|
|
|
|
|
align-items: center;
|
|
|
|
|
background-color: rgb(35, 35, 35);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
|
height: 70%;
|
|
|
|
|
margin-left: 1%;
|
|
|
|
|
width: 50%;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menuItem {
|
|
|
|
|
#divFlex{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
width: 10%;
|
|
|
|
|
min-width: 5em;
|
|
|
|
|
padding: 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menuItem {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: white;
|
|
|
|
|
width: 9%;
|
|
|
|
|
width: 10%;
|
|
|
|
|
min-width: 5em;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 0.8em;
|
|
|
|
|
border-bottom: 4px solid rgb(65, 154, 28);
|
|
|
|
|
border-top: 4px solid rgb(65, 154, 28);
|
|
|
|
|
border-bottom: 4px solid rgb(35, 35, 35);
|
|
|
|
|
border-top: 4px solid rgb(35, 35, 35);
|
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menuItem:hover {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-bottom: 4px solid rgb(23, 23, 23);
|
|
|
|
|
border-bottom: 4px solid rgb(65, 154, 28);
|
|
|
|
|
}
|
|
|
|
|