_forms.scss
1.04 KB
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
39
40
41
42
43
44
45
46
47
.input-base {
background-color: #FFF;
border-radius: 2px;
border: 1px solid #BBB;
border-top: 1px solid #AAA;
display: inline-block;
font-size: $fs-s;
font-family: $text;
padding: $-xs;
color: #222;
width: 250px;
max-width: 100%;
-webkit-appearance:none;
&.neg, &.invalid {
border: 1px solid $negative;
}
&.pos, &.valid {
border: 1px solid $positive;
}
&.disabled, &[disabled] {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAMUlEQVQIW2NkwAGuXbv2nxGbHEhCS0uLEUMSJgHShCKJLIEiiS4Bl8QmAZbEJQGSBAC62BuJ+tt7zgAAAABJRU5ErkJggg==);
}
}
label {
display: block;
line-height: 1.4em;
font-size: 0.9em;
font-weight: 500;
color: #333;
}
label.radio, label.checkbox {
font-weight: 400;
input[type="radio"], input[type="checkbox"] {
margin-right: $-xs;
}
}
input[type="text"], input[type="number"], input[type="email"], input[type="search"], input[type="url"], input[type="password"], select, textarea {
@extend .input-base;
}
.form-group {
margin-bottom: $-s;
}