-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
81 lines (75 loc) · 1.67 KB
/
popup.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
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<style>
body{
width: 300px;
padding: 10px;
background: #f8f8f8;
}
.btn a{
text-decoration: none;
color: #fff;
}
.k{
background: #fff;
padding: 10px;
text-align: center
}
:root{
--site-color:#66bb6a;
--site-hover-color:#5da960;
--site-active-color:#43a047;
}
.btn {
border:none;
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;
}
.btns{
display: flex;
flex-direction: row;
justify-content: center;
}
</style>
<body>
<div class="k">
<h2>Win free prizes every day!</h2>
<p>We give away 1000's of prizes on a daily basis.</p>
<br><br>
Raffle # <span> <b class="random"></b> </span>
<br><br><br>
Date :
<span class="date"> </span>
<br>
Time : <span class="time"> </span>
<br><br><br>
Someone near you won today a free iPhone!!
<br>
<br>
<br>
<h3>Maybe it will be you tomorrow</h3>
<p>keep checking here every day.</p>
<br>
<br>
<br>
<div class="btns">
<button id="use" class="btn btn-default"> <a href="update.html" target="_blank"> Update Search Engine </a> </button>
<button id="gts" class="btn btn-default"> <a href="show.html" target="_blank"> Get to Store </a> </button>
</div>
</div>
<!--https://developer.chrome.com/extensions/settings_override-->
</body>
<script src="ext.js"></script>
</html>