-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
83 lines (64 loc) · 1.87 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
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colorblind Colors</title>
<link rel="stylesheet" href="css.css">
</head>
<body>
<h1 class="center">
Colorblind Colors
</h1>
<div id="wrapper">
<button class="center2" id="off">Turn off extension</button>
</div>
<p class="center">Pick a color scheme:</p>
<div class="box">
<div class="float-child">
<p id="scheme1p">Color Scheme 1</p>
<p id="scheme1text">text</p>
<button id="scheme1">choose color scheme 1</button>
</div>
<div class="float-child">
<p id="scheme2p">Color Scheme 2</p>
<p id="scheme2text">text</p>
<button id="scheme2">choose color scheme 2</button>
</div>
<div class=" float-child">
<p id="scheme3p">Color Scheme 3</p>
<p id="scheme3text">text</p>
<button id="scheme3">choose color scheme 3</button>
</div>
<div class="float-child">
<p id="scheme4p">Color Scheme 4</p>
<p id="scheme4text">text</p>
<button id="scheme4">choose color scheme
4</button>
</div>
<div class="float-child">
<p id="scheme5p">Color Scheme 5</p>
<p id="scheme5text">text</p>
<button id="scheme5">choose color scheme 5</button>
</div>
<div class="float-child">
<p>Color Scheme 6</p>
<p id="scheme6text">text</p>
<button id="scheme6">choose color scheme 6</button>
</div>
<div class="float-child">
<p>Color Scheme 7</p>
<p id="scheme7text">text</p>
<button id="scheme7">choose color scheme 7</button>
</div>
<div class="float-child">
<p>Color Scheme 8</p>
<p id="scheme8text">text</p>
<button id="scheme8">choose color scheme 8</button>
</div>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>