-
Notifications
You must be signed in to change notification settings - Fork 280
/
privacy.css
154 lines (130 loc) · 2.33 KB
/
privacy.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#privacy-policy-container {
width: 55%;
margin: auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.logo-title {
display: flex;
align-items: center;
}
.logo {
border-radius: 50%;
height: 40px;
width: 80px;
}
.logo-text {
color: white;
font-size: 14px;
font-weight: 600;
}
.header {
margin-top: 100px;
text-align: center;
/* background-color: #ffd700; */
font-size: large;
}
.title {
font-size: 2em;
color: #000000;
}
.main-content {
padding: 20px;
margin: 15px auto;
}
.section {
margin-bottom: 20px;
}
.section-title {
font-size: 22px !important;
color: #000000;
font-weight: 600 !important;
padding-bottom: 0px !important;
}
.section-content {
font-size: 1em;
color: #000000;
}
.section-list {
list-style: none;
color: #000000;
padding: 0;
}
.list-item {
margin-bottom: 10px;
color: #000000;
list-style: none;
font-size: 1.1em;
}
/* Dark Mode */
body.dark-mode {
background: linear-gradient(rgb(13, 37, 62) 100.2%, rgb(36, 45, 57) 11.2%);
}
body.dark-mode #privacy-policy-container {
background: linear-gradient(
109.6deg,
rgb(36, 45, 57) 11.2%,
rgb(16, 37, 60) 100.2%
);
box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.1);
}
body.dark-mode .navbar {
background-color: #2c3e50;
}
body.dark-mode .header h1 {
color: #fff;
}
body.dark-mode .hr-line {
background-image: linear-gradient(to right, #333, #ccc, #333);
}
body.dark-mode .section h2 {
color: #ddd;
}
body.dark-mode .section p {
color: #c0c0c0;
}
body.dark-mode .list-num li {
color: #c0c0c0;
}
body {
position: relative;
overflow: hidden;
margin: 0;
padding: 0;
}
/* Ensure the content is above the video */
.license-container {
position: relative;
z-index: 1;
max-width: 800px;
margin: 110px auto;
padding: 20px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.license-container h1,
.license-container h2 {
color: #333;
}
.license-container p {
color: #666;
}
/* Media query for smaller devices */
@media (max-width: 768px) {
.license-container {
margin: 20px auto;
padding: 10px;
}
.scrollToTopBtn {
width: 40px;
height: 40px;
font-size: 16px;
line-height: 40px;
bottom: 80px;
right: 20px;
}
.progress-ring {
bottom: 75px;
right: 15px;
}
}