forked from 0xnehasingh/Payment-Gateway-Integration-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (48 loc) · 1.18 KB
/
style.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
/* Container needed to position the button. Adjust the width as needed */
body{
background-image: url("11.jpg");
background-size: cover;
background-repeat:no-repeat;
}
.container {
position: relative;
width: 100%;
}
/* Make the image responsive */
.container img {
width: 100%;
height: 83vh;
background-size: 100% 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/* Style the button and place it in the middle of the container/image */
.container .btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
background-color: rgb(84, 158, 100);
color: white;
font-size: 16px;
padding: 12px 24px;
border: none;
cursor: pointer;
}
.container .btn:hover {
background-color: black;
}
.block {
display: block;
width: 20%;
height:auto;
border: none;
background-color: #04AA6D;
padding: 10px 10px;
font-size: 16px;
cursor: pointer;
text-align: center;
}