ajout page 27

This commit is contained in:
hugogogo
2021-03-14 23:20:17 +01:00
parent f9c22a02c2
commit 454f5cb40f
20 changed files with 252 additions and 58 deletions

View File

@@ -4,7 +4,8 @@
/* aside left is for page table of content */
body aside.aside_left {
top: calc(var(--nav-height) + 1px);
height: calc(100vh - var(--nav-height));
height: 100%;
max-height: calc(100vh - var(--nav-height));
padding: calc(var(--gap-unit) / 2);
}
/* asides elements only have width if they have a child*/

4
styles/evenements.css Normal file
View File

@@ -0,0 +1,4 @@
aside.aside_right .relative_box {
border-style: none;
}

View File

@@ -2,5 +2,5 @@
/*---------------------------------------------*/
/*FOOTER*/
body footer.page_footer {
height: 100px;
height: var(--footer-height);
}

View File

@@ -55,5 +55,6 @@
--aside-left-width: 200px;
--aside-right-width: 200px;
--aside-margin: 30px;
--footer-height: 100px;
}

4
styles/lettres.css Normal file
View File

@@ -0,0 +1,4 @@
aside.aside_right .relative_box {
border-style: none;
}

View File

@@ -4,6 +4,7 @@
body main {
padding: calc(var(--gap-unit) / 2);
max-width: 600px;
min-height: calc(100vh - 1px - var(--nav-height) - var(--footer-height));
}
body main > * {
margin: var(--gap-unit) 0px;

1
styles/skeleton.css vendored
View File

@@ -35,6 +35,7 @@ aside.aside_left {
}
main {
background-color: var(--color-back-base);
min-height: calc(100vh - 1px - var(--nav-height) - var(--footer-height));
}
aside.aside_right {
background-color: var(--color-back-base);

View File

@@ -66,7 +66,7 @@ p, p *, h1, h1 *, h2, h2 * {
li *, li p, p b, p em, p i, p a, p span {
display: inline;
}
a, a > * {
a, a * {
cursor: pointer;
}
i {