mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-14 04:20:00 -04:00
118 lines
No EOL
2.8 KiB
HTML
118 lines
No EOL
2.8 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>vibeOS</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Open+Sans&family=Inconsolata&family=Roboto&family=Roboto+Mono&display=swap');
|
|
|
|
body {
|
|
background: black;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#mCanvas, #webViews, #overlay {
|
|
width: 1280px;
|
|
height: 720px;
|
|
display: block;
|
|
position: absolute;
|
|
background: transparent;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
z-index: 10;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#overlay {
|
|
z-index: 20;
|
|
}
|
|
|
|
#webViews {
|
|
z-index: 21;
|
|
}
|
|
|
|
.spinner {
|
|
background-color: #282c3b;
|
|
width: 40px;
|
|
height: 40px;
|
|
position: absolute;
|
|
display: block;
|
|
margin: auto;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
|
|
animation: sk-rotateplane 1.2s infinite ease-in-out;
|
|
}
|
|
|
|
.webview {
|
|
position: relative;
|
|
display: block;
|
|
z-index: 10;
|
|
border: 0;
|
|
border-radius: 8px;
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
background: white;
|
|
}
|
|
|
|
@-webkit-keyframes sk-rotateplane {
|
|
0% { -webkit-transform: perspective(120px) }
|
|
50% { -webkit-transform: perspective(120px) rotateY(180deg) }
|
|
100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }
|
|
}
|
|
|
|
@keyframes sk-rotateplane {
|
|
0% {
|
|
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
|
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
|
|
} 50% {
|
|
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
|
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
|
|
} 100% {
|
|
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
|
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas tabindex='0' width='1280' height='720' id='mCanvas' contenteditable='true'></canvas>
|
|
<div id='overlay'></div>
|
|
<!--<div id='webViews'></div>-->
|
|
|
|
<div class='spinner-wrapper'><div class='spinner'></div></div>
|
|
<script src='scripts/main.js'></script>
|
|
<script src='scripts/constructors.js'></script>
|
|
<script src='scripts/downscale.js'></script>
|
|
|
|
<script src='scripts/v86_all.js'></script>
|
|
<script src='scripts/v86.js'></script>
|
|
|
|
<script src='scripts/web.js'></script>
|
|
|
|
<script src='scripts/jsTerm.js'></script>
|
|
<script src='scripts/vibeOS-config.js'></script>
|
|
|
|
<!-- demos -->
|
|
|
|
<script src='scripts/wallpaperPicker.js'></script>
|
|
<script src='scripts/transcript.js'></script>
|
|
<script src='scripts/ct.js'></script>
|
|
<script src='scripts/linuxterm.js'></script>
|
|
<script src='scripts/textEditor.js'></script>
|
|
<script src='scripts/jst_standardutils.js'></script>
|
|
|
|
<!-- init last -->
|
|
|
|
<script src='scripts/appMan.js'></script>
|
|
<script src='scripts/wallpaper.js'></script>
|
|
|
|
</body>
|
|
</html> |