-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.css
More file actions
73 lines (69 loc) · 1.55 KB
/
privacy.css
File metadata and controls
73 lines (69 loc) · 1.55 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
/* ===================================
Privacy Page Specific Styles
=================================== */
/* Privacy page uses common styles for body, header, container, hero, button, and footer */
/* Override header gradient for privacy page */
header {
background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto;
}
.privacy-section {
background-color: var(--bg-light);
border-radius: 10px;
padding: 2rem;
margin: 2rem 0;
}
.privacy-section h2 {
color: var(--primary-purple);
border-bottom: 2px solid #e0e0e0;
padding-bottom: 0.5rem;
}
.data-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
border-radius: 10px;
overflow: hidden;
}
.data-table th {
background-color: var(--primary-purple);
color: white;
padding: 1rem;
text-align: left;
}
.data-table td {
padding: 1rem;
border-bottom: 1px solid #e0e0e0;
}
.data-table tr:last-child td {
border-bottom: none;
}
.data-table tr:nth-child(even) {
background-color: #f5f5f5;
}
.highlight {
font-weight: bold;
color: var(--primary-purple);
}
.effective-date {
text-align: center;
font-style: italic;
color: #666;
margin-bottom: 2rem;
}
.summary {
background-color: #e8f4ff;
padding: 1.5rem;
border-radius: 10px;
border-left: 5px solid var(--primary-blue);
margin: 2rem 0;
}