forked from joshuabenuck/wiki-electrified
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectrified.html
39 lines (38 loc) · 1000 Bytes
/
electrified.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
<!DOCTYPE html>
<html>
<head>
<title>Electified Wiki</title>
<style type="text/css">
html, body, webview {
margin: 0; padding: 0; width: 100%; height: 100%;
}
#wikiBar {
border-top: 1px solid #3d3c43;
box-shadow: inset 0px 0px 7px rgba(0, 0, 0, 0.8);
background: #eeeeee url("./noise.png");
height: 100%
}
.wikiIcon {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.selected {
box-shadow: 0px 0px 3px 3px #FFFFAE;
}
</style>
</head>
<body>
<div id="wikiBar">
</div>
</body>
<script>window.$ = window.jQuery = require('./jquery-2.2.4.min.js');</script>
<!--script type="text/javascript" src="./jquery-2.2.4.min.js"></script-->
<script type="text/javascript" src="./electrified.js"></script>
</html>