-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.css
103 lines (89 loc) · 1.39 KB
/
checkout.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
* {
box-sizing: border-box;
font-size: 100%;
}
body {
background: #ab91bd;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Poppins', sans-serif;
}
.checkout-card {
background: white;
max-width: 750px;
height: 800px;
padding: 6%;
box-shadow: 1px 2px 4px rgba(0, 0, 0, .2);
}
.checkout-card .title span {
color: #77bfc9;
}
.checkout-card .title p {
font-size: 30px;
text-align: center;
}
.price-container {
display: flex;
gap: 15px;
}
.price-card {
position: relative;
padding: 2em 0.5em 1em 0;
width: 100%;
display: flex;
gap: 2%;
cursor: pointer;
}
.price-card label {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
border-radius: 3px;
border: 1px solid #bcbcbc;
cursor: pointer;
font-weight: bold;
}
.price-card .content {
display: flex;
flex-direction: column;
}
.price-card img {
width: 100%;
}
.input-field {
flex-direction: column;
margin-top: 20px;
}
.input-field input {
padding: .75rem;
border-radius: 3px;
width: 100%;
border: 1px solid #9EA0A9;
}
.grid {
display: flex;
gap: 10px;
margin-top: .5rem;
}
.btn {
width: 100px;
margin-top: 10px;
padding: 5px;
font-size: 15px;
text-align: center;
color: #ffffff;
background-color: #70b8ce;
box-shadow: 0 2px 4px #008080;
border-radius: 5px;
border: none;
position: relative;
cursor: pointer;
}
.btn:hover {
background: #506dc7;
}