-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBabyProfile.css
More file actions
144 lines (125 loc) · 2.71 KB
/
Copy pathBabyProfile.css
File metadata and controls
144 lines (125 loc) · 2.71 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
form {
max-width: 300px;
margin: 10px auto;
margin-top: 15%;
padding: 10px 40px;
background: #ffff;
border-radius: 12px;
}
h1 {
margin: 0 0 30px 0;
text-align: center;
color: rgb(41, 33, 78); ;
}
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
background: rgba(255,255,255,0.1);
border: none;
font-size: 16px;
height: auto;
margin: 0;
outline: 0;
padding: 15px;
width: 100%;
background-color: #e8eeef;
color: #8a97a0;
box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
margin-bottom: 30px;
border-radius: 12px;
padding-right: 5px;
}
input[type="radio"],
input[type="checkbox"] {
margin: 0 4px 8px 0;
}
select {
padding: 6px;
height: 32px;
border-radius: 2px;
}
button {
padding: 19px 39px 18px 39px;
font-family: 'Optima', sans-serif;
color: #FFF;
background-color: rgb(41, 33, 78);
font-size: 18px;
text-align: center;
border-radius: 12px;
width: 100%;
border: 1px solid rgb(41, 33, 78);
border-width: 1px 1px 3px;
box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
margin-bottom: 10px;
}
.danger button {
padding: 19px 39px 18px 39px;
font-family: 'Optima', sans-serif;
color: #FFF;
background-color: rgb(152, 33, 33);
font-size: 18px;
text-align: center;
border-radius: 12px;
width: 100%;
border: 1px solid rgb(152, 33, 33);
border-width: 1px 1px 3px;
box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
margin-bottom: 10px;
}
button:hover{
background-color: rgb(72, 56, 133);
border-color: rgb(72, 56, 133);
fill: rgb(72, 56, 133); }
.danger button:hover {
background-color: rgb(133, 56, 56);
border-color: rgb(133, 56, 56);
fill: rgb(72, 56, 133); }
button:focus {
color: #ffffff;
}
fieldset {
margin-bottom: 30px;
border: none;
}
legend {
font-size: 1.4em;
margin-bottom: 10px;
}
label {
display: block;
margin-bottom: 8px;
}
label.light {
font-weight: 300;
display: inline;
}
.location{
width: 20px;
}
.number {
background-color: rgb(41, 33, 78);
color: #fff;
height: 30px;
width: 30px;
display: inline-block;
font-size: 0.8em;
margin-right: 4px;
line-height: 30px;
text-align: center;
text-shadow: 0 1px 0 rgba(255,255,255,0.2);
border-radius: 100%;
}
@media screen and (min-width: 480px) {
form {
max-width: 480px;
}
}