-
Notifications
You must be signed in to change notification settings - Fork 5
/
example-6.css
137 lines (111 loc) · 2.45 KB
/
example-6.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
.example.example-6 {
background-color: #fff;
}
.example.example-6 * {
font-family: Inter UI, Open Sans, Segoe UI, sans-serif;
font-size: 16px;
font-weight: 500;
}
.example.example-6 form {
max-width: 496px !important;
padding: 0 15px;
}
.example.example-6 form>*+* {
margin-top: 20px;
}
.example.example-6 .container {
background-color: #fff;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
border-radius: 4px;
padding: 3px;
}
.example.example-6 fieldset {
border-style: none;
padding: 5px;
margin-left: -5px;
margin-right: -5px;
background: rgba(18, 91, 152, 0.05);
border-radius: 8px;
}
.example.example-6 fieldset legend {
float: left;
width: 100%;
text-align: center;
font-size: 13px;
color: #8898aa;
padding: 3px 10px 7px;
}
.example.example-6 .card-only {
display: block;
}
.example.example-6 .payment-request-available {
display: none;
}
.example.example-6 fieldset legend+* {
clear: both;
}
.example.example-6 input,
.example.example-6 button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
border-style: none;
color: #fff;
}
.example.example-6 input:-webkit-autofill {
transition: background-color 100000000s;
-webkit-animation: 1ms void-animation-out;
}
.example.example-6 #example-6-card {
padding: 10px;
margin-bottom: 2px;
}
.example.example-6 input {
-webkit-animation: 1ms void-animation-out;
}
.example.example-6 input::-webkit-input-placeholder {
color: #B8BBC0;
}
.example.example-6 input::-moz-placeholder {
color: #B8BBC0;
}
.example.example-6 input:-ms-input-placeholder {
color: #B8BBC0;
}
.example.example-6 button {
display: block;
width: 100%;
height: 37px;
background-color: #7F17AF;
border-radius: 2px;
color: #fff;
cursor: pointer;
}
.example.example-6 button:active {
background-color: #260744;
}
.example.example-6 .error svg .base {
fill: #e25950;
}
.example.example-6 .error svg .glyph {
fill: #f6f9fc;
}
.example.example-6 .error .message {
color: #e25950;
}
.example.example-6 .success .icon .border {
stroke: #7F17AF;
}
.example.example-6 .success .icon .checkmark {
stroke: #7F17AF;
}
.example.example-6 .success .title {
color: #32325d;
}
.example.example-6 .success .message {
color: #8898aa;
}
.example.example-6 .success .reset path {
fill: #7F17AF;
}