aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/static
diff options
context:
space:
mode:
authorPjotr Prins2020-11-10 14:06:21 +0000
committerGitHub2020-11-10 14:06:21 +0000
commitd213801678926e16135299a2e3ca0392a821507b (patch)
tree0c9919dec5153284f7c89d4054e36685aea0b493 /bh20simplewebuploader/static
parentd53120b6106e301c7f5b58bdb4dc89f85dbe2ad0 (diff)
parent203293363640e7f45ceaff09fb1a83f8c0f1496a (diff)
downloadbh20-seq-resource-d213801678926e16135299a2e3ca0392a821507b.tar.gz
bh20-seq-resource-d213801678926e16135299a2e3ca0392a821507b.tar.lz
bh20-seq-resource-d213801678926e16135299a2e3ca0392a821507b.zip
Merge pull request #114 from BonfaceKilz/feature/add-twitter-feed
Feature/add twitter feed
Diffstat (limited to 'bh20simplewebuploader/static')
-rw-r--r--bh20simplewebuploader/static/main.css27
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;
+}