diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-27 12:22:16 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-27 12:22:16 -0700 |
commit | 5d9d3b5985991167f53cc07ba3b33b560db9bcac (patch) | |
tree | c7b4eea7d350d8d7c3235375b2c87691d07c220b /python/fatcat_web/templates/stats.html | |
parent | 847304be39c01ab7ca82dbc81ef92c1459e0ed23 (diff) | |
download | fatcat-5d9d3b5985991167f53cc07ba3b33b560db9bcac.tar.gz fatcat-5d9d3b5985991167f53cc07ba3b33b560db9bcac.zip |
webface UI tweaks, mostly for mobile
Diffstat (limited to 'python/fatcat_web/templates/stats.html')
-rw-r--r-- | python/fatcat_web/templates/stats.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/fatcat_web/templates/stats.html b/python/fatcat_web/templates/stats.html index f11ca820..eaff8f8d 100644 --- a/python/fatcat_web/templates/stats.html +++ b/python/fatcat_web/templates/stats.html @@ -13,7 +13,7 @@ You can also fetch these numbers <a href="./stats.json">as JSON</a>. <table class="ui structured table"> <tbody> - <tr><td rowspan="5" class="active top aligned center aligned"><b>"Papers"</b></td> + <tr><td rowspan="5" class="active top aligned center aligned" style="padding-top:0px;"><b>"Papers"</b></td> <td>Total</td> <td class="right aligned">{{ "{:,}".format(stats.papers.total) }}</td> <tr> @@ -29,14 +29,14 @@ You can also fetch these numbers <a href="./stats.json">as JSON</a>. <td>On web, not in Keepers</td> <td class="right aligned">{{ "{:,}".format(stats.papers.in_web_not_kbart) }}</td> - <tr><td rowspan="2" class="active top aligned center aligned"><b>Releases</b></td> + <tr><td rowspan="2" class="active top aligned center aligned" style="padding-top:0px;"><b>Releases</b></td> <td>Total</td> <td class="right aligned">{{ "{:,}".format(stats.release.total) }}</td> <tr> <td>References (raw, unlinked)</td> <td class="right aligned">{{ "{:,}".format(stats.release.refs_total) }}</td> - <tr><td rowspan="1" class="active top aligned center aligned"><b>Containers</b></td> + <tr><td rowspan="1" class="active top aligned center aligned" style="padding-top:0px;"><b>Containers</b></td> <td>Total</td> <td class="right aligned">{{ "{:,}".format(stats.container.total) }}</td> </tbody> |