Introduction du nouveau thème
This commit is contained in:
20
themes/42/assets/css/body.css
Normal file
20
themes/42/assets/css/body.css
Normal file
@@ -0,0 +1,20 @@
|
||||
body {
|
||||
font-family: var(--font-family);
|
||||
font-size: var(--font-size-body);
|
||||
background: var(--background-body);
|
||||
color: var(--color-text);
|
||||
padding: var(--padding-body);
|
||||
|
||||
/* On utilise flex pour que le footer colle au pied de page */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--gap-body);
|
||||
min-height: 100vh;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user