-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·82 lines (70 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8" />
<title>CSS Tardis</title>
<link href="stylesheets/style.css" rel="stylesheet" type="text/css" />
<link href="stylesheets/tardis.css" rel="stylesheet" type="text/css"></head>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<!-- Load tardis.js to be able to resize the triangles -->
<script src="js/tardis.js"></script>
<body>
<!-- Night sky animations from http://www.script-tutorials.com/night-sky-with-twinkling-stars/ -->
<!-- Start of Night Sky -->
<div class="stars"></div>
<div class="twinkling"></div>
<div class="clouds"></div>
<!-- End of Night sky -->
<div class="tardisContainer">
<!-- Start of Tardis -->
<div class="tardis">
<!-- Start of the top part of the tardis -->
<div class="TriMini"></div>
<div class="light">
<div class="bulbEffect"></div>
<div class="bulb"></div>
</div>
<div class="TopMini"></div>
<div class="triangle"></div>
<div class="TopRec"></div>
<div class="CenterRec"></div>
<div class="police">
<div class="polBorder"></div>
</div>
<!-- End of the top part of the tardis -->
<!-- Start of the doors for the Tardis -->
<div class="doors">
<div class="left">
<div class="filled windows window0">
<div class="vertical0"></div>
<div class="horizontal"></div>
<div class="vertical1"></div>
</div>
<div class="size filled notice"></div>
<div class="size border square0"></div>
<div class="size border square1"></div>
</div>
<div class="middle"></div>
<div class="right">
<div class="filled windows window1">
<div class="vertical0"></div>
<div class="horizontal"></div>
<div class="vertical1"></div>
</div>
<div class="size border square2"></div>
<div class="size border square3"></div>
<div class="size border square4"></div>
</div>
</div>
<!-- End of the doors for the Tardis -->
<!-- Start Lower part of the tardis -->
<div class="TriFoot"></div>
<div class="foot"></div>
<!-- End Lower part of the tardis -->
</div>
<!-- End of Tardis -->
</div>
</body>
<!-- Using ElementQuery -->
<script src="js/elementQuery.min.js"></script>
</html>