Skip to content

Commit

Permalink
Improved snow effect, larger footer
Browse files Browse the repository at this point in the history
  • Loading branch information
stagrim committed Nov 30, 2023
1 parent 72284d1 commit c89b7c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { onMount } from "svelte";
import { page } from '$app/stores';
import { fade } from "svelte/transition";
import { base } from "$app/paths";
import { base } from "$app/paths";
let time = new Date();
Expand Down Expand Up @@ -211,7 +211,7 @@
position: fixed;
text-align: center;
color: #787878;
font-size: 1.33rem;
font-size: 1.66rem;
}
.footer .url {
Expand All @@ -229,7 +229,7 @@
}
.footer svg {
height: 1rem;
height: 1.3rem;
}
.heart.odd_heart {
Expand Down Expand Up @@ -287,7 +287,7 @@
.snow {
// filter: drop-shadow(0 0 10px white);
$total: 200;
// $total: 200;
position: absolute;
z-index: 10;
width: 10px;
Expand All @@ -296,7 +296,7 @@
// border-radius: 50%;
color: white;
@for $i from 1 through $total {
@for $i from 1 through 1000 {
$random-x: random(1000000) * 0.0001vw;
$random-offset: random_range(-100000, 100000) * 0.0001vw;
$random-x-end: $random-x + $random-offset;
Expand Down

0 comments on commit c89b7c4

Please sign in to comment.