31 lines
479 B
CSS
31 lines
479 B
CSS
.label {
|
|
color: var(--UI-Grey-60);
|
|
font-family: "fira sans";
|
|
font-weight: 400;
|
|
letter-spacing: 0.03px;
|
|
line-height: 120%;
|
|
text-align: left;
|
|
}
|
|
|
|
span.small {
|
|
display: block;
|
|
font-size: 12px;
|
|
}
|
|
|
|
span.regular {
|
|
font-size: 16px;
|
|
order: 1;
|
|
transition: font-size 200ms ease 100ms;
|
|
}
|
|
|
|
input:focus ~ .label,
|
|
input:not(:placeholder-shown) ~ .label {
|
|
display: block;
|
|
font-size: 12px;
|
|
}
|
|
|
|
input:placeholder-shown ~ .label {
|
|
align-self: center;
|
|
grid-row: 1/-1;
|
|
}
|