Skip to content

Commit e1d5bd2

Browse files
committed
redesign pages
1 parent 159e513 commit e1d5bd2

18 files changed

+388
-110
lines changed

domain.code-workspace

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,11 @@
169169
"*.log": "default"
170170
},
171171
"zenMode.centerLayout": false,
172-
"cSpell.words": [],
172+
"cSpell.words": [
173+
"Chebale",
174+
"frontmatter",
175+
"Omkar"
176+
],
173177
"workbench.editor.limit.excludeDirty": true,
174178
"workbench.colorCustomizations": {
175179
"activityBar.activeBackground": "#040043",

public/assets/images/hero.jpg

2.28 MB
Loading

public/assets/images/simplify.jpg

443 KB
Loading

public/assets/images/workspace.jpg

601 KB
Loading

src/assets/styles/career.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
/*background-color: rgba(31, 41, 55, 0.5);*/
3030
padding: 1.5rem;
3131
margin-bottom: 2rem;
32+
& .title {
33+
font-size: 1.5rem;
34+
font-weight: 600;
35+
margin-bottom: 1rem;
36+
border-bottom: 2px double mediumaquamarine;
37+
}
3238
}
3339

3440
.job__card {

src/assets/styles/letter.css

Lines changed: 39 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1+
:root {
2+
--accent-color: #ffcc00;
3+
}
4+
html[data-theme="dark"] {
5+
color: #fff;
6+
}
7+
html[data-theme="light"] {
8+
color: #d02a2a;
9+
}
10+
111
.controls {
2-
position: fixed;
3-
top: 0;
4-
left: 0;
5-
right: 0;
6-
background: rgba(255, 255, 255, 0.95);
12+
background-color: lab(2 1.78 2.71 / 0.95);
713
padding: 1rem;
814
z-index: 100;
915
display: flex;
1016
justify-content: space-around;
11-
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
17+
box-shadow: 0 2px 10px rgb(226 194 194 / 10%);
1218
}
1319

1420
.control-group {
@@ -19,6 +25,7 @@
1925

2026
.control-group label {
2127
font-weight: bold;
28+
color: aliceblue;
2229
}
2330

2431
select,
@@ -29,7 +36,6 @@ button {
2936
}
3037

3138
button {
32-
cursor: pointer;
3339
background: #fff;
3440
transition: background 0.3s;
3541
}
@@ -54,14 +60,39 @@ button:hover {
5460

5561
.meaning-section {
5662
padding: 2rem;
57-
background: white;
63+
background: hotpink;
5864
margin-top: 2rem;
65+
66+
.detail {
67+
font-style: italic;
68+
text-align: center;
69+
color: #fff;
70+
font-size: 2rem;
71+
color: black;
72+
}
5973
}
6074

6175
.meaning-content {
6276
max-width: 800px;
6377
margin: 0 auto;
6478
line-height: 1.6;
79+
& p {
80+
border: 2px solid darkgray;
81+
padding: 0.5rem;
82+
font-size: larger;
83+
margin: 1rem 0;
84+
background-color: cadetblue;
85+
border-radius: 6px;
86+
outline: 2px solid grey;
87+
outline-offset: 1px;
88+
color: white;
89+
transition: background-color 300ms ease-in-out;
90+
91+
&:hover {
92+
background-color: inherit;
93+
cursor: pointer;
94+
}
95+
}
6596
}
6697

6798
/* Gradient backgrounds */

src/assets/styles/menu.css

Lines changed: 75 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,27 @@
88
--header-height: 80px;
99
--sidebar-width: 16ch;
1010
--timing: 0.42s;
11-
--ease: linear(0 0%,
12-
0.0036 9.62%,
13-
0.0185 16.66%,
14-
0.0489 23.03%,
15-
0.0962 28.86%,
16-
0.1705 34.93%,
17-
0.269 40.66%,
18-
0.3867 45.89%,
19-
0.5833 52.95%,
20-
0.683 57.05%,
21-
0.7829 62.14%,
22-
0.8621 67.46%,
23-
0.8991 70.68%,
24-
0.9299 74.03%,
25-
0.9545 77.52%,
26-
0.9735 81.21%,
27-
0.9865 85%,
28-
0.9949 89.15%,
29-
1 100%);
11+
--ease: linear(
12+
0 0%,
13+
0.0036 9.62%,
14+
0.0185 16.66%,
15+
0.0489 23.03%,
16+
0.0962 28.86%,
17+
0.1705 34.93%,
18+
0.269 40.66%,
19+
0.3867 45.89%,
20+
0.5833 52.95%,
21+
0.683 57.05%,
22+
0.7829 62.14%,
23+
0.8621 67.46%,
24+
0.8991 70.68%,
25+
0.9299 74.03%,
26+
0.9545 77.52%,
27+
0.9735 81.21%,
28+
0.9865 85%,
29+
0.9949 89.15%,
30+
1 100%
31+
);
3032
}
3133

3234
.layout {
@@ -68,17 +70,68 @@
6870
font-weight: 600;
6971
display: flex;
7072
flex-direction: column;
71-
font-family: "Livvic", sans-serif;
73+
font-family:
74+
system-ui,
75+
-apple-system,
76+
BlinkMacSystemFont,
77+
"Segoe UI",
78+
Roboto,
79+
Oxygen,
80+
Ubuntu,
81+
Cantarell,
82+
"Open Sans",
83+
"Helvetica Neue",
84+
sans-serif;
7285
gap: 0.5rem;
7386
}
87+
[popover] ul li:first-of-type {
88+
margin-top: 0.5rem;
89+
}
90+
[popover] ul li:last-of-type {
91+
margin-bottom: 0.5rem;
92+
}
93+
[popover] ul li:has(> a) {
94+
position: relative;
95+
}
96+
97+
[popover] ul li:has(> a):is(:active, :hover, :focus-visible)::before {
98+
opacity: 1;
99+
}
100+
101+
[popover] ul li {
102+
display: block;
103+
width: 100%;
104+
padding: 0.5rem 1rem;
105+
border-radius: 6px;
106+
transition: background-color 0.2s ease-in-out;
107+
}
108+
[popover] ul li:hover {
109+
background-color: color-mix(in hsl, canvas, canvasText 15%);
110+
}
111+
[popover] ul li a {
112+
text-decoration: none;
113+
color: inherit;
114+
display: block;
115+
}
116+
[popover] ul li a:hover {
117+
color: inherit;
118+
}
119+
[popover] ul li a:focus-visible {
120+
outline: 2px solid color-mix(in hsl, canvas, canvasText 25%);
121+
outline-offset: 2px;
122+
}
123+
[popover] ul li a:focus {
124+
outline: 2px solid color-mix(in hsl, canvas, canvasText 25%);
125+
outline-offset: 2px;
126+
}
74127

75128
[popover] a {
76129
display: inline-block;
77130
width: 100%;
78131
padding-block: 0.5rem;
79132
padding-inline: 1rem;
80133
text-decoration: none;
81-
color: inherit;
134+
color: red;
82135
}
83136

84137
[popover] {
@@ -365,4 +418,4 @@
365418
[data-debug="false"] .debug-toggle g:first-of-type {
366419
display: block;
367420
}
368-
}
421+
}

src/components/AboutSection.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<section>
22
<div class="w-full px-4 py-8 md:px-6 md:py-12 lg:px-8">
33
<div class="mx-auto">
4-
<h2 id="aboutText" class="mb-[0.8rem] inline-block rounded-md py-[2px] text-[27px]">What we do</h2>
4+
<h2 class="mb-[0.8rem] inline-block rounded-md py-[2px] text-[27px]">What we do</h2>
55
<h1 class="mb-[1.1rem] text-[36px] font-bold leading-[42px] tracking-[-0.03em] lg:text-[61px] lg:leading-[72px]">
66
Efficient apps that simplify your life.
77
</h1>
88
<div class="flex flex-col gap-[1.5rem] lg:flex-row lg:justify-between lg:gap-[1.2rem] xl:gap-[3rem]">
99
<figure class="basis-[55%] lg:h-[500px]">
1010
<img
11-
src="https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzNDk5MjB8MHwxfHNlYXJjaHw0MXx8VGVjaG5vbG9neXxlbnwwfHx8fDE3MDE2MTQ0NTd8MA&ixlib=rb-4.0.3&q=85"
12-
alt="person working on a laptop "
11+
src="/assets/images/hero.jpg"
12+
alt="pattern of a computer screen with triangle shapes"
1313
class="h-[250px] w-full rounded-xl object-cover md:h-[500px] lg:h-full"
1414
/>
1515
</figure>

src/components/AppsSimplifySection.astro

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="section-image mb-[10px] h-[150px] basis-[50%] md:h-[300px]">
1313
<figure>
1414
<img
15-
src="https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wzNDk5MjB8MHwxfHNlYXJjaHw0NXx8VGVjaG5vbG9neXxlbnwwfHx8fDE3MDE2MTQ0NTh8MA&ixlib=rb-4.0.3&q=80&w=1080"
15+
src="assets/images/simplify.jpg"
1616
alt=""
1717
class="h-[150px] w-full rounded-[10px] object-cover md:h-[300px]"
1818
/>
@@ -22,11 +22,10 @@
2222
<p
2323
class="appSimplifyText mb-[20px] text-[14px] leading-[22.4px] text-[#999] md:text-[16px] md:leading-[25.6px]"
2424
>
25-
Based out of Bengaluru city, Recursive Zero stands as a pioneer in innovation, meticulously crafting small
26-
yet powerful apps aimed at simplifying your daily tasks and enhancing your storage efficiency. Our
27-
cutting-edge solutions are woven with a touch of simplicity, transforming your workflow with remarkable
28-
efficiency. Traverse through an intuitive app experience with Recursive Zero, fueling your productivity to
29-
unprecedented heights
25+
Based in Heart, RecursiveZero pioneers innovative, thoughtfully designed mini apps that simplify daily tasks
26+
and boost your productivity. Our solutions blend simplicity with powerful features, making your workflow
27+
smoother and more efficient. Discover an intuitive app experience with RecursiveZero and elevate your
28+
everyday efficiency.
3029
</p>
3130
<div>
3231
<a href="">

src/components/ContactSection.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<div class="mb-[10px] basis-[50%] md:mb-[40px]">
66
<figure>
77
<img
8-
src="https://images.unsplash.com/photo-1504384308090-c894fdcc538d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wzNDk5MjB8MHwxfHNlYXJjaHw0Nnx8VGVjaG5vbG9neXxlbnwwfHx8fDE3MDE2MTQ0NTh8MA&ixlib=rb-4.0.3&q=80&w=1080"
9-
alt="contactus image"
8+
src="/assets/images/workspace.jpg"
9+
alt="contact us image"
1010
class="h-[200px] w-full rounded-[10px] object-cover md:h-[400px]"
1111
/>
1212
</figure>

0 commit comments

Comments
 (0)