Skip to content

Commit e3c4bed

Browse files
committed
feat: v0.3.0 finalization
1 parent d519ad7 commit e3c4bed

File tree

14 files changed

+1532
-751
lines changed

14 files changed

+1532
-751
lines changed

assets/css/dsg_animations.css

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@
77
transform: translateY(-50%) rotateY(180deg);
88
}
99
}
10+
@keyframes rotato {
11+
0% {
12+
transform: translateZ(0px) rotateY(90deg);
13+
opacity: 0.4;
14+
}
15+
10% {
16+
transform: translateZ(12px) rotateY(90deg);
17+
opacity: 0.4;
18+
}
19+
90% {
20+
transform: translateZ(12px) rotateY(0deg);
21+
opacity: 0.4;
22+
}
23+
100% {
24+
transform: translateZ(0px) rotateY(0deg);
25+
opacity: 1;
26+
}
27+
}
1028
.__animation_1,
1129
.__animation_2 {
1230
perspective: 200px;
@@ -25,6 +43,7 @@
2543
color: var(--dsg-colors-secondary-500);
2644
transform-origin: 100% 50%;
2745
font-size: var(--dsg-fontSizes-5);
46+
font-family: var(--dsg-fontFamilies-lead-400);
2847
}
2948
.__animation_1::after,
3049
.__animation_2::after {
@@ -40,6 +59,7 @@
4059
color: var(--dsg-colors-secondary-500);
4160
transform-origin: 0% 50%;
4261
font-size: var(--dsg-fontSizes-5);
62+
font-family: var(--dsg-fontFamilies-lead-400);
4363
}
4464

4565
.__animation_1:hover::before,
@@ -56,6 +76,9 @@
5676
.__animation_2::before,
5777
.__animation_2::after {
5878
top: 46%;
59-
color: var(--dsg-colors-primary-100);
79+
color: var(--dsg-colors-primary-400);
6080
animation: foo 0.5s ease-in-out 0s 1;
81+
}
82+
.__animation_3 {
83+
animation: rotato 300ms 0s 1 forwards;
6184
}

0 commit comments

Comments
 (0)