forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.css
105 lines (87 loc) · 1.47 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
#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: #1a1a1a;
}
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;
}