-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
36 lines (31 loc) · 939 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<style type="text/css">
body {
padding: 10px;
margin: 0px;
border: solid 2px grey;
width: 300px;
border-radius: 5px;
}
div {
font-size: 1.5em;
margin: 25px 5px;
}
input {
clear: both;
float: right;
}
</style>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div><input type="checkbox" id="state">Enable<br></div>
<div class="container"><lable for="background">Background Color: </label><input type="color" value="#333333" id="background"></div>
<div class="container"><lable for="text">Text Color: </label><input type="color" value="#333333" id="text"></div>
<div class="container"><lable for="border">Border Color: </label><input type="color" value="#333333" id="border"></div>
<script src="pop.js"></script>
</body>
</html>