2017-01-08 15:30:40 +00:00
|
|
|
/* COULEUR DU THEME */
|
|
|
|
/* COULEUR DU SOUS-MENU */
|
|
|
|
/* COULEUR DES ERREURS */
|
|
|
|
/* FORMULAIRES */
|
|
|
|
/* GESTION DES LONGUEURS */
|
|
|
|
#WRAPPER {
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #edf0f5;
|
|
|
|
font-family: 'Open Sans', 'Ubuntu', 'Verdana', 'Arial';
|
|
|
|
/* [1] Header de la page
|
2017-09-23 13:05:51 +00:00
|
|
|
==========================================*/
|
2017-01-08 15:30:40 +00:00
|
|
|
/* [2] Side-Menu de la page
|
2017-09-23 13:05:51 +00:00
|
|
|
==========================================*/
|
2017-01-08 15:30:40 +00:00
|
|
|
/* [3] Container de la page
|
2017-09-23 13:05:51 +00:00
|
|
|
==========================================*/
|
2017-01-08 15:30:40 +00:00
|
|
|
}
|
2017-09-23 13:05:51 +00:00
|
|
|
|
2017-01-08 15:30:40 +00:00
|
|
|
#WRAPPER > #HEADER {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2017-09-23 13:05:51 +00:00
|
|
|
height: calc( 4em - 1px);
|
2017-01-08 15:30:40 +00:00
|
|
|
border-bottom: 1px solid #c23f05;
|
|
|
|
background-color: #f44f06;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2017-09-23 13:05:51 +00:00
|
|
|
|
2017-01-08 15:30:40 +00:00
|
|
|
#WRAPPER > #MENU-SIDE {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 4em;
|
|
|
|
left: 0;
|
|
|
|
width: 4em;
|
|
|
|
height: 100%;
|
|
|
|
box-shadow: 2px 1px 3px #ddd;
|
|
|
|
background-color: #fff;
|
|
|
|
transition: all .3s;
|
|
|
|
z-index: 9;
|
|
|
|
}
|
2017-09-23 13:05:51 +00:00
|
|
|
|
2017-01-08 15:30:40 +00:00
|
|
|
#WRAPPER > #CONTAINER {
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
top: 4em;
|
|
|
|
left: 4em;
|
2017-09-23 13:05:51 +00:00
|
|
|
width: calc( 100% - 4em - 2*1em);
|
|
|
|
height: calc( 100% - 4em - 2*1em);
|
2017-01-08 15:30:40 +00:00
|
|
|
padding: 1em;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
overflow-x: none;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2017-09-23 13:05:51 +00:00
|
|
|
|
2016-10-18 14:03:03 +00:00
|
|
|
|
2017-09-23 13:05:51 +00:00
|
|
|
/*# sourceMappingURL= layout.css.map */
|