Skip to content

Commit

Permalink
better wataerarkamrkm
Browse files Browse the repository at this point in the history
  • Loading branch information
larryngton2 committed Dec 16, 2024
1 parent bdd83aa commit b40ef5f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 9 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">

<head>
<meta charset="UTF-8"/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jello</title>
<link rel="preload" href="./assets/font/sf-pro/SFPRODISPLAYBOLD.ttf" as="font" crossorigin="anonymous">
Expand Down
10 changes: 5 additions & 5 deletions src/routes/clickgui/setting/ConfigurableSetting.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@
}
.nested-settings {
border: solid 1px rgba(#2f2f2f, 0.5);
background-color: rgba(black, 0.2);
border-radius: 6px;
padding: 7px;
box-shadow: $soft-shadow;
border: solid 1px rgba(#2f2f2f, 0.5);
background-color: rgba(black, 0.2);
border-radius: 6px;
padding: 7px;
box-shadow: $soft-shadow;
}
</style>
27 changes: 24 additions & 3 deletions src/routes/hud/elements/Watermark.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@
class="text"
transition:fly|global={{ duration: 500, x: -50, easing: expoOut }}
>
jello
jello<span class="text2">bounce</span>
</div>
</div>

<div class="shaderfix"></div>
<div class="shaderfix" />

<style lang="scss">
@import "../../../colors.scss";
Expand All @@ -110,6 +110,27 @@
text-shadow: $text-shadow;
font-weight: 400;
padding: 0 7px;
.text2 {
margin-left: 1.5px;
font-size: 27px;
color: darken($text-color, 10%);
animation: pulse 5s infinite;
}
}
@keyframes pulse {
0% {
color: darken($text-color, 10%);
}
50% {
color: darken($text-color, 15%);
}
100% {
color: darken($text-color, 10%);
}
}
.fade {
Expand All @@ -119,7 +140,7 @@
background-color: $fade-color;
width: 100vw;
height: 100vh;
z-index: 9999999999999999999999999999999999999999999999999999999999999999999999999999999999; // just to be sure
z-index: 9999999999999999999999999999999999999999999999999999999999999999999999999999999999; // just to be 100% sure
}
.shaderfix {
Expand Down

0 comments on commit b40ef5f

Please sign in to comment.