Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@import '../base/color';
@import '../base/mixins';
// Common styles for custom inputs
input.inputText,
input.inputNumber {
box-sizing: border-box;
border: 1px solid $grey-dark;
background: transparent;
transition: all 300ms ease;
color: $grey-bright;
&:focus,
&:focus-visible {
border-color: $gold-shadow;
outline: none;
}
}
input.inputText {
appearance: none;
border-radius: 4px;
height: 45px;
width: 100%;
max-width: 280px;
padding: 0 0.5rem;
}
input.inputNumber {
border-radius: 2px;
height: 40px;
width: 60px;
max-width: 5rem;
text-align: center;
}
input.inputCheckbox {
@include checkBox($gold-shadow, $dark-light-2);
}