DremJS-Market/index-enter.html

84 lines
1.8 KiB
HTML

<html>
<head>
<title>DremJS Market</title>
<style>
.box-blue {
margin:0 0 5px;
overflow:hidden;
padding:5px;
background-color:#FFFFFF;
border:1px solid #8b8b8b;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.box-blue-emb-left {
margin:0 0 0px;
overflow:hidden;
padding:0px;
background-color:#009ac7;
border-radius: 5px;
position: absolute;
left: 10px;
width: 48%;
text-align: center;
}
.box-blue-emb-right {
margin:0 0 0px;
overflow:hidden;
padding:0px;
background-color:#009ac7;
border-radius: 5px;
position: absolute;
right: 10px;
width: 48%;
text-align: center;
}
.buttonWrapper {
width:95%;
margin: auto;
text-align: center;
}
.rel-uemb {
position: relative;
left: 25px;
}
.rel-emb {
position: absolute;
top: 2px;
}
.cwhite {
color: #FFFFFF;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
img {
padding: 0;
display: block;
margin: 0 auto;
max-height: 100%;
max-width: 100%;
}
</style>
</head>
<body>
<script>
function clickSound(page) {
window.globalPage=page;
var audio = new Audio('https://github.com/sparrdrem/DremJS-Market/blob/master/select.wav?raw=true');
audio.play();
setTimeout(gotoPage, 2000);
}
function gotoPage(page) {
window.location.href = globalPage;
}
</script>
<div class="box-blue">
<iframe src="index-apps.html" width="98%" height="100%" frameborder="0"></iframe>
</div>
</body>
</html>