commit
This commit is contained in:
33
main.css
33
main.css
@@ -1,25 +1,39 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*Tout*/
|
||||||
html, body{
|
html, body{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
/*font-size: 98%;*/
|
/*font-size: 98%;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*Header et son contenu*/
|
||||||
#header {
|
#header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
|
background-color: blanchedalmond;
|
||||||
}
|
}
|
||||||
|
|
||||||
#logo {
|
#logo {
|
||||||
background-color: blue;
|
background-image: url("Logo.jpg");
|
||||||
|
background:no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
#nav {
|
#nav {
|
||||||
background-color: yellow;
|
background-color: yellow;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*Body et son contenu */
|
||||||
body {
|
body {
|
||||||
|
background-color: blanchedalmond;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -29,16 +43,29 @@ body {
|
|||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
background-color: aquamarine;
|
background-color: aquamarine;
|
||||||
|
border: 1px solid rgba(0,0,0,.125);
|
||||||
|
border-radius: .25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#main-body {
|
#main-body {
|
||||||
background-color: red;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
flex: 1;
|
||||||
|
background-clip: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
background-color: red;
|
||||||
|
text-align: left;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border: 1px solid rgba(0,0,0,.125);
|
||||||
|
border-radius: .25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*Footer et son contenue*/
|
||||||
footer{
|
footer{
|
||||||
padding: 25px;
|
padding: 25px;
|
||||||
background: darkslateblue;
|
background: darkslateblue;
|
||||||
|
|||||||
Reference in New Issue
Block a user