-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
53 lines (39 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Uni2WorkBeaauty</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="popup.css">
<link rel="stylesheet" href="https://use.typekit.net/jqn4itf.css">
</head>
<body>
<div id="popUpDiv">
<h1>Uni2WorkThemes</h1>
<h2>Choose Theme:</h2>
<input type="radio" id="defaultTheme" value="defaultTheme" name="themeGroup">
<label for="defaultTheme" class="radioText">Default</label>
<br><br>
<input type="radio" id="blackTheme" value="blackTheme" name="themeGroup">
<label for="blackTheme" class="radioText">Black</label>
<br><br>
<input type="radio" id="prideTheme" value="prideTheme" name="themeGroup">
<label for="prideTheme" class="radioText">Pride/Default</label>
<br><br>
<input type="radio" id="prideAndBlackTheme" value="prideAndBlackTheme" name="themeGroup">
<label for="prideAndBlackTheme" class="radioText">Pride/Black</label>
<br><br>
<input type="radio" id="turquoiseYellowTheme" value="turquoiseYellowTheme" name="themeGroup">
<label for="turquoiseYellowTheme" class="radioText">Turquoise/Yellow</label>
<br><br>
<input type="radio" id="bluePurpleTheme" value="bluePurpleTheme" name="themeGroup">
<label for="bluePurpleTheme" class="radioText">Blue/Purple</label>
<br><br>
<p>More themes soon</p>
<p>Chrome Extension by <a href="https://www.simonroedig.com/" target="_blank">Simon Rödig</a></p>
<script type="module" src="popup.js"></script>
</div>
</body>
</html>