diff --git a/src/global.sass b/src/global.sass index 39a434e..333e6b3 100644 --- a/src/global.sass +++ b/src/global.sass @@ -1,12 +1,33 @@ +@font-face + font-family: "Inter" + src: url("/Inter.woff2") format("woff2"), url("/Inter.ttf") format("ttf") + +@font-face + font-family: "Inter" + src: url("/InterItalic.woff2") format("woff2"), url("/InterItalic.ttf") format("ttf") + font-style: italic + :root, body padding: 0 margin: 0 background: #100f0e color: white - font-family: "SF UI Display", sans-serif + font-family: "Inter", sans-serif a @apply transition-colors text-orange-500 text-decoration: none &:hover - @apply text-orange-300 \ No newline at end of file + @apply text-orange-300 + +::-webkit-scrollbar + position: fixed + width: 0.5rem + height: 0.5rem + &-track, &-corner + background: none + &-thumb + border-radius: 0.2rem + background: #282625 + &:hover + background: #464443 diff --git a/static/Inter.ttf b/static/Inter.ttf new file mode 100644 index 0000000..cb74e48 Binary files /dev/null and b/static/Inter.ttf differ diff --git a/static/Inter.woff2 b/static/Inter.woff2 new file mode 100644 index 0000000..19f6721 Binary files /dev/null and b/static/Inter.woff2 differ diff --git a/static/InterItalic.ttf b/static/InterItalic.ttf new file mode 100644 index 0000000..665f236 Binary files /dev/null and b/static/InterItalic.ttf differ diff --git a/static/InterItalic.woff2 b/static/InterItalic.woff2 new file mode 100644 index 0000000..2269c15 Binary files /dev/null and b/static/InterItalic.woff2 differ