-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathfeedback.css
83 lines (80 loc) · 1.49 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
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: #fff;
color: black;
box-sizing: border-box;
background-image: url('image.png');
background-attachment: fixed;
}
html {
scroll-behavior: smooth;
}
.main-section{
margin-top: 7rem;
margin-bottom: 15px;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background-color: rgb(255, 255, 255);
border-radius: 8px;
height: 750px;
width: 900px;
display: flex;
flex-direction: column;
text-align: center;
padding: 10px 20px 10px 20px;
}
.feedback-head{
font-size:large;
font-weight: 600;
}
.first-q{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 1px 10px 1px 10px;
gap: 12px;
}
.choice{
width: 600px;
height: 100px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.l1,.l2,.l3,.l4{
display: flex;
align-items: center;
padding: 6px 4px 6px 4px;
border: 1px solid black;
border-radius: 4px;
cursor: pointer;
height: 30px;
width: 200px;
}
.l1:hover,.l2:hover,.l3:hover,.l4:hover{
background-color: rgba(131, 168, 248, 0.477);
}
button{
width: 100px;
height: 40px;
}
a{
text-decoration: none;
color: black;
}
.btn:hover{
cursor: pointer;
background-color: white;
}
button:hover{
background-color: #E5A186;
color: white;
border: none;
border-radius: 4px;
}