forked from jbendercode/lat-tab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewtab.html
61 lines (61 loc) · 2.12 KB
/
newtab.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
<html>
<head>
<title>New LatTab 2.0</title>
<link rel="stylesheet" href="newtab.css">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<script type="text/javascript" src="/lib/jquery-2.0.3.min.js"></script>
</head>
<body>
<!-- TODO add: https://en.wikipedia.org/wiki/List_of_Greek_and_Latin_roots_in_English -->
<div id="text-container">
<div id="search-container">
<span id="search-icon">
<img src="./images/search.svg" alt="" />
</span>
<div id="search-and-exchange">
<input id="search-roots-and-proverbs" placeholder="Search latin roots" autocomplete="off"></input>
<span id="exchange-icon">
<img src="./images/exchange.svg" alt="" />
</span>
</span>
</form>
</div>
<div id="phrase" alt="phrase"></div>
<div id="meaning" alt="meaning"></div>
<div id="example" alt="example"></div>
</div>
<div class="change">
<div id="refresh" class="refresh">
<img src="./images/refresh.png" alt="refresh button" />
</div>
</div>
<div class="switch-mode">
<div id="phrasesSelect" class="mode">
<span class="refresh-type">Proverbs</span>
</div>
<div id="rootsSelect" class="mode">
<span class="refresh-type">Roots</span>
</div>
</div>
<div class="current-options">
<div id="count"></div>
<div id="favorite">
<img class="heart-light" src="./images/heart-light.svg" alt="" />
<img class="heart-solid" src="./images/heart-solid.svg" alt="" />
</div>
</div>
<div id="footer">
<div id="author">
<a class="title" href="https://github.com/shadoath/lat-tab">LatTab</a> - Contributors
</div>
<div class="editors">
<span class="title roots">
<a href="https://github.com/shadoath" target="none">Shadoath</a>
</span>&
<a href="https://github.com/jbendercode" target="none">JbenderCode</a>
</div>
</div>
<script type="module" src="newtab.js"></script>
<script src="options.js"></script>
</body>
</html>