forked from MyZubster-Ecosystem/myzubster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
143 lines (122 loc) 路 2.03 KB
/
Copy pathApp.css
File metadata and controls
143 lines (122 loc) 路 2.03 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
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
/* Cookie Banner */
.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #1a1a2e;
color: #fff;
padding: 1rem;
z-index: 1000;
box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
}
.cookie-content p {
margin: 0;
text-align: center;
}
.cookie-details {
background: #16213e;
padding: 1rem;
border-radius: 8px;
width: 100%;
}
.cookie-actions {
display: flex;
gap: 1rem;
}
.cookie-actions button {
padding: 0.5rem 2rem;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
.cookie-accept {
background: #4CAF50;
color: white;
}
.cookie-decline {
background: #f44336;
color: white;
}
.cookie-details-btn {
background: transparent;
border: none;
color: #64b5f6;
cursor: pointer;
text-decoration: underline;
}
/* Legal Footer */
.legal-footer {
background: #0f3460;
color: #fff;
padding: 2rem 1rem;
margin-top: 2rem;
}
.legal-links {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
max-width: 1200px;
margin: 0 auto;
}
.legal-links a {
color: #a8d8ea;
text-decoration: none;
font-size: 0.9rem;
}
.legal-links a:hover {
color: #fff;
text-decoration: underline;
}
.copyright {
text-align: center;
margin-top: 1rem;
font-size: 0.8rem;
color: #a8d8ea;
}
/* Legal Document */
.legal-document {
max-width: 900px;
margin: 2rem auto;
padding: 2rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
color: #333;
line-height: 1.6;
}
.legal-document h1 {
color: #0f3460;
border-bottom: 2px solid #0f3460;
padding-bottom: 0.5rem;
}
.legal-document h2 {
color: #1a1a2e;
margin-top: 2rem;
}
.legal-document a {
color: #0f3460;
}
.legal-document ul, .legal-document ol {
padding-left: 2rem;
}
.loading {
text-align: center;
padding: 2rem;
color: #6c757d;
}
.error {
text-align: center;
padding: 2rem;
color: #dc3545;
}