-
Notifications
You must be signed in to change notification settings - Fork 280
/
default.html
69 lines (57 loc) · 1.35 KB
/
default.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
<html>
<head>
<style>
body {
font-family: Arial, Verdana, sans-serif;
}
.outer {
display: table;
position: absolute;
height: 90%;
width: 98%;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.inner {
margin-left: auto;
margin-right: auto;
text-align: center;
width: 100%;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
background-color: whitesmoke;
}
::-webkit-scrollbar-thumb {
border-radius: 0px;
height: 8px;
width: 8px;
background-color: #666;
}
::-webkit-scrollbar-thumb:hover {
background-color: #999;
height: 8px;
width: 8px;
}
::-webkit-scrollbar-thumb:active {
background-color: #999;
width: 8px;
height: 8px;
}
</style>
</head>
<body>
<title>Polar Bookshelf</title>
<div class="outer">
<div class="middle">
<div class="inner">
<h2>Polar Bookshelf</h2>
<img src='icon.ico' width='350' height='350'>
</div>
</div>
</div>
</body>
</html>