From 47352856e40e471a8ce05875fa25a0428ddb5d94 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Fri, 18 Jun 2021 21:15:15 -0400 Subject: more or less finished decorating form --- stylesheet.css | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) (limited to 'stylesheet.css') diff --git a/stylesheet.css b/stylesheet.css index fd034c1..776f738 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -82,17 +82,23 @@ section.quiet { background-color: white; } +button.button, a.button { background-color: var(--teal); padding-left: 1em; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em; - margin: 0.5em; + margin-right: 0.5em; text-decoration: none; color: white; border-radius: 3em; - font-size: 1.25em; +} + +button { + font-family: "PT Sans", sans-serif; + border: none; + font-size: 0.75em; } a.primary { @@ -110,3 +116,28 @@ footer a { color: var(--darkteal); text-decoration: underline; } + +form { + background-color: white; + padding: 2em; + border-radius: 1em; +} + +input, +textarea { + font-family: "PT Sans", sans-serif; + margin-bottom: 1.5em; + box-sizing: border-box; + width: 100%; + border: 1px solid lightgray; + padding: 1em; +} + +input { + border-radius: 3em; +} + +textarea { + border-radius: 1em; + resize: none; +} -- cgit v1.2.3