Remove custom fonts
This commit is contained in:
parent
adec305bc5
commit
f6cdd8d2f2
5 changed files with 2 additions and 18 deletions
|
@ -2,7 +2,7 @@ server {
|
|||
root /usr/share/comfycamp;
|
||||
error_page 404 /404.html;
|
||||
|
||||
location ~ \.(png|ico|svg|ttf|webp)$ {
|
||||
location ~ \.(png|ico|svg|webp)$ {
|
||||
add_header Cache-Control "public, max-age=86400";
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -28,9 +28,6 @@ const { date, title, href } = Astro.props
|
|||
gap: 6px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.date {
|
||||
min-width: 121px;
|
||||
}
|
||||
.dash {
|
||||
display: block;
|
||||
}
|
||||
|
|
|
@ -40,21 +40,8 @@ const { title, description } = Astro.props
|
|||
--bg: #13151a;
|
||||
--accent: #b283e5;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Lora";
|
||||
src: url("/fonts/lora.ttf") format("truetype-variations");
|
||||
font-weight: 100 700;
|
||||
font-display: swap;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "Lora";
|
||||
src: url("/fonts/lora-italic.ttf") format("truetype-variations");
|
||||
font-weight: 100 700;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
}
|
||||
html {
|
||||
font-family: "Lora", system-ui, sans-serif;
|
||||
font-family: Georgia, serif;
|
||||
background-color: var(--bg);
|
||||
background-size: 224px;
|
||||
color: white;
|
||||
|
|
Loading…
Reference in a new issue