45 lines
770 B
CSS
45 lines
770 B
CSS
{03435db8d69446ee9605b2ab77a65a6b71d48815 true 770 style.css 0xc001c5b340}
body {
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
align-items: center;
|
|
background-color:#FFD54F;
|
|
}
|
|
.feedback-container {
|
|
background-color: white;
|
|
width: 400px;
|
|
height: 250px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
|
|
border-radius: 10px;
|
|
position: relative;
|
|
}
|
|
.emoji-container {
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
top: 20%;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
.far {
|
|
margin: 1px;
|
|
transform: translateX(0);
|
|
transition: transform 0.2s;
|
|
}
|
|
.rating-container {
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: 20%;
|
|
}
|
|
.fa-star {
|
|
color: lightgray;
|
|
cursor: pointer;
|
|
}
|
|
.fa-star.active {
|
|
color: #FFD54F;
|
|
} |