forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.css
70 lines (56 loc) · 1.33 KB
/
feedback.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
/* Dark mode styles */
body.dark-theme {
background-color: #1a1a1a;
color: #f0f0f0;
}
body.dark-theme .container{
background: #333;
}
body.dark-theme .image{
background-color: #555;
}
body.dark-theme .image{
background-color: #555;
}
/* Glassmorphism container */
body.dark-theme .glassmorphism-container {
background-color: rgba(50, 50, 50, 1);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
/* Feedback heading */
body.dark-theme .glassmorphism-container .feedback-heading {
background-image: none;
-webkit-text-fill-color: #f0f0f0;
}
body.dark-theme .glassmorphism-container p {
color: #f5f5f5 !important;
}
/* Rating sections */
body.dark-theme .rate {
color: #f0f0f0;
}
body.dark-theme .stars {
color: #ffd700;
}
body.dark-theme #rating-text{
background-image: none;
-webkit-text-fill-color: #f0f0f0;
}
/* Feedback textarea */
body.dark-theme textarea {
background-color: #2a2a2a;
color: #f0f0f0;
border: 1px solid #444;
}
/* Submit button */
body.dark-theme input[type="submit"] {
background-color: #3a3a3a;
color: #f0f0f0;
}
body.dark-theme input[type="submit"]:hover {
background-color: #4a4a4a;
}
/* Return to Home Page link */
body.dark-theme div:last-child {
color: #4a90e2;
}