-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
67 lines (54 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
width: 200px;
height: 150px;
}
.icon {
height: 50px;
margin: 1em;
}
a > .icon:hover {
height: 60px;
}
a {
text-decoration: none;
}
button {
outline-width: 0;
transition: 0.3s all;
background-color: white;
border: 0;
margin: .5em;
}
button:hover {
background-color: #DCDCDC;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}
</style>
</head>
<body>
<span style="width: 100%; text-align: center;">
<h2>MEALclip</h2>
</span>
<span style="display:flex; justify-content: center; width: 100%;">
<!-- <button id="startInstaFollowing">
<img src="img/play.svg" class="icon">
</button> -->
<button id="stopInstaFollowing">
<img src="img/stop.svg" class="icon">
</button>
</span>
<script src="js/jquery.min.js"></script>
<!-- <script type="text/javascript" src="pos.js"></script> -->
<script type="text/javascript" src="js/bundle.js"></script>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>