2024-06-24 23:21:00 -07:00
|
|
|
#pet {
|
2024-06-25 00:02:11 -07:00
|
|
|
#pet-display {
|
|
|
|
.the-pet {
|
|
|
|
--color: red;
|
|
|
|
--width: 250px;
|
|
|
|
--height: 250px;
|
|
|
|
|
|
|
|
background-color: var(--color);
|
|
|
|
width: var(--width);
|
|
|
|
height: var(--height);
|
|
|
|
|
|
|
|
&.egg {
|
|
|
|
background-color: white;
|
|
|
|
// egg shape from https://css-tricks.com/the-shapes-of-css/
|
|
|
|
width: 126px;
|
|
|
|
height: 180px;
|
|
|
|
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.square {
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.circle {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.triangle {
|
|
|
|
clip-path: polygon(50% 0, 100% 100%, 0 100%);
|
|
|
|
}
|
|
|
|
}
|
2024-06-24 23:21:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#debug-section [name] {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2024-06-21 11:58:15 -07:00
|
|
|
|
2024-06-24 23:21:00 -07:00
|
|
|
button {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2024-06-25 00:02:11 -07:00
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-06-21 11:58:15 -07:00
|
|
|
}
|