Files
LesRecettesDePapis/main.css

50 lines
580 B
CSS
Raw Normal View History

2026-03-13 11:24:44 +01:00
html, body{
height: 100%;
text-align: center;
/*font-size: 98%;*/
}
#header {
display: flex;
flex-direction: row;
padding: 30px;
2026-03-13 11:03:09 +01:00
}
2026-03-13 11:24:44 +01:00
#logo {
2026-03-13 11:03:09 +01:00
background-color: blue;
}
2026-03-13 11:24:44 +01:00
#nav {
2026-03-13 11:03:09 +01:00
background-color: yellow;
}
2026-03-13 11:24:44 +01:00
body {
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 11:24:44 +01:00
}
#main-body {
background-color: red;
display: flex;
flex-direction: row;
overflow: auto;
}
footer{
padding: 25px;
background: darkslateblue;
color: white;
}