fixing lightbox
This commit is contained in:
@@ -1,206 +1,206 @@
|
||||
/* Preload images */
|
||||
body:after {
|
||||
content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
|
||||
display: none;
|
||||
}
|
||||
|
||||
body.lb-disable-scrolling {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.lightboxOverlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 9999;
|
||||
background-color: black;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
|
||||
opacity: 0.8;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.lightbox {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 10000;
|
||||
text-align: center;
|
||||
line-height: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.lightbox .lb-image {
|
||||
display: block;
|
||||
height: auto;
|
||||
max-width: inherit;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.lightbox a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.lb-outerContainer {
|
||||
position: relative;
|
||||
background-color: white;
|
||||
*zoom: 1;
|
||||
width: 250px;
|
||||
height: 250px;
|
||||
margin: 0 auto;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.lb-outerContainer:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.lb-container {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.lb-loader {
|
||||
position: absolute;
|
||||
top: 43%;
|
||||
left: 0;
|
||||
height: 25%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.lb-cancel {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: 0 auto;
|
||||
background: url(../images/loading.gif) no-repeat;
|
||||
}
|
||||
|
||||
.lb-nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.lb-container > .nav {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.lb-nav a {
|
||||
outline: none;
|
||||
background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
|
||||
}
|
||||
|
||||
.lb-prev, .lb-next {
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-prev {
|
||||
width: 34%;
|
||||
left: 0;
|
||||
float: left;
|
||||
background: url(../images/prev.png) left 48% no-repeat;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.6s;
|
||||
-moz-transition: opacity 0.6s;
|
||||
-o-transition: opacity 0.6s;
|
||||
transition: opacity 0.6s;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-prev:hover {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-next {
|
||||
width: 64%;
|
||||
right: 0;
|
||||
float: right;
|
||||
background: url(../images/next.png) right 48% no-repeat;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.6s;
|
||||
-moz-transition: opacity 0.6s;
|
||||
-o-transition: opacity 0.6s;
|
||||
transition: opacity 0.6s;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-next:hover {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.lb-dataContainer {
|
||||
margin: 0 auto;
|
||||
padding-top: 5px;
|
||||
*zoom: 1;
|
||||
width: 100%;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
.lb-dataContainer:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.lb-data {
|
||||
padding: 0 4px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.lb-data .lb-details {
|
||||
width: 85%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
line-height: 1.1em;
|
||||
}
|
||||
|
||||
.lb-data .lb-caption {
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.lb-data .lb-number {
|
||||
display: block;
|
||||
clear: left;
|
||||
padding-bottom: 1em;
|
||||
font-size: 12px;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.lb-data .lb-close {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: url(../images/close.png) top right no-repeat;
|
||||
text-align: right;
|
||||
outline: none;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
|
||||
opacity: 0.7;
|
||||
-webkit-transition: opacity 0.2s;
|
||||
-moz-transition: opacity 0.2s;
|
||||
-o-transition: opacity 0.2s;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.lb-data .lb-close:hover {
|
||||
cursor: pointer;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
/* Preload images */
|
||||
body:after {
|
||||
content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
|
||||
display: none;
|
||||
}
|
||||
|
||||
body.lb-disable-scrolling {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.lightboxOverlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 9999;
|
||||
background-color: black;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
|
||||
opacity: 0.8;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.lightbox {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 10000;
|
||||
text-align: center;
|
||||
line-height: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.lightbox .lb-image {
|
||||
display: block;
|
||||
height: auto;
|
||||
max-width: inherit;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.lightbox a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.lb-outerContainer {
|
||||
position: relative;
|
||||
background-color: white;
|
||||
*zoom: 1;
|
||||
width: 250px;
|
||||
height: 250px;
|
||||
margin: 0 auto;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.lb-outerContainer:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.lb-container {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.lb-loader {
|
||||
position: absolute;
|
||||
top: 43%;
|
||||
left: 0;
|
||||
height: 25%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.lb-cancel {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: 0 auto;
|
||||
background: url(../images/loading.gif) no-repeat;
|
||||
}
|
||||
|
||||
.lb-nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.lb-container > .nav {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.lb-nav a {
|
||||
outline: none;
|
||||
background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
|
||||
}
|
||||
|
||||
.lb-prev, .lb-next {
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-prev {
|
||||
width: 34%;
|
||||
left: 0;
|
||||
float: left;
|
||||
background: url(../images/prev.png) left 48% no-repeat;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.6s;
|
||||
-moz-transition: opacity 0.6s;
|
||||
-o-transition: opacity 0.6s;
|
||||
transition: opacity 0.6s;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-prev:hover {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-next {
|
||||
width: 64%;
|
||||
right: 0;
|
||||
float: right;
|
||||
background: url(../images/next.png) right 48% no-repeat;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.6s;
|
||||
-moz-transition: opacity 0.6s;
|
||||
-o-transition: opacity 0.6s;
|
||||
transition: opacity 0.6s;
|
||||
}
|
||||
|
||||
.lb-nav a.lb-next:hover {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.lb-dataContainer {
|
||||
margin: 0 auto;
|
||||
padding-top: 5px;
|
||||
*zoom: 1;
|
||||
width: 100%;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
.lb-dataContainer:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.lb-data {
|
||||
padding: 0 4px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.lb-data .lb-details {
|
||||
width: 85%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
line-height: 1.1em;
|
||||
}
|
||||
|
||||
.lb-data .lb-caption {
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.lb-data .lb-number {
|
||||
display: block;
|
||||
clear: left;
|
||||
padding-bottom: 1em;
|
||||
font-size: 12px;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.lb-data .lb-close {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: url(../images/close.png) top right no-repeat;
|
||||
text-align: right;
|
||||
outline: none;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
|
||||
opacity: 0.7;
|
||||
-webkit-transition: opacity 0.2s;
|
||||
-moz-transition: opacity 0.2s;
|
||||
-o-transition: opacity 0.2s;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.lb-data .lb-close:hover {
|
||||
cursor: pointer;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
261
style/spot.css
261
style/spot.css
@@ -2716,6 +2716,213 @@
|
||||
.fa-percent:before {
|
||||
content: "\f295"; }
|
||||
|
||||
/* Preload images */
|
||||
/* line 2, _lightbox.scss */
|
||||
body:after {
|
||||
content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
|
||||
display: none; }
|
||||
|
||||
/* line 7, _lightbox.scss */
|
||||
body.lb-disable-scrolling {
|
||||
overflow: hidden; }
|
||||
|
||||
/* line 11, _lightbox.scss */
|
||||
.lightboxOverlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 9999;
|
||||
background-color: black;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
|
||||
opacity: 0.8;
|
||||
display: none; }
|
||||
|
||||
/* line 22, _lightbox.scss */
|
||||
.lightbox {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 10000;
|
||||
text-align: center;
|
||||
line-height: 0;
|
||||
font-weight: normal; }
|
||||
|
||||
/* line 32, _lightbox.scss */
|
||||
.lightbox .lb-image {
|
||||
display: block;
|
||||
height: auto;
|
||||
max-width: inherit;
|
||||
border-radius: 3px; }
|
||||
|
||||
/* line 39, _lightbox.scss */
|
||||
.lightbox a img {
|
||||
border: none; }
|
||||
|
||||
/* line 43, _lightbox.scss */
|
||||
.lb-outerContainer {
|
||||
position: relative;
|
||||
background-color: white;
|
||||
*zoom: 1;
|
||||
width: 250px;
|
||||
height: 250px;
|
||||
margin: 0 auto;
|
||||
border-radius: 4px; }
|
||||
|
||||
/* line 53, _lightbox.scss */
|
||||
.lb-outerContainer:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both; }
|
||||
|
||||
/* line 59, _lightbox.scss */
|
||||
.lb-container {
|
||||
padding: 4px; }
|
||||
|
||||
/* line 63, _lightbox.scss */
|
||||
.lb-loader {
|
||||
position: absolute;
|
||||
top: 43%;
|
||||
left: 0;
|
||||
height: 25%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 0; }
|
||||
|
||||
/* line 73, _lightbox.scss */
|
||||
.lb-cancel {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin: 0 auto;
|
||||
background: url(../images/loading.gif) no-repeat; }
|
||||
|
||||
/* line 81, _lightbox.scss */
|
||||
.lb-nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
z-index: 10; }
|
||||
|
||||
/* line 90, _lightbox.scss */
|
||||
.lb-container > .nav {
|
||||
left: 0; }
|
||||
|
||||
/* line 94, _lightbox.scss */
|
||||
.lb-nav a {
|
||||
outline: none;
|
||||
background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }
|
||||
|
||||
/* line 99, _lightbox.scss */
|
||||
.lb-prev, .lb-next {
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
display: block; }
|
||||
|
||||
/* line 105, _lightbox.scss */
|
||||
.lb-nav a.lb-prev {
|
||||
width: 34%;
|
||||
left: 0;
|
||||
float: left;
|
||||
background: url(../images/prev.png) left 48% no-repeat;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.6s;
|
||||
-moz-transition: opacity 0.6s;
|
||||
-o-transition: opacity 0.6s;
|
||||
transition: opacity 0.6s; }
|
||||
|
||||
/* line 118, _lightbox.scss */
|
||||
.lb-nav a.lb-prev:hover {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1; }
|
||||
|
||||
/* line 123, _lightbox.scss */
|
||||
.lb-nav a.lb-next {
|
||||
width: 64%;
|
||||
right: 0;
|
||||
float: right;
|
||||
background: url(../images/next.png) right 48% no-repeat;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.6s;
|
||||
-moz-transition: opacity 0.6s;
|
||||
-o-transition: opacity 0.6s;
|
||||
transition: opacity 0.6s; }
|
||||
|
||||
/* line 136, _lightbox.scss */
|
||||
.lb-nav a.lb-next:hover {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1; }
|
||||
|
||||
/* line 141, _lightbox.scss */
|
||||
.lb-dataContainer {
|
||||
margin: 0 auto;
|
||||
padding-top: 5px;
|
||||
*zoom: 1;
|
||||
width: 100%;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px; }
|
||||
|
||||
/* line 154, _lightbox.scss */
|
||||
.lb-dataContainer:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both; }
|
||||
|
||||
/* line 160, _lightbox.scss */
|
||||
.lb-data {
|
||||
padding: 0 4px;
|
||||
color: #ccc; }
|
||||
|
||||
/* line 165, _lightbox.scss */
|
||||
.lb-data .lb-details {
|
||||
width: 85%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
line-height: 1.1em; }
|
||||
|
||||
/* line 172, _lightbox.scss */
|
||||
.lb-data .lb-caption {
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
line-height: 1em; }
|
||||
|
||||
/* line 178, _lightbox.scss */
|
||||
.lb-data .lb-number {
|
||||
display: block;
|
||||
clear: left;
|
||||
padding-bottom: 1em;
|
||||
font-size: 12px;
|
||||
color: #999999; }
|
||||
|
||||
/* line 186, _lightbox.scss */
|
||||
.lb-data .lb-close {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: url(../images/close.png) top right no-repeat;
|
||||
text-align: right;
|
||||
outline: none;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
|
||||
opacity: 0.7;
|
||||
-webkit-transition: opacity 0.2s;
|
||||
-moz-transition: opacity 0.2s;
|
||||
-o-transition: opacity 0.2s;
|
||||
transition: opacity 0.2s; }
|
||||
|
||||
/* line 202, _lightbox.scss */
|
||||
.lb-data .lb-close:hover {
|
||||
cursor: pointer;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1; }
|
||||
|
||||
/* Animations */
|
||||
@-webkit-keyframes fadeIn {
|
||||
from {
|
||||
@@ -2740,7 +2947,7 @@
|
||||
-o-animation: fadeIn 0.8s infinite alternate;
|
||||
animation: fadeIn 0.8s infinite alternate; }
|
||||
|
||||
/* line 6, spot.scss */
|
||||
/* line 7, spot.scss */
|
||||
#map {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@@ -2749,7 +2956,7 @@
|
||||
width: 70%;
|
||||
background: #EEE; }
|
||||
|
||||
/* line 15, spot.scss */
|
||||
/* line 16, spot.scss */
|
||||
#map .loader {
|
||||
position: absolute;
|
||||
font-size: 3em;
|
||||
@@ -2759,7 +2966,7 @@
|
||||
left: calc(50% - 0.5em);
|
||||
color: #666; }
|
||||
|
||||
/* line 26, spot.scss */
|
||||
/* line 27, spot.scss */
|
||||
#feed {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
@@ -2767,109 +2974,109 @@
|
||||
bottom: 0;
|
||||
width: 30%;
|
||||
overflow: auto; }
|
||||
/* line 34, spot.scss */
|
||||
/* line 35, spot.scss */
|
||||
#feed #poster {
|
||||
padding: 1em;
|
||||
background: #EEE;
|
||||
border-bottom: 1px solid #DDD; }
|
||||
/* line 39, spot.scss */
|
||||
/* line 40, spot.scss */
|
||||
#feed #poster #post, #feed #poster #name, #feed #poster #submit {
|
||||
width: calc(100% - 2em);
|
||||
border: none;
|
||||
padding: 0.5em 1em; }
|
||||
/* line 45, spot.scss */
|
||||
/* line 46, spot.scss */
|
||||
#feed #poster #post {
|
||||
margin-bottom: 1em; }
|
||||
/* line 49, spot.scss */
|
||||
/* line 50, spot.scss */
|
||||
#feed #poster #name {
|
||||
width: calc(100% - 5.5em); }
|
||||
/* line 53, spot.scss */
|
||||
/* line 54, spot.scss */
|
||||
#feed #poster #submit {
|
||||
width: 3em;
|
||||
background: #CCC;
|
||||
cursor: pointer;
|
||||
font-weight: bold; }
|
||||
/* line 61, spot.scss */
|
||||
/* line 62, spot.scss */
|
||||
#feed #posts {
|
||||
font-family: Arial; }
|
||||
/* line 64, spot.scss */
|
||||
/* line 65, spot.scss */
|
||||
#feed #posts .post {
|
||||
margin: 1em;
|
||||
background: #B4BDFF;
|
||||
color: #323268;
|
||||
border-radius: 0.5em; }
|
||||
/* line 70, spot.scss */
|
||||
/* line 71, spot.scss */
|
||||
#feed #posts .post .message {
|
||||
margin: 0.3em 0 0 0; }
|
||||
/* line 73, spot.scss */
|
||||
/* line 74, spot.scss */
|
||||
#feed #posts .post .signature {
|
||||
margin: 0.5em 0 0 0;
|
||||
text-align: right; }
|
||||
/* line 79, spot.scss */
|
||||
/* line 80, spot.scss */
|
||||
#feed #posts .header {
|
||||
padding: 0.5em 1em;
|
||||
font-style: italic;
|
||||
font-size: 0.8em;
|
||||
text-align: right; }
|
||||
/* line 85, spot.scss */
|
||||
/* line 86, spot.scss */
|
||||
#feed #posts .header .index {
|
||||
float: left;
|
||||
font-style: normal; }
|
||||
/* line 91, spot.scss */
|
||||
/* line 92, spot.scss */
|
||||
#feed #posts .body {
|
||||
padding: 0em 1em 0.5em; }
|
||||
/* line 95, spot.scss */
|
||||
/* line 96, spot.scss */
|
||||
#feed #posts .post.picture {
|
||||
background: #F3EC9F;
|
||||
color: #635C28; }
|
||||
/* line 99, spot.scss */
|
||||
/* line 100, spot.scss */
|
||||
#feed #posts .post.picture a {
|
||||
display: inline-block;
|
||||
line-height: 0;
|
||||
margin: 0; }
|
||||
/* line 105, spot.scss */
|
||||
/* line 106, spot.scss */
|
||||
#feed #posts .post.picture img {
|
||||
width: 100%;
|
||||
image-orientation: from-image;
|
||||
border: 1px solid white;
|
||||
outline: none; }
|
||||
/* line 113, spot.scss */
|
||||
/* line 114, spot.scss */
|
||||
#feed #posts .post.message {
|
||||
background: #6DFF58;
|
||||
color: #326526; }
|
||||
/* line 117, spot.scss */
|
||||
/* line 118, spot.scss */
|
||||
#feed #posts .post.message p {
|
||||
font-size: 0.9em;
|
||||
margin: 0.5em 0; }
|
||||
/* line 122, spot.scss */
|
||||
/* line 123, spot.scss */
|
||||
#feed #posts .post.message p:first-child {
|
||||
margin-top: 1em; }
|
||||
/* line 127, spot.scss */
|
||||
/* line 128, spot.scss */
|
||||
#feed #posts .fa.push {
|
||||
margin-right: 0.5em; }
|
||||
|
||||
/* Info Window */
|
||||
/* line 135, spot.scss */
|
||||
/* line 136, spot.scss */
|
||||
.info-window h1 {
|
||||
font-size: 1.2em; }
|
||||
|
||||
/* line 138, spot.scss */
|
||||
/* line 139, spot.scss */
|
||||
.info-window p {
|
||||
font-size: 1.0em; }
|
||||
|
||||
/* line 142, spot.scss */
|
||||
/* line 143, spot.scss */
|
||||
.info-window i {
|
||||
padding-right: 0.5em;
|
||||
font-size: 1.33333333em;
|
||||
line-height: 0.75em;
|
||||
vertical-align: -15%; }
|
||||
|
||||
/* line 150, spot.scss */
|
||||
/* line 151, spot.scss */
|
||||
.info-window .battery {
|
||||
text-transform: capitalize; }
|
||||
|
||||
/* Upload */
|
||||
/* line 156, spot.scss */
|
||||
/* line 157, spot.scss */
|
||||
.bar {
|
||||
height: 18px;
|
||||
background: green; }
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,6 +1,7 @@
|
||||
@CHARSET "UTF-8";
|
||||
|
||||
@import 'fa';
|
||||
@import 'lightbox';
|
||||
@import 'common';
|
||||
|
||||
#map {
|
||||
|
||||
Reference in New Issue
Block a user