diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-04-07 16:24:54 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-04-07 16:24:54 -0600 |
commit | 3b0349188c83b24cb8ff7dfe76796dabc3916e83 (patch) | |
tree | c8c3cf77ace1c03cea281baf3e924fe1c4dc6748 /styles | |
parent | 700449b8d903b9707b2751784dc54b4450a655df (diff) |
Styling and formatting for posts
Diffstat (limited to 'styles')
-rw-r--r-- | styles/style.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/styles/style.css b/styles/style.css index b2a56af..c4e0b2c 100644 --- a/styles/style.css +++ b/styles/style.css @@ -39,12 +39,24 @@ td { } .info { - margin: 1px 1px 1px 6px; color: #666; } .post-content { overflow: auto; + background-color: #eee; + padding: 12px 4px 12px 4px; + display: block; +} + +.youtube-embed { + width: 480px; + height: 270px; + border: none; +} + +.image-embed { + width: 480px; } textarea { @@ -54,3 +66,12 @@ textarea { overflow: scroll; resize: none; } + +blockquote { + border-color: #b6dcd5; + background-color: #E9F5F2; + padding: 12px; + border: 1px solid #79a; + overflow: hidden; + border-radius: 5px; +} |