-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (154 loc) · 5.42 KB
/
index.html
File metadata and controls
158 lines (154 loc) · 5.42 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!--
///////////////////////////////////////////////////////////////////////////////////////
This Project (The Log) Is Made by Programmer Patrick Paul....
And all codes are written under a carefull super-version by him.....
By no means one or group of two or more is allowed to Copy/interfere with
the codes at anyhow with out the permission from the Programmer #Patrick Paul....
If codes found stolen Serious measures wil be taken upon the Thief(s)...
For Contacts email The Programmer (Patrick Paul) at :- patrickpaul367@gmail.com or
patrickshao367@gmail.com
THANK YOU FOR READING..... :)
////////////////////////////////////////////////////////////////////////////////////////
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="css/log.css" />
<title>Log Calculator!</title>
</head>
<body id="body">
<div id="all">
<div id="collector">
<div id="beggin_world">
<img
src="icons/start.png"
title="Let's Beggin"
onclick="document.getElementById('beggin_world').style.display = 'none'"
class="beggin"
/>
</div>
<div id="controlPanel">
<span>Control Panel</span>
<button onclick="addModule()" id="modeOne">+ Module</button>
<button onclick="removeModule()" id="modeTwo">x Module</button>
<button onclick="sudic()" id="sudo">+ Const(s)</button>
<button onclick="takeOut();" id="base_cleaner">x Const(s)</button>
<button onclick="calorado++; resertModule();" id="cleanSize">
Clean
</button>
<button onclick="window.open('index.html' , '_self')" id="restart">
Turn Off
</button>
</div>
<div id="logos">
<img src="icons/logo.png" class="logo" />
<br />
<span>TheLog</span>
</div>
<div class="mean">
<label>Log</label>
<sub id="melo">
<input
type="text"
id="x"
onkeyup="swift(); unCheck_calc();"
placeholder="base"
onmouseover="this.placeholder=''"
onmouseout="if(this.value == ''){this.placeholder='base'}"
maxlength="3"
autocomplete="off"
spellcheck="false"
/>
</sub>
<input
type="text"
id="y"
onkeyup="swift(); unCheck_calc();"
placeholder=""
maxlength="7"
autocomplete="off"
spellcheck="false"
/>
<span id="subTheme"></span>
<br />
<br />
<div>
<input type="button" id="calc" value="Calculate" />
</div>
<br />
<br />
<br />
<fieldset id="results">
<legend>Answer</legend>
<span id="model"></span>
</fieldset>
<button class="ding" id="copy">Copy</button>
</div>
<div class="container">
<div class="neural">
<span class="legend">Info Box</span>
</div>
<span id="takeInfo"></span>
</div>
<div class="containerLoder" id="colapa">
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
</div>
<div id="cover"></div>
<div id="myProgress">
<span id="realTime">Progress Bar (Inactive)</span>
<div class="followUp">
<div id="myBar"></div>
</div>
</div>
<div id="cont">
<button onclick="backGround()" id="background">Background</button>
</div>
<div id="dialogoverlay"></div>
<div id="dialogbox">
<div>
<div id="dialogboxhead"></div>
<div id="dialogboxbody"></div>
<div id="dialogboxfoot"></div>
</div>
</div>
</div>
<div id="displayer">
<p>
Oooh! It Looks Like You Have A smaller display Screen!!!
<br />
This Software works only in 15.6 Inch Screen and Above!!!
<br />
Sorry... :(
<br />
<br />
NOTE:
<br />
If Your Screen Is 15.6 Inch Or Above And Your Getting This Error....
<br />
Try To Maximaize Your Windows!!!
<br />
Or Resize It By Icreasing Its Size In Both Height & Width!!!
</p>
</div>
</div>
<script type="text/javascript" src="Javascript/main.js"></script>
</body>
</html>