botserver/web/app/player/style.css
Rodrigo Rodriguez (Pragmatismo) dfe7e4e4b6 Add About and Login pages with responsive design and user authentication
- Created a new About page (index.html) detailing the BotServer platform, its features, and technology stack.
- Developed a Login page (login.html) with sign-in and sign-up functionality, including form validation and user feedback messages.
- Removed the empty style.css file as it is no longer needed.
2025-10-26 00:02:19 -03:00

32 lines
No EOL
688 B
CSS

.slider::-webkit-slider-thumb {
appearance: none;
height: 12px;
width: 12px;
border-radius: 50%;
background: hsl(var(--primary));
cursor: pointer;
border: 2px solid hsl(var(--primary-foreground));
}
.slider::-moz-range-thumb {
height: 12px;
width: 12px;
border-radius: 50%;
background: hsl(var(--primary));
cursor: pointer;
border: 2px solid hsl(var(--primary-foreground));
}
.slider::-webkit-slider-track {
height: 4px;
cursor: pointer;
background: hsl(var(--muted));
border-radius: 2px;
}
.slider::-moz-range-track {
height: 4px;
cursor: pointer;
background: hsl(var(--muted));
border-radius: 2px;
}