umbo

ref: master

src/forms.css


 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.umbo-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.umbo-fieldset-legend {
	margin-bottom: 5px;
}

.umbo-form-group {
	display: block;
	margin-bottom: 30px;
}

.umbo-label {
	display: block;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 5px;
}

.umbo-input {
	font-size: 1rem;
	line-height: 1.5;
	padding: .25rem .375rem;

	height: 2.5rem;

	border-color: #888;
}

.umbo-input:focus {
	outline: 3px solid #33fe96;
	outline-offset: 0;
	border: 1px solid #0b0c0c;
	box-shadow: inset 0px 0px 0px 2px;
}

.umbo-form-actions {
	display: inline-block;
}

.umbo-input-full-width {
	width: 100%;
}

.umbo-input-large {
	width: 75%;
}

.umbo-input-medium {
	width: 50%;
}

.umbo-input-small {
	width: 25%;
}

.umbo-input-xsmall {
	width: 10%;
}