-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (88 loc) · 1.65 KB
/
style.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #f4f0f4;
color: #333;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
background: linear-gradient(to bottom, #5c4b88, #7d529d);
padding: 15px 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav ul li {
margin: 0 20px;
}
nav ul li a {
text-decoration: none;
color: #eee;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #fff;
}
.content {
text-align: center;
padding: 50px;
background-color: #f7f3f7;
margin-bottom: 30px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.content h1 {
font-size: 2.5em;
margin-bottom: 20px;
color: #7d529d;
}
.content img {
max-width: 100%;
height: auto;
margin-bottom: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content ul {
list-style: none;
margin-bottom: 30px;
}
.content ul li {
margin: 15px 0;
}
.testimonial {
margin-bottom: 40px;
border-left: 4px solid #7d529d;
padding-left: 15px;
}
.testimonial blockquote {
font-style: italic;
margin-bottom: 10px;
}
.testimonial cite {
font-weight: bold;
}
footer {
text-align: center;
padding: 20px 0;
background: linear-gradient(to bottom, #5c4b88, #7d529d);
color: #fff;
}
@media screen and (max-width: 768px) {
nav ul {
flex-direction: column;
align-items: center;
}
nav ul li {
margin: 10px 0;
}
.content {
padding: 30px;
}
}