Skip to content

Commit e05e71b

Browse files
Merge branch 'develop' into bugfix/RZA-250145
2 parents 3c5b24f + f771133 commit e05e71b

File tree

21 files changed

+237
-134
lines changed

21 files changed

+237
-134
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,4 @@
136136
"prettier-plugin-astro": "0.14.1",
137137
"shx": "0.3.4"
138138
}
139-
}
139+
}

src/assets/icons/confetti.svg

Lines changed: 16 additions & 0 deletions
Loading

src/assets/icons/floral.svg

Lines changed: 0 additions & 46 deletions
This file was deleted.

src/assets/styles/cards/stack.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@charset "UTF-8";
2+
23
:root {
34
--t: 0.8s;
45
--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
@@ -90,10 +91,9 @@
9091
display: flex;
9192
flex-direction: column;
9293
align-items: center;
93-
justify-content: center;
94+
justify-content: start;
9495
flex: 1;
9596
width: 100%;
96-
max-width: 800px;
9797
}
9898

9999
.image-container {
@@ -334,7 +334,6 @@
334334
@media (max-width: 768px) {
335335
.alphabet-wrapper {
336336
padding: 1.5rem 1rem;
337-
margin-top: 10rem;
338337
justify-content: flex-start;
339338
}
340339

src/assets/styles/confetti.css

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
#confetti rect {
2+
opacity: 0;
3+
}
4+
5+
#confetti rect:nth-child(1) {
6+
transform-origin: 45px 5px;
7+
transform: rotate(-145deg);
8+
animation: blast 631ms 88ms infinite ease-out;
9+
}
10+
11+
#confetti rect:nth-child(2) {
12+
transform-origin: 87px 5px;
13+
transform: rotate(164deg);
14+
animation: blast 442ms 131ms infinite ease-out;
15+
}
16+
17+
#confetti rect:nth-child(3) {
18+
transform-origin: 128px 6px;
19+
transform: rotate(4deg);
20+
animation: blast 662ms 92ms infinite ease-out;
21+
}
22+
23+
#confetti rect:nth-child(4) {
24+
transform-origin: 170px 6px;
25+
transform: rotate(-175deg);
26+
animation: blast 593ms 17ms infinite ease-out;
27+
}
28+
29+
#confetti rect:nth-child(5) {
30+
transform-origin: 213px 5px;
31+
transform: rotate(-97deg);
32+
animation: blast 476ms 122ms infinite ease-out;
33+
}
34+
35+
#confetti rect:nth-child(6) {
36+
transform-origin: 255px 6px;
37+
transform: rotate(57deg);
38+
animation: blast 381ms 271ms infinite ease-out;
39+
}
40+
41+
#confetti rect:nth-child(7) {
42+
transform-origin: 297px 5px;
43+
transform: rotate(-46deg);
44+
animation: blast 619ms 131ms infinite ease-out;
45+
}
46+
47+
#confetti rect:nth-child(8) {
48+
transform-origin: 338px 6px;
49+
transform: rotate(-65deg);
50+
animation: blast 668ms 85ms infinite ease-out;
51+
}
52+
53+
#confetti rect:nth-child(9) {
54+
transform-origin: 380px 6px;
55+
transform: rotate(13deg);
56+
animation: blast 377ms 128ms infinite ease-out;
57+
}
58+
59+
#confetti rect:nth-child(10) {
60+
transform-origin: 423px 5px;
61+
transform: rotate(176deg);
62+
animation: blast 508ms 311ms infinite ease-out;
63+
}
64+
65+
#confetti rect:nth-child(11) {
66+
transform-origin: 465px 5px;
67+
transform: rotate(108deg);
68+
animation: blast 595ms 108ms infinite ease-out;
69+
}
70+
71+
#confetti rect:nth-child(12) {
72+
transform-origin: 506px 6px;
73+
transform: rotate(62deg);
74+
animation: blast 375ms 105ms infinite ease-out;
75+
}
76+
77+
#confetti rect:nth-child(13) {
78+
transform-origin: 549px 5px;
79+
transform: rotate(16deg);
80+
animation: blast 491ms 149ms infinite ease-out;
81+
}
82+
83+
/* pattern-based styling */
84+
#confetti rect:nth-child(odd) {
85+
fill: #65bb5c;
86+
}
87+
88+
#confetti rect:nth-child(even) {
89+
fill: #33aaff;
90+
}
91+
92+
#confetti rect:nth-child(4n) {
93+
fill: #f23b14;
94+
animation-duration: 1400ms !important;
95+
}
96+
97+
#confetti rect:nth-child(3n) {
98+
animation-duration: 1750ms !important;
99+
animation-delay: 700ms !important;
100+
}
101+
102+
#confetti rect:nth-child(4n-7) {
103+
fill: #2a2f6a;
104+
}
105+
106+
#confetti rect:nth-child(6n) {
107+
fill: #fbba23;
108+
}
109+
110+
@keyframes blast {
111+
from {
112+
opacity: 0;
113+
}
114+
115+
20% {
116+
opacity: 1;
117+
}
118+
119+
to {
120+
transform: translateY(90px);
121+
}
122+
}

src/assets/styles/contact.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
& span {
3636
display: inline;
3737
margin-inline: 0.5rem;
38-
color: #f19292;
38+
letter-spacing: 1px;
39+
font-style: italic;
40+
color: #4e0a0a;
3941
}
4042

4143
.social {

src/assets/styles/globals.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@
138138
align-items: center;
139139
}
140140

141+
li {
142+
text-align: left;
143+
padding-left: 12px;
144+
}
145+
141146
@container thread (max-width: 768px) {
142147
main {
143148
grid-template-areas: "content";

src/assets/styles/map/popup.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
&[popover] {
5151
inset: unset;
5252
width: auto;
53-
right: 0;
5453
bottom: 0;
5554
margin: auto;
5655
overflow-y: hidden;

src/assets/styles/math.css

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,6 @@
3636
color: var(--color-text);
3737
}
3838

39-
/*.header {
40-
width: 100%;
41-
padding: 0.75rem 2rem;
42-
background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
43-
display: flex;
44-
justify-content: space-between;
45-
align-items: center;
46-
position: fixed;
47-
top: 0;
48-
left: 0;
49-
z-index: 10;
50-
box-shadow: var(--box-shadow-md);
51-
}*/
52-
5339
.score-next-container {
5440
display: flex;
5541
flex-direction: row;
@@ -99,7 +85,7 @@
9985
}
10086

10187
.operator-btn span {
102-
font-size: 5.8rem;
88+
font-size: clamp(3rem, 4vw, 5.8rem);
10389
line-height: 1;
10490
}
10591

src/assets/styles/stories/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
color: #ffffff;
172172
border: 2px solid #000000;
173173
outline: 3px dotted #866e6e;
174-
outline-offset: 5px;
174+
outline-offset: 3px;
175175
}
176176

177177
.chip:hover {

0 commit comments

Comments
 (0)