Add Sunny Lines Puzzle - IMO 2025 P6 interactive with grid snapping and line extension

This commit is contained in:
Neeldhara Misra 2025-07-23 05:49:08 +05:30
parent df2b2d6b9e
commit 2ccd2fec3a
8 changed files with 1212 additions and 7 deletions

View file

@ -131,4 +131,39 @@ All colors MUST be HSL.
h1, h2, h3, h4, h5, h6 {
@apply font-heading;
}
}
/* Custom slider styling */
.slider-special::-webkit-slider-thumb,
.slider-normal::-webkit-slider-thumb {
appearance: none;
height: 20px;
width: 20px;
border-radius: 50%;
cursor: pointer;
}
.slider-special::-webkit-slider-thumb {
background: #10b981;
}
.slider-normal::-webkit-slider-thumb {
background: #6b7280;
}
.slider-special::-moz-range-thumb,
.slider-normal::-moz-range-thumb {
height: 20px;
width: 20px;
border-radius: 50%;
cursor: pointer;
border: none;
}
.slider-special::-moz-range-thumb {
background: #10b981;
}
.slider-normal::-moz-range-thumb {
background: #6b7280;
}