29 lines
713 B
CSS
29 lines
713 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;600;700&display=swap');
|
|
|
|
:root {
|
|
/* primary */
|
|
font-size: 16px;
|
|
--site-blue: hsl(223, 87%, 63%);
|
|
/* secondary */
|
|
--site-paleBlue: hsl(223, 100%, 88%);
|
|
--site-lightRed: hsl(354, 100%, 66%);
|
|
/* neutral */
|
|
--site-gray: hsl(0, 0%, 59%);
|
|
--site-veryDarkBlue: hsl(209, 33%, 12%);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Libre Franklin', sans-serif;
|
|
font-size: 20px;
|
|
}
|
|
|
|
/* Feel free to remove these styles or customise in your own stylesheet 👍 */
|
|
.attribution { font-size: 11px; text-align: center; }
|
|
.attribution a { color: hsl(228, 45%, 44%); }
|
|
|
|
@media screen and (max-width: 600px) {
|
|
} |