mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:29:32 +02:00
added top bar title
This commit is contained in:
parent
3149f02de6
commit
f3fdb7c315
1 changed files with 53 additions and 28 deletions
|
@ -2,7 +2,37 @@
|
||||||
<head>
|
<head>
|
||||||
<title>Photo Booth</title>
|
<title>Photo Booth</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../system/html/css/edit-style.css">
|
<link rel="stylesheet" type="text/css" href="../../../../../system/html/css/edit-style.css">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
color: white;
|
||||||
|
background: linear-gradient(#2b2b2b, #0f212e);
|
||||||
|
}
|
||||||
|
|
||||||
|
.top-bar {
|
||||||
|
height: 90px;
|
||||||
|
background: linear-gradient(#2b2b2b, #1e1e1e);
|
||||||
|
font-family: Raleway-Bold;
|
||||||
|
padding-left: 30px;
|
||||||
|
padding-right: 30px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
position: fixed;
|
||||||
|
width: 480px;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
margin-top: 90px;
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -133,34 +163,29 @@
|
||||||
<style>
|
<style>
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body onload="loaded()">
|
<body>
|
||||||
<div id="properties-list">
|
<div class="top-bar">
|
||||||
<div class="property url refresh">
|
<div>Photobooth</div>
|
||||||
<label>Model URL</label>
|
</div>
|
||||||
<input type="text" id="model-url"></input>
|
<div class="content">
|
||||||
<input type="button" id="reload-model-button" class="glyph" value="F">
|
<div id="properties-list">
|
||||||
</div>
|
<div class="property url refresh">
|
||||||
<!--
|
<label>Model URL</label>
|
||||||
<div class="property dropdown">
|
<input type="text" id="model-url"></input>
|
||||||
<label>Lighting Preset</label>
|
<input type="button" id="reload-model-button" class="glyph" value="F">
|
||||||
<select id="property-lighting-preset">
|
</div>
|
||||||
<option>Default Lighting</option>
|
<div class="property dropdown">
|
||||||
<option>Sam's Cool Light</option>
|
<label>Camera</label>
|
||||||
<option>Alan's Light Magic</option>
|
<select id="property-camera">
|
||||||
</select>
|
<option>First Person Camera</option>
|
||||||
</div>
|
<option>Main Camera</option>
|
||||||
-->
|
<option>Left Camera</option>
|
||||||
<div class="property dropdown">
|
<option>Right Camera</option>
|
||||||
<label>Camera</label>
|
</select>
|
||||||
<select id="property-camera">
|
</div>
|
||||||
<option>First Person Camera</option>
|
<div class="property">
|
||||||
<option>Main Camera</option>
|
<input id="picture-button" type="button" class="blue" value="Take Picture">
|
||||||
<option>Left Camera</option>
|
</div>
|
||||||
<option>Right Camera</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div class="property">
|
|
||||||
<input id="picture-button" type="button" class="blue" value="Take Picture">
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue