sid/css/layout.css

142 lines
2.1 KiB
CSS
Raw Normal View History

/*
*
* Positionnement global et mise en page
* -------------------------------------
* 1. Propriétés globales
2015-10-20 20:10:38 +00:00
* 2. HEADER
* 3. MENU
* 4. AUTH(entification)
* 5. CONTAINER
* 6. msgBox
*
*/
/******************************/
/*** 1. Propriétés globales ***/
/******************************/
*{ /* on supprime le margin/padding par défaut */
2015-10-20 20:10:38 +00:00
margin: 0;
padding: 0;
}
2015-10-20 20:10:38 +00:00
a{ text-decoration: none; color: inherit; }
/* on initialise le body avec les valeurs par défaut [compatibilité] */
body{
/* position */
display: block;
position: absolute;
2015-10-20 20:10:38 +00:00
top: 0;
left: 0;
width: 100%;
height: 100%;
/* background */
2015-10-21 08:53:45 +00:00
background: #ecf0f1;
background: url(../src/wallpaper.jpg) top left no-repeat;
background-size: cover;
/* overflow */
overflow-x: hidden; /* empêche la barre horizontale de scroll [précaution] */
/* foreground */
2015-10-20 20:10:38 +00:00
font: 16px 'Open Sans', 'Helvetica Neue', 'Arial', 'sans-serif';
}
2015-10-21 08:53:45 +00:00
#WRAPPER{
2015-10-20 20:10:38 +00:00
/* position */
display: block;
position: absolute;
2015-10-21 08:53:45 +00:00
width: calc( 100% - 2*100px );
min-height: calc( 100% - 2*100px );
margin: 100px;
2015-10-21 08:53:45 +00:00
box-shadow: 0 0 5px #777;
}
2015-10-21 08:53:45 +00:00
#HEADER{
/* position */
display: block;
position: absolute;
top: 0;
left: 11em;
width: calc( 100% - 11em );
height: 5em;
2015-10-21 08:53:45 +00:00
/* border */
border-bottom: 1px solid #e5e5e5;
2015-10-21 08:53:45 +00:00
/* background */
background-color: #fff;
2015-10-21 08:53:45 +00:00
/* Z */
z-index: 9;
}
2015-10-21 08:53:45 +00:00
#SUBHEADER{
/* position */
display: block;
position: absolute;
top: 5em;
left: 11em;
width: calc( 100% - 11em );
height: 10em;
2015-10-21 08:53:45 +00:00
/* background */
background-color: #fff;
2015-10-20 20:10:38 +00:00
2015-10-21 08:53:45 +00:00
/* Z */
z-index: 8;
}
2015-10-20 20:10:38 +00:00
2015-10-21 08:53:45 +00:00
#MENU{
/* position */
display: flex;
position: absolute;
top: 0;
left: 0;
width: 11em;
height: 100%;
2015-10-21 08:53:45 +00:00
/* flex */
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
2015-10-21 08:53:45 +00:00
/* background */
background-color: #34495e;
/* Z */
z-index: 10;
2015-10-21 08:53:45 +00:00
}
2015-10-20 20:10:38 +00:00
2015-10-21 08:53:45 +00:00
#CONTAINER{
/* position */
display: block;
position: relative;
margin-top: 5em;
margin-left: 11em;
width: calc( 100% - 11em );
min-height: calc( 100% - 5em );
2015-10-21 08:53:45 +00:00
/* background */
background-color: #ecf0f1;
2015-10-20 20:10:38 +00:00
2015-10-21 08:53:45 +00:00
/* Z */
z-index: 7;
}