Skip to content

Commit dc023ad

Browse files
Update style.css
1 parent 2d99652 commit dc023ad

1 file changed

Lines changed: 38 additions & 17 deletions

File tree

assets/style.css

Lines changed: 38 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,64 @@
11
body {
2-
font-family: Arial, sans-serif;
2+
font-family: 'Inter', sans-serif;
33
margin: 0;
4+
background: #f9fafb;
5+
color: #222;
46
line-height: 1.6;
5-
background: #f9f9f9;
6-
color: #333;
77
}
88

9-
header, footer {
9+
.hero {
1010
text-align: center;
11-
padding: 2rem;
12-
background: #282c34;
11+
padding: 4rem 2rem;
12+
background: linear-gradient(135deg, #282c34, #3a3f47);
1313
color: white;
1414
}
1515

16-
h1, h2 {
16+
.hero h1 {
17+
font-size: 2.5rem;
1718
margin-bottom: 1rem;
1819
}
1920

21+
.tagline {
22+
font-size: 1.2rem;
23+
margin-bottom: 2rem;
24+
opacity: 0.9;
25+
}
26+
2027
section {
2128
max-width: 800px;
2229
margin: 2rem auto;
23-
padding: 1rem;
30+
padding: 2rem;
2431
background: white;
25-
border-radius: 10px;
26-
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
32+
border-radius: 12px;
33+
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
34+
}
35+
36+
pre {
37+
background: #f4f4f4;
38+
padding: 1rem;
39+
border-radius: 6px;
40+
overflow-x: auto;
2741
}
2842

2943
.btn {
3044
display: inline-block;
31-
padding: 0.5rem 1rem;
45+
padding: 0.7rem 1.2rem;
3246
margin: 0.5rem;
33-
border-radius: 5px;
47+
border-radius: 6px;
3448
background: #61dafb;
35-
color: black;
49+
color: #000;
3650
text-decoration: none;
37-
font-weight: bold;
51+
font-weight: 600;
3852
}
3953

4054
.btn.secondary {
41-
background: #ffa500;
42-
color: white;
43-
}
55+
background: #ff9800;
56+
color: #fff;
57+
}
58+
59+
footer {
60+
text-align: center;
61+
padding: 2rem;
62+
font-size: 0.9rem;
63+
background: #f1f1f1;
64+
}

0 commit comments

Comments
 (0)