-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpayment_success.css
59 lines (51 loc) · 1015 Bytes
/
payment_success.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
* {
box-sizing: border-box;
}
body{
background-color: #e0dcdc;
}
.container{
width: 30%;
height: 400px;
background-color: white;
margin: auto;
margin-top: 180px;
grid-template-columns: repeat(1, 1fr);
}
img{
width: 25%;
height: 70px;
margin-top: 70px;
margin-left: 160px;
}
h2{
text-align: center;
margin-top: 60px;
color: rgb(59, 58, 58);
font-family: sans-serif;
}
p{
text-align: center;
margin-top: 30px;
font-size: 18px;
}
#button{
width: 200px;
height: 40px;
font-size: 16px;
border: 0;
color: white;
font-weight: 700;
background-color: #1ABE2B;
margin: 20px 40px 0 97px;
}
@media only screen and (min-width:0px) and (max-width:320px) {
.container{
grid-template-columns: repeat(1,1fr);
}
}
@media only screen and (min-width:321px) and (max-width:720px) {
.container{
grid-template-columns: repeat(1,1fr);
}
}