forked from dchest/minimal-newtab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
117 lines (99 loc) · 1.84 KB
/
home.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
<html>
<head>
<title>New Tab</title>
<style type="text/css">
html, body {
height: 100%; margin: 0; padding: 0;
font: 13pt/1.5 "Helvetica Neue", Arial, sans-serif;
}
.wrapper {
display: table;
height: 93%;
margin: 0 auto;
}
.cell {
display: table-cell;
vertical-align: middle;
text-align: center;
}
ul {
list-style: none;
padding: 0;
margin: 10px 0;
}
.group-title {
color: #aaa;
text-transform: uppercase;
font-size: 13px;
}
a:link {
color: #333;
text-decoration: none;
padding: 3px 10px;
}
a:visited {
color: #333;
}
a:hover {
background-color: #f4f4f4;
color: #555;
}
a:active {
background-color: #777;
color: #fff;
}
.count {
color: #cc0000;
}
.zero {
color: #ddd;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #121212;
}
.bookmarklink {
color: #fff;
text-decoration: none;
padding: 3px 10px;
opacity: 87%;
}
a:link {
color: #fff;
text-decoration: none;
padding: 3px 10px;
opacity: 87%;
}
a:visited {
color: #fff;
opacity: 87%;
}
a:hover {
background-color: #424242;
color: #fff;
opacity: 75%;
}
a:active {
background-color: #777;
color: #fff;
}
.count {
color: #cc0000;
}
.zero {
color: #ffff;
opacity: 38%;
}
}
</style>
</head>
<body>
<div class="wrapper">
<div class="cell">
<ul id="bookmarks">
</ul>
</div>
</div>
<script src="home.js"></script>
</body>
</html>