33 lines
741 B
CSS
33 lines
741 B
CSS
|
/*******************************/
|
||
|
/*Écrans smartphone&netbook, moins de 768px */
|
||
|
@media only screen and (max-width: 768px) {
|
||
|
|
||
|
|
||
|
|
||
|
/*******************************/
|
||
|
/* Bidouilles Zat */
|
||
|
/*******************************/
|
||
|
|
||
|
/*Cacher le menu classique */
|
||
|
#khnav {
|
||
|
display:none;
|
||
|
}
|
||
|
|
||
|
/*Icone de menu spécial smartphone, invisible de base et qu'on rend visible */
|
||
|
#khnav_mobile div.khnav_menu-icon {
|
||
|
display:inline-block;
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
background: white url(../img/forum.png) center no-repeat;
|
||
|
position:fixed;
|
||
|
}
|
||
|
|
||
|
/* Clic-icone pour montrer le menu */
|
||
|
#khnav_mobile div.khnav_menu-icon:hover {
|
||
|
}
|
||
|
|
||
|
/*******************************/
|
||
|
/*Fermeture de la balise "smartphone&netbook" */
|
||
|
}
|
||
|
|