2020-10-18 22:15:38 +02:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;500;700;800&display=swap');
|
|
|
|
|
2020-04-05 14:20:00 +02:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2020-06-27 18:58:12 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-16 14:52:48 +02:00
|
|
|
:root {
|
|
|
|
--bg-color: #2a2a2aff;
|
2020-10-18 22:15:38 +02:00
|
|
|
--bg-secondary-color: #1f1f1fff;
|
2020-10-16 14:52:48 +02:00
|
|
|
--font-color: #f9fbfaff;
|
2020-10-18 22:15:38 +02:00
|
|
|
--color-darkGrey: #2a2a2aff;
|
|
|
|
--color-lightGrey: #888886ff;
|
2020-10-16 14:52:48 +02:00
|
|
|
--color-grey: #404040ff;
|
|
|
|
--color-primary: #db5034ff;
|
2020-10-17 22:23:43 +02:00
|
|
|
--color-secondary: #00a698ff;
|
2020-10-16 14:52:48 +02:00
|
|
|
--color-error: #d43939;
|
|
|
|
--color-success: #28bd14;
|
|
|
|
--grid-maxWidth: 120rem;
|
|
|
|
--grid-gutter: 2rem;
|
|
|
|
--font-size: 1.6rem;
|
|
|
|
--font-family-sans: sans-serif;
|
|
|
|
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
2020-04-05 14:20:00 +02:00
|
|
|
}
|
2020-10-18 22:15:38 +02:00
|
|
|
|
|
|
|
.button, [type="button"], [type="reset"], [type="submit"], button {
|
|
|
|
padding: 1rem 2.5rem;
|
|
|
|
color: var(--font-color);
|
|
|
|
background: var(--color-grey);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
h1, h2,h3,h4,h5 {
|
|
|
|
font-family: "Merriweather Sans", sans-serif;
|
|
|
|
}
|