Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions public/Buttons/21aib05 prasanna/code.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Animated Button</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<button class="animated-button">Click Me</button>
</body>
</html>
26 changes: 26 additions & 0 deletions public/Buttons/21aib05 prasanna/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.animated-button {
background-color: #0051ff;
border: none;
color: rgb(255, 0, 0);
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
transition-duration: 0.4s;
}

.animated-button:hover {
background-color: rgb(138, 51, 51);
color: #5900ff;
box-shadow: 0 0 20px #ff00ff;
}

.animated-button:active {
background-color: #d0ff00;
color: rgb(0, 247, 255);
transform: translateY(2px);
box-shadow: 0 0 10px #ff00aa;
}
Loading