-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-tab.html
68 lines (65 loc) · 1.46 KB
/
new-tab.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>New tab</title>
<style>
body {
font-size: 20px;
line-height: 1.8em;
}
a {
color: rgb(73, 104, 206);
text-decoration: none;
}
ol {
margin-top: 0;
}
main {
display: flex;
align-items: flex-start;
padding: 150px 0 0 0;
width: 100%;
max-width: 800px;
margin: auto;
}
#link-list-1 {
display: inline-block;
font-size: 24px;
line-height: 2.2em;
flex: 1;
padding-left: 0;
list-style: none;
}
#link-list-2 {
display: inline-block;
font-size: 16px;
line-height: 2.2em;
flex: 1;
padding-left: 0;
list-style: none;
}
aside {
font-size: 20px;
margin: auto;
max-width: 800px;
opacity: 0.5;
}
aside:hover {
opacity: 1;
}
</style>
</head>
<body>
<main>
<ol id="link-list-1"></ol>
<ol id="link-list-2"></ol>
</main>
<aside>
<p id="random-quote"></p>
<a href="/customize.html">Customize this page</a>
</aside>
<script src="./new-tab-config.js"></script>
<script src="./new-tab.js"></script>
</body>
</html>