Skip to content

Commit

Permalink
Merge pull request #2 from that-ar-guy/v2
Browse files Browse the repository at this point in the history
responsiveness almost done
  • Loading branch information
that-ar-guy authored Nov 14, 2024
2 parents 61f7afd + 01906a4 commit 254252e
Show file tree
Hide file tree
Showing 10 changed files with 1,250 additions and 956 deletions.
96 changes: 96 additions & 0 deletions css/animation.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
@keyframes animate {
40%,
60% {
left: 100%;
}
100% {
left: 0%;
}
}

@keyframes cursor {
50% {
border-color: transparent;
}
}
@keyframes typing {
from {
width: 1px;
}
}

@keyframes neon-border-animation {
0% {
box-shadow: 0 0 10px #ff004f, 0 0 20px #ff004f, 0 0 30px #ff004f,
0 0 40px #ff004f, 0 0 70px #f0004f, 0 0 80px #ff004f, 0 0 100px #ff004f,
0 0 150px #ff004f;
}
100% {
box-shadow: 0 0 20px #ff004f, 0 0 30px #ff004f, 0 0 40px, 0 0 50px #ff004f,
0 0 80px #ff004f, 0 0 90px #ff004f, 0 0 110px #ff004f, 0 0 160px #ff004f;
}
}
@keyframes html {
0% {
width: 0;
}
100% {
width: 70%;
}
}
@keyframes css {
0% {
width: 0;
}
100% {
width: 50%;
}
}
@keyframes python {
0% {
width: 0;
}
100% {
width: 60%;
}
}
@keyframes flask {
0% {
width: 0;
}
100% {
width: 40%;
}
}
@keyframes git {
0% {
width: 0;
}
100% {
width: 70%;
}
}
@keyframes ml {
0% {
width: 0;
}
100% {
width: 50%;
}
}
@keyframes teamwork {
0% {
width: 0;
}
100% {
width: 80%;
}
}
@keyframes creativity {
0% {
width: 0;
}
100% {
width: 80%;
}
}
Loading

0 comments on commit 254252e

Please sign in to comment.