diff options
author | Tom Smeding <tom@tomsmeding.com> | 2022-08-22 15:28:10 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2022-08-22 15:28:10 +0200 |
commit | d1c02019db9a6fb2ab053091c9a4a32dc00b8b50 (patch) | |
tree | dbe9b8846f14d0aa65bb34cdcb0cc8c4d7031d1f /static/index.css |
Initial
Diffstat (limited to 'static/index.css')
-rw-r--r-- | static/index.css | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/static/index.css b/static/index.css new file mode 100644 index 0000000..1d1c542 --- /dev/null +++ b/static/index.css @@ -0,0 +1,91 @@ +body { + font-family: sans-serif; +} + +#list { + font-size: 30px; +} + +.item { + margin-bottom: 4px; +} + +.item.flash { + background-color: #fdd; +} + +.item.negative { + color: #999; +} + +.item.make-new { + margin-top: 7px; +} + +.item .item-buttons { + display: none; + user-select: none; +} +.item:hover .item-buttons { + display: inline; +} + +.item-bullet { + color: #444; + user-select: none; + margin-right: 10px; +} +.item.negative .item-bullet { + color: #aaa; +} + +.item-votes { + display: inline-block; + font-size: 18px; + color: #444; + vertical-align: 3px; + margin-left: 15px; +} + +.item-upvote { + border: 1px #888 solid; + border-radius: 4px; + background-color: #eee; + color: green; + font-weight: bold; + cursor: pointer; + margin-left: 15px; + padding-left: 8px; + padding-right: 8px; +} + +.item-downvote { + font-size: 23px; + color: blue; + cursor: pointer; + margin-left: 15px; + vertical-align: 2px; +} + +.item-delete { + font-weight: bold; + font-family: mononoki; + color: #f00; + font-size: 28px; + margin-left: 11px; + cursor: pointer; +} + +.new-item-bullet { + color: #888; + font-weight: bold; + font-family: mononoki; + margin-left: 1px; + margin-right: 8px; + user-select: none; + vertical-align: 1px; +} + +.new-item-input { + font-size: 26px; +} |