This repository has been archived by the owner on Jan 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
75 lines (69 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- CSS -->
<style>
body {
margin-left: 15px;
margin-right: 15px;
margin-top: 15px;
min-width: 250px;
min-height: 300px;
transition: .2s;
-moz-transition: .2s;
-webkit-transition: .2s;
-o-transition: .2s;
}
h1 {
font-size: 24px;
text-align: center;
}
h2 {
text-align: center;
}
.logo img {
height: 48px;
}
.modal-content {
padding-bottom: 15px;
background-color: rgb(224, 224, 224);
border-radius: 5px;
transition: .2s;
-moz-transition: .2s;
-webkit-transition: .2s;
-o-transition: .2s;
}
.options {
margin-top: 10px;
}
.options .form-check {
border: black 1px 1px 1px 1px;
border-radius: 3px;
margin: 2px;
padding: 2px;
transition: .2s;
-moz-transition: .2s;
-webkit-transition: .2s;
-o-transition: .2s;
}
</style>
<title>Speedy JW Player</title>
</head>
<body>
<div class="main">
<h1 class="logo">
<img src="images/logo.svg" class="logo-icon" alt="Logo for this extension"><br>
</h1>
<h2>JW Player <span class="version">1.1</span></h2>
</div>
<div class="modal-content">
<h1><p>Speed</p></h1>
<div class="form-check">
</div>
</div>
<script src="js/popup.js"></script>
</body>
</html>