Pragotron (v0.3)

This commit is contained in:
2022-10-12 21:47:12 +02:00
parent 046859b560
commit f06d13aee3
10 changed files with 501 additions and 323 deletions
+40
View File
@@ -0,0 +1,40 @@
@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;
}
}