ajout des archives litterall

This commit is contained in:
hugogogo
2021-03-12 20:37:52 +01:00
parent 9c236d37e1
commit fc2e80e50e
14 changed files with 47 additions and 113 deletions

17
styles/skeleton.css vendored
View File

@@ -15,30 +15,31 @@ html {
body {
background-color: var(--color-back-base);
}
body nav {
nav {
flex-direction: row;
/*we have to set the height to use the height % for childs elements*/
height: var(--nav-height);
background-color: var(--color-back-base);
z-index: 10;
}
body .container_main {
.container_main {
flex-direction: row;
/*the page is designed for a maximum screen*/
max-width: var(--max-screen);
}
body aside.page_content {
.container_main > * {
margin: 0px auto;
}
aside.aside_left {
top: calc(var(--nav-height) + 1px);
height: calc(100vh - var(--nav-height) - 1px);
background-color: var(--color-back-base);
}
body main {
main {
background-color: var(--color-back-base);
}
body aside.relative_content {
aside.aside_right {
background-color: var(--color-back-base);
}
body footer.page_footer {
footer.page_footer {
background-color: var(--color-back-dark);
}