-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathregister.component.css
More file actions
72 lines (60 loc) · 894 Bytes
/
register.component.css
File metadata and controls
72 lines (60 loc) · 894 Bytes
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
form {
color: #336699;
display: flex;
flex-wrap: wrap;
font-size: 24px;
justify-content: flex-end;
padding: 30px;
width: 700px;
margin: 0 auto;
}
input {
display: block;
font-size: 24px;
padding: 10px;
}
button {
font-size: 26px;
padding: 8px;
color: #556b8e;
margin-left: 10px;
width: 120px;
}
button:disabled {
color: #999999;
}
.header {
color: #336699;
text-align: center;
padding-top: 20px;
margin-top: 0;
}
.form-group {
margin: 10px;
}
.save {
background-color: #CCDDFF;
border-color: #CCDDFF;
}
em {
float: right;
color: #E05C65;
padding-left: 10px;
}
.error input,
.error select,
.error textarea {
background-color: #E3C3C5;
}
.error ::-webkit-input-placeholder {
color: #999;
}
.error :-moz-placeholder {
color: #999;
}
.error ::-moz-placeholder {
color: #999;
}
.error :ms-input-placeholder {
color: #999;
}