diff options
author | Cara Salter <cara@devcara.com> | 2022-09-20 17:58:27 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-09-20 17:58:27 -0400 |
commit | b1ffd5220866dc9479fa284dfb2f0a0e111a6031 (patch) | |
tree | c63661f965a4a4e99888f23f28619d5a61e7244a /app/static/gen/style.css | |
parent | e549bc0a5c39e85fb94cb289497f1b245b564947 (diff) | |
download | nccd-b1ffd5220866dc9479fa284dfb2f0a0e111a6031.tar.gz nccd-b1ffd5220866dc9479fa284dfb2f0a0e111a6031.zip |
auth
Diffstat (limited to 'app/static/gen/style.css')
-rw-r--r-- | app/static/gen/style.css | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/app/static/gen/style.css b/app/static/gen/style.css index 6dd2994..9bca965 100644 --- a/app/static/gen/style.css +++ b/app/static/gen/style.css @@ -13,7 +13,8 @@ a a:active, a:visited { width: 60%; } -button { +button, +input[type=submit] { border-radius: 8px; background-color: #458588; border-color: #458588; @@ -26,18 +27,48 @@ button.accent { border-color: #d79921; } +.navbar { + list-style-type: none; + margin: 0; + padding: 0; + border-bottom: 1px solid; + margin-bottom: 2rem; + padding-bottom: 0.4rem; + text-align: center; +} + +.navbar-item { + display: inline; + margin-right: 1rem; +} + +.flashes { + list-style-type: none; + display: flex; +} + +.message { + width: 30%; + justify-content: center; + border: 1px solid #ebdbb2; + background-color: #d79921; + color: black; +} + form { width: 40%; } label, input { + margin-bottom: 0.5rem; + margin-top: 0.5rem; display: inline-block; } label { width: 40%; - text-align: right; + text-align: left; } label + input { |