NDI-2020/css/menu.css

94 lines
1.2 KiB
CSS
Raw Permalink Normal View History

2020-12-04 03:44:07 +01:00
#Menu
{
width: 100%;
position: sticky;
top: 0;
}
2020-12-04 02:42:16 +01:00
#blockMenu
{
float: right;
width: 95%;
}
2020-12-04 00:04:26 +01:00
#lineMenu
{
list-style-type: none;
overflow: hidden;
2020-12-04 02:42:16 +01:00
background-color: #0073be;
2020-12-04 00:04:26 +01:00
height: 49px;
margin: 0px;
padding: 0px;
}
.colonneMenu
{
float: left;
font-size: 17px;
padding: 14px 20px;
background-color: transparent;
color: white;
2020-12-04 02:42:16 +01:00
transition: background-color 0.1s, padding 0.1s, font-size 0.1s,transform 0.2s;
2020-12-04 00:04:26 +01:00
cursor: pointer;
}
.animationButtonMenu:hover
{
2020-12-04 02:42:16 +01:00
background-color: #197abb;
2020-12-04 00:04:26 +01:00
font-size: 19px;
padding: 13px 17px;
}
2020-12-04 02:42:16 +01:00
.aMenu
2020-12-04 00:04:26 +01:00
{
color: white;
text-decoration: none;
}
.colonneSign
{
float: right;
2020-12-04 02:42:16 +01:00
font-size: 17px;
padding: 14px 20px;
2020-12-04 00:04:26 +01:00
background-color: transparent;
color: white;
2020-12-04 02:42:16 +01:00
transition: background-color 0.2s, padding 0.2s, font-size 0.2s,transform 0.2s;
2020-12-04 00:04:26 +01:00
cursor: pointer;
}
.underLineHover:after
{
display: block;
width: 0;
height: 2px;
background-color: white;
bottom: -10px;
content: "";
transition: width 0.2s;
}
.underLineHover:hover:after
{
width: 100%;
}
2020-12-04 02:42:16 +01:00
#blockLogo
{
float: left;
width: 5%;
}
#logo
{
width: 100%;
height: 110px;
}
#blockDeco
{
width: 95%;
height: 10px;
float: right;
background-color: #5496c2;
2020-12-04 03:44:07 +01:00
}