1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 13:34:19 +00:00
pds-2021-g2-nest/code/frontend/src/components/Input.module.css
2021-04-22 18:26:45 +02:00

22 lines
436 B
CSS

.Input {
border-radius: 25px;
border-width: 0;
min-height: 28px;
padding: 2px 10px;
margin: 2px;
color: var(--fg-field-off);
background-color: var(--bg-field-off);
font-family: var(--font-regular);
width: 300px;
}
.Input:focus {
outline: 0; /* TODO: Questo è sconsigliato dalle linee guida sull'accessibilità! */
color: var(--fg-field-on);
background-color: var(--bg-field-on);
}