-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_current.html
177 lines (144 loc) · 3.78 KB
/
index_current.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Required -->
<meta charset="utf-8">
<!-- Title -->
<title>TTT - Travel Through Time</title>
<!-- CSS -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- JS -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/timeline.js"></script>
<style>
html {
box-sixing: border-box;
font-family: Arial, Helvetica, sans-serif;
background-color: #000000
}
div {
color: white;
}
#wrap-navbar {
width: 100%; /* Spans the width of the page */
height: 50px;
margin: 0; /* Ensures there is no space between sides of the screen and the menu */
z-index: 99; /* Makes sure that the menu remains on top of other page elements */
position: relative;
list-style-type: none;
}
.navbar {
height: 50px;
display: table;
padding: 0;
margin: auto;
/* Ensures that the menu doesn’t affect other elements */
border-right: 1px solid #111212;
}
.navbar li {
height: auto;
width: 150px; /* Each menu item is 150px wide */
float: left; /* This lines up the menu items horizontally */
text-align: center; /* All text is placed in the center of the box */
list-style: none; /* Removes the default styling (bullets) for the list */
font: normal 17px/1.2em Arial, Verdana, Helvetica;
padding: 0;
margin: 0;
}
.navbar a {
padding: 14.8px 0px; /* Adds a padding on the top and bottom so the text appears centered vertically */
text-decoration: none; /* Removes the default hyperlink styling. */
color: #f2f2f2; /* Text color is white */
display: block;
border-bottom: 2px solid transparent;
transition: 0.2s;
}
.navbar li:hover a {
border-bottom: 2px solid #fff;
}
.navbar li ul {
display: none; /* Hides the drop-down menu */
height: auto;
margin: 0; /* Aligns drop-down box underneath the menu item */
padding: 0; /* Aligns drop-down box underneath the menu item */
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.navbar li ul li {
background-color: #f9f9f9;
}
.navbar li ul li a {
color: black;
}
.navbar li ul li a:hover {
background-color: #ddd;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.button {
font-size: 20px;
padding: 15px 40px;
border-radius: 20px;
border: 2px solid white;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
position: fixed;
bottom: 80px;
right: 80px;
text-decoration: none;
}
.button:hover {
background-color: #c6c6c6;
}
</style>
</head>
<body>
<div class="html-historic-element",
animation-type="fade",
animation-direction="top",
x-value="0",
y-value="0",
year="1990",
layer="1"
id="wrap-navbar"
>
<ul class="navbar">
<li><a href=""><img src="logo.png" height="15"/></a></li>
<li><a href="">Mac</a></li>
<li><a href="">iPad</a></li>
<li><a href="">iPhone</a></li>
<li><a href="">Watch</a></li>
<li><a href="">TV</a></li>
<li><a href="">Music</a></li>
<li><a href="">Support</a></li>
</ul>
</div>
<div class="html-historic-element",
animation-type="fade",
animation-direction="top",
x-value="0",
y-value="0",
year="1990",
layer="1",
id="wrap-navbar"
>
<img src="imac.png" class="center">
</div>
<div class="html-historic-element",
animation-type="fade",
animation-direction="top",
x-value="0",
y-value="0",
year="1990",
layer="1"
id="wrap-navbar"
>
<div>
<a href="" class="button" style="color:white">Buy Now ></a>
</div>
</body>
</html>