-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreditly.css
119 lines (104 loc) · 2.17 KB
/
creditly.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
119
.creditly-wrapper {
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
font-size: 14px;
color: white;
}
.creditly-wrapper .credit-card-wrapper {
padding: 0;
}
.creditly-wrapper input.has-error {
outline: none;
border-color: #ff7076;
border-top-color: #ff5c61;
border: 1px solid #ff7076;
}
.creditly-wrapper label {
display: inline-block;
margin-bottom: 10px;
font-weight: 600;
color: #212121;
font-size: 1.1em;
}
.creditly-wrapper .form-group {
width: 100%;
display: table;
}
.creditly-wrapper .card-type {
margin-top: 10px;
}
.creditly-card-form .submit {
outline: none;
overflow: hidden;
display: inline-block;
visibility: visible!important;
-webkit-font-smoothing: antialiased;
border: none;
padding: 1px;
text-decoration: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
cursor: pointer;
}
.creditly-card-form .submit span {
display: block;
position: relative;
padding: 12px 43px 12px;
letter-spacing: 3px;
background: #212121;
font-size: 1em;
color: #fff;
font-weight: 500;
border: none;
outline: none;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
text-transform: uppercase;
}
.creditly-card-form .submit span:hover {
background: #fb383b;
color: #fff;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.creditly-card-form .submit span:hover i {
padding-left: 1em;
}
.creditly-card-form .submit span i {
transition: .5s ease-in;
-webkit-transition: .5s ease-in;
-moz-transition: .5s ease-in;
-o-transition: .5s ease-in;
-ms-transition: .5s ease-in;
}
@media (max-width: 480px) {
.creditly-card-form .submit span {
padding: 6px 30px 11px;
letter-spacing: 1px;
}
}
@media (max-width: 414px) {
.creditly-card-form .submit span:hover i {
padding-left: 0.5em;
}
}
@media (max-width: 375px) {
.creditly-card-form .submit span {
font-size: 1.3em;
}
}
@media (max-width: 320px) {
.creditly-card-form .submit span {
padding: 6px 10px 11px;
}
}