-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacyStatementStyles.css
More file actions
61 lines (57 loc) · 1.15 KB
/
privacyStatementStyles.css
File metadata and controls
61 lines (57 loc) · 1.15 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
/* privacyStatementStyles.css */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
word-wrap: break-word; /* Ensures long words or URLs wrap */
padding: 1rem;
}
header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}
section {
padding: 1.5rem;
background-color: #fff;
margin: auto;
max-width: 800px; /* Restricts the content width for better readability */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
position: fixed;
width: 100%;
bottom: 0;
}
h2 {
border-bottom: 2px solid #333;
padding-bottom: 0.5rem;
}
p {
margin-bottom: 1.5rem; /* Adds space between paragraphs */
}
ul {
margin-bottom: 1.5rem; /* Adds space after lists */
}
h2, h3 {
margin-top: 2rem; /* Adds space above headings */
margin-bottom: 1rem; /* Adds space below headings */
}
p {
margin-bottom: 1rem;
}
@media (max-width: 600px) {
section {
padding: 1rem;
}
footer {
font-size: 0.9rem;
}
}