1
Fork 0

Add styles

This commit is contained in:
Korbs 2024-06-21 02:41:36 -04:00
parent 0449f77b8c
commit 5759d05c9b

26
src/styles/index.scss Normal file
View file

@ -0,0 +1,26 @@
:root {
--default-cursor: url('/cursor.ico') 2 0, default;
--pointer-cursor: url('/cursor-pointer.ico') 14 0, pointer;
}
body {
background: black;
color: white;
font-family: Arial, Helvetica, sans-serif;
margin: auto;
max-width: 1200px;
// Elements
a {
color: white;
}
input {
&:focus {
outline: none;
}
}
* {cursor: var(--default-cursor)}
a, button {cursor: var(--pointer-cursor) !important}
}