Skip to content

Commit 17bf360

Browse files
committed
Updated UI
1 parent f82b5ce commit 17bf360

1 file changed

Lines changed: 45 additions & 23 deletions

File tree

style.css

Lines changed: 45 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,89 @@
1+
2+
3+
@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@100..800&family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Lexend+Deca:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@160..700&display=swap');
4+
5+
6+
17
* {
28
margin: 0;
39
padding: 0;
410
box-sizing: border-box;
511
}
612

713
body {
8-
font-family: Arial, sans-serif;
9-
background-color: #f4f4f4;
10-
color: #333;
14+
font-family: 'Outfit', Tahoma, Geneva, Verdana, sans-serif;
15+
background-color: #1e1e2f;
16+
color: #f5f5f5;
1117
display: flex;
1218
justify-content: center;
13-
align-items: center;
14-
height: 100vh;
15-
margin: 0;
19+
align-items: flex-start; /* changed from center */
20+
min-height: 100vh;
21+
padding: 40px 20px; /* added top and bottom padding */
22+
overflow-y: auto; /* allows scroll if content exceeds */
1623
}
1724

1825
.container {
19-
background-color: #fff;
20-
padding: 20px;
21-
border-radius: 8px;
22-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
23-
width: 80%;
24-
max-width: 600px;
26+
background-color: #2a2a3c;
27+
padding: 40px 30px; /* increased padding inside the box */
28+
border-radius: 12px;
29+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
30+
width: 100%;
31+
max-width: 700px;
2532
}
2633

34+
2735
h1 {
2836
text-align: center;
29-
color: #2c3e50;
37+
color: #00ff9f;
3038
margin-bottom: 20px;
39+
font-family: 'Courier New', Courier, monospace;
3140
}
3241

3342
.description {
3443
font-size: 1.1rem;
3544
margin-bottom: 20px;
3645
text-align: center;
46+
color: #ccc;
3747
}
3848

3949
ul {
40-
list-style-type: none;
41-
padding-left: 0;
50+
list-style-type: disc;
51+
padding-left: 20px;
52+
margin-top: 10px;
4253
}
4354

4455
li {
45-
font-size: 1.1rem;
46-
margin: 5px 0;
56+
font-size: 1.05rem;
57+
margin: 10px 0;
58+
line-height: 1.6;
59+
color: #e0e0e0;
4760
}
4861

4962
code {
5063
font-family: "Courier New", monospace;
51-
color: #e74c3c;
64+
color: #00ff9f;
65+
background-color: #1a1a28;
66+
padding: 2px 6px;
67+
border-radius: 4px;
5268
}
5369

5470
.screenshot-section {
5571
text-align: center;
56-
margin: 20px 0;
72+
margin: 30px 0;
73+
}
74+
75+
.screenshot-section h2 {
76+
margin-bottom: 15px;
77+
color: #ff6b6b;
5778
}
5879

5980
.screenshot {
6081
width: 100%;
6182
max-width: 100%;
6283
height: auto;
63-
border-radius: 8px;
64-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
65-
object-fit: contain; /* Ensures the image doesn't stretch */
66-
margin-top: 20px;
84+
border-radius: 10px;
85+
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
86+
object-fit: contain;
87+
margin-top: 10px;
88+
border: 2px solid #333;
6789
}

0 commit comments

Comments
 (0)