-
Notifications
You must be signed in to change notification settings - Fork 258
/
privacy-policy.css
71 lines (61 loc) · 1.1 KB
/
privacy-policy.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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: white;
color: #333;
line-height: 1.6;
margin: 0;
padding: 0;
overflow: auto;
}
.header {
background-color: #00424F;
color: white;
padding: 1rem 1%;
text-align: center;
justify-content: space-between;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
.content {
max-width: 800px;
margin: 20px auto;
background: white;
padding: 39px;
padding-bottom: 114px;
border-radius: 8px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.content h2 {
color: #00424F;
margin-top: 20px;
font-size: 1.5rem;
}
.content p {
margin: 10px 0;
}
.content ul {
list-style-type: disc;
margin: 10px 0 10px 20px;
padding: 0;
}
.content li {
margin-bottom: 10px;
}
.content a {
color: #4A90E2;
text-decoration: none;
}
.content a:hover {
text-decoration: underline;
}
.footer {
text-align: center;
padding: 10px;
background-color: #00424F;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}