_starting-service.css
2.15 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
.installment-starting-service-page {
background: #fff;
input[type=checkbox] {
display: none;
& + label {
&:before {
position: absolute;
content: "";
display: inline-block;
width: 32px;
height: 32px;
font-size: 27px;
background: url("/img/home/circle-check-off.png");
background-size: cover;
margin-left: -40px;
}
}
&:checked {
& + label:before {
background: url("/img/home/circle-check-on.png");
background-size: cover;
}
}
}
.exclamation {
background-color: #ff7f7f;
color: white;
padding: 35px 20px;
font-weight: normal;
}
.field {
padding: 30px;
border-bottom: 1px solid #e0e0e0;
min-height: 90px;
}
.apply-button {
background-color: #444;
color: white;
border: none;
border-radius: 4px;
font-size: 27px;
width: 473px;
height: 90px;
margin: 0 auto;
display: block;
&:disabled {
opacity: 0.5;
}
}
.agreements {
padding: 30px 45px 0 70px;
label {
font-size: 27px;
color: #c6c6c6;
}
a {
color: #4d90e2;
&:hover {
text-decoration: underline;
}
}
}
.count-down {
border: 1px solid #84c990;
border-radius: 4px;
background: transparent;
color: #84c990;
width: 160px;
height: 55px;
float: right;
}
.data-encryption {
color: #b0b0b0;
margin: 128px auto 20px;
text-align: center;
}
label {
font-size: 40px;
color: #444;
float: left;
}
input[type=text] {
font-size: 30px;
height: 40px;
color: #444;
float: left;
margin-top: 5px;
}
.provider-mark {
text-align: center;
font-size: 27px;
color: #444;
}
}