1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-09-03 02:53:31 +02:00

👍 ベースCSSを追加

This commit is contained in:
BcRikko
2018-09-24 20:29:00 +09:00
parent 9a6c626821
commit 847c55f0b5
4 changed files with 151 additions and 0 deletions

22
scss/base/generic.scss Normal file
View File

@@ -0,0 +1,22 @@
// Define
html {
font-size: $font-size;
color: $black;
background-color: $white;
}
body,
button,
input,
textarea,
select,
pre,
code {
font-family: $font-family;
font-size: $font-size;
}
a {
color: $black;
text-decoration: none;
}