Add styles
This commit is contained in:
parent
0449f77b8c
commit
5759d05c9b
1 changed files with 26 additions and 0 deletions
26
src/styles/index.scss
Normal file
26
src/styles/index.scss
Normal 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}
|
||||
}
|
Reference in a new issue