aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/script.js2
-rw-r--r--static/style.css14
2 files changed, 15 insertions, 1 deletions
diff --git a/static/script.js b/static/script.js
index 72fcb1c..639e743 100644
--- a/static/script.js
+++ b/static/script.js
@@ -26,6 +26,7 @@ function display_example(i) {
$("#gen_ex_display").html(examples[i].furi);
$("#gen_ex_en").html(examples[i].en);
$("#gen_ex_words").html(examples[i].vocab);
+ $("#gen_ex_kanji").html(examples[i].kanji);
$("#gen_section").addClass("gen_hidden");
current = i;
revealed = false;
@@ -45,4 +46,5 @@ function spacebar() {
$("#gen_section").removeClass("gen_hidden");
revealed = true;
}
+ window.scrollTo(0, 0);
}
diff --git a/static/style.css b/static/style.css
index fbe8e7d..b699ead 100644
--- a/static/style.css
+++ b/static/style.css
@@ -150,7 +150,11 @@ details .chars {
padding-bottom: 1em;
}
-#gen_ex_words table td {
+#gen_ex_words table, #gen_ex_kanji table {
+ margin: auto;
+}
+
+#gen_ex_words table td, #gen_ex_kanji table td {
text-align: left;
}
@@ -160,6 +164,10 @@ details .chars {
padding-bottom: 3em;
}
+#gen_ex_words {
+ padding-bottom: 1em;
+}
+
#gen_section.gen_hidden #gen_ex_en {
visibility: hidden;
}
@@ -168,6 +176,10 @@ details .chars {
visibility: hidden;
}
+#gen_section.gen_hidden #gen_ex_kanji {
+ visibility: hidden;
+}
+
#gen_section.gen_hidden #gen_ex_display rt {
visibility: hidden;
}