-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (40 loc) · 737 Bytes
/
Copy pathstyles.css
File metadata and controls
45 lines (40 loc) · 737 Bytes
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
body {
background-color: #cfd7df;
}
.container {
padding: 80px 20px 110px;
display: flex;
align-items: center;
justify-content: center;
}
.example {
min-width: 400px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 7px 14px rgb(50 50 93 / 10%), 0 3px 6px rgb(0 0 0 / 8%);
padding: 40px 40px;
margin-left: -20px;
margin-right: -20px;
}
#credit-card-inline {
display: flex;
}
#errors {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
color: red;
}
.example button {
display: block;
width: 100%;
height: 40px;
margin: 40px 0 0;
border-radius: 5px;
color: #fff;
background-color: #24b47e;
font-weight: 800;
cursor: pointer;
border: 0px;
}