diff options
| -rw-r--r-- | scraper/client/paper/paper.css | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/scraper/client/paper/paper.css b/scraper/client/paper/paper.css index 2d33ac76..1e6d4c30 100644 --- a/scraper/client/paper/paper.css +++ b/scraper/client/paper/paper.css @@ -3,6 +3,9 @@ width: 100%; } +.citations { + padding:40px; +} .citations ul { list-style-type: none; margin: 0; @@ -12,7 +15,13 @@ .citations li { list-style-type: none; margin: 0; - padding-bottom: 40px; + padding-bottom: 20px; + border:1px solid #ccc; +} +.citations h3{ + font-size:20px; + margin:10px 0 15px 0; + font-weight: bold; } .type { @@ -27,15 +36,30 @@ color: #11f; } .verified { - color: #080; font-weight: bold; + color: white; + font-weight: bold; + display: inline-block; + background: #00b200; + padding:4px; + font-size:12px; } .unverified { - color: #800; + color: white; font-weight: bold; + display: inline-block; + background: #ff0000; + padding:4px; + font-size:12px; } .unknown { - color: #888; + font-weight: bold; + color: white; + font-weight: bold; + display: inline-block; + background: #999; + padding:4px; + font-size:12px; } .param { @@ -79,6 +103,7 @@ iframe.pdfViewer { header select { margin-right: 10px; width: 100px; + min-width: 200px; } header a { color: white; |
