diff options
author | dan <[email protected]> | 2023-05-15 12:36:07 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-15 12:36:17 -0400 |
commit | 9691f2c2d7cff4136bbd96dd5591160efa140956 (patch) | |
tree | 3149cb66b68ba52874e328a8dd701d479ff1733a /style.css | |
parent | ed3752063988c49719359ba80c8819b94829ce8e (diff) | |
download | simple-comments-widget-9691f2c2d7cff4136bbd96dd5591160efa140956.tar.gz simple-comments-widget-9691f2c2d7cff4136bbd96dd5591160efa140956.tar.bz2 simple-comments-widget-9691f2c2d7cff4136bbd96dd5591160efa140956.zip |
feat: add demo html file
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..b0796c2 --- /dev/null +++ b/style.css @@ -0,0 +1,40 @@ +.comment-form { + margin-top: 1em; +} + +.comment-form #commentcontent { + width: 100%; +} + +.comment-form #submit { + border: 0; + line-height: 2.5; + padding: 0 20px; + font-size: 1rem; + text-align: center; + color: #fff; + text-shadow: 1px 1px 1px #000; + border-radius: 10px; + background-color: rgba(0, 0, 220, 1); + background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0)); + box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.6), inset -2px -2px 3px rgba(0, 0, 0, 0.6); + margin-top:2px; + cursor: pointer; +} + +@media only screen and (max-width: 450px) { + #submit { + width: 100%; + } +} + +.comment { + white-space: pre-wrap; + border:solid; + margin-bottom:0.25em; + padding:0.5em; +} + +#commentsthreadinner { + margin-top:0.5em; +} |