-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (91 loc) · 1.44 KB
/
styles.css
File metadata and controls
109 lines (91 loc) · 1.44 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 20px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
}
.hero {
background-color: #f9f9f9;
text-align: center;
padding: 100px 0;
}
.hero h2 {
font-size: 36px;
margin-bottom: 20px;
}
.hero p {
font-size: 18px;
color: #666;
}
.features {
display: flex;
justify-content: space-between;
padding: 50px 0;
}
.feature {
text-align: center;
}
.feature img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
}
.feature h3 {
font-size: 24px;
margin-top: 20px;
}
.feature p {
font-size: 16px;
color: #666;
}
.testimonials {
background-color: #f1f1f1;
padding: 50px 0;
}
.testimonials h2 {
font-size: 24px;
text-align: center;
margin-bottom: 30px;
}
.testimonial {
background-color: white;
padding: 20px;
margin: 0 auto;
max-width: 600px;
border-radius: 10px;
}
.testimonial blockquote {
font-size: 18px;
margin: 0;
}
.testimonial cite {
font-size: 16px;
color: #666;
display: block;
text-align: right;
margin-top: 10px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px;
}