-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
111 lines (92 loc) · 1.54 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
106
107
108
109
110
111
/* styles.css */
/* Reset some default styles */
body, h1, h2, p {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
.container {
width: 80%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Header styles */
header {
background-color: #4A90E2;
color: white;
padding: 60px 0;
text-align: center;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
header p {
font-size: 1.2em;
margin-bottom: 20px;
}
.cta-button {
background-color: #E94E77;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-size: 1.1em;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #D43B6A;
}
/* Section styles */
section {
padding: 40px 0;
border-bottom: 1px solid #eaeaea;
}
section h2 {
font-size: 2em;
margin-bottom: 20px;
color: #333;
}
section p {
font-size: 1.1em;
line-height: 1.6;
color: #555;
}
/* Link styles */
a {
color: #4A90E2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Footer styles */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
}
footer p {
font-size: 0.9em;
}
/* Responsive styles */
@media (max-width: 768px) {
header h1 {
font-size: 2em;
}
header p {
font-size: 1em;
}
section h2 {
font-size: 1.5em;
}
section p {
font-size: 1em;
}
.cta-button {
padding: 10px 20px;
font-size: 1em;
}
}