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 | |
| parent | 1f9b96db4b39ce57e75eea20ee3c01b982bea182 (diff) | |
| download | personal-website-d10c26e326330beacf9951933053b373817950e3.tar.gz personal-website-d10c26e326330beacf9951933053b373817950e3.tar.bz2 personal-website-d10c26e326330beacf9951933053b373817950e3.zip | |
Tailwind
Diffstat (limited to 'styles')
| -rw-r--r-- | styles/Home.module.css | 19 | ||||
| -rw-r--r-- | styles/globals.css | 31 |
2 files changed, 48 insertions, 2 deletions
diff --git a/styles/Home.module.css b/styles/Home.module.css index 49b9185..07473ce 100644 --- a/styles/Home.module.css +++ b/styles/Home.module.css @@ -1,6 +1,8 @@ +/* .container { padding: 0 2rem; } + .landing { height: 100%; background-position: center; @@ -9,7 +11,22 @@ background-image: url("/temp-landing.png") } + +.landing { + text-align: center; +} + .title { font-size: 200%; +} + +.description { +} + +.contact { +} + +.text-center { text-align: center; -}
\ No newline at end of file +} +*/
\ No newline at end of file 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 |
