diff options
| author | Bobby <[email protected]> | 2022-09-20 01:34:16 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-20 01:34:16 -0400 |
| commit | e29f7902c8d6dc6e6ee02964b56284d2f69f1ac5 (patch) | |
| tree | eb483a633872d04f624cc90c224bbbccdd1f0870 /static/css/main.css | |
| parent | 84c80328c1ff76416ee2a8bd7f098710ae93c01c (diff) | |
| download | thatcomputerscientist-e29f7902c8d6dc6e6ee02964b56284d2f69f1ac5.tar.xz thatcomputerscientist-e29f7902c8d6dc6e6ee02964b56284d2f69f1ac5.zip | |
Added commenting feature
Diffstat (limited to 'static/css/main.css')
| -rw-r--r-- | static/css/main.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css index b3d26ecd..494f3197 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -227,6 +227,32 @@ summary { color: rgb(74, 5, 5); } +.comment { + display: flex; + flex-direction: row; + flex-wrap: wrap; + margin-bottom: 20px; +} + +.profile-picture > img { + width: 48px; + height: 48px; + border-radius: 50%; + margin-right: 15px; + display: inline-block; +} + +.comment-header { + font-size: 0.8em; + margin-top: 0px; + margin-bottom: 10px; +} + +.comment-body { + flex: 1; + margin-top: 0px; +} + /* Optimize for phones */ @media only screen and (max-width: 480px) { body { |
