Skip to content

Commit

Permalink
update status
Browse files Browse the repository at this point in the history
  • Loading branch information
GDjkhp committed Dec 15, 2024
1 parent e39ad23 commit dee8e90
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meeseeks-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ embed();
// server status
const ping = document.getElementById('status');
async function pingpong() {
if (await UrlExists(`${cors}398627612299362304`)) {
if (await UrlExists(`${cors}398627612299362304?limit=1`)) {
ping.innerHTML = "online";
ping.style = "font-weight: bold; color: lime;";
} else {
Expand Down
21 changes: 20 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,26 @@ td {
position: fixed;
}
body *, :not(*) {
cursor: url(https://i.imgur.com/nCXdGsA.png), auto;
cursor: url(https://gdjkhp.github.io/img/cursorsmol.png), auto;
}

img:hover {
animation: shake 0.5s;
animation-iteration-count: infinite;
}

@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(-1px, -2px) rotate(-1deg); }
20% { transform: translate(-3px, 0px) rotate(1deg); }
30% { transform: translate(3px, 2px) rotate(0deg); }
40% { transform: translate(1px, -1px) rotate(1deg); }
50% { transform: translate(-1px, 2px) rotate(-1deg); }
60% { transform: translate(-3px, 1px) rotate(0deg); }
70% { transform: translate(3px, 1px) rotate(-1deg); }
80% { transform: translate(-1px, -1px) rotate(1deg); }
90% { transform: translate(1px, 2px) rotate(0deg); }
100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.hiddengroup {
text-align: center;
Expand Down

0 comments on commit dee8e90

Please sign in to comment.