Files
LesRecettesDePapis/main.css

77 lines
1.0 KiB
CSS
Raw Normal View History

2026-03-13 12:00:18 +01:00
/*
*/
/*Tout*/
2026-03-13 11:24:44 +01:00
html, body{
height: 100%;
text-align: center;
/*font-size: 98%;*/
}
2026-03-13 12:00:18 +01:00
/*Header et son contenu*/
2026-03-13 11:24:44 +01:00
#header {
display: flex;
flex-direction: row;
padding: 30px;
2026-03-13 12:00:18 +01:00
background-color: blanchedalmond;
2026-03-13 11:03:09 +01:00
}
2026-03-13 11:24:44 +01:00
#logo {
2026-03-13 12:00:18 +01:00
background-image: url("Logo.jpg");
background:no-repeat;
2026-03-13 11:03:09 +01:00
}
2026-03-13 11:24:44 +01:00
#nav {
2026-03-13 11:03:09 +01:00
background-color: yellow;
}
2026-03-13 12:00:18 +01:00
/*Body et son contenu */
2026-03-13 11:24:44 +01:00
body {
2026-03-13 12:00:18 +01:00
background-color: blanchedalmond;
2026-03-13 11:24:44 +01:00
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
height: 100%;
2026-03-13 11:03:09 +01:00
}
2026-03-13 11:24:44 +01:00
#sidebar {
2026-03-13 11:03:09 +01:00
background-color: aquamarine;
2026-03-13 12:00:18 +01:00
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
2026-03-13 11:24:44 +01:00
}
#main-body {
display: flex;
flex-direction: row;
overflow: auto;
2026-03-13 12:00:18 +01:00
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;
2026-03-13 11:24:44 +01:00
}
2026-03-13 12:00:18 +01:00
/*Footer et son contenue*/
2026-03-13 11:24:44 +01:00
footer{
padding: 25px;
background: darkslateblue;
color: white;
}