Font fix & title style

This commit is contained in:
Theo 2024-10-29 16:00:49 +01:00
parent 9cc8f67e80
commit d627086025
4 changed files with 35 additions and 3 deletions

View File

@ -3,6 +3,13 @@
src: url(MononokiNerdFont-Regular.ttf);
}
@font-face {
font-family: mononoki;
src: url(MononokiNerdFont-Regular.ttf);
font-weight: normal;
}
@font-face {
font-family: mononoki;
src: url(MononokiNerdFont-Bold.ttf);
@ -12,11 +19,13 @@
@font-face {
font-family: mononoki;
src: url(MononokiNerdFont-Italic.ttf);
font-weight: italic;
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: mononoki;
src: url(MononokiNerdFont-BoldItalic.ttf);
font-weight: bold italic;
font-weight: bold;
font-style: italic;
}

View File

@ -2,4 +2,4 @@
img {
width: 100%;
}
}

View File

@ -18,13 +18,23 @@ div.side-by-side article {
}
a.hidden {
font-weight: normal;
font-style: normal;
text-decoration: none;
color: var(--main-ft-color);
}
h1 a.hidden {
font-weight: bold;
}
h3 {
margin-left: .65em;
}
article header {
margin-top: 5px;
font-size: large;
}
main p {

View File

@ -26,13 +26,26 @@ body {
* {
font-family: 'mononoki';
font-weight: normal;
}
h1 {
font-size: 2.5em;
font-weight: bold;
text-decoration: double underline;
}
h2 {
font-size: xx-large;
}
h3 {
font-size: x-large;
}
a.button {
font-style: normal ;
text-decoration: none;
color: var(--main-a-color);