You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
441 B
30 lines
441 B
4 weeks ago
|
|
||
|
|
||
|
.RatingButtons {
|
||
|
display: flex;
|
||
|
gap: 1rem;
|
||
|
justify-content: center;
|
||
|
margin-top: 1rem;
|
||
|
}
|
||
|
#RatingContainer button {
|
||
|
background: none;
|
||
|
border: none;
|
||
|
cursor: pointer;
|
||
|
font-size: 2rem;
|
||
|
transition: transform 0.2s, color 0.2s;
|
||
|
}
|
||
|
#RatingContainer button:hover {
|
||
|
transform: scale(1.2);
|
||
|
}
|
||
|
#ThumbUp {
|
||
|
color: green;
|
||
|
}
|
||
|
#ThumbDown {
|
||
|
color: red;
|
||
|
}
|
||
|
.Counts {
|
||
|
margin-top: 1rem;
|
||
|
font-size: 1.2rem;
|
||
|
}
|
||
|
|