diff options
Diffstat (limited to 'scraper/client/paper/paper.css')
| -rw-r--r-- | scraper/client/paper/paper.css | 64 |
1 files changed, 60 insertions, 4 deletions
diff --git a/scraper/client/paper/paper.css b/scraper/client/paper/paper.css index 4815bd30..025d6b8a 100644 --- a/scraper/client/paper/paper.css +++ b/scraper/client/paper/paper.css @@ -1,8 +1,20 @@ +.row { + display: flex; + flex-direction: row; + padding: 4px; +} +.rowHeading { + display: block; + width: 194px; +} .form, .paperInfo { padding: 10px; width: 100%; } +.citations { + padding:40px; +} .citations ul { list-style-type: none; margin: 0; @@ -12,7 +24,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 { @@ -26,6 +44,32 @@ cursor: pointer; color: #11f; } +.verified { + font-weight: bold; + color: white; + font-weight: bold; + display: inline-block; + background: #00b200; + padding:4px; + font-size:12px; +} +.unverified { + color: white; + font-weight: bold; + display: inline-block; + background: #ff0000; + padding:4px; + font-size:12px; +} +.unknown { + font-weight: bold; + color: white; + font-weight: bold; + display: inline-block; + background: #999; + padding:4px; + font-size:12px; +} .param { display: flex; @@ -39,9 +83,16 @@ input.notes { .param .btn { margin-top: 5px; } -.vetting { - width: 250px; - margin-right: 10px; +.row.disabled { opacity: 0.5; pointer-events: none;} + +.vettingRow label { + display: flex; + justify-content: center; + align-items: center; + padding: 0 10px 0 0; +} +.vettingRow input { + margin-right: 6px; } .param label { display: block; @@ -51,7 +102,11 @@ input.notes { .param input[type=checkbox] { margin: 6px 0; } +input[type=text] { + margin-bottom: 2px; +} textarea { + margin-bottom: 2px; padding: 4px; font-size: 14px; } @@ -68,6 +123,7 @@ iframe.pdfViewer { header select { margin-right: 10px; width: 100px; + min-width: 200px; } header a { color: white; |
