Skip to content

Instantly share code, notes, and snippets.

@MasterGordon
Created January 7, 2025 21:37
Show Gist options
  • Save MasterGordon/1412c44b8733ffd5ff60a803865344b4 to your computer and use it in GitHub Desktop.
Save MasterGordon/1412c44b8733ffd5ff60a803865344b4 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
button {
background-color: red;
color: white;
border-color: blue;
transition: all 0.5s;
border-radius: 10px;
}
button:hover {
filter: drop-shadow(5px 5px 0 red) hue-rotate(180deg)
drop-shadow(5px 5px 0 red);
transform: translate(-5px, -5px);
}
button:active {
filter: none;
transform: translate(0, 0);
}
body {
width: 100dvw;
height: 100dvh;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
}
</style>
</head>
<body>
<button>Test 😄</button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment