-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
128 lines (104 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Gumshoe</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
html {
overflow-y: auto;
scroll-behavior: smooth;
}
/* Sets body width */
.container {
max-width: 90em;
width: 88%;
margin-left: auto;
margin-right: auto;
}
/**
* Grid
*/
.grid {
display: grid;
grid-gap: 2em;
grid-template-columns: 30% 70%;
}
#my-awesome-nav {
position: fixed;
}
#my-awesome-nav li.active {
background-color: black;
}
#my-awesome-nav li.active a {
color: white;
}
/**
* Sections
*/
.section {
color: #ffffff;
height: 95vh;
margin: 0;
padding: 2em;
}
.section-small {
height: 50vh;
}
.eenie {
background-color: #0088cc;
}
.meenie {
background-color: rebeccapurple;
}
.miney {
background-color: #272727;
}
.mo {
background-color: #f42b37;
}
.tiger {
background-color: #e5e5e5;
color: #000000;
}
</style>
</head>
<body id="top">
<div class="container">
<div class="grid">
<nav>
<ul id="my-awesome-nav">
<li><a href="#eenie">Eenie</a></li>
<li><a href="#meenie">Meenie</a></li>
<li><a href="#miney">Miney</a></li>
<li><a href="#mo">Mo</a></li>
<li><a href="#tiger">Tiger</a></li>
</ul>
</nav>
<main>
<div class="section eenie">
<h2 id="eenie">Eenie...</h2>
</div>
<div class="section meenie">
<h2 id="meenie">Meenie...</h2>
</div>
<div class="section miney">
<h2 id="miney">Miney...</h2>
</div>
<div class="section mo">
<h2 id="mo">Mo...</h2>
</div>
<div class="section section-small tiger">
<h2 id="tiger">Tiger...</h2>
</div>
<p><a data-scroll href="#top">Back to the top</a></p>
</main>
</div>
</div>
<!-- Javascript -->
<script src="dist/gumshoe.js"></script>
<script>
var spy = new Gumshoe('#my-awesome-nav a');
</script>
</body>
</html>