forked from christianalfoni/formsy-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.css
65 lines (55 loc) · 958 Bytes
/
global.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
64
65
body {
font-family: "Helvetica Neue", Arial;
font-weight: 200;
}
h1, h2, h3 {
font-weight: 100;
}
a {
color: hsl(200, 50%, 50%);
}
a.active {
color: hsl(20, 50%, 50%);
}
.breadcrumbs a {
text-decoration: none;
}
form {
padding: 15px;
border: 1px solid black;
}
.form-group {
margin-bottom: 10px;
}
.form-group label {
display: inline-block;
max-width: 100%;
margin-top: 5px;
font-weight: 700;
}
.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='number'],
.form-group input[type='password'] {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #FFF;
background-image: none;
border: 1px solid #CCC;
border-radius: 4px;
box-sizing: border-box;
}
.validation-error {
color: red;
margin: 5px 0;
display: inline-block;
}
button {
padding: 10px 15px;
border-radius: 4px;
}