-
-
Notifications
You must be signed in to change notification settings - Fork 618
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (114 loc) · 2.84 KB
/
style.css
File metadata and controls
135 lines (114 loc) · 2.84 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
body {
background: #f5f5f5;
}
/* Navbar */
.navbar {
background: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 80px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar ul {
list-style: none;
display: flex;
gap: 25px;
}
.navbar a {
text-decoration: none;
color: #555;
font-weight: 600;
}
.navbar a:hover {
color: #ff5a3c;
}
/* Hero Section */
.hero {
background: url('https://images.unsplash.com/photo-1509395176047-4a66953fd231') no-repeat center center/cover;
height: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
}
.hero h1 {
font-size: 42px;
font-weight: 600;
}
.hero p {
margin-top: 10px;
font-size: 18px;
}
.btn {
margin-top: 20px;
padding: 12px 30px;
background: #ff5a3c;
color: white;
border: none;
cursor: pointer;
font-weight: 600;
border-radius: 3px;
}
.btn:hover {
background: #e94e2f;
}
/* Features */
.features {
text-align: center;
padding: 60px 80px;
background: #fff;
}
.features h2 {
margin-bottom: 40px;
color: #444;
}
.feature-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.feature {
width: 250px;
margin: 20px;
}
.feature i {
font-size: 50px;
color: #ff5a3c;
margin-bottom: 15px;
}
/* Call to Action */
.cta {
display: flex;
align-items: center;
justify-content: center;
background: #f2e5df;
padding: 50px;
gap: 40px;
}
.cta img {
width: 300px;
border-radius: 5px;
}
.cta-text {
max-width: 400px;
}
.cta-text p {
font-style: italic;
margin-bottom: 20px;
}
/* Footer */
footer {
text-align: center;
padding: 30px;
background: #fff;
color: #777;
}