mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
start
This commit is contained in:
parent
9801ff075a
commit
382cbd0a73
3 changed files with 72 additions and 0 deletions
25
scripts/system/html/css/marketplaces.css
Normal file
25
scripts/system/html/css/marketplaces.css
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
//
|
||||
// Copyright 2016 High Fidelity, Inc.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
*/
|
||||
|
||||
.marketplaces-container {
|
||||
width: 100%;
|
||||
}
|
||||
.marketplace-tile {
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
.marketplace-tile-title {
|
||||
width: 100%;
|
||||
height: 10%;
|
||||
}
|
||||
.marketplace-tile-image-container {
|
||||
}
|
||||
.marketplace-tile-image {
|
||||
}
|
||||
.marketplace-tile-description {
|
||||
}
|
3
scripts/system/html/js/marketplaces.js
Normal file
3
scripts/system/html/js/marketplaces.js
Normal file
|
@ -0,0 +1,3 @@
|
|||
function loaded(){
|
||||
|
||||
}
|
44
scripts/system/html/marketplaces.html
Normal file
44
scripts/system/html/marketplaces.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!--
|
||||
// marketplaces.html
|
||||
//
|
||||
// Copyright 2016 High Fidelity, Inc.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title>Marketplaces</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||
<link rel="stylesheet" type="text/css" href="css/edit-style.css">
|
||||
<script src="js/jquery-2.1.4.min.js"></script>
|
||||
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
||||
<script type="text/javascript" src="js/eventBridgeLoader.js"></script>
|
||||
<script src="js/marketplaces.js"></script>
|
||||
</head>
|
||||
<body onload='loaded();'>
|
||||
<div class="marketplaces-container">
|
||||
<div class="marketplace-tile">
|
||||
<div class="marketplace-tile-title">Hifi Marketplace</div>
|
||||
<div class="marketplace-tile-image-container">
|
||||
<a href="http://highfidelity.io/marketplace">
|
||||
<img class="marketplace-tile-image" src="http://lorempixel.com/1000/1000">
|
||||
</a>
|
||||
</div>
|
||||
<div class="marketplace-tile-description">This is the Hifi Marketplace</div>
|
||||
</div>
|
||||
<div class="marketplace-tile">
|
||||
<div class="marketplace-tile">
|
||||
<div class="marketplace-tile-title">Clara</div>
|
||||
<div class="marketplace-tile-image-container">
|
||||
<a href="http://clara.io:">
|
||||
<img class="marketplace-tile-image" src="http://lorempixel.com/1000/1000">
|
||||
</a>
|
||||
</div>
|
||||
<div class="marketplace-tile-description">This is the Clara Marketplace</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue