-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.css
76 lines (67 loc) · 1.29 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
body {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
form {
width: 40%;
margin-left: 40px;
}
label {
display: block;
margin-bottom: 20px;
font-weight: bold;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 40px;
border: none;
cursor: pointer;
border-radius: 5px;
}
.logos {
margin-top: 50px;
width: 50%;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.logos > img {
width: 100px;
}
#heading {
text-align: center;
font-size: 50px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.items,
.amount {
display: flex;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
/* color: #29B6F6; */
text-align: center;
}
.card {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
height: 300px;
margin: auto;
text-align: center;
width: 90%;
}
#details {
background-color:rgb(224, 223, 223);
}
.image {
width: 400px;
height: 200px;
margin: auto;
}
.image > img {
width: 100%;
}