-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFeedback.css
112 lines (94 loc) · 1.64 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
main{
margin-top: 125px;
margin-left: 25px;
margin-right: 25px;
margin-bottom: 80px;
}
.heading{
font-size: 1.3rem;
text-align: center;
color:white;
}
.form{
width: 35vw;
margin: 20vh auto 0 auto;
padding: 20px;
text-align: center;
backdrop-filter: blur(2px);
color: aliceblue;
border-radius: 20px;
box-shadow: 0 5px 9px rgba(0, 0, 0.5, 0.9);
}
#LabelText1{
text-align: left;
font-size: 1.4rem;
font-weight: 700;
}
#LabelText2{
text-align: left;
font-size: 1.4rem;
font-weight: 700;
}
#username, #email {
height: 35px;
border-radius: 5px;
font-weight: 500;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.input-field {
display: flex;
flex-direction: column;
}
.container1, .container2 {
font-size: 1.2rem;
font-weight: 600;
}
#Y, #N {
font-weight: 600;
}
#Rate {
font-size: 1.7rem;
}
.rating {
display: flex;
justify-content: center;
align-items: center;
grid-gap: .5rem;
font-size: 2.9rem;
margin-bottom: 2rem;
}
.rating .star {
cursor: pointer;
color: grey;
}
.rating .star.selected {
color: aqua;
}
.rating .star:hover {
transform: scale(1.1);
}
button {
padding: 10px;
margin-top: 10px;
font-size: 19px;
font-weight: 700;
width: 20%;
color: white;
background-color: rgb(3, 123, 123);
border: none;
border-radius: 4px;
cursor: pointer;
}
.btn-group {
display: flex;
justify-content: space-evenly;
}
.btn-group button:hover {
color: black;
}