Update style

This commit is contained in:
Gabriel Augendre 2021-06-05 16:38:38 +02:00
parent c181a64b25
commit a003b0b2d8

View file

@ -8,15 +8,26 @@ html {
} }
body { body {
max-width: 1600px; height: 100%;
margin: 0 auto; margin: 0;
padding: 0 20px;
height:100%;
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
display: grid; display: grid;
grid-template-rows: auto 1fr auto; grid-template-rows: auto 1fr auto;
} }
header {
background-color: rgb(40,53,131);
color: white;
margin-bottom: 20px;
}
main, footer {
max-width: 1600px;
width: 100%;
margin: 0 auto;
padding: 0 20px;
}
.hidden { .hidden {
display: none; display: none;
} }
@ -40,10 +51,3 @@ header h1 {
a { a {
color: rgb(40,53,131); color: rgb(40,53,131);
} }
header {
background-color: rgb(40,53,131);
color: white;
margin-top: 20px;
margin-bottom: 20px;
}