diff options
author | Alexander Kabui | 2021-05-07 00:40:24 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-07 12:01:15 +0300 |
commit | 45ba9ad0b88824fa0aafb7d9378a7f68a2c7ee6c (patch) | |
tree | fc2878570ff34014542131820ae3af92efd29dc0 | |
parent | 92246a53e63e51a9d54938a5c1a65553545853c2 (diff) | |
download | genenetwork2-45ba9ad0b88824fa0aafb7d9378a7f68a2c7ee6c.tar.gz |
fix tweets width
-rw-r--r-- | wqflask/wqflask/templates/blogs_list.html | 1 | ||||
-rwxr-xr-x | wqflask/wqflask/templates/index_page.html | 27 |
2 files changed, 26 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/blogs_list.html b/wqflask/wqflask/templates/blogs_list.html index 4e2bfb82..e9255114 100644 --- a/wqflask/wqflask/templates/blogs_list.html +++ b/wqflask/wqflask/templates/blogs_list.html @@ -40,7 +40,6 @@ {% for year, year_blogs in blogs.items() %} <div class="blog_year"><h3>{{year}}</h3></div> {%for blog in year_blogs%} - <!-- <a href="#" class="blog_subtitle">{{blog['subtitle']}}</a> --> <div> <div class="blog_title"> <ul> diff --git a/wqflask/wqflask/templates/index_page.html b/wqflask/wqflask/templates/index_page.html index 338c8e2f..0a26aede 100755 --- a/wqflask/wqflask/templates/index_page.html +++ b/wqflask/wqflask/templates/index_page.html @@ -3,6 +3,31 @@ {% block css %} <style TYPE="text/css"> p.interact { display: none; } + + + + + .tweet { + + padding:5px; + color:#000; + + } + + .media { + padding-bottom:10px; + border-bottom: 1px solid #c8ccc9; + } + + .media img { + + width: 95%; + height: 100%; + border-radius: 5px; + /*transform: scale(1.1); image small?*/ + border:1px solid #c8ccc9; + + } </style> {% endblock %} {% block content %} @@ -254,7 +279,7 @@ "showImages": true, "lang": 'en' }; - twitterFetcher.fetch(configProfile); + twitterFetcher.fetch(configProfile) </script> |