-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.css
More file actions
88 lines (78 loc) · 1.37 KB
/
payment.css
File metadata and controls
88 lines (78 loc) · 1.37 KB
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
body {
font-family: Arial, sans-serif;
background: #f4f4f4;
margin: 0;
padding: 20px;
}
.payment-container {
background: white;
max-width: 600px;
margin: auto;
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
text-align: center;
color: #333;
}
#orderList {
margin: 20px 0;
}
.order-item {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
button {
background-color: #a0b94f;
color: white;
padding: 12px 20px;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
display: block;
margin: 20px auto 0;
}
button:hover {
background-color: #8b9d3a;
}
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
}
.popup-content {
background: white;
padding: 30px;
border-radius: 12px;
width: 300px;
text-align: center;
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
.button-container {
text-align: center;
margin-top: 50px;
}
.back-button {
padding: 12px 24px;
font-size: 16px;
border-radius: 12px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
.back-button:hover {
background-color: #388E3C;
}