-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
60 lines (52 loc) · 1008 Bytes
/
style.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
.form-group {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
label {
width: 100px;
text-align: right;
margin-right: 5px;
margin-left: 5px;
}
.sublabel {
color:gray;
margin:4px;
font-size: 11px;
}
input[type="text"],
input[type="date"] {
padding: 10px;
font-size: 14px;
}
button[type="submit"] {
padding: 10px 20px;
background-color: #0050A0;
border: none;
cursor: pointer;
}
input[type="date"] {
position: relative;
}
input[type="date"]:before {
content: attr(placeholder);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff;
color: rgba(0, 0, 0, 0.65);
pointer-events: none;
line-height: 1.5;
padding: 10px 0.5rem 0 0.5rem;
}
input[type="date"]:focus:before,
input[type="date"]:not([value=""]):before
{
display: none;
}
.custom-bg {
background-color: #F7F7F9;
}