forked from bramus/ws1-sws-course-materials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·313 lines (235 loc) · 7.22 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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Webscripting1 — Serverside Webscripting</title>
<meta name="description" content="Webscripting1 — Serverside Webscripting">
<meta name="author" content="Bram(us) Van Damme - ikdoeict.be">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta http-equiv="cleartype" content="on" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<style>
/* clearfix */
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
/* main overrides */
html, body {
overflow: auto;
}
#reveal .intro section footer {
position: static;
}
/* intro */
#reveal .intro {
max-width: 1200px;
padding: 20px 0px;
text-align: center;
margin: 0 auto 0;
}
#reveal .intro > section {
width: 100%;
/* min-height: 600px; */
}
#reveal .intro ul.thumbs {
width: 100%;
padding: 0;
margin: 0 auto 50px;
list-style: none;
}
#reveal .intro ul.thumbs li {
width: 20%;
float: left;
text-align: center;
margin: 0;
}
#reveal .intro ul.thumbs li.notyet {
opacity: 0.3;
}
#reveal .intro ul.thumbs li img {
max-width: 100%;
}
#reveal #about {
position: fixed;
height: 415px;
right: 0;
bottom: 25px;
overflow: hidden;
width: 30px;
padding: 15px 0 0 20px;
-webkit-box-shadow: -10px 0px 25px #1c1e20;
-moz-box-shadow: -10px 0px 25px #1c1e20;
box-shadow: -10px 0px 25px #1c1e20;
z-index: 99999;
opacity: 0.8;
background: rgba(46,49,51,0.9);
}
#reveal #about:hover {
width: 240px;
opacity: 1;
}
#reveal #about p {
font-size: 15px;
line-height: 1.2;
margin-bottom: 24px;
text-align: left;
opacity: 0.8;
width: 230px;
}
#reveal h1, #reveal h3, #reveal #about {
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-ms-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease;
}
@media (max-width: 1330px) {
#reveal h1 {
font-size: 100px;
}
#reveal h3 {
font-size: 40px;
}
}
@media (max-width: 1200px) {
#reveal #about {
height: auto;
position: static;
width: 90%;
margin: 25px auto 25px;
padding: 15px;
}
#reveal #about:hover {
width: 90%;
}
#reveal #about p {
width: 100%;
margin-bottom: 12px;
}
#reveal .intro ul.thumbs li {
width: 25%;
}
}
@media (max-width: 1100px) {
#reveal h1 {
font-size: 80px;
}
#reveal h3 {
font-size: 30px;
}
}
@media (max-width: 960px) {
#reveal .intro ul.thumbs li {
width: 33%;
}
}
@media (max-width: 870px) {
#reveal h1 {
font-size: 100px;
}
#reveal h3 {
font-size: 40px;
}
}
@media (max-width: 750px) {
#reveal .intro ul.thumbs li {
width: 50%;
}
}
@media (max-width: 650px) {
#reveal h1 {
margin-top: 50px;
}
}
@media (max-width: 480px) {
#reveal h1 {
font-size: 80px;
}
#reveal h3 {
font-size: 30px;
}
}
@media (max-width: 460px) {
#reveal .intro ul.thumbs li {
width: 100%;
}
#reveal .intro section footer {
font-size: 50%;
}
#reveal #about p {
font-size: 13px;
}
}
@media (max-width: 380px) {
#reveal h1 {
font-size: 60px;
}
#reveal h3 {
font-size: 20px;
}
#reveal .intro section footer {
font-size: 40%;
}
#reveal #about {
width: 80%;
}
#reveal #about p {
font-size: 13px;
}
}
</style>
</head>
<body>
<div id="reveal">
<div class="intro">
<section>
<h1>Serverside Webscripting</h1>
<h3>Professional Bachelor ICT — 2014-2015</h3>
<ul class="thumbs clearfix">
<li><a href="00.intro.html" title="00.intro"><img src="assets/index/00.jpg" alt="00.intro" title="00.intro" /></a></li>
<li><a href="01.php.intro.html" title="01.php.intro"><img src="assets/index/01.jpg" alt="01.php.intro" title="01.php.intro" /></a></li>
<li><a href="02.client.server.html" title="02.client.server"><img src="assets/index/02.jpg" alt="02.client.server" title="02.client.server" /></a></li>
<li><a href="03.forms.html" title="03.forms"><img src="assets/index/03.jpg" alt="03.forms" title="03.forms" /></a></li>
<li><a href="04.classes.html" title="04.classes"><img src="assets/index/04.jpg" alt="04.classes" title="04.classes" /></a></li>
<li><a href="05.files.and.folders.html" title="05.files.and.folders"><img src="assets/index/05.jpg" alt="05.files.and.folders" title="04.files.and.folders" /></a></li>
<li class="notyet"><a href="06.code.organization.html" title="06.code.organization"><img src="assets/index/06.jpg" alt="06.code.organization" title="06.code.organization" /></a></li>
<li class="notyet"><a href="07.databases.html" title="07.databases"><img src="assets/index/07.jpg" alt="07.databases" title="07.databases" /></a></li>
<li class="notyet"><a href="08.templates.html" title="08.templates"><img src="assets/index/08.jpg" alt="08.templates" title="08.templates" /></a></li>
<li class="notyet"><a href="09.persistence.html" title="09.persistence"><img src="assets/index/09.jpg" alt="009.persistence" title="09.persistence" /></a></li>
</ul>
<footer>
<em><a href="http://www.ikdoeict.be/">ikdoeict.be</a> — <a href="mailto:[email protected]">[email protected]</a></em>
</footer>
</section>
</div>
<div id="about">
<p>This collection of slides form the course materials for the <strong>Webscripting1 — Serverside Webscripting</strong> course, part of the <a href="http://www.ikdoeict.be/">Professional Bachelor ICT</a> study programme, taught at <a href="http://www.odisee.be/">Odisee</a>, Ghent, Belgium.</p>
<p>The materials were developed by Bram(us) Van Damme, lecturer ICT at Odisee, who blogs over at <a href="http://www.bram.us/">bram.us</a> and Twitters as <a href="http://www.twitter.com/bramus">@bramus</a>.</p>
<p>The materials may be used freely, as long as credit to Bramus is present and the top right graphical link to <a href="http://www.ikdoeict.be/">ikdoeict.be</a> remains in place.</p>
<p>Suggestions and additions may be mailed to Bramus, or sent via <a href="https://github.com/bramus/ws1-sws-course-materials">a pull request on GitHub</a>.</p>
</div>
<!-- ikdoeict.be Link -->
<a href="http://www.ikdoeict.be/" title="ikdoeict.be" id="ikdoeict">ikdoeict.be</a>
</div>
</body>
</html>