This commit is contained in:
James B. Pollack 2016-08-29 17:43:32 -07:00
parent 2a12f2feae
commit d3aad53e0e
3 changed files with 49 additions and 33 deletions

View file

@ -10,6 +10,7 @@ body {
padding: 0 0 0 0;
}
.marketplaces-container {
display: inline-block;
color: black;
width: 94%;
margin-left: 3%;
@ -23,16 +24,18 @@ body {
margin-bottom: 60px;
}
.marketplace-tile {
float:left;
width: 100%;
}
.marketplace-tile-first-column {
text-align: center;
float: left;
width: 34%;
width: 33%;
}
.marketplace-tile-second-column {
float: left;
width: 66%;
margin-left:4%;
width: 62%;
}
.exploreButton {
width: 200px !important;
@ -41,8 +44,8 @@ body {
margin-bottom: 30px;
}
.tile-divider {
width: 90%;
margin-left: 5%;
width: 100%;
margin-left: 0%;
display: block;
height: 1px;
border: 0;
@ -53,11 +56,13 @@ body {
}
.marketplace-tile-description {
margin-top: 15px;
margin-bottom: 50px;
margin-bottom: 30px;
}
.marketplace-tile-image {
margin-top:15px;
max-width: 256px;
height: 128px;
margin-bottom:60px;
-webkit-box-shadow: -1px 4px 16px 0px rgba(0, 0, 0, 0.48);
-moz-box-shadow: -1px 4px 16px 0px rgba(0, 0, 0, 0.48);
box-shadow: -1px 4px 16px 0px rgba(0, 0, 0, 0.48);
@ -77,7 +82,15 @@ body {
float: left;
width: 100%;
}
.exploreButton {
margin-left: 25%;
.exploreButton-holder {
width:100%;
text-align:center;
}
.tile-divider {
width: 100%;
margin-left: 0%;
}
.marketplace-tile-image{
margin-bottom:15px;
}
}

View file

@ -4,7 +4,7 @@ bindExploreButtons();
function bindExploreButtons() {
$('#exploreClaraMarketplace').on('click', function() {
window.location = "http://www.clara.io"
window.location = "https://clara.io/library?public=true"
})
$('#exploreHifiMarketplace').on('click', function() {
window.location = "http://www.highfidelity.com/marketplace"

View file

@ -20,7 +20,7 @@
<body onload='loaded();'>
<div class="marketplaces-container">
<h2 class="marketplaces-title">
Marketplaces
Marketplaces
</h2>
<div class="marketplaces-intro-text">
<p>
@ -29,34 +29,37 @@
</div>
<div class="marketplace-tile">
<div class="marketplace-tile-first-column">
<img class="marketplace-tile-image" src="img/hifi-marketplace-tile.png">
<img class="marketplace-tile-image" src="img/hifi-marketplace-tile.png">
</div>
<div class="marketplace-tile-second-column">
<p class="marketplace-tile-description">This is the default High Fidelity marketplace. Viewing and downloading content from here is fully supported in Interface.</p>
<input class="blue exploreButton" type="button" value="Explore" id="exploreHifiMarketplace"></input>
<div class="exploreButton-holder">
<input class="blue exploreButton" type="button" value="Explore" id="exploreHifiMarketplace"></input></div>
</div>
<hr class="tile-divider">
</div>
<div class="marketplace-tile">
<div class="marketplace-tile-first-column">
<img class="marketplace-tile-image" src="img/clara-tile.png">
</div>
<div class="marketplace-tile-second-column">
<p class="marketplace-tile-description">Clara.io has thousands of models available for importing into High Fidelity. Follow these steps for the best experience:</p>
<ol class="marketplace-clara-steps">
<li><a href="http://www.clara.io/signup">Create an account here </a>or log in as an existing user.</li>
<li>Choose a model from the list and click Download -> Autodesk FBX.</li>
<li>After the file processes, click download.</li>
<li>Add the model to your asset server, then find it from the list and choose Add To World.</li>
</ol>
<div class="exploreButton-holder">
<input class="blue exploreButton" type="button" value="Explore" id="exploreClaraMarketplace"></input>
</div>
</div>
<hr class="tile-divider">
</div>
<hr class="tile-divider">
</div>
<div class="marketplace-tile">
<div class="marketplace-tile-first-column">
<img class="marketplace-tile-image" src="img/clara-tile.png">
</div>
<div class="marketplace-tile-second-column">
<p class="marketplace-tile-description">Clara.io has thousands of models available for importing into High Fidelity. Follow these steps for the best experience:</p>
<ol class="marketplace-clara-steps">
<li><a href="http://www.clara.io/signup">Create an account here </a>or log in as an existing user.</li>
<li>Choose a model from the list and click Download -> Autodesk FBX.</li>
<li>After the file processes, click download.</li>
<li>Add the model to your asset server, then find it from the list and choose Add To World.</li>
</ol>
<input class="blue exploreButton" type="button" value="Explore" id="exploreClaraMarketplace"></input>
</div>
<hr class="tile-divider">
</div>
</div>
</div>
</body>
</body>
</html>