-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
131 lines (111 loc) · 3.88 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
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
<!DOCTYPE html>
<!-- Template by html.am -->
<html>
<head>
<meta charset="utf-8">
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<title>Inquiry Activities Preview</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
font-family:Sans-serif;
line-height: 1.5em;
}
#nav {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 230px; /* Width of navigation frame */
height: 100%;
overflow: hidden; /* Disables scrollbars on the navigation frame. To enable scrollbars, change "hidden" to "scroll" */
background: #eee;
}
main {
position: fixed;
top: 0;
left: 230px; /* Set this to the width of the navigation frame */
right: 0;
bottom: 0;
overflow: auto;
background: #fff;
}
.innertube {
margin: 15px; /* Provides padding for the content */
}
p {
color: #555;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul a {
color: darkgreen;
text-decoration: none;
}
/*IE6 fix*/
* html body {
padding: 0 0 0 230px; /* Set the last value to the width of the navigation frame */
}
* html main {
height: 100%;
width: 100%;
}
</style>
<script type="text/javascript">
/* =============================
This script generates sample text for the body content.
You can remove this script and any reference to it.
============================= */
var bodyText=["GitHub caches these pages and may not serve the latest versions.", "If you expect to see these pages look different, refresh at a later time."]
function generateText(sentenceCount){
for (var i=0; i<sentenceCount; i++)
document.write(bodyText[Math.floor(Math.random()*2)]+"</p><p>")
}
</script>
</head>
<body>
<main>
<innertube>
<!-- <h1>Here's a JavaScript test</h1> -->
<!-- <p><script>generateText(10)</script></p> -->
<h1>License</h1>
<p id="license"></p>
<script>jQuery.get('LICENSE.html.txt', function(data) {
$("#license").html(data);
});</script>
</innertube>
</main>
<nav id="nav">
<innertube>
<h3>Heat Transfer — Live!</h3>
<ul>
<li><a href="Heat_Transfer/Cube_Melt/snowMelt.html">Cube Melt</a></li>
<li><a href="Heat_Transfer/Melting_Ice/melting-ice.html">Melting Ice</a></li>
<li><a href="Heat_Transfer/Radiation_Pipe/radiation.html">Radiation Pipe</a></li>
<li><a href="Heat_Transfer/Light_Radiation/lightRadiation.html">Light Radiation</a></li>
</ul>
<h3>Thermodynamics — !!Under Development!!</h3>
<ul>
<li><a href="Thermodynamics/Carnot/Carnot-Engine.html">Carnot</a></li>
<li><a href="Thermodynamics/Mixing/Mixing.html">Mixing</a></li>
<li><a href="Thermodynamics/Piston/cycle-modeler.html">Piston</a></li>
<li><a href="Thermodynamics/Pump_Reversibility/pump-reversibility.html">Pump Reversibility</a></li>
<li><a href="Thermodynamics/Steady_State/steadyState.html">Steady State</a></li>
<li><a href="Thermodynamics/Tempestv2.0/tempest.html">Tempest</a><li>
<li><a href="Thermodynamics/Flammable_Steel/steel.html">Flammable Steel</a></li>
<li><a href="Thermodynamics/Heat_Conduction/main.html">Heat Conduction</a></li>
<li><a href="Thermodynamics/Mixing/liquidfun_test/index.html">LiquidFun Test</a></li>
</ul>
</innertube>
</nav>
</body>
</html>