diff options
author | Michał Zimniewicz <michzimny@users.noreply.github.com> | 2018-02-04 18:10:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-04 18:10:43 +0100 |
commit | 46652656fc42df252cd8cadc82ced2f6e002bdc3 (patch) | |
tree | 8a536c03fe3a01dc2514129c3ad3a24e853ce900 /css | |
parent | 64b94f2831022d09f7a5025139c857e0d0517ce7 (diff) | |
parent | 4e91dd3b096afbd8e05fa052001589308e29405b (diff) |
Merge pull request #5 from emkael/single-table-visualization
Wyróżnianie rozkładów pojedynczego stołu
Diffstat (limited to 'css')
-rw-r--r-- | css/tdd.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/css/tdd.css b/css/tdd.css new file mode 100644 index 0000000..3ebce4f --- /dev/null +++ b/css/tdd.css @@ -0,0 +1,11 @@ +body > table > tbody > tr.tdd-header > td { + border-bottom: 1px solid #006; + padding-top: 30px; +} +body > table > tbody > tr { + opacity: 0.2 +} +body > table > tbody > tr.hovered, +body > table > tbody > tr.specified { + opacity: 1.0; +} |