-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.css
More file actions
98 lines (82 loc) · 1.54 KB
/
privacy.css
File metadata and controls
98 lines (82 loc) · 1.54 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
:root {
--primary-color: #007AFF;
--text-color: #333333;
--background-color: #FFFFFF;
--section-background: #F5F5F7;
--border-radius: 12px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--background-color);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 1px solid #eee;
}
h1 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
.last-updated {
color: #666;
font-size: 0.9rem;
}
section {
background-color: var(--section-background);
padding: 2rem;
margin-bottom: 2rem;
border-radius: var(--border-radius);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
h2 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.5rem;
}
p {
margin-bottom: 1rem;
}
ul {
list-style-position: inside;
margin-bottom: 1rem;
}
li {
margin-bottom: 0.5rem;
}
.contact {
font-weight: 500;
color: var(--primary-color);
}
footer {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid #eee;
color: #666;
}
@media (max-width: 768px) {
.container {
padding: 1rem;
}
h1 {
font-size: 2rem;
}
section {
padding: 1.5rem;
}
}