-
Notifications
You must be signed in to change notification settings - Fork 0
/
show.html
72 lines (65 loc) · 1.57 KB
/
show.html
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
<!DOCTYPE html>
<html>
<head>
<title> Prize Win </title>
</head>
<style>
body{
margin: 0;
padding: 0;
overflow: hidden;
background: url(bg.jpg);
background-attachment: fixed;
background-origin: border-box;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.cb{
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
display: flex;
flex-direction: column;
justify-content: center;
}
.cb h3{
color:#fff;
text-align: center
}
:root{
--site-color:#66bb6a;
--site-hover-color:#5da960;
--site-active-color:#43a047;
}
.btn {
border:none;
width: 260px;
font-size: 15px;
outline:none;
padding: 10px;
border-radius: 3px;
cursor: pointer;
display: inline-block;
margin:0 auto;
}
.btn-default {
background: var(--site-color);
color: #fff;
}
img{
height: 450px;
margin:0 auto;
display: block;
}
</style>
<body>
<div class="cb">
<img src="pr.png" alt="">
<h3> Install our browser extension from the chrome store and win 1000's of prizes every day ! </h3>
<button class="btn btn-default"> Download Chrome Extension Now ! </button>
</div>
<!--https://developer.chrome.com/extensions/settings_override-->
</body>
</html>