smol css fixes

This commit is contained in:
remi 2022-05-04 21:15:06 +02:00
parent 5035a58df2
commit 44f38924fa
2 changed files with 10 additions and 3 deletions

View File

@ -1 +1 @@
<p class="convo_roman"> <p class="convo-roman">

View File

@ -4,6 +4,8 @@
--spacer-color-2: rgba(0, 0, 0, 0.2); --spacer-color-2: rgba(0, 0, 0, 0.2);
--left-color: rgb(167, 179, 167); --left-color: rgb(167, 179, 167);
--right-color: rgb(97, 206, 97); --right-color: rgb(97, 206, 97);
--font-normal: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
--font-heonian: "heonian", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
} }
@font-face { @font-face {
@ -13,7 +15,7 @@
body { body {
margin: 0; margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif font-family: var(--font-normal);
} }
main { main {
@ -68,6 +70,11 @@ main {
text-align: right; text-align: right;
} }
.convo-heonian {
font-family: var(--font-heonian);
word-break: break-all;
}
.notes { .notes {
width: 300px; width: 300px;
margin: 8px; margin: 8px;
@ -112,7 +119,7 @@ main {
} }
.words table td:first-of-type { .words table td:first-of-type {
font-family: "heonian"; font-family: var(--font-heonian);
} }
.clickable { .clickable {