Skip to content

Commit e089535

Browse files
Add initial CSS styles for the application
1 parent fba5856 commit e089535

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

style.css

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
body {
2+
font-family: Arial, Helvetica, sans-serif;
3+
background-color: #f4f6f8;
4+
margin: 0;
5+
padding: 0;
6+
line-height: 1.6;
7+
}
8+
9+
.container {
10+
max-width: 900px;
11+
margin: 40px auto;
12+
background: #ffffff;
13+
padding: 30px;
14+
border-radius: 8px;
15+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
16+
}
17+
18+
h1 {
19+
color: #2c3e50;
20+
margin-bottom: 10px;
21+
}
22+
23+
h2 {
24+
color: #34495e;
25+
margin-top: 30px;
26+
}
27+
28+
p {
29+
color: #555;
30+
}
31+
32+
ul {
33+
padding-left: 20px;
34+
}
35+
36+
li {
37+
margin: 8px 0;
38+
}
39+
40+
a {
41+
color: #1a73e8;
42+
text-decoration: none;
43+
font-weight: 500;
44+
}
45+
46+
a:hover {
47+
text-decoration: underline;
48+
}
49+
50+
.footer {
51+
margin-top: 40px;
52+
font-size: 14px;
53+
color: #777;
54+
}

0 commit comments

Comments
 (0)