Skip to content

Commit afddea6

Browse files
Create styles.css
1 parent b4f0ce4 commit afddea6

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

styles.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, sans-serif;
3+
margin: 0;
4+
padding: 0;
5+
line-height: 1.6;
6+
color: #333;
7+
}
8+
9+
header {
10+
background: #0a192f;
11+
color: white;
12+
padding: 60px 20px;
13+
text-align: center;
14+
}
15+
16+
header .btn {
17+
background: #00bfa6;
18+
color: white;
19+
padding: 10px 20px;
20+
text-decoration: none;
21+
margin-top: 20px;
22+
display: inline-block;
23+
border-radius: 5px;
24+
}
25+
26+
section {
27+
padding: 40px 20px;
28+
max-width: 1000px;
29+
margin: auto;
30+
}
31+
32+
h2 {
33+
color: #00bfa6;
34+
}
35+
36+
.project {
37+
border: 1px solid #ddd;
38+
margin-bottom: 20px;
39+
padding: 15px;
40+
border-radius: 8px;
41+
}
42+
43+
.project img {
44+
max-width: 100%;
45+
height: auto;
46+
border-radius: 5px;
47+
}
48+
49+
footer {
50+
text-align: center;
51+
padding: 20px;
52+
background: #eee;
53+
color: #666;
54+
}

0 commit comments

Comments
 (0)