98 lines
1.3 KiB
CSS
98 lines
1.3 KiB
CSS
:root {
|
|
--color-chocolate: #47321e;
|
|
--color-cookie: #f2e9df;
|
|
--color-star: #e0a261;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-star);
|
|
display: inline-block;
|
|
}
|
|
|
|
body {
|
|
align-items: center;
|
|
background-color: var(--color-cookie);
|
|
color: var(--color-chocolate);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 12rem;
|
|
justify-content: center;
|
|
margin: 1rem;
|
|
width: 20rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.125rem;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
margin-bottom: 1rem;
|
|
margin-top: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
span {
|
|
display: inline-block;
|
|
}
|
|
|
|
#negative,
|
|
#positive {
|
|
font-size: 1rem;
|
|
line-height: 1;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.star {
|
|
fill: none;
|
|
height: 1.5rem;
|
|
outline: none;
|
|
stroke: var(--color-star);
|
|
width: 1.5rem;
|
|
}
|
|
|
|
.star:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.star:not(:last-child) {
|
|
padding-right: 0.75rem;
|
|
}
|
|
|
|
#state-button {
|
|
background-color: var(--color-star);
|
|
border: none;
|
|
border-radius: 0.25rem;
|
|
color: var(--color-chocolate);
|
|
font-size: 0.875rem;
|
|
line-height: 1;
|
|
margin: 0 auto 1rem auto;
|
|
outline: 0;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
#state-button:focus,
|
|
#state-button:hover {
|
|
cursor: pointer;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
#stars {
|
|
display: inline-flex;
|
|
}
|
|
|
|
#stars:hover .star {
|
|
fill: var(--color-star);
|
|
}
|
|
|
|
#stars:hover .star:hover ~ .star {
|
|
fill: none;
|
|
}
|
|
|
|
#stars .star {
|
|
fill: none;
|
|
}
|
|
|
|
#stars[hidden="true"] {
|
|
display: none;
|
|
}
|