Skip to content

Commit 56d45b0

Browse files
authored
Add initial CSS styles for the webpage
1 parent fd0120d commit 56d45b0

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

style.css

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
body {
2+
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
3+
background: #0f172a;
4+
color: #e5e7eb;
5+
margin: 0;
6+
line-height: 1.6;
7+
}
8+
9+
header {
10+
text-align: center;
11+
padding: 4rem 1rem;
12+
}
13+
14+
h1 {
15+
font-size: 3rem;
16+
margin-bottom: 0.5rem;
17+
}
18+
19+
.subtitle {
20+
font-size: 1.3rem;
21+
color: #38bdf8;
22+
}
23+
24+
.tagline {
25+
max-width: 600px;
26+
margin: 1rem auto;
27+
}
28+
29+
.links a {
30+
margin: 0 10px;
31+
color: #38bdf8;
32+
text-decoration: none;
33+
font-weight: 500;
34+
}
35+
36+
section {
37+
max-width: 900px;
38+
margin: auto;
39+
padding: 2rem 1rem;
40+
}
41+
42+
h2 {
43+
border-bottom: 1px solid #334155;
44+
padding-bottom: 0.5rem;
45+
}
46+
47+
ul {
48+
list-style: none;
49+
padding: 0;
50+
}
51+
52+
li {
53+
margin-bottom: 0.5rem;
54+
}
55+
56+
footer {
57+
text-align: center;
58+
padding: 2rem;
59+
color: #94a3b8;
60+
}

0 commit comments

Comments
 (0)