-
Notifications
You must be signed in to change notification settings - Fork 725
/
example4.css
135 lines (110 loc) · 2.32 KB
/
example4.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
.example.example4 {
background-color: #f6f9fc;
}
.example.example4 * {
font-family: Inter, Open Sans, Segoe UI, sans-serif;
font-size: 16px;
font-weight: 500;
}
.example.example4 form {
max-width: 496px !important;
padding: 0 15px;
}
.example.example4 form > * + * {
margin-top: 20px;
}
.example.example4 .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.example4 fieldset {
border-style: none;
padding: 5px;
margin-left: -5px;
margin-right: -5px;
background: rgba(18, 91, 152, 0.05);
border-radius: 8px;
}
.example.example4 fieldset legend {
float: left;
width: 100%;
text-align: center;
font-size: 13px;
color: #8898aa;
padding: 3px 10px 7px;
}
.example.example4 .card-only {
display: block;
}
.example.example4 .payment-request-available {
display: none;
}
.example.example4 fieldset legend + * {
clear: both;
}
.example.example4 input, .example.example4 button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
border-style: none;
color: #fff;
}
.example.example4 input:-webkit-autofill {
transition: background-color 100000000s;
-webkit-animation: 1ms void-animation-out;
}
.example.example4 #example4-card {
padding: 10px;
margin-bottom: 2px;
}
.example.example4 input {
-webkit-animation: 1ms void-animation-out;
}
.example.example4 input::-webkit-input-placeholder {
color: #9bacc8;
}
.example.example4 input::-moz-placeholder {
color: #9bacc8;
}
.example.example4 input:-ms-input-placeholder {
color: #9bacc8;
}
.example.example4 button {
display: block;
width: 100%;
height: 37px;
background-color: #d782d9;
border-radius: 2px;
color: #fff;
cursor: pointer;
}
.example.example4 button:active {
background-color: #b76ac4;
}
.example.example4 .error svg .base {
fill: #e25950;
}
.example.example4 .error svg .glyph {
fill: #f6f9fc;
}
.example.example4 .error .message {
color: #e25950;
}
.example.example4 .success .icon .border {
stroke: #ffc7ee;
}
.example.example4 .success .icon .checkmark {
stroke: #d782d9;
}
.example.example4 .success .title {
color: #32325d;
}
.example.example4 .success .message {
color: #8898aa;
}
.example.example4 .success .reset path {
fill: #d782d9;
}