forked from ChromeGaming/Physi-c-Tech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.css
123 lines (104 loc) · 2.29 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
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
body {
font-family: 'Arial', sans-serif;
background-image: url('https://i.pinimg.com/originals/e6/c9/e3/e6c9e3d891aa56637847ba09c28fa00c.jpg');
background-size: cover;
color: white;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.feedback-container {
background: rgba(0, 0, 0, 0.8);
padding: 30px;
border-radius: 10px;
width: 80%;
max-width: 600px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
animation: fadeIn 2s ease-in-out;
}
.feedback-container h2 {
text-align: center;
margin-bottom: 20px;
color: #ff5c5c;
}
.feedback-container label {
display: block;
margin: 10px 0 5px;
}
.feedback-container input,
.feedback-container textarea,
.feedback-container select {
width: 98%;
padding: 10px;
border-radius: 5px;
border: none;
margin-bottom: 10px;
background: rgba(255, 255, 255, 0.2);
color: white;
}
.feedback-container textarea {
resize: none;
height: 100px;
}
.star-rating {
display: flex;
flex-direction: row-reverse;
justify-content: center;
gap: 5px;
}
.star-rating input[type="radio"] {
display: none;
}
.star-rating label {
font-size: 2rem;
cursor: pointer;
transition: color 0.2s;
}
.star-rating input[type="radio"]:checked~label {
color: #ff5c5c;
}
.star-rating label:hover,
.star-rating label:hover~label {
color: #ff5c5c;
}
.feedback-container button {
width: 100%;
padding: 15px;
border: none;
border-radius: 5px;
background-color: #ff5c5c;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.feedback-container button:hover {
background-color: #ff3333;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.feedback-container .back-button {
margin-top: 15px;
text-align: center;
}
.feedback-container .back-button a {
color: #ff5c5c;
text-decoration: none;
}
.feedback-container .back-button a:hover {
text-decoration: underline;
}
option {
background: rgb(63, 63, 63);
}