-
Notifications
You must be signed in to change notification settings - Fork 1
/
feedback.css
91 lines (78 loc) · 1.48 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
.feedbackContainer {
color: #001a47;
width: 65%;
margin: auto;
padding: 20px;
border-radius: 25px;
background-color: rgb(201, 232, 247);
background:rgba(201, 232, 247, 0.555);
}
h1 {
text-align: center;
}
label {
display: block;
margin-top: 20px;
font-weight: bold;
}
input[type="text"], input[type="email"], select, textarea {
width: 100%;
margin-top: 5px;
padding: 8px;
box-sizing: border-box;
}
.choice {
margin-top: 5px;
}
.choice label {
display: inline-block;
margin-right: 10px;
margin-top: 5px;
font-weight: normal;
}
.choice input {
margin-right: 5px;
}
.rating {
padding-left: 20px;
padding-right: 20px;
display: flex;
justify-content: space-between;
}
.rating label {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 10px;
font-weight: normal;
}
button {
font-weight: bold;
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #163668;
color: white;
border: none;
border-radius: 5px;
transition: background-color 0.5s ease;
}
button:hover {
background-color: #3e7bde;
color: #001a47;
}
button:active {
text-decoration: underline;
}
.error {
margin-top: 5px;
color: red;
font-size: 0.9em;
display: none;
}
.asterisk {
color: red;
}
#preview {
display: none;
}