mirror of
https://github.com/Spythere/pragotron-td2.git
synced 2026-05-03 05:28:14 +00:00
41 lines
513 B
SCSS
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;
|
|
}
|
|
}
|