-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.css
More file actions
161 lines (137 loc) · 2.78 KB
/
payment.css
File metadata and controls
161 lines (137 loc) · 2.78 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* General Styles */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: url('images/blur-hospital.jpg') no-repeat center center fixed;
background-size: cover; /* Ensures the image covers the entire page */
color: #333;
}
.container {
max-width: 800px;
margin: 50px auto;
background-color: rgba(227, 242, 253, 0.9); /* Semi-transparent background */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
}
/* Navigation Bar */
.navbar {
width: 100%;
background-color: #1a73e8;
padding: 10px 0;
text-align: center;
}
.nav-links {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
gap: 20px;
}
.nav-links li {
display: inline;
}
.nav-links a {
text-decoration: none;
color: white;
font-weight: bold;
padding: 8px 15px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-links a:hover {
background-color: #0c55a3;
border-radius: 5px;
}
/* Header */
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
}
header h1 {
font-size: 2rem;
color: #1a73e8;
}
.user-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
}
/* Main Section */
main h2 {
text-align: center;
color: #1a73e8;
margin-bottom: 10px;
}
.subtext {
text-align: center;
color: #555;
margin-bottom: 30px;
}
.payment-details {
text-align: center;
margin-bottom: 30px;
}
.payment-details h3 {
margin-bottom: 10px;
}
.total-amount {
font-size: 1.5rem;
color: #1a73e8;
margin-bottom: 10px;
}
.pay-via {
margin-top: 20px;
font-weight: bold;
}
.payment-icons {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
.payment-icons img {
width: 50px;
height: 50px;
transition: transform 0.3s ease;
}
.payment-icons img:hover {
transform: scale(1.1);
}
.card-details {
background-color: #f8f8fa;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
}
.card-details h4 {
margin-bottom: 20px;
color: #1a73e8;
}
form input {
display: block;
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
display: block;
width: 100%;
background-color: #1d4cc2;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
form button:hover {
background-color: #2e3bb6;
}