don't display footer

This commit is contained in:
Nuno Sempere 2023-06-18 01:44:51 +00:00
parent 1578212da8
commit 4b9952e3d5
2 changed files with 11 additions and 0 deletions

View File

@ -20,6 +20,10 @@ body {
color:#333; color:#333;
} }
* { /* incorporates the padding and borders into the object size*/
box-sizing: border-box;
}
/* header */ /* header */
header { header {
flex-basis: 100%; flex-basis: 100%;

View File

@ -20,6 +20,10 @@ body {
color:#333; color:#333;
} }
* { /* incorporates the padding and borders into the object size*/
box-sizing: border-box;
}
/* header */ /* header */
header { header {
flex-basis: 100%; flex-basis: 100%;
@ -103,13 +107,16 @@ article{
/* footer */ /* footer */
footer { footer {
display: none;
/* display: block; */ /* display: block; */
/*
flex-grow: 1; flex-grow: 1;
flex-basis: 100%; flex-basis: 100%;
flex-shrink: 0; flex-shrink: 0;
justify-content: space-between; justify-content: space-between;
padding: 0.1em 0em 1em 1em; padding: 0.1em 0em 1em 1em;
border-top: 2px solid #eee border-top: 2px solid #eee
*/
} }
/* links */ /* links */