diff options
| author | seth <[email protected]> | 2023-05-16 03:53:24 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-16 04:08:37 -0400 |
| commit | 681cd8c1cc2904c562f9a58db3cbb657d58fb552 (patch) | |
| tree | 9255f71e577fc82f079c16ff493f432ca5557284 /public/guzzle.sass | |
| parent | bf4df962be338c08ae41bed94b1d60b2930fca9f (diff) | |
feat: rewrite with astro
Diffstat (limited to 'public/guzzle.sass')
| -rw-r--r-- | public/guzzle.sass | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/public/guzzle.sass b/public/guzzle.sass new file mode 100644 index 0000000..9e76690 --- /dev/null +++ b/public/guzzle.sass @@ -0,0 +1,96 @@ +@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;700&display=swap') +@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500&display=swap') + +@tailwind base +@tailwind components +@tailwind utilities +@tailwind variants + +html + font-family: "Noto Sans", sans-serif + +h1 + @apply text-2xl + +h2 + @apply text-xl + +h3 + @apply text-lg + +p,li + @apply text-base + +a + @apply underline + +button + @apply rounded-xl bg-yellow p-2 text-center + +blockquote + @apply bg-surface2 p-2 rounded-xl + p + @apply bg-surface2 text-text + + code + @apply bg-surface2 text-text p-0 + +code + @apply bg-base text-text p-[0.1em] + +body + @apply bg-base p-10 + +footer + @apply text-xs flex items-center justify-center + +.container + @apply bg-lavender + @apply flex flex-auto flex-col + @apply items-center justify-center + @apply w-fit mx-auto + @apply rounded-lg + +.content + @apply inline-block text-center p-5 + img + // this is dumb + @apply mx-auto + +nav + div + @apply flex flex-col items-center justify-center mx-auto rounded p-3 text-text + ul + @apply inline mx-auto rounded p-3 + +#blogpost + h1 + @apply bg-base text-4xl mx-auto p-5 mb-5 mt-5 text-text text-center w-fit + h2 + @apply bg-base text-xl mx-auto p-3 mb-5 mt-5 text-text text-center w-fit + h3 + @apply bg-base text-lg mx-auto p-1 mb-5 mt-5 text-text text-center w-fit + + @apply lg:max-w-6xl text-left items-center + +#blogText + @apply bg-blue rounded-xl p-5 + +#commitText + @apply text-subtext1 p-2 + +#indexHeader + @apply bg-base w-fit h-fit mx-auto rounded p-5 text-text + +#gifs + @apply bg-base + @apply hidden min-[1280px]:flex flex-col gap-2 + @apply text-center items-center justify-center + @apply m-20 mt-0 mb-5 p-10 + @apply rounded-lg drop-shadow-2xl + +#gif + @apply flex gap-2 + +#vidya + @apply flex justify-center p-5 |
