diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-25 23:33:46 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-31 19:21:38 +0300 |
commit | 8e257991d80277950915a77857ea7e724001b195 (patch) | |
tree | 179129af74b06570a59054e9cc59a1b743b7cecc /www/package-version-details-body.css | |
parent | 6f42144f6b0258cb46dc796c9251f57c72b23ee8 (diff) |
Add support for tests, examples, and benchmark package manifest values
Diffstat (limited to 'www/package-version-details-body.css')
-rw-r--r-- | www/package-version-details-body.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/www/package-version-details-body.css b/www/package-version-details-body.css index 62937c1..772f9eb 100644 --- a/www/package-version-details-body.css +++ b/www/package-version-details-body.css @@ -244,6 +244,42 @@ h1, h2, h3 font-size: 0.94em; } +#tests {margin-top: .4em; margin-bottom: 1em;} + +#tests tr:nth-child(even) td {background-color: rgba(0, 0, 0, 0.07);} +#tests td {margin-left: 2.8em; padding-left: .4em;} + +#tests tr.tests td .value +{ + /* <code> style. */ + font-family: monospace; + font-size: 0.94em; +} + +#examples {margin-top: .4em; margin-bottom: 1em;} + +#examples tr:nth-child(even) td {background-color: rgba(0, 0, 0, 0.07);} +#examples td {margin-left: 2.8em; padding-left: .4em;} + +#examples tr.examples td .value +{ + /* <code> style. */ + font-family: monospace; + font-size: 0.94em; +} + +#benchmarks {margin-top: .4em; margin-bottom: 1em;} + +#benchmarks tr:nth-child(even) td {background-color: rgba(0, 0, 0, 0.07);} +#benchmarks td {margin-left: 2.8em; padding-left: .4em;} + +#benchmarks tr.benchmarks td .value +{ + /* <code> style. */ + font-family: monospace; + font-size: 0.94em; +} + /* * Builds. */ |