-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-azul.html
244 lines (218 loc) · 8.61 KB
/
index-azul.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>IML 400 Current</title>
<script>
var step = true;
function animate(whatever) {
if ( step ){
whatever.style.color="yellow";
}
else{
whatever.style.color="lime";
}
step = !step;
setTimeout(function () {
animate(whatever);
}, 2000);
}
window.onload = function () {
var mydiv = document.getElementById("hello");
animate(mydiv);
}
</script>
<style>
body{
margin:0;
color: #222;
background: #fefefe url('http://www.tinyiconfactory.com/images/icons/82394.png') fixed 100% 0%;
/*min-width:1220px;*/
}
}
a{
font-weight:bold;
text-decoration:none;
color:blue;
}
a:link, a:visited, a:active{
font-weight:bold;
text-decoration:none;
color:blue;
}
a:hover{
text-decoration:underline;
}
.hi{
text-align:center;
margin:40px 0;
background:blue;
}
#hello{
font-weight: bold;
font-size: 5em;
color: lime;
-webkit-transition: color 0.9s; /* For Safari 3.1 to 6.0 */
transition: color 0.9s;
}
#header{
/*background:#ededed;*/
margin:0;
padding:10px 40px;
}
#header h3{
margin:0;
padding:0px;
}
#wrapper{
max-width: 820px;
/*max-width: 720px;*/
margin:0px auto;
}
#footer{
margin:0;
position:fixed;
bottom:0;
padding:0px 40px;
}
#student-websites, #assignments, #links{
width:272px;
float:left;
}
ol{
padding: 0;
margin: auto;
}
#wash{
position:fixed;
width:100%;
height:100%;
background:rgba(255,255,255,0.6);
z-index:-1;
}
</style>
</head>
<body>
<div id="wash"></div>
<div id="header">
<h3>Time Machine: <a href="https://github.com/blackaller/IML-400">GitHub</a> - <a href="fall-2012/">Fall 2012</a> - <a href="spring-2013/">Spring 2013</a> - <a href="spring-2014/">Spring 2014</a></h3>
</div>
<div id="wrapper">
<div class="hi" id="hello">
Hello World
</div>
<h3>Welcome to IML 400 Spring 2015 [ <a href="syllabus-spring-2015.html" onclick="alert('this is a work in progress')">Syllabus</a> ]</h3>
<h3>Lecturer <a href="http://blacklog.mitplw.com/" target="blank">Luis Blackaller</a><br />
Teacher Assistant <a href="http://rosemarycomella.com/" target="blank">Rosemary Comella</a></h3>
<div style="">
<div id="student-websites">
<h3>Students</h3>
<ol>
<li><a href="" onClick="alert('Coming soon!')">Charmaine Regina Asril Lee</a></li>
<li><a href="" onClick="alert('Coming soon!')">Austin Yujun Chee</a></li>
<li><a href="" onClick="alert('Coming soon!')">Harry Thomas Guigui</a></li>
<li><a href="" onClick="alert('Coming soon!')">Gabrielle Marie Kanellos</a></li>
<li><a href="" onClick="alert('Coming soon!')">Shannon Loyola Kraemer</a></li>
<li><a href="" onClick="alert('Coming soon!')">Eric Young Liu</a></li>
<li><a href="" onClick="alert('Coming soon!')">Kevin Matthew McGowan</a></li>
<li><a href="" onClick="alert('Coming soon!')">Michelle Korst Meyer</a></li>
<li><a href="" onClick="alert('Coming soon!')">Juliette Marie Pisani</a></li>
<li><a href="" onClick="alert('Coming soon!')">Anna Beth Schwartz</a></li>
<li><a href="" onClick="alert('Coming soon!')">Anna Katherine Skelsey</a></li>
<li><a href="" onClick="alert('Coming soon!')">Christopher Brady Thomas</a></li>
<li><a href="" onClick="alert('Coming soon!')">Kevin Hikaru Tsukii</a></li>
</ol>
</div>
<div id="assignments">
<h3>Assignments</h3>
<ol>
<li><a href="assignment-1.html">HTML & CSS Review</a></li>
</ol>
</div>
<div id="links">
<h3>Resources</h3>
<ol>
<li>
[Very] <a href="links.html" target="blank">Useful Links</a>
</li>
<li>
<a href="storm-setup.html">Setting up Storm</a>
</li>
<li>
<a href="http://www.sublimetext.com" target="blank">Sublime Text Editor</a>
</li>
<li>
<a href="http://www.goodreads.com/review/list/2790197-black?shelf=iml-400">Recommended Books</a>
</li>
<li>
<a href="http://developers.google.com/chrome-developer-tools/" target="blank">Chrome Developer Tools</a>
</li>
<li>
<a href="http://eloquentjavascript.net" target="blank">Eloquent Javascript</a>
</li>
<li>
<a href="http://diveintohtml5.info/" target="blank">Dive into HTML5</a>
</li>
<li>
<a href="http://jquery.com/" target="blank">JQuery</a>
</li>
<li>
<a href="http://jqueryui.com/" target="blank">JQuery UI</a>
</li>
<li>
<a href="http://jsfiddle.net/" target="blank">JSFiddle</a>
</li>
<li>
<a href="http://sass-lang.com" target="blank">SASS CSS Preprocessor</a>
</li>
<li>
<a href="http://gruntjs.com" target="blank">Grunt JS Task Runner</a>
</li>
<li>
<a href="http://voxeljs.com" target="blank">VoxelJS</a>
</li>
<li>
<a href="http://html5boilerplate.com/" target="blank">HTML5 Boilerplate</a>
</li>
<li>
<a href="http://prototypejs.org/" target="blank">Prototype</a>
</li>
<li>
<a href="http://script.aculo.us/" target="blank">Scriptaculous</a>
</li>
<li>
<a href="http://modernizr.com/" target="blank">Modernizr</a>
</li>
<li>
<a href="http://twitter.github.com/bootstrap/" target="blank">Bootstrap</a> and <a href="http://getbootstrap.com/" target="blank">Get Bootstrap</a>
</li>
<li>
<a href="http://angularjs.org/" target="blank">AngularJS</a>
</li>
<li>
<a href="http://backbonejs.org/" target="blank">BackboneJS</a>
</li>
<li>
<a href="http://stolksdorf.github.com/Parallaxjs/" target="blank">Parallax JS</a>
</li>
<li>
<a href="http://paperjs.org/" target="blank">Paper JS</a>
</li>
<li>
<a href="http://d3js.org/" target="blank">D3 JS</a>
</li>
<li>
<a href="http://raphaeljs.com/" target="blank">Raphael JS</a>
</li>
<li>
<a href="http://nodejs.org" target="blank">Node JS</a>
</li>
<li>
<a href="http://leafletjs.com" target="blank">Leaflet JS</a>
</li>
</0l>
</div>
</div>
</div>
</body>
</html>