Files
pragotron-td2/src/styles.scss
T
2022-10-12 21:47:12 +02:00

41 lines
513 B
SCSS

@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400;700&display=swap');
@import 'theme.scss';
body,
html {
background: $primaryBg;
min-height: 100vh;
color: $primaryText;
padding: 0;
margin: 0;
}
*,
*::before,
*::after {
font-family: 'Monda', sans-serif;
}
ul {
list-style: none;
}
button {
cursor: pointer;
color: white;
font-size: 1em;
&.btn--text {
background: none;
border: none;
outline: none;
}
&:focus-visible {
color: $accentText;
}
}