-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform-mini.css
118 lines (94 loc) · 1.96 KB
/
form-mini.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
html{
background-color: #f3f3f3;
}
.form-mini-container{
max-width: 315px;
margin: 0 auto;
font: normal 14px sans-serif;
text-align: center;
color: #5f5f5f;
}
.form-mini-container h1{
color: #4c565e;
font-size: 24px;
padding-bottom: 30px;
border-bottom: 2px solid #6caee0;
font-weight: bold;
margin: 0;
}
.form-mini{
box-sizing: border-box;
padding: 40px;
background-color: #ffffff;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.form-mini .form-row{
display: block;
text-align: left;
margin-bottom: 23px;
}
.form-mini input,
.form-mini select{
box-sizing: border-box;
width: 240px;
box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
padding: 12px 18px;
border: 1px solid #dbdbdb;
}
.form-mini input[type=radio],
.form-mini input[type=checkbox]{
box-shadow: none;
width: auto;
}
.form-mini select{
color: inherit;
background-color: #ffffff;
}
.form-mini .form-checkbox span{
margin-left: 5px;
}
.form-mini .form-checkbox input{
width: auto;
}
.form-mini .form-radio-buttons > div{
margin-bottom: 10px;
}
.form-mini .form-radio-buttons input{
width: auto;
}
.form-mini .form-radio-buttons label span{
margin-left: 8px;
}
.form-mini .form-last-row{
margin: 35px auto 0;
}
.form-mini button{
display: block;
border-radius: 2px;
background-color: #6caee0;
color: #ffffff;
font-weight: bold;
box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
width: 100%;
padding: 14px 22px;
border: 0;
cursor: pointer;
}
/* Placeholder color */
.form-mini ::-webkit-input-placeholder {
color: #999;
}
.form-mini ::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-mini :-ms-input-placeholder {
color: #999;
}
/* Making the form responsive. Remove this media query
if you don't need the form to work on mobile devices. */
@media (max-width: 600px) {
.form-mini-container{
margin-top: 0;
}
}