-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
99 lines (89 loc) · 1.35 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
.container{
width: 80%;
height: 800px;
margin: auto;
display: flex;
margin-top: 70px;
justify-content: space-between;
}
.container>div:nth-child(1){
width: 25%;
background-color: #202124;
border-radius: 10px;
}
.container>div:nth-child(2){
height: 800px;
width: 70%;
}
h2{
font-size: 38px;
font-family: Helvetica;
font-weight: bolder;
}
img{
width: 100%;
}
button{
margin-top: 20px;
height: 50px;
width: 25%;
border-radius: 25px;
border: 1px solid black;
font-weight: 500;
font-family: Helvetica;
}
button:hover{
background-color: rgb(192, 190, 190);
}
.first{
height: 55px;
display: flex;
width: 30%;
margin-left: 60px;
}
.first>div{
width: 20px;
margin: auto;
height: 70px;
background-color: red;
}
.sec{
height: 300px;
margin-top: 60px;
width: 70%;
margin-left: 50px;
}
.sec>div{
height: 100px;
width: 45%;
border-radius: 200px;
margin-bottom: 40px;
}
.sec>p{
color: white;
font-family: Helvetica;
}
.thir{
height: 250px;
margin-top: 50px;
width: 70%;
margin-left: 50px;
}
a{
text-decoration: none;
}
.thir>a>p{
color: rgb(141, 126, 126);
font-size: 16px;
font-family: Helvetica;
}
h1{
font-family: Helvetica;
color: white;
}
.thir>a>p:hover{
color: white;
}
img{
border-radius: 100px;
}