1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/frontend/src/components/Input.module.css

23 lines
362 B
CSS
Raw Normal View History

2021-04-21 01:57:18 +00:00
.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);
2021-04-21 16:58:14 +00:00
font-family: var(--font-regular);
2021-04-22 16:19:11 +00:00
width: 300px;
2021-04-21 01:57:18 +00:00
}
.Input:focus {
outline: 0;
2021-04-21 01:57:18 +00:00
color: var(--fg-field-on);
background-color: var(--bg-field-on);
2021-04-22 16:26:45 +00:00
}