sid/css/menu.css

106 lines
2.8 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 11:35:59 +00:00
/* extra */
cursor: default;
2015-10-21 08:53:45 +00:00
}
2015-10-21 11:35:59 +00:00
#MENU .userdata.M{ background-image: url(../src/menu/userdata/male.svg); }
#MENU .userdata.F{ background-image: url(../src/menu/userdata/female.svg); }
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;
2015-10-21 11:35:59 +00:00
padding-left: 5em;
2015-10-21 08:53:45 +00:00
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;
2015-10-21 11:35:59 +00:00
font-size: 14px;
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-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;
2015-10-21 11:35:59 +00:00
/* background */
background: transparent url(../src/menu_icon/home_grayscale.svg) left 1em center no-repeat;
background-size: 1.7em;
2015-10-21 08:53:45 +00:00
}
#MENU a:hover,
#MENU a.active{
2015-10-21 11:35:59 +00:00
background: #233342 url(../src/menu_icon/home_grayscale.svg) left 1em center no-repeat;
background-size: 1.7em;
2015-10-21 08:53:45 +00:00
color: #fff;
}
2015-10-21 11:35:59 +00:00
/* gestion des différentes icônes */
#MENU a:nth-child(2){ background-image: url(../src/menu_icon/home.svg); }
#MENU a:nth-child(3){ background-image: url(../src/menu_icon/groups.svg); }
#MENU a:nth-child(4){ background-image: url(../src/menu_icon/ue.svg); }
#MENU a:nth-child(5){ background-image: url(../src/menu_icon/modules.svg); }
#MENU a:nth-child(6){ background-image: url(../src/menu_icon/marks.svg); }
#MENU a:nth-child(7){ background-image: url(../src/menu_icon/settings.svg); }
/* gestion de l'activation des différentes icônes */
#MENU a:nth-child(2):hover,
#MENU a:nth-child(2).active{ background-image: url(../src/menu_icon/home@hover.svg); }
#MENU a:nth-child(3):hover,
#MENU a:nth-child(3).active{ background-image: url(../src/menu_icon/groups@hover.svg); }
#MENU a:nth-child(4):hover,
#MENU a:nth-child(4).active{ background-image: url(../src/menu_icon/ue@hover.svg); }
#MENU a:nth-child(5):hover,
#MENU a:nth-child(5).active{ background-image: url(../src/menu_icon/modules@hover.svg); }
#MENU a:nth-child(6):hover,
#MENU a:nth-child(6).active{ background-image: url(../src/menu_icon/marks@hover.svg); }
#MENU a:nth-child(7):hover,
#MENU a:nth-child(7).active{ background-image: url(../src/menu_icon/settings@hover.svg); }