-
Notifications
You must be signed in to change notification settings - Fork 763
/
payment.css
121 lines (106 loc) · 1.86 KB
/
payment.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
/* payment-style.css */
/* Basic Page Styling */
body {
background-color: #ffffff;
font-family: "Poppins", sans-serif;
margin: 0;
padding: 0;
}
/* Container Styling */
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
max-width: 600px;
margin: auto;
}
/* Home Icon Styling */
.fa-home {
font-size: 28px;
color: #3587c9;
position: absolute;
right: 5%;
top: 20px;
transition: color 0.3s ease;
}
.fa-home:hover {
color: #f57d7d;
}
/* Title Styling */
#payment-title {
color: #ec4c4c;
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
}
/* Dropdown Section Styling */
.selection-section {
text-align: center;
width: 100%;
margin-bottom: 30px;
}
#payment-method {
height: 40px;
width: 80%;
max-width: 400px;
border: 2px solid #ec4c4c;
border-radius: 8px;
padding: 0 12px;
font-size: 16px;
background-color: #f8f8f8;
color: #333;
transition: border-color 0.3s ease;
}
#payment-method:focus {
border-color: #f57d7d;
outline: none;
}
/* Payment Details Section Styling */
.details-section {
width: 100%;
max-width: 600px;
background-color: #f1f1f1;
padding: 80px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
.placeholder-text {
color: #666;
font-size: 18px;
}
/* Image Styling */
.details-section img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin-top: 15px;
opacity: 0.85;
}
/* Circle Styling */
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 9999;
transition: transform 0.1s ease-out;
}
/* Responsive Design */
@media (max-width: 768px) {
.fa-home {
right: 10%;
font-size: 24px;
}
#payment-title {
font-size: 20px;
}
#payment-method {
width: 90%;
}
}