1
0
Fork 0
mirror of https://github.com/mat-1/matdoesdev.git synced 2025-08-02 14:46:04 +00:00

fix comic sans

This commit is contained in:
mat 2023-09-05 22:49:51 -05:00
parent f2d62b350f
commit 9e04b43ada
2 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,5 @@
<script lang="ts">
import './app.css'
import './comicsans.ttf'
</script>
<slot />

View file

@ -3,10 +3,16 @@ body {
background-image: url('/old/background.gif');
color: #fff;
font-family: 'comic sans ms', 'Comic Sans MS', 'Comic Sans', cursive;
font-family: 'comic sans ms', cursive;
overflow: auto;
}
@font-face {
font-family: 'comic sans ms';
font-style: normal;
src: url(/old/comicsans.ttf) format('ttf');
}
a {
color: #fff;
}