-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.css
52 lines (48 loc) · 954 Bytes
/
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
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'poppins',sans-serif;
}
.container{
width:100%;
height:100vh;
background-image: linear-gradient(to right,#ff4b4b,#d12280);
display: flex;
align-items: center;
justify-content: center;
}
.feedbackbox{
background: #ffff;
padding: 100px 3px;
border-radius: 10px;
display:flex;
flex-direction: coloumn;
align-items: center;
}
.emoji{
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 30px;
transform:translateX(120%);
overflow : hidden;
}
.emoji img{
width: 80px;
margin: 0 10px;
}
#emoji{
display: flex;
align-items: center;
transform : translateX(-400px);
transition : 0.3s;
}
.rating {
transform : translate(-20% , 200%);
}
.rating .fa-solid{
font-size:40px;
color:#e4e4e4;
cursor: pointer;
}