PROJET-WEB_STRI1A/WEB/ressources/navbarhtml.css

46 lines
741 B
CSS
Raw Normal View History

2019-05-16 14:49:29 +02:00
#menuDiv{
2019-05-22 14:09:21 +02:00
width: 100%;
display: block;
2019-05-16 14:49:29 +02:00
}
#menuDiv a{
2019-05-22 14:09:21 +02:00
font-family: Ubuntu,Helvetica,sans-serif;
font-size: 1em;
2019-05-22 14:26:53 +02:00
height:20%;
2019-05-16 14:49:29 +02:00
}
#menu {
2019-05-22 14:09:21 +02:00
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
background-color: rgb(65, 154, 28);
2019-05-16 14:49:29 +02:00
}
2019-05-22 10:17:47 +02:00
#logo{
2019-05-22 14:26:53 +02:00
height: 70%;
margin-left: 1%;
2019-05-22 10:17:47 +02:00
}
2019-05-16 14:49:29 +02:00
.menuItem {
2019-05-22 14:09:21 +02:00
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
color: white;
2019-05-22 14:26:53 +02:00
width: 9%;
2019-05-22 14:09:21 +02:00
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);
font-size: 1.1em;
text-align: center;
2019-05-16 14:49:29 +02:00
}
.menuItem:hover{
2019-05-22 14:09:21 +02:00
cursor: pointer;
border-bottom: 4px solid rgb(23, 23, 23);
}