diff options
author | Laria Carolin Chabowski <laria@laria.me> | 2020-06-05 22:21:09 +0200 |
---|---|---|
committer | Laria Carolin Chabowski <laria@laria.me> | 2020-06-05 22:21:09 +0200 |
commit | 3f82b4cc301d27f6a256a76c744bbbbeb4baa5cb (patch) | |
tree | 8db5176dd5daf4bdaf8abacd8b6e80247ac155aa /assets | |
parent | a43b933df12f97c536a31d3d5a73ddda5f90ed94 (diff) | |
download | micropoly-3f82b4cc301d27f6a256a76c744bbbbeb4baa5cb.tar.gz micropoly-3f82b4cc301d27f6a256a76c744bbbbeb4baa5cb.tar.bz2 micropoly-3f82b4cc301d27f6a256a76c744bbbbeb4baa5cb.zip |
Add button to create note and go back to new note form
This improves the experience of quickly adding lots of notes
Diffstat (limited to 'assets')
-rw-r--r-- | assets/styles.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/assets/styles.css b/assets/styles.css index 4421620..925985c 100644 --- a/assets/styles.css +++ b/assets/styles.css @@ -8,6 +8,8 @@ html { --fg-link-normal: #7187d7; --fg-link-active: #ff3f00; --fg-link-visited: #9f71d7; + --success-color: hsl(98.1, 63.9%, 51.2%); + --success-bgcolor: hsl(175.4, 16%, 15.9%); --col-separator: #aaa; } @@ -234,4 +236,14 @@ input:placeholder-shown { .attachments .delete { font-style: italic; text-decoration: line-through; -}
\ No newline at end of file +} + +.success { + border: 1px solid var(--success-color); + background: var(--success-bgcolor); + color: var(--success-color); + padding: 10px; + margin: 10px 0; + text-align: center; + border-radius: 2px; +} |