75 lines
1.2 KiB
CSS
Executable File
75 lines
1.2 KiB
CSS
Executable File
/*
|
|
*
|
|
* Gestion complète du MENU
|
|
* -------------------------------------
|
|
* 1. propriétés complémentaires #MENU
|
|
* 2. position textes
|
|
* 3. icônes
|
|
* 4. Labels
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*******************************************/
|
|
/*** 1. Propriétés complémentaires #MENU ***/
|
|
/*******************************************/
|
|
#MENU .userdata{
|
|
/* position */
|
|
height: 5em;
|
|
|
|
/* background */
|
|
background: #2dcc70 url(../src/menu/userdata/male.svg) left 1em center no-repeat;
|
|
background-size: 3em auto;
|
|
|
|
/* foreground */
|
|
color: #fff;
|
|
text-indent: 5em;
|
|
font-weight: bold;
|
|
line-height: 5em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#MENU a{
|
|
/* position */
|
|
display: block;
|
|
position: relative;
|
|
height: 4em;
|
|
padding-left: 4em;
|
|
margin-bottom: 1em ;
|
|
|
|
/* border */
|
|
border-bottom: 3px solid transparent;
|
|
|
|
/* foreground */
|
|
color: #92a6b0;
|
|
font-size: 12px;
|
|
line-height: 4.5em;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
letter-spacing: .16em;
|
|
|
|
/* xTra */
|
|
cursor: pointer;
|
|
|
|
/* animation */
|
|
transition: .2s ease-in-out;
|
|
-moz-transition: .2s ease-in-out;
|
|
-webkit-transition: .2s ease-in-out;
|
|
-ms-transition: .2s ease-in-out;
|
|
-o-transition: .2s ease-in-out;
|
|
}
|
|
|
|
|
|
#MENU a:hover,
|
|
#MENU a.active{
|
|
background-color: #233343;
|
|
color: #fff;
|
|
}
|
|
|