Modif du css

This commit is contained in:
Tom Hubrecht 2021-02-10 21:00:08 +01:00
parent 07e2220b24
commit 67671547bb
2 changed files with 38 additions and 2 deletions

View file

@ -524,6 +524,7 @@ body {
background-color: #301827; background-color: #301827;
color: #FFFFFF; color: #FFFFFF;
font-family: "Fira Sans", "Roboto", sans-serif; font-family: "Fira Sans", "Roboto", sans-serif;
border: none;
} }
#aside { #aside {
@ -550,9 +551,15 @@ body {
grid-template-areas: "aside" "main"; grid-template-areas: "aside" "main";
} }
h1 {
font-size: 1.5em;
}
#aside, #aside,
#main { #main {
padding: 0; padding: 0;
box-shadow: unset;
width: 100vw;
} }
#content-home, #content-home,
@ -566,6 +573,14 @@ body {
grid-column: 1/3; grid-column: 1/3;
} }
#title {
font-size: 1.75rem;
}
.content h2 {
font-size: 1.5rem;
}
#footer, #footer,
.content { .content {
max-width: 100%; max-width: 100%;
@ -586,7 +601,9 @@ body {
} }
#search-area { #search-area {
width: auto; justify-content: center;
margin: auto;
width: 80%;
} }
} }

View file

@ -21,6 +21,7 @@ body {
background-color: colors.$page-background; background-color: colors.$page-background;
color: colors.$page-text; color: colors.$page-text;
font-family: fonts.$regular-fonts; font-family: fonts.$regular-fonts;
border:none;
} }
#aside { #aside {
@ -50,9 +51,15 @@ body {
"main"; "main";
} }
h1 {
font-size: 1.5em;
}
#aside, #aside,
#main { #main {
padding: 0; padding: 0;
box-shadow: unset;
width: 100vw;
} }
#content-home, #content-home,
@ -70,6 +77,16 @@ body {
} }
} }
#title {
font-size: 1.75rem;
}
.content {
h2 {
font-size: 1.5rem;
}
}
#footer, #footer,
.content { .content {
max-width: 100%; max-width: 100%;
@ -97,7 +114,9 @@ body {
} }
#search-area { #search-area {
width: auto; justify-content: center;
margin: auto;
width: 80%;
} }
} }