mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 17:33:18 +01:00
24 lines
456 B
CSS
24 lines
456 B
CSS
.form {
|
|
display: inline-block;
|
|
}
|
|
|
|
.input {
|
|
all: unset;
|
|
width: auto;
|
|
padding-left: 0.2rem;
|
|
padding-right: 0.2rem;
|
|
text-align: center;
|
|
background-color: rgba(var(--foreground-rgb), 0.15);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.input:hover {
|
|
background-color: rgba(var(--foreground-rgb), 0.2);
|
|
}
|
|
|
|
.input:focus-within {
|
|
outline: none;
|
|
background-color: rgba(var(--foreground-rgb), 0.3);
|
|
color: rgb(var(--foreground-rgb-highlight));
|
|
}
|