-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (95 loc) · 1.51 KB
/
style.css
File metadata and controls
113 lines (95 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
}
/* Navigation */
header {
background: #1f1f1f;
color: #fff;
padding: 1rem 2rem;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 1.5rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
.logo {
font-weight: bold;
font-size: 1.5rem;
}
.logo span {
color: #00bcd4;
}
/* Hero Section */
#hero {
background: #e3f2fd;
text-align: center;
padding: 3rem 1rem;
}
.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero-content p {
margin-bottom: 1.5rem;
font-size: 1.2rem;
}
.btn {
text-decoration: none;
background: #00bcd4;
color: #fff;
padding: 0.5rem 1.5rem;
border-radius: 5px;
font-weight: bold;
}
.btn:hover {
background: #008ba3;
}
/* Sections */
section {
padding: 2rem 1rem;
}
section h2 {
text-align: center;
margin-bottom: 1rem;
font-size: 2rem;
}
/* Projects */
.project-list {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
}
.project-item {
border: 1px solid #ccc;
padding: 1rem;
border-radius: 5px;
width: 300px;
text-align: center;
}
/* Footer */
footer {
text-align: center;
background: #1f1f1f;
color: #fff;
padding: 1rem 0;
}