diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-06-11 12:43:36 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-06-11 12:43:36 -0400 |
| commit | d10c26e326330beacf9951933053b373817950e3 (patch) | |
| tree | 7888a79ec9e75b25a0377d9910bdbdf0d6276a5d /styles/globals.css | |
| parent | 1f9b96db4b39ce57e75eea20ee3c01b982bea182 (diff) | |
| download | personal-website-d10c26e326330beacf9951933053b373817950e3.tar.gz personal-website-d10c26e326330beacf9951933053b373817950e3.tar.bz2 personal-website-d10c26e326330beacf9951933053b373817950e3.zip | |
Tailwind
Diffstat (limited to 'styles/globals.css')
| -rw-r--r-- | styles/globals.css | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/styles/globals.css b/styles/globals.css index 7caaf3e..0f7a5fe 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,3 +1,32 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + @font-face { + font-family: "Hack", sans-serif; + src: url("../public/ttf/Hack-Regular.ttf"); + } + + @font-face { + font-family: "Hack", sans-serif; + src: url("../public/ttf/Hack-Italic.ttf"); + font-style: italic; + } + @font-face { + font-family: "Hack", sans-serif; + src: url("../public/ttf/Hack-Bold.ttf"); + font-weight: 700; + } + @font-face { + font-family: "Hack", sans-serif; + src: url("../public/ttf/Hack-BoldItalic.ttf"); + font-weight: 700; + } + +} + +/* html, body { padding: 0; @@ -8,4 +37,4 @@ body { font-family: Hack; src: url("/ttf/Hack-Regular.ttf"); -}
\ No newline at end of file +}*/
\ No newline at end of file |
