Compare commits

...

2 Commits

Author SHA1 Message Date
Fred Boniface 915c61f146 Position Footer 2022-10-20 20:37:25 +01:00
Fred Boniface 61d61ea25e Change sidebar max-width 2022-10-20 13:52:33 +01:00
1 changed files with 11 additions and 3 deletions

View File

@ -68,7 +68,7 @@ body {
margin: auto; margin: auto;
height: 100%; height: 100%;
display: block; display: block;
max-width: 60%; max-width: 300px;
width: 0; width: 0;
background-color: darkslategrey; background-color: darkslategrey;
transition: 0.7s; transition: 0.7s;
@ -107,15 +107,23 @@ body {
width: 90%; width: 90%;
margin: auto; margin: auto;
margin-top: 20px; margin-top: 20px;
margin-bottom: 40px;
color: azure; color: azure;
} }
/* FOOTER */ /* FOOTER */
footer { footer {
position: absolute;
width: 100%; width: 100%;
background-color: darkslategrey; background-color: darkslategrey;
text-align: center; height: 30px;
} }
@media screen and (min-width: 800px) and (min-height: 700px) { footer p {
padding: 0;
margin-top: 6px;
text-align: center;
color: azure;
}
@media screen and (min-height: 600px) {
footer { footer {
position: fixed; position: fixed;
bottom: 0; bottom: 0;