Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Atamyrat2005 committed Jun 30, 2023
1 parent c1a2d5a commit 5ea7bbf
Show file tree
Hide file tree
Showing 2 changed files with 222 additions and 65 deletions.
147 changes: 147 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
background-color: #ff1154;
}

.green2 {
color: #fff;
}

.green2:hover {
color: #ff1154;
transition: 0.6s;
Expand Down Expand Up @@ -206,4 +210,147 @@ a {

a:hover {
border-bottom: 2px solid #ff1154;
}




div .six::after {
content: counter(count1);
animation: counter1 3s forwards;
}

@keyframes counter1 {
0% {
counter-increment: count1 0;
}

10% {
counter-increment: count1 1;
}

20% {
counter-increment: count1 2;
}

40% {
counter-increment: count1 3;
}

60% {
counter-increment: count1 4;
}

80% {
counter-increment: count1 5;
}

100% {
counter-increment: count1 6;
}
}

div .ten::after {
content: counter(count2);
animation: counter2 3s forwards;
}

@keyframes counter2 {
0% {
counter-increment: count2 0;
}

10% {
counter-increment: count2 1;
}

20% {
counter-increment: count2 2;
}

30% {
counter-increment: count2 3;
}

40% {
counter-increment: count2 4;
}

50% {
counter-increment: count2 5;
}

60% {
counter-increment: count2 6;
}

70% {
counter-increment: count2 7;
}

80% {
counter-increment: count2 8;
}

90% {
counter-increment: count2 9;
}

100% {
counter-increment: count2 10;
}
}

div .five::after {
content: counter(count3);
animation: counter3 3s forwards;
}

@keyframes counter3 {
0% {
counter-increment: count3 0;
}

20% {
counter-increment: count3 1;
}

40% {
counter-increment: count3 2;
}

60% {
counter-increment: count3 3;
}

80% {
counter-increment: count3 4;
}

100% {
counter-increment: count3 5;
}
}

div .three::after {
content: counter(count4);
animation: counter4 3s forwards;
}

@keyframes counter4 {
0% {
counter-increment: count4 0;
}

40% {
counter-increment: count4 1;
}

70% {
counter-increment: count4 2;
}

100% {
counter-increment: count4 3;
}
}
Loading

0 comments on commit 5ea7bbf

Please sign in to comment.