mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-29 12:42:15 +02:00
40 lines
765 B
CSS
40 lines
765 B
CSS
#afup-global-menu {
|
|
text-align: center;
|
|
background-color: #1d2241;
|
|
height: 30px;
|
|
color: #fff
|
|
}
|
|
#afup-global-menu .lien-entete {
|
|
box-sizing: border-box;
|
|
font-family: Roboto, Helvetica, sans-serif;
|
|
letter-spacing: 0.08em;
|
|
font-size: 13px;
|
|
color: #fff;
|
|
padding: 4px 15px;
|
|
text-decoration: none;
|
|
height: 30px;
|
|
display: inline-block;
|
|
line-height: 1.55;
|
|
}
|
|
#afup-global-menu .lien-entete:hover {
|
|
background-color: #36a7df;
|
|
}
|
|
|
|
#afup-global-menu .lien-entete__active {
|
|
background-color: #36a7df;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#afup-global-menu {
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 10;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 460px) {
|
|
#afup-global-menu {
|
|
display: none;
|
|
}
|
|
}
|