AnkiNoteTemplate/templates/Japanese sentences/template.css

431 lines
6.5 KiB
CSS
Raw Normal View History

2021-11-27 14:58:45 +00:00
@charset "utf-8";
2022-03-25 05:12:23 +00:00
@media screen and (min-width: 900px) {
2021-11-27 14:58:45 +00:00
2022-03-25 05:12:23 +00:00
/* Limit font loading to wide screens to avoid performance hits on mobile. */
@font-face {
font-family: "KanjiStrokeOrders";
src: local("KanjiStrokeOrders"), url("_kso.ttf");
}
@font-face {
font-family: "Yu Mincho";
src: local("Yu Mincho"), local("游明朝"), url("_yumin.ttf");
}
@font-face {
font-family: "Yu Mincho";
src: local("Yu Mincho Demibold"), local("游明朝 Demibold"), url("_yumindb.ttf");
font-weight: 600;
}
2021-11-27 14:58:45 +00:00
2022-03-25 05:12:23 +00:00
b {
font-weight: 600;
}
2021-11-27 14:58:45 +00:00
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
.card {
background-color: #fffaf0;
color: #2a1b0a;
font-family: "Noto Serif", "Noto Serif CJK JP", Yu Mincho, "Liberation Serif", "Times New Roman", Times, Georgia,
Serif;
font-size: 24px;
text-align: left;
line-height: 1.4;
margin: 0 auto;
}
.card1 {
color: inherit;
}
.card2 .jpsentence ruby rt {
opacity: 0;
}
2022-03-26 11:47:09 +00:00
2021-11-28 08:44:26 +00:00
.card2 .jpsentence:hover ruby rt {
opacity: 1;
}
2021-11-27 14:58:45 +00:00
@media screen and (min-width: 820px) {
.card {
2021-12-25 03:19:58 +00:00
background-color: #e5d7c9;
2021-11-27 14:58:45 +00:00
display: flex;
justify-content: center;
}
2022-03-26 11:47:09 +00:00
2021-11-27 14:58:45 +00:00
.wrap {
width: 800px;
padding: 0 5px 0;
background-color: #fffaf0;
border-left: 1px solid #c9bcbc;
border-right: 1px solid #c9bcbc;
min-height: 100vh;
}
2022-03-26 11:47:09 +00:00
2021-11-27 14:58:45 +00:00
.wrap .wrap {
width: auto;
padding: 0;
min-height: 0;
border: 0;
}
}
hr {
margin: 2px 0;
clear: both;
border: 0;
border-top: 1px solid #c9bcbc;
}
/* links */
a {
color: #532f2f;
}
a:hover {
color: #722a2a;
}
a.hint {
text-decoration: none;
text-align: center;
display: block;
}
/* Hide furigana on front */
nokana ruby rt {
opacity: 0;
font-size: 0;
display: none;
}
notext b {
background-color: black;
color: transparent;
}
/* Top */
header {
display: flex;
clear: both;
}
header .tags {
border-radius: 0px 0px 3px 3px;
}
2022-03-26 11:47:09 +00:00
header>div:not(:last-child) {
2021-11-27 14:58:45 +00:00
margin-right: 3px;
}
/* Space between elements */
2021-12-18 23:12:13 +00:00
.sent-center {
2021-11-27 14:58:45 +00:00
display: flex;
2021-12-18 23:12:13 +00:00
align-items: center;
2021-11-27 14:58:45 +00:00
justify-content: center;
2021-12-18 23:12:13 +00:00
flex-flow: column nowrap;
2021-11-27 14:58:45 +00:00
}
2021-12-18 23:12:13 +00:00
/* Japanese sentence */
2021-12-25 03:19:58 +00:00
.jpsentence {
font-size: 35px;
}
2021-12-20 19:47:56 +00:00
/* Hide front side when the back is shown. */
2021-12-25 03:19:58 +00:00
.fside .jpsentence {
display: none;
}
2021-11-27 14:58:45 +00:00
2021-12-25 03:12:08 +00:00
/* English */
2022-03-26 11:47:09 +00:00
div.ensentence>a.hint {
2021-12-25 03:12:08 +00:00
color: #555;
font-size: 14px;
display: block;
border: 1px solid #ccc;
border-radius: 2.2px;
padding: 2px 10px;
2021-12-25 20:20:44 +00:00
margin: 4px 0;
2021-12-25 03:12:08 +00:00
}
2022-03-26 11:47:09 +00:00
div.ensentence>a.hint:hover {
2021-12-25 03:12:08 +00:00
color: #111;
background-color: rgba(0, 0, 0, 0.03);
}
2021-12-20 19:47:56 +00:00
/* Tags */
2021-11-27 14:58:45 +00:00
.tags {
font-family: "Noto Sans", "Noto Sans CJK JP", "Liberation Sans", Arial, Sans, sans-serif;
text-align: center;
display: inline-block;
text-transform: lowercase;
background-color: #333;
color: #fffaf0;
font-weight: bold;
padding: 1px 3px;
margin: 0;
cursor: pointer;
border-radius: 3px;
font-size: 12px;
line-height: 14px;
}
/* AnkiDroid replay button */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
.replaybutton {
margin: 0;
margin-right: 3px;
text-decoration: none;
}
.replaybutton span {
padding: 0;
font-size: 16px;
}
.replaybutton span svg {
fill: #fffaf0;
background: #333;
border-radius: 3px;
vertical-align: top;
min-width: 16px;
min-height: 16px;
}
/* PC replay button */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
a.replay-button {
top: -0.125em;
position: relative;
margin: 0;
}
a.replay-button svg {
height: 1em;
width: 1em;
}
a.replay-button svg path {
fill: #fffaf0;
}
a.replay-button svg circle {
fill: #333;
}
/* Footer and links */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
footer {
font-size: 16px;
text-align: center;
}
2022-03-26 11:47:09 +00:00
footer>a {
2021-11-27 14:58:45 +00:00
text-decoration: none;
}
2022-03-26 11:47:09 +00:00
footer>a:after {
2021-11-27 14:58:45 +00:00
content: "·";
color: brown;
display: inline-block;
width: 6px;
}
2022-03-26 11:47:09 +00:00
footer>a:last-child:after {
2021-11-27 14:58:45 +00:00
content: "";
width: 0;
}
/* Vocab */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
.vocab {
margin-top: 16px;
}
.vocab div {
display: inline-block;
}
.vocab br {
display: none;
}
2022-03-26 11:47:09 +00:00
.vocab>.tags {
2021-11-27 14:58:45 +00:00
vertical-align: top;
}
2022-03-26 11:47:09 +00:00
.notes>.tags {
2021-11-27 14:58:45 +00:00
vertical-align: bottom;
}
/* Images */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
.images {
2022-03-26 16:11:28 +00:00
margin: 10px 0;
display: grid;
justify-items: center;
align-items: start;
align-content: start;
justify-content: space-around;
gap: 5px;
grid-auto-columns: minmax(100px, 1fr);
grid-auto-rows: minmax(100px, auto);
}
.images br, .images > * {
display: none;
2021-11-27 14:58:45 +00:00
}
2022-03-26 16:11:28 +00:00
.images img {
display: block;
2021-11-27 14:58:45 +00:00
border-radius: 4px;
filter: sepia(33%);
max-width: 100%;
2022-03-26 16:11:28 +00:00
max-height: 95vh;
}
.images img:nth-child(3n+1) {
grid-column: 1;
}
.images img:nth-child(3n+2) {
grid-column: 2;
}
.images img:nth-child(3n+3) {
grid-column: 3;
2021-11-27 14:58:45 +00:00
}
/* Production cards */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
.production b {
visibility: hidden;
}
.strokeorder {
text-align: center;
font-size: 150px;
font-family: KanjiStrokeOrders;
}
/* Morphman coloring */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
.fside .jpsentence:hover [mtype="unknown"] {
background-color: #ffff99;
}
.fside .jpsentence:hover [mtype="seen"] {
background-color: #ffd1b3;
}
.fside .jpsentence:hover [mtype="known"] {
background-color: #b3e6cc;
}
.fside .jpsentence:hover [mtype="mature"] {
background-color: transparent;
}
.fside .jpsentence:hover [priority="true"] {
color: inherit;
}
.fside .jpsentence:hover [frequency="true"] {
color: inherit;
}
del.MorphManHide,
del.morphmanhide {
display: none;
}
/* Fix for Yomichan defs */
2021-12-20 19:47:56 +00:00
2021-11-27 14:58:45 +00:00
ul,
ol {
list-style-type: none;
display: inline;
margin: 0px;
padding: 0px;
}
/* Fix for Yomichan pitch accents */
2021-12-20 19:47:56 +00:00
2022-03-26 11:47:09 +00:00
.vocab ol>li {
2021-11-27 14:58:45 +00:00
display: inline;
}
2022-03-26 11:47:09 +00:00
.vocab ol>li:after {
2021-11-27 14:58:45 +00:00
content: "・";
}
2022-03-26 11:47:09 +00:00
.vocab ol>li:last-child:after {
2021-11-27 14:58:45 +00:00
content: "";
}
/* Night Mode */
2021-12-20 19:47:56 +00:00
2022-03-25 05:12:23 +00:00
.nightMode.card {
background-color: #2F2F31;
}
2022-01-10 01:10:21 +00:00
.nightMode .wrap {
2022-01-30 06:31:23 +00:00
color: #FFFFFF;
2022-03-25 05:12:23 +00:00
background-color: inherit;
2022-01-10 01:10:21 +00:00
}
2021-11-27 14:58:45 +00:00
.nightMode .tags {
2022-01-01 21:54:07 +00:00
background-color: #FFFFFF;
color: #2F2F31;
2021-11-27 14:58:45 +00:00
}
.nightMode a.replay-button svg path {
2022-01-01 21:54:07 +00:00
fill: #2F2F31;
2021-11-27 14:58:45 +00:00
}
.nightMode a.replay-button svg circle {
2022-01-01 21:54:07 +00:00
fill: #FFFFFF;
2021-11-27 14:58:45 +00:00
}
.nightMode .replaybutton span svg {
2022-01-01 21:54:07 +00:00
fill: #2F2F31;
background: #FFFFFF;
2021-11-27 14:58:45 +00:00
}
.nightMode a {
2022-01-10 01:10:21 +00:00
color: #c7493a;
2021-11-27 14:58:45 +00:00
}
.nightMode a:hover {
2022-01-10 01:10:21 +00:00
color: #a33327;
2021-11-27 14:58:45 +00:00
}
.nightMode .jpsentence b {
color: gray;
}
2022-03-26 11:47:09 +00:00
.nightMode .images>img {
2022-01-01 21:54:07 +00:00
filter: sepia(0%);
2021-11-27 14:58:45 +00:00
}
2021-12-21 04:03:49 +00:00
2022-03-26 11:47:09 +00:00
.nightMode div.ensentence>a.hint {
2022-01-01 21:54:07 +00:00
color: #FFFFFF;
border: 1px solid #FFFFFF;
}
2021-12-21 04:03:49 +00:00
2022-03-26 11:47:09 +00:00
.nightMode div.ensentence>a.hint:hover {
2022-01-01 21:54:07 +00:00
color: gray;
background-color: rgba(0, 0, 0, 0.20);
2021-12-21 04:03:49 +00:00
}
/* Don't select furigana */
.jpsentence ruby rt {
user-select: none;
2022-03-26 11:47:09 +00:00
}