Skip to content

Commit 2fa2a2f

Browse files
committed
[RZA-250021]: fix filenames and astro files
1 parent 01a5da6 commit 2fa2a2f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+436
-587
lines changed

.vscode/dictionaries/project-words.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ nameform
4848
nodownload
4949
Organja
5050
orgenja
51+
paksha
52+
panchang
5153
parixan
5254
Pausha
5355
Peina
@@ -69,6 +71,7 @@ sunsigns
6971
tailwindcss
7072
threadzip
7173
Threazip
74+
tithi
7275
Vaishakha
7376
varnmala
7477
vaul

src/assets/styles/CardIndex.css

Lines changed: 129 additions & 129 deletions
Original file line numberDiff line numberDiff line change
@@ -1,129 +1,129 @@
1-
.selection-container {
2-
display: flex;
3-
flex-direction: column;
4-
align-items: center;
5-
min-height: calc(100vh - var(--header-h, 4rem) - var(--footer-h, 4rem));
6-
padding-top: 0rem;
7-
padding-bottom: 2rem;
8-
padding-left: 2rem;
9-
padding-right: 2rem;
10-
color: var(--text, #e0e0e0);
11-
font-family: "Roboto", sans-serif;
12-
}
13-
14-
.selection-title {
15-
font-size: 2.8rem;
16-
font-weight: 700;
17-
color: var(--primary, #4a90e2);
18-
margin-bottom: 3rem;
19-
text-align: center;
20-
letter-spacing: 0.05em;
21-
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
22-
}
23-
24-
.selection-buttons-grid {
25-
display: grid;
26-
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
27-
gap: 2.5rem;
28-
width: 100%;
29-
max-width: 900px;
30-
justify-content: center;
31-
}
32-
33-
.selection-card {
34-
display: flex;
35-
flex-direction: column;
36-
align-items: center;
37-
text-align: center;
38-
text-decoration: none;
39-
background-color: var(--card-bg, light-dark(#ffffff,#2b2b40));
40-
padding: 2.5rem;
41-
border-radius: 20px;
42-
border: 2px solid var(--card-border, #444460);
43-
transition: all 0.3s ease;
44-
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
45-
cursor: pointer;
46-
}
47-
48-
.selection-card:hover {
49-
background-color: var(--card-hover-bg, light-dark(#ffffff,#3c3c5a));
50-
transform: translateY(-8px) scale(1.02);
51-
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
52-
border-color: var(--primary, #4a90e2);
53-
}
54-
55-
.card-icon {
56-
width: 64px;
57-
height: 64px;
58-
margin-bottom: 1.5rem;
59-
}
60-
61-
.card-icon svg {
62-
width: 100%;
63-
height: 100%;
64-
}
65-
66-
.card-title {
67-
font-size: 2rem;
68-
font-weight: 600;
69-
color: var(--text, #e0e0e0);
70-
margin-bottom: 0.75rem;
71-
}
72-
73-
.card-description {
74-
font-size: 1.1rem;
75-
color: var(--secondary, #cfcfcf);
76-
line-height: 1.5;
77-
max-width: 250px;
78-
}
79-
80-
@media (max-width: 950px) {
81-
.selection-title {
82-
font-size: 2.2rem;
83-
margin-bottom: 2.5rem;
84-
}
85-
86-
.selection-buttons-grid {
87-
grid-template-columns: 1fr;
88-
gap: 2rem;
89-
max-width: 400px;
90-
}
91-
92-
.selection-card {
93-
padding: 2rem;
94-
}
95-
96-
.card-title {
97-
font-size: 1.8rem;
98-
}
99-
100-
.card-description {
101-
font-size: 1rem;
102-
}
103-
}
104-
105-
@media (max-width: 480px) {
106-
.selection-container {
107-
padding: 1rem;
108-
}
109-
110-
.selection-title {
111-
font-size: 1.8rem;
112-
margin-bottom: 2rem;
113-
}
114-
115-
.selection-card {
116-
padding: 1.5rem;
117-
border-radius: 15px;
118-
}
119-
120-
.card-icon {
121-
width: 50px;
122-
height: 50px;
123-
margin-bottom: 1rem;
124-
}
125-
126-
.card-title {
127-
font-size: 1.5rem;
128-
}
129-
}
1+
.selection-container {
2+
display: flex;
3+
flex-direction: column;
4+
align-items: center;
5+
min-height: calc(100vh - var(--header-h, 4rem) - var(--footer-h, 4rem));
6+
padding-top: 0rem;
7+
padding-bottom: 2rem;
8+
padding-left: 2rem;
9+
padding-right: 2rem;
10+
color: var(--text, #e0e0e0);
11+
font-family: "Roboto", sans-serif;
12+
}
13+
14+
.selection-title {
15+
font-size: 2.8rem;
16+
font-weight: 700;
17+
color: var(--primary, #4a90e2);
18+
margin-bottom: 3rem;
19+
text-align: center;
20+
letter-spacing: 0.05em;
21+
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
22+
}
23+
24+
.selection-buttons-grid {
25+
display: grid;
26+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
27+
gap: 2.5rem;
28+
width: 100%;
29+
max-width: 900px;
30+
justify-content: center;
31+
}
32+
33+
.selection-card {
34+
display: flex;
35+
flex-direction: column;
36+
align-items: center;
37+
text-align: center;
38+
text-decoration: none;
39+
background-color: var(--card-bg, light-dark(#ffffff, #2b2b40));
40+
padding: 2.5rem;
41+
border-radius: 20px;
42+
border: 2px solid var(--card-border, #444460);
43+
transition: all 0.3s ease;
44+
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
45+
cursor: pointer;
46+
}
47+
48+
.selection-card:hover {
49+
background-color: var(--card-hover-bg, light-dark(#ffffff, #3c3c5a));
50+
transform: translateY(-8px) scale(1.02);
51+
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
52+
border-color: var(--primary, #4a90e2);
53+
}
54+
55+
.card-icon {
56+
width: 64px;
57+
height: 64px;
58+
margin-bottom: 1.5rem;
59+
}
60+
61+
.card-icon svg {
62+
width: 100%;
63+
height: 100%;
64+
}
65+
66+
.card-title {
67+
font-size: 2rem;
68+
font-weight: 600;
69+
color: var(--text, #e0e0e0);
70+
margin-bottom: 0.75rem;
71+
}
72+
73+
.card-description {
74+
font-size: 1.1rem;
75+
color: var(--secondary, #cfcfcf);
76+
line-height: 1.5;
77+
max-width: 250px;
78+
}
79+
80+
@media (max-width: 950px) {
81+
.selection-title {
82+
font-size: 2.2rem;
83+
margin-bottom: 2.5rem;
84+
}
85+
86+
.selection-buttons-grid {
87+
grid-template-columns: 1fr;
88+
gap: 2rem;
89+
max-width: 400px;
90+
}
91+
92+
.selection-card {
93+
padding: 2rem;
94+
}
95+
96+
.card-title {
97+
font-size: 1.8rem;
98+
}
99+
100+
.card-description {
101+
font-size: 1rem;
102+
}
103+
}
104+
105+
@media (max-width: 480px) {
106+
.selection-container {
107+
padding: 1rem;
108+
}
109+
110+
.selection-title {
111+
font-size: 1.8rem;
112+
margin-bottom: 2rem;
113+
}
114+
115+
.selection-card {
116+
padding: 1.5rem;
117+
border-radius: 15px;
118+
}
119+
120+
.card-icon {
121+
width: 50px;
122+
height: 50px;
123+
margin-bottom: 1rem;
124+
}
125+
126+
.card-title {
127+
font-size: 1.5rem;
128+
}
129+
}

src/assets/styles/CardQueue.css

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@charset "UTF-8";
2+
23
:root {
34
--t: 0.6s;
45
--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
@@ -21,19 +22,13 @@
2122
padding: 2rem;
2223
display: flex;
2324
flex-direction: column;
24-
align-items: center;
25-
justify-content: center;
2625
position: relative;
2726
overflow: hidden;
2827
}
2928

3029
.alphabet-container {
3130
position: relative;
32-
width: 100%;
33-
max-width: 1200px;
34-
height: 100%;
3531
min-height: 600px;
36-
margin-top: -5rem;
3732
display: flex;
3833
flex-direction: column;
3934
align-items: center;
@@ -419,6 +414,7 @@
419414
.alphabet-item:focus {
420415
outline: none;
421416
}
417+
422418
.alphabet-item:focus-visible {
423419
outline: none;
424-
}
420+
}

src/components/Back.astro

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,10 @@ import BackIcon from "@/assets/icons/back.svg";
1010
.back {
1111
display: flex;
1212
cursor: pointer;
13-
z-index: 10;
1413
color: var(--text);
15-
width: fit-content;
16-
position: absolute;
14+
width: 2rem;
1715
}
18-
19-
.back svg {
20-
width: 24px;
21-
height: 24px;
16+
.back:hover {
17+
color: var(--primary);
2218
}
2319
</style>

src/components/DrawKeyboard.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
import { alphabetMapper } from "@/mappers/alphabet";
33
import { IMAGE_DIR, colorBox, fontBox, numberBox, fontColor } from "@/utils/constants";
4-
import Keyboard from "@/components/keyboard.astro";
4+
import Keyboard from "@/components/Keyboard.astro";
55
---
66

77
<div class="container">
@@ -263,7 +263,7 @@ import Keyboard from "@/components/keyboard.astro";
263263
updateFontColor();
264264

265265
if (showImages && backgroundMode !== "color") {
266-
setBackgroundImage(`${found.value}.jpg`);
266+
setBackgroundImage(`${found.value}.jpg`);
267267
charDiv.style.fontSize = "40vh";
268268
} else if (backgroundMode === "color") {
269269
const randomColor = getRandomValue(colorBox);

src/components/IndiaMap.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
import stateJson from "@/assets/json/state.json";
3-
import BackButton from "@/components/ui/backButton.astro";
3+
import BackButton from "@/components/BackButton.astro";
44
---
55

66
<BackButton />

0 commit comments

Comments
 (0)