sid/css/menu.css

75 lines
1.2 KiB
CSS
Raw Normal View History

2015-10-20 20:10:38 +00:00
/*
*
* 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 ***/
/*******************************************/
2015-10-21 11:22:34 +00:00
#MENU .userdata{
2015-10-21 08:53:45 +00:00
/* position */
height: 5em;
/* background */
2015-10-21 11:22:34 +00:00
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;
2015-10-21 08:53:45 +00:00
}
2015-10-21 11:22:34 +00:00
2015-10-21 08:53:45 +00:00
#MENU a{
/* position */
display: block;
2015-10-20 20:10:38 +00:00
position: relative;
2015-10-21 08:53:45 +00:00
height: 4em;
padding-left: 4em;
margin-bottom: 1em ;
/* border */
2015-10-20 20:10:38 +00:00
border-bottom: 3px solid transparent;
/* foreground */
2015-10-21 08:53:45 +00:00
color: #92a6b0;
font-size: 12px;
2015-10-21 11:22:34 +00:00
line-height: 4.5em;
2015-10-21 08:53:45 +00:00
font-weight: bold;
2015-10-20 20:10:38 +00:00
text-transform: uppercase;
2015-10-21 11:22:34 +00:00
letter-spacing: .16em;
2015-10-20 20:10:38 +00:00
/* xTra */
cursor: pointer;
2015-10-21 08:53:45 +00:00
/* 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;
}