forked from Aishu1123/Alcazar_Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
154 lines (127 loc) · 3.62 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
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
#body {
/* margin: 0; */
/* padding: 0; */
font-family: Arial, sans-serif;
/* background-image: url('https://st4.depositphotos.com/18071024/20132/i/450/depositphotos_201322754-stock-photo-set-metal-hexagons-dark-plane.jpg'); */
/* background-size: cover; */
/* background-position: center; */
/* background-attachment: fixed; */
height: 90vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
/* filter: blur(2px); */
}
body {
margin: auto;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-image: url('./Image/imgforbg.webp');
/* background: transparent(80%); */
/* filter: brightness(0.9); */
/* opacity: 0.5; */
/* opacity: 0.5; */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 1;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("./Image/imgforbg.webp");
background-size: cover;
filter: blur(2px);
z-index: -1;
}
nav a:hover{
color: rgb(225, 219, 219);
}
nav {
font-weight: bolder;
font-size: 17px;
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
height: 91px;
box-shadow: 0 0 10px #000;
background: #00000083;
/* background: linear-gradient(90deg, rgba(83,95,220,1) 1%, rgba(99,127,224,1) 8%, rgba(101,143,239,1) 24%, rgba(138,157,229,1) 47%, rgba(90,112,219,1) 64%, rgba(112,122,198,1) 81%, rgba(76,137,225,1) 100%); */
a {
text-decoration: none;
color: white;
}
}
.payment-container {
display: flex;
justify-content: center;
width: 700px;
}
.payment-content {
display: flex;
align-items: center;
max-width: 1200px;
box-shadow: 0 0 10px #000;
background: #0000009b;
/* background-color: rgba(8, 87, 83, 0.8); */
/* background: linear-gradient(90deg, rgba(83,95,220,1) 1%, rgba(99,127,224,1) 8%, rgba(101,143,239,1) 24%, rgba(138,157,229,1) 47%, rgba(90,112,219,1) 64%, rgba(112,122,198,1) 81%, rgba(76,137,225,1) 100%); */
/* box-shadow: 0 0 10px #000; */
/* background: #00000083; */
padding: 20px;
border-radius: 25px;
width: 1200px;
}
.payment-content img{
/* filter: hue-rotate(180deg); */
/* background: linear-gradient(90deg, rgba(83,95,220,1) 1%, rgba(99,127,224,1) 8%, rgba(101,143,239,1) 24%, rgba(138,157,229,1) 47%, rgba(90,112,219,1) 64%, rgba(112,122,198,1) 81%, rgba(76,137,225,1) 100%); */
/* background: linear-gradient(90deg, rgba(83, 95, 220, 1) 1%, rgba(99, 127, 224, 1) 8%, rgba(101, 143, 239, 1) 24%, rgba(138, 157, 229, 1) 47%, rgba(90, 112, 219, 1) 64%, rgba(112, 122, 198, 1) 81%, rgba(76, 137, 225, 1) 100%); */
/* Ensure the image is visible on top of the background */
z-index: 1;
/* Make the image transparent to let the background show through */
opacity: 0.8;
}
.payment-image {
width: 350px;
margin-right: 20px;
}
.payment-form {
max-width: 350px;
margin: auto;
}
h2 {
text-align: center;
}
.input-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"] {
width: 100%;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
width: 100%;
padding: 10px;
border: none;
border-radius: 5px;
background-color: rgb(230, 219, 219);
/* background-color: #007bff; */
/* color: ; */
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
width: 110%;
background-color: #0056b3;
}