-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
39 lines (37 loc) · 880 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
37
38
<!doctype html>
<html>
<head>
<style>
body {
background-color: #C6C465;
font-family: Arial, sans-serif;
padding: 20px;
display: flex;
flex-flow: column nowrap;
font-weight: bold;
min-width: 200px
}
div {
margin-bottom: 10px;
display: flex;
flex-flow: row nowrap;
gap: 10px
}
</style>
</head>
<body>
<div>
<label for="foodSelect" id="foodSelectLabel"></label>
<input type="checkbox" id="foodSelect" />
</div>
<div>
<label for="moreInfos" id="moreInfosLabel"></label>
<input type="checkbox" id="moreInfos" />
</div>
<div>
<label for="competitionRatio" id="competitionRatioLabel"></label>
<input type="checkbox" id="competitionRatio" />
</div>
<script src="popup.js"></script>
</body>
</html>