all commits from server

This commit is contained in:
Michael Murtaugh
2019-06-13 11:10:43 +02:00
parent 96d1dd2883
commit 4ad25c71cc
11 changed files with 516 additions and 0 deletions

44
test/index5.html Normal file
View File

@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<title>wikiframe test 3</title>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<style type="text/css">
body {
overflow: auto;
background: pink;
}
#map {
position: absolute;
left: 0; top: 0;
bottom: 0; right: 0;
z-index: 0;
}
#map a {
position: relative;
left: 200px;
top: 200px;
}
#page {
position: absolute;
left: 0; right: 0;
top: 60vh;
height: 100vh;
}
#page iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<div id="map"><a href="#">map</a></div>
<div id="page">
<iframe src="/mw"></iframe>
</div>
</body>
<script>
</script>
</html>