diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-10 10:47:51 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-10 11:55:11 +0900 |
commit | 4601bce38ed2c58999ae97cbddb95c056157b703 (patch) | |
tree | dea612278522d801e092b31dae7dc999ab926f3f /scripts/css | |
parent | bccb5d561d607f14d6c87def972d594f8dbcb74d (diff) |
css: use css at task page
and some design update
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Diffstat (limited to 'scripts/css')
-rw-r--r-- | scripts/css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/scripts/css b/scripts/css new file mode 100644 index 0000000..a5f5e04 --- /dev/null +++ b/scripts/css @@ -0,0 +1,34 @@ +h1 { + color: #364e96; + border: solid 3px #364e96; + padding: 0.5em; + border-radius: 25px 0px 0px 25px; + background: linear-gradient(transparent 20%, #aaddff 80%); +} + +h2 { + background: linear-gradient(transparent 20%, #a7d6ff 80%); +} + +table { + border-collapse: collapse; + border: solid 1px gray; + background-color: #fff2d9; +} + +table th { + border: solid 1px gray; + background: linear-gradient(#ffdd99,#bbaa88); + padding: 1px 0; +} + +table td { + border: solid 1px gray; +} + +pre { + background: linear-gradient(#eeffee,#88dd66); + border: solid 3px gray; + padding: 10px 10px; + border-radius: 10px; +} |