diff options
author | BonfaceKilz | 2020-11-10 03:42:12 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-11-10 03:42:12 +0300 |
commit | 2e2e2280f59b783759b7b70d410fb7a5c59206d5 (patch) | |
tree | 5ba26a9e8c9be51b11a9b4dd7c9cca727676ec58 /bh20simplewebuploader/static/main.css | |
parent | 59b4c0ff845686ce2e58e0c2df126f1bae514ab1 (diff) | |
download | bh20-seq-resource-2e2e2280f59b783759b7b70d410fb7a5c59206d5.tar.gz bh20-seq-resource-2e2e2280f59b783759b7b70d410fb7a5c59206d5.tar.lz bh20-seq-resource-2e2e2280f59b783759b7b70d410fb7a5c59206d5.zip |
Add tweet feed
* bh20simplewebuploader/main.py (send_home): Fetch tweets from Redis.
* bh20simplewebuploader/static/main.css: Add styles for tweets
* bh20simplewebuploader/templates/home.html: Add tweet section in
frontpage.
Diffstat (limited to 'bh20simplewebuploader/static/main.css')
-rw-r--r-- | bh20simplewebuploader/static/main.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/bh20simplewebuploader/static/main.css b/bh20simplewebuploader/static/main.css index bc4f705..76a1755 100644 --- a/bh20simplewebuploader/static/main.css +++ b/bh20simplewebuploader/static/main.css @@ -506,3 +506,30 @@ div.status { font-size: 16px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); } + +.flex-container { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-evenly; +} + +#twitter-feed { + background-color: #f5f8fa; + max-height: 440px; + max-width: 500px; + overflow-y: auto; + padding: 20px; + margin-left: auto; + margin-right: auto; +} + + +#twitter-feed ul { + list-style-type: none; +} + +#twitter-feed ul li { + border-bottom: 2px solid white; + padding-bottom: 20px; +} |