-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (80 loc) · 5.04 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<!--[if lt IE 7]><html class="no-js ie6 ie oldie" lang="en"><![endif]-->
<!--[if IE 7]><html class="no-js ie7 ie oldie" lang="en"><![endif]-->
<!--[if IE 8]><html class="no-js ie8 ie oldie" lang="en"><![endif]-->
<!--[if IE 9]><html class="no-js ie9 ie" lang="en"><![endif]-->
<!--[if gt IE 9]><html class="no-js" lang="en"><!--<![endif]-->
<!-- ADD: manifest="thistothat.manifest" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>This to That</title>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="lib/img/icon.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="lib/img/icon_2x.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="lib/img/icon-72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="lib/img/icon-72_2x.png" />
<link href="lib/img/startup.png" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image" />
<link href="lib/img/startup_2x.png" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="lib/img/startup-568.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="lib/img/startup-tablet.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image" />
<link href="lib/img/startup-tablet-l.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image" />
<link href="lib/img/startup-tablet_2x.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="lib/img/startup-tablet-l_2x.png" media="(device-width: 768px) and (device-height: 1024px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link rel="stylesheet" href="lib/min/styles.css"/>
<script src="lib/conversions.js"></script>
<script src="lib/min/libraries.min.js"></script>
<script src="lib/min/application.min.js"></script>
</head>
<body>
<!-- Install Message -->
<div id="install">
<h1 id="logo">This to That</h1>
<p class="message">To install <strong>thistothat</strong>, tap the icon below and select "Add to Home Screen" <i class="fa fa-arrow-circle-down"></i></p>
</div>
<!-- App Begin -->
<section class="unit-category">
<nav>
<ul></ul>
</nav>
</section>
<section class="stage">
<button type="button" class="toggle"><i class="fa fa-reorder"></i></button>
<section class="conversions">
<div class="convert-from">
<span class="value"></span>
<span class="unit"></span>
</div>
<div class="convert-to">
<span class="value"></span>
<span class="unit"></span>
</div>
</section>
<section class="calc">
<button type="button" class="function" data-func="clear">c</button>
<button type="button" class="function" data-func="inverse">±</button>
<button type="button" class="operator" data-operation="divide">÷</button>
<button type="button" class="operator" data-operation="multiply">×</button>
<button type="button" class="digit">7</button>
<button type="button" class="digit">8</button>
<button type="button" class="digit">9</button>
<button type="button" class="operator" data-operation="subtract">−</button>
<button type="button" class="digit">4</button>
<button type="button" class="digit">5</button>
<button type="button" class="digit">6</button>
<button type="button" class="operator" data-operation="add">+</button>
<button type="button" class="digit">1</button>
<button type="button" class="digit">2</button>
<button type="button" class="digit">3</button>
<button type="button" class="evaluate">=</button>
<!-- <button type="button" class="function" data-func="fraction"><span class="pre">1</span>⁄<span class="post">x</span></button> -->
<button type="button" class="function" data-func="percent">%</button>
<button type="button" class="digit">0</button>
<button type="button" class="digit decimal">.</button>
</section>
</section>
</body>
</html>