forked from belowaverage-org/webdows
-
Notifications
You must be signed in to change notification settings - Fork 9
/
popup.html
47 lines (47 loc) · 1.27 KB
/
popup.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>
<head>
<title>FloydCraft WebOS</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1">
<link rel="icon" sizes="500x500" href="webdows/resources/icons/logo.png">
<link class="explorer" href="webdows/resources/explorer/explorer.css" rel="stylesheet" type="text/css">
<link class="explorer" id="theme" href="webdows/resources/explorer/webdows/index.css" rel="stylesheet" type="text/css">
<style>
body {
-webkit-tap-highlight-color:transparent;
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
cursor:default;
background-color:black;
}
#logo {
position:absolute;
top:calc(50% - 80px);
left:calc(50% - 80px);
width:160px;
height:160px;
background-image:url('webdows/resources/icons/bvlg.png');
background-size:100% 100%;
background-color:white;
border-radius:80px;
}
.window {
animation:none !important;
}
.window .ttl,
.window .minmaxclose {
display:none !important;
}
.window.maximized {
height:100% !important;
}
</style>
</head>
<body>
<div id="logo"><img src="webdows/resources/explorer/bglos.png"></div>
</body>
</html>