2020-03-27 13:59:38 -07:00
|
|
|
input[type='text'],
|
|
|
|
textarea {
|
2020-05-15 20:48:08 -07:00
|
|
|
&.standard {
|
2020-05-28 17:58:37 -07:00
|
|
|
@include font-size(16);
|
|
|
|
@include line-height(18);
|
2020-06-06 20:55:00 -07:00
|
|
|
@include input-placeholder(var(--primary-text-color--faint));
|
2020-05-15 20:48:08 -07:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 7px 10px;
|
|
|
|
border: 1px solid;
|
|
|
|
border-radius: 4px;
|
2020-05-30 12:50:08 -07:00
|
|
|
color: var(--brand-color);
|
2020-06-06 20:55:00 -07:00
|
|
|
border-color: var(--primary-text-color--faint);
|
2020-06-02 15:42:09 -07:00
|
|
|
background: var(--foreground-color);
|
2020-05-15 20:48:08 -07:00
|
|
|
&:focus {outline: none;}
|
|
|
|
}
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
|
|
|
textarea.standard {resize: vertical;}
|