Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
karpurgauram authored Jan 16, 2025
1 parent 6d41c9e commit 5151811
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions content/github/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html>
<head>
<title>karpurgauram | github</title>
<meta http-equiv = "refresh" content = "0; url = "https://github.com/karpurgauram />
</head>
<style>
body {
margin:0;
padding:0;
background:#262626;
}
.loader-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.progress-bar {
width: 80%;
max-width: 400px;
height: 20px;
background-color: #262626;
border-radius: 10px;
box-shadow:0 0 20px #5b2041;
border:3px solid #12a6cc;
overflow: hidden;
}
.progress {
width: 0;
height: 100%;
background-color: #da0a7e;
animation: fill 4s infinite;
}
@keyframes fill {
0% {
width: 0;
}
100% {
width: 100%;
}
}
</style>
</body>
<div class="loader-container">
<div class="progress-bar">
<div class="progress"></div>
</div>
</div>
</body>
</html>

0 comments on commit 5151811

Please sign in to comment.