38 lines
667 B
CSS
Raw Normal View History

2024-10-10 17:37:22 +09:00
:root {
--WindowFull : 100svh;
--TopHeight: 50px;
--FooterHeight: 120px;
}
2024-10-05 19:42:29 +09:00
body, html {
2024-10-10 17:37:22 +09:00
background-color: black;
margin: 0px;
margin-left: 2.5%;
margin-right: 2.5%;
height: 100lvh;
width: 95%;
2024-10-05 19:42:29 +09:00
}
2024-10-10 17:37:22 +09:00
header {
align-content: center;
position: relative;
2024-10-05 19:42:29 +09:00
background-color: Gray;
2024-10-10 17:37:22 +09:00
height: var(--TopHeight);
}
#content {
position: relative;
height: calc(var(--WindowFull) - calc(var(--FooterHeight) + var(--TopHeight)));
2024-10-05 19:42:29 +09:00
}
2024-10-10 17:37:22 +09:00
#content > * {
margin-top: 5px;
margin-bottom: 5px;
2024-10-05 19:42:29 +09:00
}
2024-10-10 17:37:22 +09:00
footer {
align-content: center;
position: relative;
height: var(--FooterHeight);
background-color: aquamarine;
2024-10-05 19:42:29 +09:00
}