diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-27 22:55:22 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-27 22:55:22 -0600 |
| commit | 75ba836d6072235fc7a71659f8630ab3c1b210ad (patch) | |
| tree | 386b65ae6d7a4215c2f7b4944fc2f0922d162491 /static/css/form.css | |
| parent | b2fa4fe9454cbc9c9c0e265e3e6065eaa8726e2f (diff) | |
| download | hatecomputers.club-75ba836d6072235fc7a71659f8630ab3c1b210ad.tar.gz hatecomputers.club-75ba836d6072235fc7a71659f8630ab3c1b210ad.zip | |
add dns form
Diffstat (limited to 'static/css/form.css')
| -rw-r--r-- | static/css/form.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/static/css/form.css b/static/css/form.css new file mode 100644 index 0000000..4e14b68 --- /dev/null +++ b/static/css/form.css @@ -0,0 +1,30 @@ +form { + max-width: 600px; + padding: 1em; + background: var(--background-color-2); + border: 1px solid #ccc; +} + +label { + display: block; + margin: 0 0 1em; + font-weight: bold; +} + +input { + display: block; + width: 100%; + padding: 0.5em; + margin: 0 0 1em; + border: 1px solid var(--border-color); + background: var(--container-bg); +} + +button, +input[type="submit"] { + padding: 0.5em 1em; + background: var(--link-color); + color: var(--text-color); + border: 0; + cursor: pointer; +} |
