This commit is contained in:
ZXY101
2023-08-04 15:10:28 +02:00
parent 3adfa1ccf5
commit 1c3af6df13
6 changed files with 58 additions and 16 deletions

2
src/_variables.scss Normal file
View File

@@ -0,0 +1,2 @@
$background-color: #1b1b20;
$font-family: Verdana, Geneva, Tahoma, sans-serif;

View File

@@ -1,11 +1,8 @@
:root {
--background-color: #1b1b20;
--font-family: Verdana, Geneva, Tahoma, sans-serif;
}
@use "variables" as *;
body {
background-color: var(--background-color);
font-family: var(--font-family);
body {
background-color: $background-color;
font-family: $font-family;
color: white;
margin: 0;
padding: 0;
@@ -13,7 +10,7 @@
button {
border: none;
font-family: var(--font-family);
font-family: $font-family;
background-color: transparent;
color: white;
}
@@ -24,8 +21,8 @@ button:hover {
a {
text-decoration: inherit;
color: inherit;
cursor: auto;
color: inherit;
cursor: auto;
}
a:visited {
@@ -37,4 +34,3 @@ a:visited {
a:hover {
cursor: pointer;
}

View File

@@ -1,7 +1,7 @@
<script lang="ts">
import NavBar from '$lib/components/NavBar.svelte';
import Snackbar from '$lib/components/Snackbar.svelte';
import '../app.css';
import '../app.scss';
</script>
<NavBar />