161 lines
3.6 KiB
CSS
Executable File
161 lines
3.6 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: #28b965 url(../src/menu/userdata/visitor.svg) left 1em center no-repeat;
|
|
background-size: 3em auto;
|
|
|
|
/* foreground */
|
|
color: #fff;
|
|
text-indent: 5em;
|
|
font-weight: bold;
|
|
line-height: 5em;
|
|
|
|
/* extra */
|
|
cursor: pointer;
|
|
|
|
/* animation */
|
|
transition: background-color .2s ease-in-out;
|
|
-moz-transition: background-color .2s ease-in-out;
|
|
-webkit-transition: background-color .2s ease-in-out;
|
|
-ms-transition: background-color .2s ease-in-out;
|
|
-o-transition: background-color .2s ease-in-out;
|
|
}
|
|
|
|
|
|
#MENU .userdata:hover{ background-color: #2dcc70; }
|
|
|
|
/* quand c'est un homme */
|
|
#MENU .userdata.M{ background-image: url(../src/menu/userdata/male.svg); }
|
|
|
|
/* quand c'est une femme */
|
|
#MENU .userdata.F{ background-image: url(../src/menu/userdata/female.svg); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#MENU span[data-link]{
|
|
/* position */
|
|
display: block;
|
|
position: relative;
|
|
height: 4em;
|
|
padding-left: 5em;
|
|
margin-top: 1em ;
|
|
|
|
/* border */
|
|
border-bottom: 3px solid transparent;
|
|
|
|
/* foreground */
|
|
color: #92a6b0;
|
|
font-size: 14px;
|
|
line-height: 4.5em;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
|
|
/* 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;
|
|
|
|
/* background */
|
|
background: transparent url(../src/menu_icon/home_grayscale.svg) left 1em center no-repeat;
|
|
background-size: 1.7em;
|
|
|
|
/* animation */
|
|
transition: background-position 0s, all .2s ease-in-out;
|
|
-moz-transition: background-position 0s, all .2s ease-in-out;
|
|
-webkit-transition: all 0s;
|
|
-ms-transition: background-position 0s, all .2s ease-in-out;
|
|
-o-transition: background-position 0s, all .2s ease-in-out;
|
|
}
|
|
|
|
|
|
#MENU span:hover,
|
|
#MENU span.active{
|
|
background: #233342 url(../src/menu_icon/home_grayscale.svg) left 1em center no-repeat;
|
|
background-size: 1.7em;
|
|
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
/* gestion des différentes icônes */
|
|
#MENU span:nth-child(2){ background-image: url(../src/menu/menu_icon/home.svg); }
|
|
#MENU span:nth-child(3){ background-image: url(../src/menu/menu_icon/groups.svg); }
|
|
#MENU span:nth-child(4){ background-image: url(../src/menu/menu_icon/modules.svg); }
|
|
#MENU span:nth-child(5){ background-image: url(../src/menu/menu_icon/career.svg); }
|
|
#MENU span:nth-child(6){ background-image: url(../src/menu/menu_icon/settings.svg); }
|
|
|
|
|
|
/* gestion de l'activation des différentes icônes */
|
|
#MENU span:nth-child(2):hover,
|
|
#MENU span:nth-child(2).active{ background-image: url(../src/menu/menu_icon/home@hover.svg); }
|
|
#MENU span:nth-child(3):hover,
|
|
#MENU span:nth-child(3).active{ background-image: url(../src/menu/menu_icon/groups@hover.svg); }
|
|
#MENU span:nth-child(4):hover,
|
|
#MENU span:nth-child(4).active{ background-image: url(../src/menu/menu_icon/modules@hover.svg); }
|
|
#MENU span:nth-child(5):hover,
|
|
#MENU span:nth-child(5).active{ background-image: url(../src/menu/menu_icon/career@hover.svg); }
|
|
#MENU span:nth-child(6):hover,
|
|
#MENU span:nth-child(6).active{ background-image: url(../src/menu/menu_icon/settings@hover.svg); }
|
|
|
|
|
|
|
|
|
|
|
|
/* affichage de l'année de visualisation (en cours) */
|
|
#MENU #CURRENTYEAR{
|
|
/* position */
|
|
position: absolute;
|
|
bottom: 1em;
|
|
width: 100%;
|
|
|
|
/* foreground */
|
|
color: #92a6b0;
|
|
font-family: 'Ubuntu';
|
|
text-align: center;
|
|
} |