2014-11-18 12:52:00 +00:00
|
|
|
/**
|
|
|
|
* prettyPhoto.scss
|
|
|
|
* Styles for the prettyPhoto lightbox script. Includes a custom WooCommerce theme.
|
|
|
|
* http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/
|
|
|
|
*/
|
|
|
|
|
2014-11-18 12:43:48 +00:00
|
|
|
/**
|
|
|
|
* Imports
|
|
|
|
*/
|
2016-08-09 16:28:32 +00:00
|
|
|
@import 'mixins';
|
|
|
|
@import 'variables';
|
|
|
|
@import 'fonts';
|
2013-09-16 14:24:42 +00:00
|
|
|
|
2014-11-18 12:43:48 +00:00
|
|
|
/**
|
|
|
|
* Mixins
|
|
|
|
*/
|
2014-09-22 17:35:48 +00:00
|
|
|
@mixin button() {
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 100%;
|
2014-11-13 09:47:34 +00:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2016-08-09 16:28:32 +00:00
|
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
|
2013-09-16 14:24:42 +00:00
|
|
|
background-color: #444;
|
|
|
|
color: #fff !important;
|
2014-11-13 09:47:34 +00:00
|
|
|
font-size: 16px !important;
|
2013-09-16 14:24:42 +00:00
|
|
|
line-height: 1em;
|
2014-09-22 17:35:48 +00:00
|
|
|
@include transition();
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
&:hover {
|
2013-09-16 14:24:42 +00:00
|
|
|
background-color: #000;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:43:48 +00:00
|
|
|
/**
|
|
|
|
* Custom WooCommerce prettyPhoto theme
|
|
|
|
*/
|
2013-01-30 16:18:36 +00:00
|
|
|
div.pp_woocommerce {
|
|
|
|
.pp_content_container {
|
|
|
|
background: #fff;
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 3px;
|
2016-08-09 16:28:32 +00:00
|
|
|
box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
|
2014-11-13 09:47:34 +00:00
|
|
|
padding: 20px 0;
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
.pp_loaderIcon {
|
2014-11-13 18:28:15 +00:00
|
|
|
@include loader();
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-02-04 13:59:11 +00:00
|
|
|
div.ppt {
|
|
|
|
color: black;
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
.pp_gallery {
|
|
|
|
ul {
|
|
|
|
li {
|
|
|
|
a {
|
2016-08-09 16:28:32 +00:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
2013-01-30 16:18:36 +00:00
|
|
|
background: #fff;
|
2016-08-09 16:28:32 +00:00
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 2px;
|
2013-01-30 16:18:36 +00:00
|
|
|
display: block;
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
&:hover {
|
2014-11-13 09:47:34 +00:00
|
|
|
border-color: #000;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
&.selected {
|
|
|
|
a {
|
2014-11-13 09:47:34 +00:00
|
|
|
border-color: #000;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_previous,
|
|
|
|
.pp_next {
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include button();
|
2013-09-16 14:24:42 +00:00
|
|
|
font-family: 'WooCommerce';
|
2016-08-09 16:28:32 +00:00
|
|
|
content: '\e00b';
|
2013-01-30 16:18:36 +00:00
|
|
|
text-indent: 0;
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2014-11-13 09:47:34 +00:00
|
|
|
top: 50%;
|
|
|
|
margin-top: -10px;
|
2013-01-30 16:18:36 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
&:hover {
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2013-01-30 16:18:36 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
.pp_previous {
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2014-11-13 09:47:34 +00:00
|
|
|
left: 1em;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
.pp_next {
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2014-11-13 09:47:34 +00:00
|
|
|
right: 1em;
|
2013-09-16 14:24:42 +00:00
|
|
|
font-family: 'WooCommerce';
|
2016-08-09 16:28:32 +00:00
|
|
|
content: '\e008';
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pp_details {
|
2014-11-13 09:47:34 +00:00
|
|
|
margin: 0;
|
|
|
|
padding-top: 1em;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
|
|
|
.pp_nav,
|
|
|
|
.pp_description {
|
|
|
|
font-size: 14px;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
|
|
|
.pp_nav,
|
|
|
|
.pp_nav p,
|
|
|
|
.pp_play,
|
|
|
|
.pp_nav .pp_pause,
|
|
|
|
.pp_arrow_previous,
|
|
|
|
.pp_arrow_next {
|
|
|
|
margin: 0;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pp_nav {
|
2014-11-13 09:47:34 +00:00
|
|
|
margin-right: 1em;
|
2013-01-30 16:18:36 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
.pp_close {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include button();
|
2016-08-09 16:28:32 +00:00
|
|
|
top: -0.5em;
|
|
|
|
right: -0.5em;
|
2014-11-13 09:47:34 +00:00
|
|
|
font-size: 1.618em !important;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2013-09-16 14:24:42 +00:00
|
|
|
font-family: 'WooCommerce';
|
2016-08-09 16:28:32 +00:00
|
|
|
content: '\e013';
|
2013-01-30 16:18:36 +00:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2014-11-13 09:47:34 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2013-01-30 16:18:36 +00:00
|
|
|
text-align: center;
|
|
|
|
text-indent: 0;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
|
|
|
.pp_arrow_previous,
|
|
|
|
.pp_arrow_next {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include button();
|
2013-01-30 16:18:36 +00:00
|
|
|
position: relative;
|
2014-11-13 09:47:34 +00:00
|
|
|
margin-top: -1px;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2013-09-16 14:24:42 +00:00
|
|
|
font-family: 'WooCommerce';
|
2016-08-09 16:28:32 +00:00
|
|
|
content: '\e00b';
|
2013-01-30 16:18:36 +00:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2014-11-13 09:47:34 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2013-01-30 16:18:36 +00:00
|
|
|
text-align: center;
|
|
|
|
text-indent: 0;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
.pp_arrow_previous {
|
2016-08-09 16:28:32 +00:00
|
|
|
margin-right: 0.5em;
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
.pp_arrow_next {
|
2016-08-09 16:28:32 +00:00
|
|
|
margin-left: 0.5em;
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
content: '\e008';
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
|
|
|
a.pp_expand,
|
|
|
|
a.pp_contract {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include button();
|
2014-11-13 09:47:34 +00:00
|
|
|
right: auto;
|
2016-08-09 16:28:32 +00:00
|
|
|
left: -0.5em;
|
|
|
|
top: -0.5em;
|
2014-11-13 09:47:34 +00:00
|
|
|
font-size: 1.618em !important;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2013-09-16 14:24:42 +00:00
|
|
|
font-family: 'WooCommerce';
|
2016-08-09 16:28:32 +00:00
|
|
|
content: '\e005';
|
2013-01-30 16:18:36 +00:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2014-11-13 09:47:34 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2013-01-30 16:18:36 +00:00
|
|
|
text-align: center;
|
|
|
|
text-indent: 0;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
a.pp_contract {
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
content: '\e004';
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-01-30 16:18:36 +00:00
|
|
|
#respond {
|
2014-11-13 09:47:34 +00:00
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
2013-02-08 18:00:20 +00:00
|
|
|
background: none;
|
2014-11-13 09:47:34 +00:00
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
|
2013-02-08 18:00:20 +00:00
|
|
|
.form-submit {
|
2014-11-13 09:47:34 +00:00
|
|
|
margin-top: 0;
|
|
|
|
float: none;
|
2013-02-08 18:00:20 +00:00
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-02-04 14:36:23 +00:00
|
|
|
.pp_inline {
|
2014-11-13 09:47:34 +00:00
|
|
|
padding: 0!important;
|
2013-02-04 14:36:23 +00:00
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 10:26:13 +00:00
|
|
|
// RTL support
|
|
|
|
.rtl {
|
|
|
|
div.pp_woocommerce {
|
|
|
|
.pp_content_container {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-16 14:24:42 +00:00
|
|
|
@media only screen and (max-width: 768px) {
|
2013-06-07 15:31:52 +00:00
|
|
|
div.pp_woocommerce {
|
|
|
|
left: 5% !important;
|
2014-11-13 09:47:34 +00:00
|
|
|
right: 5% !important;
|
2015-03-17 15:51:55 +00:00
|
|
|
box-sizing: border-box;
|
2013-06-07 15:31:52 +00:00
|
|
|
width: 90% !important;
|
2014-11-13 09:47:34 +00:00
|
|
|
|
|
|
|
.pp_gallery,
|
|
|
|
.pp_previous,
|
|
|
|
.pp_next,
|
|
|
|
.pp_expand,
|
|
|
|
.pp_contract {
|
2013-06-07 15:31:52 +00:00
|
|
|
display: none !important;
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
|
|
|
.pp_arrow_previous,
|
|
|
|
.pp_arrow_next,
|
|
|
|
.pp_close {
|
|
|
|
height: 44px;
|
|
|
|
width: 44px;
|
|
|
|
font-size: 44px;
|
2013-09-16 14:24:42 +00:00
|
|
|
line-height: 44px;
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2014-11-13 09:47:34 +00:00
|
|
|
font-size: 44px;
|
2013-06-07 15:31:52 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-16 14:24:42 +00:00
|
|
|
|
2013-06-07 15:31:52 +00:00
|
|
|
.pp_description {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-06-07 15:31:52 +00:00
|
|
|
.pp_details {
|
2014-11-13 09:47:34 +00:00
|
|
|
width: 100% !important;
|
2013-06-07 15:31:52 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-06-07 15:31:52 +00:00
|
|
|
.pp_content {
|
2014-11-13 09:47:34 +00:00
|
|
|
width: 100% !important;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
#pp_full_res {
|
|
|
|
& > img {
|
2014-11-13 09:47:34 +00:00
|
|
|
width: 100% !important;
|
|
|
|
height: auto !important;
|
|
|
|
}
|
2016-08-09 16:28:32 +00:00
|
|
|
}
|
2013-06-07 15:31:52 +00:00
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2013-06-07 15:31:52 +00:00
|
|
|
.currentTextHolder {
|
|
|
|
line-height: 3;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 09:47:34 +00:00
|
|
|
|
2014-11-18 12:43:48 +00:00
|
|
|
/**
|
|
|
|
* Default prettyPhoto css
|
|
|
|
* Do not edit!
|
|
|
|
*/
|
2014-11-13 09:47:34 +00:00
|
|
|
div.pp_pic_holder a:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
div.pp_overlay {
|
|
|
|
background: #000;
|
|
|
|
display: none;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
div.pp_pic_holder {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
width: 100px;
|
|
|
|
z-index: 10000;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_top {
|
|
|
|
height: 20px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
* html .pp_top {
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_top .pp_left {
|
|
|
|
height: 20px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 20px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_top .pp_middle {
|
|
|
|
height: 20px;
|
|
|
|
left: 20px;
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
* html .pp_top .pp_middle {
|
|
|
|
left: 0;
|
|
|
|
position: static;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_top .pp_right {
|
|
|
|
height: 20px;
|
|
|
|
left: auto;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 20px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_content {
|
|
|
|
height: 40px;
|
|
|
|
min-width: 40px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
* html .pp_content {
|
|
|
|
width: 40px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_fade {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_content_container {
|
|
|
|
position: relative;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_content_container .pp_left {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_content_container .pp_right {
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_content_container .pp_details {
|
|
|
|
float: left;
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 10px 0 2px;
|
2014-11-13 09:47:34 +00:00
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_description {
|
|
|
|
display: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_social {
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_social .facebook {
|
|
|
|
float: left;
|
|
|
|
margin-left: 5px;
|
2016-08-09 16:28:32 +00:00
|
|
|
width: 55px;
|
|
|
|
overflow: hidden;
|
2014-11-13 09:47:34 +00:00
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_social .twitter {
|
|
|
|
float: left;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_nav {
|
|
|
|
clear: right;
|
|
|
|
float: left;
|
|
|
|
margin: 3px 10px 0 0;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_nav p {
|
|
|
|
float: left;
|
|
|
|
margin: 2px 4px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_nav .pp_play,
|
|
|
|
.pp_nav .pp_pause {
|
|
|
|
float: left;
|
|
|
|
margin-right: 4px;
|
|
|
|
text-indent: -10000px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
a.pp_arrow_previous,
|
|
|
|
a.pp_arrow_next {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
height: 15px;
|
|
|
|
margin-top: 3px;
|
|
|
|
text-indent: -100000px;
|
|
|
|
width: 14px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_hoverContainer {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery {
|
|
|
|
display: none;
|
|
|
|
left: 50%;
|
|
|
|
margin-top: -50px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10000;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery div {
|
|
|
|
float: left;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery ul {
|
|
|
|
float: left;
|
|
|
|
height: 35px;
|
|
|
|
margin: 0 0 0 5px;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery ul a {
|
|
|
|
border: 1px #000 solid;
|
2016-08-09 16:28:32 +00:00
|
|
|
border: 1px rgba(0, 0, 0, 0.5) solid;
|
2014-11-13 09:47:34 +00:00
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
height: 33px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery ul a:hover,
|
|
|
|
.pp_gallery li.selected a {
|
|
|
|
border-color: #fff;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery ul a img {
|
|
|
|
border: 0;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery li {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery li.default a {
|
|
|
|
display: block;
|
|
|
|
height: 33px;
|
|
|
|
width: 50px;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery li.default a img {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
.pp_gallery .pp_arrow_previous,
|
|
|
|
.pp_gallery .pp_arrow_next {
|
|
|
|
margin-top: 7px !important;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
a.pp_next {
|
|
|
|
display: block;
|
|
|
|
float: right;
|
|
|
|
height: 100%;
|
|
|
|
text-indent: -10000px;
|
|
|
|
width: 49%;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
a.pp_previous {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
height: 100%;
|
|
|
|
text-indent: -10000px;
|
|
|
|
width: 49%;
|
|
|
|
}
|
2013-01-30 16:18:36 +00:00
|
|
|
|
2014-11-13 09:47:34 +00:00
|
|
|
a.pp_expand,
|
|
|
|
a.pp_contract {
|
|
|
|
cursor: pointer;
|
|
|
|
display: none;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
right: 30px;
|
|
|
|
text-indent: -10000px;
|
|
|
|
top: 10px;
|
|
|
|
width: 20px;
|
|
|
|
z-index: 20000;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.pp_close {
|
2016-08-09 16:28:32 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2014-11-13 09:47:34 +00:00
|
|
|
display: block;
|
|
|
|
text-indent: -10000px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pp_bottom {
|
|
|
|
height: 20px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
* html .pp_bottom {
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pp_bottom .pp_left {
|
|
|
|
height: 20px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pp_bottom .pp_middle {
|
|
|
|
height: 20px;
|
|
|
|
left: 20px;
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
* html .pp_bottom .pp_middle {
|
|
|
|
left: 0;
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pp_bottom .pp_right {
|
|
|
|
height: 20px;
|
|
|
|
left: auto;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pp_loaderIcon {
|
|
|
|
display: block;
|
|
|
|
height: 24px;
|
|
|
|
left: 50%;
|
|
|
|
margin: -12px 0 0 -12px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pp_full_res .pp_inline {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.ppt {
|
|
|
|
color: #fff !important;
|
|
|
|
font-weight: 700;
|
|
|
|
display: none;
|
|
|
|
font-size: 17px;
|
|
|
|
margin: 0 0 5px 15px;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|