Files
LesRecettesDePapis/main.css
2026-03-20 09:34:02 +01:00

93 lines
1.2 KiB
CSS

/*
*/
/*Tout*/
html, body{
height: 100%;
text-align: center;
/*font-size: 98%;*/
}
/*Header et son contenu*/
#header {
display: flex;
flex-direction: row;
padding: 3px;
background-color: blanchedalmond;
}
#logo {
flex:1;
background-color: aqua;
background-image: url("Logo.jpg");
/*background:no-repeat;*/
}
.logo{
height: 100%;
width: 100%;
}
#nav {
background-color: yellow;
flex: 9;
text-align: initial;
letter-spacing: 2px;
padding: 10px;
}
.nav-element {
padding: 10px;
}
/*Body et son contenu */
body {
background-color: blanchedalmond;
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
height: 100%;
}
#sidebar {
background-color: aquamarine;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
}
#main-body {
display: flex;
flex-direction: row;
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;
overflow: scroll;
}
/*Footer et son contenue*/
footer{
padding: 25px;
background: darkslateblue;
color: white;
}