Skip to content

Commit

Permalink
added test
Browse files Browse the repository at this point in the history
  • Loading branch information
yjung committed Mar 2, 2014
1 parent c300861 commit 0abc95a
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3Dcatalogue/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h2>Produkte</h2>
<NavigationInfo id="navigation" ></NavigationInfo>

<transform>
<inline id="viewerInline" url="scene.x3d" nameSpaceName="test" mapDEFToID="true"></inline>
<inline id="viewerInline" url="" nameSpaceName="test" mapDEFToID="true"></inline>
</transform>

<matrixTransform id="bbox_transform" render="false">
Expand Down
2 changes: 1 addition & 1 deletion MatheLernspiel_X3DOM/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h1>3D Mathe Quiz</h1>
<div id='questionContent'>
<div class='left tip'>
<h4>Tipp</h4>
<p>Durch selektieren einzelner Formen des 3D Models lassen sich die notwendigen Informationen einblenden.</p>
<p>Durch Selektieren einzelner Formen des 3D Models lassen sich die notwendigen Informationen einblenden.</p>
</div>
<div class='left'>
<h4 class='question'><span>Frage 0:</span> Keine Fragen vorhanden!</h4>
Expand Down
106 changes: 106 additions & 0 deletions general/02a_layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="HTML and CSS code skeleton">
<title>HTML Seitenstruktur</title>

<style type="text/css">
body {
font-family: Arial,sans-serif;
margin: 0;
padding: 0;
border: none;
color: rgb(70,70,70);
}
.header {
position: absolute;
height: 80px;
min-width: 400px;
right: 0;
left: 0;
background-color: gray;
margin: 0 auto;
text-align: center;
color: cornsilk;
}
.footer {
padding: 2px;
color: cornsilk;
background-color: gray;
bottom: 0;
right: 0;
left: 0;
position: absolute;
}
.nav {
position: absolute;
top: 80px;
bottom: 30px;
width: 200px;
background-color: #d3d3d3;
border: 1px solid gray;
}
.content {
position: absolute;
margin: 0;
padding: 5px;
right: 0;
top: 80px;
bottom: 30px;
left: 202px;
background-color: cornsilk;
border: none;
}
a.navElem {
display: block;
max-width: 100%;
padding: 10px;
background-color: #d3d3d3;
border-bottom: 1px solid gray;
text-decoration: none;
font-size: 1.2em;
}
a.navElem:hover {
background-color: #e1e1e1;
}
#cpyrght {
text-align: right;
padding: 5px;
}
#TODo {
width: 80%;
min-width: 200px;
}
#TODo img {
max-width: 100%;
}
</style>
</head>
<body>
<div class="header">
<h1>Titel der Web-Page</h1>
</div>

<div class="nav">
<a class="navElem" href="default.html">Home</a>
<a class="navElem" href="news.html">News</a>
<a class="navElem" href="contact.html">Contact</a>
<a class="navElem" href="about.html">About</a>
</div>

<div class="content">
<h2>Eine &Uuml;berschrift</h2>

<p>Das ist ein Absatz, aber hier erscheint bald noch mehr.</p>
<p>Rest ist TODO...</p>
<div id="TODo">
<img src="todo.jpg" alt="TOD-O-Liste">
</div>
</div>

<div class="footer">
<div id="cpyrght">Copyright 2014 by Foo Bar</div>
</div>
</body>
</html>

0 comments on commit 0abc95a

Please sign in to comment.