diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..504afef --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +package-lock.json diff --git a/_media/css/chota.min.css b/_media/css/chota.min.css new file mode 120000 index 0000000..4c10fd2 --- /dev/null +++ b/_media/css/chota.min.css @@ -0,0 +1 @@ +../../node_modules/chota/dist/chota.min.css \ No newline at end of file diff --git a/_media/css/styles.css b/_media/css/styles.css new file mode 100644 index 0000000..ee7421d --- /dev/null +++ b/_media/css/styles.css @@ -0,0 +1,22 @@ +@font-face { + font-family: 'F5.6'; + src: url('/_media/fonts/F5.6-Regular.eot'); + src: url('/_media/fonts/F5.6-Regular.eot?#iefix') format('embedded-opentype'), + url('/_media/fonts/F5.6-Regular.woff2') format('woff2'), + url('/_media/fonts/F5.6-Regular.woff') format('woff'); + font-weight: normal; + font-style: normal; + font-display: swap; +} + +body.dark { + --bg-color: #000; + --bg-secondary-color: #131316; + --font-color: #f5f5f5; + --color-grey: #ccc; + --color-darkGrey: #777; +} + +body { + font-family: 'F5.6'; +} diff --git a/_media/fonts/F5.6-Regular.eot b/_media/fonts/F5.6-Regular.eot new file mode 100644 index 0000000..072c050 Binary files /dev/null and b/_media/fonts/F5.6-Regular.eot differ diff --git a/_media/fonts/F5.6-Regular.woff b/_media/fonts/F5.6-Regular.woff new file mode 100644 index 0000000..5249ceb Binary files /dev/null and b/_media/fonts/F5.6-Regular.woff differ diff --git a/_media/fonts/F5.6-Regular.woff2 b/_media/fonts/F5.6-Regular.woff2 new file mode 100644 index 0000000..84382a6 Binary files /dev/null and b/_media/fonts/F5.6-Regular.woff2 differ diff --git a/index.html b/index.html index eba506b..92bbe2d 100644 --- a/index.html +++ b/index.html @@ -1,37 +1,72 @@ - + - - hgman - - + + Hangman + + + + +
+
+ +
-
-
- LOADING -
+ -
- ... -
+
-
- ... -
+
+

+ Loading word... +

-
- 2021 by iiiypuk -

ver: 0.2.1

+ +
+ +
+
+

+ by iiiypuk
+ ver: 2.0.0 +

- + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..33f7144 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "chota": "0.8.0" + } +}