From 22bd3b7e415c5a33e8101bc38acaaab22de5b316 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 18 Sep 2023 18:56:51 +0200 Subject: change characters appearance --- static/style.css | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 static/style.css (limited to 'static') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..329817f --- /dev/null +++ b/static/style.css @@ -0,0 +1,46 @@ +a { + color: blue; + text-decoration: none; +} + +tr:hover { + background: #EEE; +} + +td { + vertical-align: top; +} + +.chars { + color: #007700; +} + +.ja { + text-align: center; + font-size: 2rem; +} + +.ja:hover .char_cur { + color: red; +} + +.ja:hover .char_p1 { + color: magenta; +} + +.ja:hover .char_p2 { + color: blue; +} + +.ja:hover .char_bad { + color: grey; +} + +.en { + text-align: center; + font-size: 1.2rem; +} + +details .chars { + font-size: 3rem; +} -- cgit v1.2.3