PROJET-WEB_STRI1A/WEB/ressources/navbaradminhtml.css

60 lines
1002 B
CSS
Raw Normal View History

2019-05-22 17:12:09 +02:00
#menuDiv {
2019-05-22 10:36:02 +02:00
width: 100%;
display: block;
}
2019-05-22 17:12:09 +02:00
#menuDiv a {
font-family: Ubuntu, Helvetica, sans-serif;
2019-05-22 10:36:02 +02:00
font-size: 1em;
2019-05-22 17:12:09 +02:00
height: 20%;
2019-05-22 10:36:02 +02:00
}
#menu {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
2019-05-22 17:12:09 +02:00
align-items: center;
background-color: rgb(35, 35, 35);
2019-05-22 10:36:02 +02:00
}
2019-05-22 17:12:09 +02:00
#logo {
width: 50%;
height: auto;
}
#divFlex{
2019-05-22 10:36:02 +02:00
display: flex;
flex-wrap: nowrap;
2019-05-22 17:12:09 +02:00
width: 10%;
min-width: 5em;
padding: 0;
text-align: center;
2019-05-22 10:36:02 +02:00
align-items: center;
2019-05-22 17:12:09 +02:00
}
.menuItem {
display: flex;
flex-wrap: nowrap;
2019-05-22 10:36:02 +02:00
justify-content: center;
color: white;
width: 10%;
min-width: 5em;
font-weight: bold;
text-decoration: none;
padding: 0.8em;
2019-05-22 17:12:09 +02:00
border-bottom: 4px solid rgb(35, 35, 35);
border-top: 4px solid rgb(35, 35, 35);
2019-05-22 10:36:02 +02:00
font-size: 1.1em;
text-align: center;
2019-05-22 17:12:09 +02:00
align-items: baseline;
2019-05-22 10:36:02 +02:00
}
2019-05-22 17:12:09 +02:00
.menuItem:hover {
border-bottom: 4px solid rgb(65, 154, 28);
}
#colorAdmin{
background-color: red;
}