diff options
| author | adamhrv <adam@ahprojects.com> | 2019-04-01 22:00:57 +0200 |
|---|---|---|
| committer | adamhrv <adam@ahprojects.com> | 2019-04-01 22:00:57 +0200 |
| commit | 6236de3c13735b188cd087acade09224680546fb (patch) | |
| tree | bdfc23c9271e3b2da2b849c0f1c4bda36217688c /site/assets | |
| parent | 4288f77297eb0dd36f8206ffbce812223b299ffb (diff) | |
fix column border/bg
Diffstat (limited to 'site/assets')
| -rw-r--r-- | site/assets/css/css.css | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/site/assets/css/css.css b/site/assets/css/css.css index 0ee8a4f3..d2ad0f7e 100644 --- a/site/assets/css/css.css +++ b/site/assets/css/css.css @@ -348,6 +348,9 @@ ul { } ul li { margin-bottom: 8px; + color: #dedede; + font-weight: 300; + font-size: 13px; } /* misc formatting */ @@ -373,6 +376,35 @@ pre code { table { margin-bottom: 40px; } +table thead{ + text-align: left; +} +table, tr, td, th { + border: none; + border-collapse:collapse; +} +.chart table tr{ + width: auto; +} +table tr{ + display:table; + table-layout: fixed; + width:100%; +} +table td, table th{ + padding:10px; + +} +table tr td{ + font-size:12px; +} +table tbody tr:nth-child(odd){ + background-color:#292929; +} +table tbody tr:nth-child(even){ + background-color:#333; +} + hr { height: 1px; background: #888; @@ -810,6 +842,7 @@ page-specific formatting ul.map-legend{ display: inline-block; margin:0; + font-size:14px; } ul.map-legend li{ margin-right: 10px; @@ -880,11 +913,14 @@ ul.map-legend li.source:before { flex-direction: row; justify-content: flex-start; } +.content-about .columns .column{ + /* on the about page use padding and bg color */ + background: #202020; + padding: 20px; +} .columns .column { font-family: Roboto, sans-serif; font-weight: 400; - background: #202020; - padding: 20px; margin: 10px; } .columns .column:first-of-type { @@ -997,4 +1033,10 @@ ul.footnotes { li p { margin: 0; padding: 0; display: inline; +} + +/* citation browser */ + +.citationHeader { + padding-bottom: 10px }
\ No newline at end of file |
