diff options
author | stuebinm | 2021-03-07 22:04:42 +0100 |
---|---|---|
committer | stuebinm | 2021-03-07 22:04:42 +0100 |
commit | d8925def7fa6a359e11e612527d12a0280f44d84 (patch) | |
tree | 464d34c36f9789bf1bfcf6cde92529d7056177a0 /picarones-elm/document.css | |
parent | f5c19d2061e03ef28c45efd839bb211e446b25f6 (diff) |
Add simple cover which lets users create new links
Diffstat (limited to '')
-rw-r--r-- | picarones-elm/document.css | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/picarones-elm/document.css b/picarones-elm/document.css index e4379b6..7ec32ce 100644 --- a/picarones-elm/document.css +++ b/picarones-elm/document.css @@ -70,9 +70,31 @@ button.pressed { color: #eee; } +.input-form { + max-width: 44em; + margin: auto; +} +.grid { + display: grid; + grid-column-gap: 2em; + grid-template-columns: 40% 60%; + text-align: left; + margin-top: 3em; +} +.gridentry { + display: inline-grid; + align-content: center; + text-align: right; +} +a { + color: #fb0; +} - - +.remark { + text-align: justify; + margin-top: 3em; + color: #bbb; +} |