Keep a sans-serif font for the index and for the titles

This commit is contained in:
Fabio Manganiello 2024-06-01 01:07:34 +02:00
parent d78393f1b3
commit 56417c6763

View file

@ -3,7 +3,6 @@ html {
height: -moz-available; height: -moz-available;
font-size: 20px; font-size: 20px;
font-family: Lora, "Palatino Linotype", "Book Antiqua", "New York", "DejaVu serif", serif; font-family: Lora, "Palatino Linotype", "Book Antiqua", "New York", "DejaVu serif", serif;
/* font-family: -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Open Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; */
font-weight: 400; font-weight: 400;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
} }
@ -120,6 +119,10 @@ h2 {
line-height: 1.1em; line-height: 1.1em;
} }
h1, h2, h3, h4, h5, h6 {
font-family: -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Open Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
footer { footer {
width: 100%; width: 100%;
font-size: .65em; font-size: .65em;
@ -130,3 +133,7 @@ footer {
text-align: center; text-align: center;
box-shadow: 1px -2px 2px 0 #bbb; box-shadow: 1px -2px 2px 0 #bbb;
} }
.index {
font-family: -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Open Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}