diff options
author | zsloan | 2021-12-02 21:40:14 +0000 |
---|---|---|
committer | zsloan | 2021-12-02 16:09:48 -0600 |
commit | 9354627c0abf78f2aa4069a59df574ac6419e315 (patch) | |
tree | 543df17ec5a6c4f503de26811e976a2c6cd61bfe | |
parent | 71b11e896c7edc1902def87f5913f05048c4d7f6 (diff) | |
download | genenetwork2-9354627c0abf78f2aa4069a59df574ac6419e315.tar.gz |
Gave the twitter feed div a background color to make it more visually distinct from surrounding content + removed top margin from ul elements that was added by uikit
-rwxr-xr-x | wqflask/wqflask/templates/index_page.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/index_page.html b/wqflask/wqflask/templates/index_page.html index 6e9bf91a..df975a0b 100755 --- a/wqflask/wqflask/templates/index_page.html +++ b/wqflask/wqflask/templates/index_page.html @@ -29,9 +29,23 @@ border:1px solid #c8ccc9; } + div#tweets { + margin:0 auto; + width: 590px; + height: 160px; + background: white; + position: relative; + border-radius:10px; + background-color: #F9F9F9; + } + h2 { margin-bottom: 0px; } + + ul { + margin-top: 0px; + } </style> {% endblock %} {% block content %} |