-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
66 lines (55 loc) · 1.96 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Globemallow - Internet Sustainability</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="Chart.js" type="text/javascript"></script>
<script src="myscripts.js" defer></script>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div id='title'>
<a class="leftNav" id="iconGB" href="#something"><picture><img src="images/128x128.png" style='height:35px' loading="lazy" alt="Globemallow logo"></picture></a>
<p id="gbTitle">Globemallow</p>
<p class="info-icon">?</p>
<span id="infoTip">New Tab for new comparison</span>
</div>
<di id='titleDiv'>
<p id="chartTitle">Sustainability Development Reports</p>
</di>
<div id='menuBar'>
<a id='siteOver' href="#Home">Site Comparison</a>
<a id='requests' href="#Requests">Sustainable Remediations</a>
</div>
<div id='chartDiv'>
<canvas id="myChart"></canvas>
</div>
<div id='requestDiv' style="display: none">
<!-- changes below -harshit -->
<template id="site-info-template">
<div class="site-info">
<section style="display: flex; align-items: center;">
<h3 class="site-name"></h3>
<button class="site-more">
<svg xmlns="https://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-right-fill" viewBox="0 0 16 16">
<path d="m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z"/>
</svg>
</button>
</section>
<section class="list-sections">
<h4>Images Not Lazy-Loaded:</h4>
<ul class="site-image-list"></ul>
</section>
<section class="list-sections">
<h4>Images Not In Sustainable Format:</h4>
<ul class="site-format-list"></ul>
</section>
<section class="list-sections">
<h4>Images Not Loaded Responsively:</h4>
<ul class="site-responsive-list"></ul>
</section>
</div>
</template>
</div>
</body>
</html>