forked from TanStack/form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.css
83 lines (82 loc) · 1.16 KB
/
layout.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
html {
min-height: 100vh;
}
body {
background: #fff;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
padding: 20px;
}
h1 {
font-size: 2.5em;
color: #fff;
}
a {
color: #02bfe6;
font-weight: bold;
text-decoration: none;
}
strong {
font-weight: bold;
}
.logo {
width: 400px;
max-width: 100%;
margin: 0 auto;
display: block;
}
.FormInput {
display: inline-block;
}
form > div {
margin-bottom: 1em;
}
h6 {
font-size: 0.8em;
font-weight: bold;
margin-bottom: 0.5em;
}
label {
display: block;
}
radiogroup {
padding: 10px;
border: 1px solid rgba(0,0,0,0.1);
display: inline-block;
border-radius: 3px;
}
input,
textarea,
select {
font-size: 15px;
padding: 5px;
border-radius: 3px;
border: 1px solid rgba(0,0,0,0.2);
margin-bottom: 2px;
}
.FormInput.-error input,
.FormInput.-error textarea,
.FormInput.-error select {
border-color: #f00;
}
.FormError {
color: #f00;
font-size: 12px;
font-weight: bold;
margin: 5px;
}
em {
font-style: italic;
}
.nested {
padding: 10px;
}
.nested > div {
background: rgba(0,0,0,0.05);
border-radius: 5px;
margin-bottom: 5px;
padding: 10px;
}
.form_wrapper{
padding: 20px;
}