diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-20T00·47+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-20T00·52+0000 |
commit | f4fea2346e69235f8346ae626359fa1bf901282d (patch) | |
tree | 45e45ebc8b6bd70f213e625c904076642b7d5215 /website/sandbox/covid-uk/styles.css | |
parent | 1d5ab45303c700e188a1f041f6ff6630e96c7f03 (diff) |
Move sandbox into website
Nest the sandbox work under ./website.
Diffstat (limited to 'website/sandbox/covid-uk/styles.css')
-rw-r--r-- | website/sandbox/covid-uk/styles.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/website/sandbox/covid-uk/styles.css b/website/sandbox/covid-uk/styles.css new file mode 100644 index 000000000000..1f48906d8ffc --- /dev/null +++ b/website/sandbox/covid-uk/styles.css @@ -0,0 +1,28 @@ +@tailwind base; + +body { + @apply font-mono; +} + +h1 { + @apply text-3xl mb-5 font-bold; +} + +h2 { + @apply text-2xl mb-5 font-bold; +} + +h3 { + @apply text-xl mb-5 font-bold; +} + +a { + @apply text-blue-600 underline; +} + +p { + @apply mt-2 mb-5; +} + +@tailwind components; +@tailwind utilities; |