mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-09 07:19:41 +02:00
137 lines
2.7 KiB
CSS
137 lines
2.7 KiB
CSS
/*
|
|
//
|
|
// 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
|
|
*/
|
|
body {
|
|
background: white;
|
|
padding: 0 0 0 0;
|
|
font-family:Raleway-SemiBold;
|
|
}
|
|
.marketplaces-container {
|
|
display: inline-block;
|
|
color: black;
|
|
width: 94%;
|
|
margin-left: 3%;
|
|
height: 100%;
|
|
}
|
|
.marketplaces-title {
|
|
margin-top: 45px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.marketplaces-intro-text {
|
|
margin-bottom: 30px;
|
|
}
|
|
.marketplace-tile {
|
|
float:left;
|
|
width: 100%;
|
|
margin-bottom: 25px;
|
|
}
|
|
.marketplace-tile-first-column {
|
|
text-align: center;
|
|
float: left;
|
|
width: 33%;
|
|
}
|
|
.marketplace-tile-second-column {
|
|
float: left;
|
|
margin-left:4%;
|
|
width: 62%;
|
|
}
|
|
.exploreButton {
|
|
font-size: 16px !important;
|
|
width: 200px !important;
|
|
height: 45px !important;
|
|
margin-top: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.tile-divider {
|
|
width: 100%;
|
|
margin-left: 0%;
|
|
display: block;
|
|
height: 1px;
|
|
border: 0;
|
|
border-top: 1px solid lightgrey;
|
|
margin: 1em 0;
|
|
padding: 0;
|
|
margin-bottom: 30px;
|
|
}
|
|
.marketplace-tile-description {
|
|
margin-top: 15px;
|
|
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);
|
|
}
|
|
.marketplace-clara-steps {
|
|
padding-left: 15px;
|
|
}
|
|
.marketplace-clara-steps > li {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
#marketplace-navigation {
|
|
width: 100%;
|
|
height: 50px;
|
|
background: #00b4ef;
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
#marketplace-navigation .glyph {
|
|
/*
|
|
// Target look but can't use font in injected script.
|
|
font-family: HiFi-Glyphs;
|
|
font-size: 40px;
|
|
margin-left: 20px;
|
|
*/
|
|
font-family: sans-serif;
|
|
font-size: 24px;
|
|
margin-left: 20px;
|
|
margin-right: 3px;
|
|
color: #fff;
|
|
line-height: 50px;
|
|
}
|
|
#marketplace-navigation .text {
|
|
color: #fff;
|
|
font-size: 18px;
|
|
line-height: 50px;
|
|
vertical-align: top;
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
#marketplace-navigation input {
|
|
position: absolute;
|
|
right: 20px;
|
|
margin-top: 12px;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
@media (max-width:768px) {
|
|
.marketplace-tile-first-column {
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
.marketplace-tile-second-column {
|
|
float: left;
|
|
width: 100%;
|
|
}
|
|
.exploreButton-holder {
|
|
width:100%;
|
|
text-align:center;
|
|
}
|
|
.tile-divider {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
.marketplace-tile-image {
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|