-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
64 lines (55 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<title>Halal Stock Scanner</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="SimpleBar/simplebar.css" />
<link rel="stylesheet" href="font-awesome/font-awesome.min.css">
<link rel="stylesheet" media="all" href="spinkit/spinkit.css">
<link rel="stylesheet" type="text/css" href="popup.css">
<link rel="stylesheet" type="text/css" href="darkmode.css">
<script src="SimpleBar/simplebar.min.js"></script>
<script type="module" src="popup.js"></script>
</head>
<body darkmode>
<div class="sk-chase" style="position:absolute; left:45%; top:40%; display:none">
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
<div class="sk-chase-dot"></div>
</div>
<div id=left>
<div>
<input id=input tabindex="0" maxlength=5 darkmode type=text placeholder="Enter a stock symbol" />
<i id=search-btn darkmode class="fa fa-search fa-lg btn"></i>
<i id=settings-btn darkmode class="fa fa-cog fa-lg btn"></i>
</div>
<span id=symbol darkmode title="Read the description carefully before buying a share">-</span>
<i id=icon-is-correct-or-no class="fa fa-exclamation-triangle fa-2x" style="display: none;" title="We don't recommend buying"></i>
<div style="width:90%">
<hr>
<div id=market darkmode class="info"><span class="value">-</span></div>
<div id=sector darkmode class="info">Sector : <span class="value">-</span></div>
<div id=debt-to-assets darkmode class="info">Total Debt To Total Assets (%) : <span
class="value">-</span>/<span class="max">33.33</span></div>
<div id=cash-receivable-to-total-assets darkmode class="info">Cash and Receivables to Total Assets
(<span class="year">-</span>)
(%) : <span class="value">-</span>/<span class="max">80</span></div>
</div>
</div>
<div id=right>
<div id=description darkmode data-simplebar>
<div id=description-title darkmode>Description</div>
<span class="mtkwatchvalue">-
</span>
<br />
<strong id="shortdescsource">(marketwatch.com)</strong><br /><br />
<span class="secondvalue">-
</span><br />
<strong>(marketbeat.com)</strong>
</div>
</div>
</body>
</html>