-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewTab.html
47 lines (47 loc) · 929 Bytes
/
newTab.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>New Tab</title>
<style>
body {
text-align: center;
font-family: "Helvetica Neue", arial;
font-weight: 200;
letter-spacing: 0.4px;
}
h1 {
font-size: 40px;
color: white;
font-weight: normal;
margin-top: 80px;
color: #ccc;
font-weight: 100;
}
.date {
color: #666;
margin-top: 20px;
}
button {
background-color: transparent;
color: #666;
border: none;
cursor: pointer;
}
button:hover {
color: #bbb;
}
rect, text {
cursor: pointer;
}
</style>
</head>
<body>
<h1>Time Flow</h1>
<div id="infographic"></div>
<div class="date">Tracked from <i><span id="start"></span></i> <button id="reset">Reset</button></div>
<script src="js/d3.min.js"></script>
<script src="js/newTab.js"></script>
<script src="js/background.js"></script>
</body>
</html>