Added website Docker image, bumped PHP version, added mall authentication, added experimental patcher support, improved migrations, added teasers
41
public/assets/patch/css/all.css
Normal file
@ -0,0 +1,41 @@
|
||||
@charset "utf-8";
|
||||
/* CSS Document */
|
||||
html {
|
||||
background:#000 url(../img/accept-bg.jpg) no-repeat center 0;
|
||||
color:#C2C3CF;
|
||||
font-size:12px;
|
||||
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
|
||||
margin:0 auto;
|
||||
width:605px;
|
||||
}
|
||||
|
||||
|
||||
#acceptWrapper {
|
||||
margin:0 auto;
|
||||
width:600px;
|
||||
}
|
||||
|
||||
#content {
|
||||
padding:20px 0 0 165px;
|
||||
width:395px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size:19px;
|
||||
color:#95bcd8;
|
||||
margin:0 0 15px 0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin:0 0 20px 0;
|
||||
line-height:normal;
|
||||
}
|
||||
strong {
|
||||
color:#b9dbac;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
}
|
||||
a {
|
||||
color:#b9dbac;
|
||||
font-size:12px;
|
||||
}
|
53
public/assets/patch/css/reset.css
Normal file
@ -0,0 +1,53 @@
|
||||
@charset "utf-8";
|
||||
/* CSS Document */
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-size: 100%;
|
||||
vertical-align: baseline;
|
||||
background: transparent;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
/* remember to define focus styles! */
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* remember to highlight inserts somehow! */
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
BIN
public/assets/patch/img/accept-bg.jpg
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
public/assets/patch/img/bg.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
public/assets/patch/img/bg_01_metin2.jpg
Normal file
After Width: | Height: | Size: 103 KiB |
19
public/assets/patch/js/jquery-1.3.2.min.js
vendored
Normal file
113
public/assets/patch/js/jquery.pngFix.js
Normal file
@ -0,0 +1,113 @@
|
||||
/**
|
||||
* --------------------------------------------------------------------
|
||||
* jQuery-Plugin "pngFix"
|
||||
* Version: 1.2, 09.03.2009
|
||||
* by Andreas Eberhard, andreas.eberhard@gmail.com
|
||||
* http://jquery.andreaseberhard.de/
|
||||
*
|
||||
* Copyright (c) 2007 Andreas Eberhard
|
||||
* Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
|
||||
*
|
||||
* Changelog:
|
||||
* 09.03.2009 Version 1.2
|
||||
* - Update for jQuery 1.3.x, removed @ from selectors
|
||||
* 11.09.2007 Version 1.1
|
||||
* - removed noConflict
|
||||
* - added png-support for input type=image
|
||||
* - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
|
||||
* 31.05.2007 initial Version 1.0
|
||||
* --------------------------------------------------------------------
|
||||
* @example $(function(){$(document).pngFix();});
|
||||
* @desc Fixes all PNG's in the document on document.ready
|
||||
*
|
||||
* jQuery(function(){jQuery(document).pngFix();});
|
||||
* @desc Fixes all PNG's in the document on document.ready when using noConflict
|
||||
*
|
||||
* @example $(function(){$('div.examples').pngFix();});
|
||||
* @desc Fixes all PNG's within div with class examples
|
||||
*
|
||||
* @example $(function(){$('div.examples').pngFix( { blankgif:'ext.gif' } );});
|
||||
* @desc Fixes all PNG's within div with class examples, provides blank gif for input with png
|
||||
* --------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
(function($) {
|
||||
|
||||
jQuery.fn.pngFix = function(settings) {
|
||||
|
||||
// Settings
|
||||
settings = jQuery.extend({
|
||||
blankgif: 'blank.gif'
|
||||
}, settings);
|
||||
|
||||
var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
|
||||
var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);
|
||||
|
||||
if (jQuery.browser.msie && (ie55 || ie6)) {
|
||||
|
||||
//fix images with png-source
|
||||
jQuery(this).find("img[src$=.png]").each(function() {
|
||||
|
||||
jQuery(this).attr('width',jQuery(this).width());
|
||||
jQuery(this).attr('height',jQuery(this).height());
|
||||
|
||||
var prevStyle = '';
|
||||
var strNewHTML = '';
|
||||
var imgId = (jQuery(this).attr('id')) ? 'id="' + jQuery(this).attr('id') + '" ' : '';
|
||||
var imgClass = (jQuery(this).attr('class')) ? 'class="' + jQuery(this).attr('class') + '" ' : '';
|
||||
var imgTitle = (jQuery(this).attr('title')) ? 'title="' + jQuery(this).attr('title') + '" ' : '';
|
||||
var imgAlt = (jQuery(this).attr('alt')) ? 'alt="' + jQuery(this).attr('alt') + '" ' : '';
|
||||
var imgAlign = (jQuery(this).attr('align')) ? 'float:' + jQuery(this).attr('align') + ';' : '';
|
||||
var imgHand = (jQuery(this).parent().attr('href')) ? 'cursor:hand;' : '';
|
||||
if (this.style.border) {
|
||||
prevStyle += 'border:'+this.style.border+';';
|
||||
this.style.border = '';
|
||||
}
|
||||
if (this.style.padding) {
|
||||
prevStyle += 'padding:'+this.style.padding+';';
|
||||
this.style.padding = '';
|
||||
}
|
||||
if (this.style.margin) {
|
||||
prevStyle += 'margin:'+this.style.margin+';';
|
||||
this.style.margin = '';
|
||||
}
|
||||
var imgStyle = (this.style.cssText);
|
||||
|
||||
strNewHTML += '<span '+imgId+imgClass+imgTitle+imgAlt;
|
||||
strNewHTML += 'style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;
|
||||
strNewHTML += 'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;';
|
||||
strNewHTML += 'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + jQuery(this).attr('src') + '\', sizingMethod=\'scale\');';
|
||||
strNewHTML += imgStyle+'"></span>';
|
||||
if (prevStyle != ''){
|
||||
strNewHTML = '<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;'+'">' + strNewHTML + '</span>';
|
||||
}
|
||||
|
||||
jQuery(this).hide();
|
||||
jQuery(this).after(strNewHTML);
|
||||
|
||||
});
|
||||
|
||||
// fix css background pngs
|
||||
jQuery(this).find("*").each(function(){
|
||||
var bgIMG = jQuery(this).css('background-image');
|
||||
if(bgIMG.indexOf(".png")!=-1){
|
||||
var iebg = bgIMG.split('url("')[1].split('")')[0];
|
||||
jQuery(this).css('background-image', 'none');
|
||||
jQuery(this).get(0).runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + iebg + "',sizingMethod='scale')";
|
||||
}
|
||||
});
|
||||
|
||||
//fix input with png-source
|
||||
jQuery(this).find("input[src$=.png]").each(function() {
|
||||
var bgIMG = jQuery(this).attr('src');
|
||||
jQuery(this).get(0).runtimeStyle.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + bgIMG + '\', sizingMethod=\'scale\');';
|
||||
jQuery(this).attr('src', settings.blankgif)
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
return jQuery;
|
||||
|
||||
};
|
||||
|
||||
})(jQuery);
|
66
public/assets/teaser/dc/css/main.css
Normal file
@ -0,0 +1,66 @@
|
||||
html {height: 100%;}
|
||||
|
||||
body {background:#000 url('../img/main/body-bg.jpg') no-repeat 50% top;color:#ffffff;font:normal 13px Arial,sans-serif;min-height: 981px;margin:0 auto;height:100%;background-color:#000;}
|
||||
#page {margin:0 auto;padding:0;position:relative;width:624px;z-index:2;}
|
||||
|
||||
/* HEAD */
|
||||
#headcontent {width:658px;height:622px;display:block;background:url('../img/main/headcontent-bg.jpg') no-repeat;}
|
||||
#headcontent a.gratisbutton {position:absolute;top:250px;left:40px;width:77px;height:77px;display:block;}
|
||||
#headcontent .bar { margin-left: 0px }
|
||||
#story {position:absolute;top:350px;left:45px;width:258px;height:228px;background:url('../img/main/story.png') -5px 0px no-repeat;display:block;text-align:left;}
|
||||
#story .headline {position:absolute;top:0px;left:0px;width:245px;height:22px;color:#e5b386;font-size:16px;font-weight:bold;padding-left:10px;padding-top:8px;}
|
||||
#story .maintext {position:absolute;top:42px;left:10px;width:245px;height:185px;color:#ffffff;}
|
||||
#page #headcontent a.youtube {position:absolute;top:385px;left:302px;width:319px;height:242px;background:url('../img/main/headcontent-youtube.png') 0px -3px no-repeat transparent;display:block;}
|
||||
|
||||
/* CONTENT */
|
||||
#content {margin:0 auto;padding:0;position:relative;top:0px;width:658px;min-height:100px;display:block;background:url('../img/main/content-bg.jpg') repeat-y #000;}
|
||||
.bar {width:580px;height:38px;margin-left:45px;background:url('../img/main/content-bar.png') -5px 0px no-repeat transparent;display:block;text-align:left;color:#e5b386;font-size:16px;font-weight:bold;padding-left:10px;padding-top:8px;}
|
||||
.left_col {float:left;margin-left:55px;width:300px;font-family:Arial,sans-serif;}
|
||||
.right_col {float:left;margin-left:15px;width:240px;font-family:Arial,sans-serif;text-align:center;}
|
||||
.clear {clear:both;}
|
||||
.col1 {margin-left:55px;width:540px;font-family:Arial,sans-serif}
|
||||
.subtitle { color: rgb(233, 196, 155); font-size: 14px; font-weight: bold; margin-top: 15px; margin-bottom: 15px; }
|
||||
.subtext.last {margin-bottom: 15px;}
|
||||
img.homethumb {border:1px solid #999;margin-bottom:15px}
|
||||
a.homethumb, a.homethumb:hover {margin: 45px auto;width:150px}
|
||||
|
||||
/* NAVIGATION */
|
||||
#navigation {margin-left:35px;padding-top:3px;width:586px;height:48px;background:url('../img/main/nav-bar.jpg') no-repeat transparent;}
|
||||
#navigation a {background:url('../img/main/nav-btn.png') no-repeat transparent;width:160px;height:30px;display:block;text-align:center;padding-top:12px;text-decoration:none;font-size:16px;font-weight:bold;color:#e9d3c0;}
|
||||
#navigation a:hover, #navigation a:active {background:url('../img/main/nav-btn-hover.png') no-repeat transparent;width:160px;height:30px;display:block;text-align:center;padding-top:12px;text-decoration:none;font-size:16px;font-weight:bold;color:#e9d3c0;}
|
||||
#navigation a.index_nav {margin-left:10px;float:left;}
|
||||
#navigation a.news_nav {margin-left:43px;float:left;}
|
||||
#navigation a.media_nav {margin-left:43px;float:left;}
|
||||
|
||||
/* NEWS */
|
||||
.news_con {padding:10px;border-top:1px dotted #666;}
|
||||
.news_con a {color:#e5b386}
|
||||
h3, h3 a {color:#e5b386;font-size:14px;margin-bottom:5px;}
|
||||
p {margin-bottom:5px;}
|
||||
.date {color:#b1331b;font-size:12px;margin-right:5px;}
|
||||
.news_list {margin-left:15px;margin-bottom:15px;list-style-image:url('../img/main/news-list.png');}
|
||||
a.news_link {color:#e5b386;text-decoration:none}
|
||||
|
||||
/* MEDIA */
|
||||
#media {margin:0 0 0 0;}
|
||||
#media img {border:1px solid #999;}
|
||||
#media a {text-decoration:underline;color:#fff;}
|
||||
#media a:hover {color:#ccc;}
|
||||
.col4 {float:left;margin-left:20px;margin-bottom:15px;width:127px;text-align:center;}
|
||||
|
||||
/* SOCIALS */
|
||||
a.twitter {margin-left:45px;float:left;width:160px;height:70px;display:block;background:url('../img/main/socials-twitter.png') no-repeat transparent;}
|
||||
a.rss {float:left;margin-left:45px;margin-top:17px;width:160px;height:53px;display:block;background:url('../img/main/socials-rss.png') no-repeat transparent;}
|
||||
a.facebook {float:left;margin-left:45px;margin-top:17px;width:160px;height:53px;display:block;background:url('../img/main/socials-facebook.png') no-repeat transparent;}
|
||||
a.facebook_ymir {float:left;margin-left:45px;margin-top:17px;width:160px;height:53px;display:block;background:url('../img/main/socials-facebook-ymir.png') no-repeat transparent;}
|
||||
|
||||
/* FOOTER */
|
||||
#footer {background:url('../img/main/footer-bg.jpg') no-repeat scroll;color:#596580;display:block;float:left;font:10px Arial;height:202px;width:657px;text-align:center;}
|
||||
#footer a.playbutton {margin:0 auto;display:block;text-align:center;padding-top:10px;text-decoration:none;font-family:Arial,sans-serif;font-size:16px;font-weight:bold;color:#ffcc99;width:255px;height:40px;background:url('../img/main/playbutton.png') no-repeat transparent;}
|
||||
#footer a.playbutton:hover {margin:0 auto;display:block;display:block;text-align:center;padding-top:10px;text-decoration:none;font-family:Arial,sans-serif;font-size:16px;font-weight:bold;color:#ffcc99;width:255px;height:40px;background:url('../img/main/playbutton-hover.png') no-repeat transparent;}
|
||||
#footer a.gameforgelogo {margin:0 auto;display:block;width:152px;height:46px;background:url('../img/main/gameforgelogo.png') no-repeat transparent;}
|
||||
#footer a.gameforgelogo:hover {margin:0 auto;display:block;width:152px;height:46px;background:url('../img/main/gameforgelogo-hover.png') no-repeat transparent;}
|
||||
#footer img.usk {float:right;margin-right:10px;margin-top:-45px;}
|
||||
#footer p { padding:23px 0 0 0; }
|
||||
#footer p a { color:#e8bf47;text-decoration:none; padding:0 5px 0 5px;}
|
||||
#footer p a:hover {text-decoration:underline; padding:0 5px 0 5px;}
|
528
public/assets/teaser/dc/css/prettyPhoto.css
Normal file
@ -0,0 +1,528 @@
|
||||
/* ------------------------------------------------------------------------
|
||||
This you can edit.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
/* ----------------------------------
|
||||
Default Theme
|
||||
----------------------------------- */
|
||||
|
||||
div.pp_default .pp_top,
|
||||
div.pp_default .pp_top .pp_middle,
|
||||
div.pp_default .pp_top .pp_left,
|
||||
div.pp_default .pp_top .pp_right,
|
||||
div.pp_default .pp_bottom,
|
||||
div.pp_default .pp_bottom .pp_left,
|
||||
div.pp_default .pp_bottom .pp_middle,
|
||||
div.pp_default .pp_bottom .pp_right { height: 13px; }
|
||||
|
||||
div.pp_default .pp_top .pp_left { background: url(../img/prettyPhoto/default/sprite.png) -78px -93px no-repeat; } /* Top left corner */
|
||||
div.pp_default .pp_top .pp_middle { background: url(../img/prettyPhoto/default/sprite_x.png) top left repeat-x; } /* Top pattern/color */
|
||||
div.pp_default .pp_top .pp_right { background: url(../img/prettyPhoto/default/sprite.png) -112px -93px no-repeat; } /* Top right corner */
|
||||
|
||||
div.pp_default .pp_content .ppt { color: #f8f8f8; }
|
||||
div.pp_default .pp_content_container .pp_left { background: url(../img/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y; padding-left: 13px; }
|
||||
div.pp_default .pp_content_container .pp_right { background: url(../img/prettyPhoto/default/sprite_y.png) top right repeat-y; padding-right: 13px; }
|
||||
div.pp_default .pp_content { background-color: #fff; } /* Content background */
|
||||
div.pp_default .pp_next:hover { background: url(../img/prettyPhoto/default/sprite_next.png) center right no-repeat; cursor: pointer; } /* Next button */
|
||||
div.pp_default .pp_previous:hover { background: url(../img/prettyPhoto/default/sprite_prev.png) center left no-repeat; cursor: pointer; } /* Previous button */
|
||||
div.pp_default .pp_expand { background: url(../img/prettyPhoto/default/sprite.png) 0 -29px no-repeat; cursor: pointer; width: 28px; height: 28px; } /* Expand button */
|
||||
div.pp_default .pp_expand:hover { background: url(../img/prettyPhoto/default/sprite.png) 0 -56px no-repeat; cursor: pointer; } /* Expand button hover */
|
||||
div.pp_default .pp_contract { background: url(../img/prettyPhoto/default/sprite.png) 0 -84px no-repeat; cursor: pointer; width: 28px; height: 28px; } /* Contract button */
|
||||
div.pp_default .pp_contract:hover { background: url(../img/prettyPhoto/default/sprite.png) 0 -113px no-repeat; cursor: pointer; } /* Contract button hover */
|
||||
div.pp_default .pp_close { width: 30px; height: 30px; background: url(../img/prettyPhoto/default/sprite.png) 2px 1px no-repeat; cursor: pointer; } /* Close button */
|
||||
div.pp_default #pp_full_res .pp_inline { color: #000; }
|
||||
div.pp_default .pp_gallery ul li a { background: url(../img/prettyPhoto/default/default_thumb.png) center center #f8f8f8; border:1px solid #aaa; }
|
||||
div.pp_default .pp_gallery ul li a:hover,
|
||||
div.pp_default .pp_gallery ul li.selected a { border-color: #fff; }
|
||||
|
||||
div.pp_default .pp_gallery a.pp_arrow_previous,
|
||||
div.pp_default .pp_gallery a.pp_arrow_next { position: static; left: auto; }
|
||||
div.pp_default .pp_nav .pp_play,
|
||||
div.pp_default .pp_nav .pp_pause { background: url(../img/prettyPhoto/default/sprite.png) -51px 1px no-repeat; height:30px; width:30px; }
|
||||
div.pp_default .pp_nav .pp_pause { background-position: -51px -29px; }
|
||||
div.pp_default .pp_details { position: relative; }
|
||||
div.pp_default a.pp_arrow_previous,
|
||||
div.pp_default a.pp_arrow_next { background: url(../img/prettyPhoto/default/sprite.png) -31px -3px no-repeat; height: 20px; margin: 4px 0 0 0; width: 20px; }
|
||||
div.pp_default a.pp_arrow_next { left: 52px; background-position: -82px -3px; } /* The next arrow in the bottom nav */
|
||||
div.pp_default .pp_content_container .pp_details { margin-top: 5px; }
|
||||
div.pp_default .pp_nav { clear: none; height: 30px; width: 105px; position: relative; }
|
||||
div.pp_default .pp_nav .currentTextHolder{ font-family: Georgia; font-style: italic; font-color:#999; font-size: 11px; left: 75px; line-height: 25px; margin: 0; padding: 0 0 0 10px; position: absolute; top: 2px; }
|
||||
|
||||
div.pp_default .pp_close:hover, div.pp_default .pp_nav .pp_play:hover, div.pp_default .pp_nav .pp_pause:hover, div.pp_default .pp_arrow_next:hover, div.pp_default .pp_arrow_previous:hover { opacity:0.7; }
|
||||
|
||||
div.pp_default .pp_description{ font-size: 11px; font-weight: bold; line-height: 14px; margin: 5px 50px 5px 0; }
|
||||
|
||||
div.pp_default .pp_bottom .pp_left { background: url(../img/prettyPhoto/default/sprite.png) -78px -127px no-repeat; } /* Bottom left corner */
|
||||
div.pp_default .pp_bottom .pp_middle { background: url(../img/prettyPhoto/default/sprite_x.png) bottom left repeat-x; } /* Bottom pattern/color */
|
||||
div.pp_default .pp_bottom .pp_right { background: url(../img/prettyPhoto/default/sprite.png) -112px -127px no-repeat; } /* Bottom right corner */
|
||||
|
||||
div.pp_default .pp_loaderIcon { background: url(../img/prettyPhoto/default/loader.gif) center center no-repeat; } /* Loader icon */
|
||||
|
||||
|
||||
/* ----------------------------------
|
||||
Light Rounded Theme
|
||||
----------------------------------- */
|
||||
|
||||
|
||||
div.light_rounded .pp_top .pp_left { background: url(../img/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat; } /* Top left corner */
|
||||
div.light_rounded .pp_top .pp_middle { background: #fff; } /* Top pattern/color */
|
||||
div.light_rounded .pp_top .pp_right { background: url(../img/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat; } /* Top right corner */
|
||||
|
||||
div.light_rounded .pp_content .ppt { color: #000; }
|
||||
div.light_rounded .pp_content_container .pp_left,
|
||||
div.light_rounded .pp_content_container .pp_right { background: #fff; }
|
||||
div.light_rounded .pp_content { background-color: #fff; } /* Content background */
|
||||
div.light_rounded .pp_next:hover { background: url(../img/prettyPhoto/light_rounded/btnNext.png) center right no-repeat; cursor: pointer; } /* Next button */
|
||||
div.light_rounded .pp_previous:hover { background: url(../img/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat; cursor: pointer; } /* Previous button */
|
||||
div.light_rounded .pp_expand { background: url(../img/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat; cursor: pointer; } /* Expand button */
|
||||
div.light_rounded .pp_expand:hover { background: url(../img/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
|
||||
div.light_rounded .pp_contract { background: url(../img/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat; cursor: pointer; } /* Contract button */
|
||||
div.light_rounded .pp_contract:hover { background: url(../img/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
|
||||
div.light_rounded .pp_close { width: 75px; height: 22px; background: url(../img/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat; cursor: pointer; } /* Close button */
|
||||
div.light_rounded .pp_details { position: relative; }
|
||||
div.light_rounded .pp_description { margin-right: 85px; }
|
||||
div.light_rounded #pp_full_res .pp_inline { color: #000; }
|
||||
div.light_rounded .pp_gallery a.pp_arrow_previous,
|
||||
div.light_rounded .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
|
||||
div.light_rounded .pp_nav .pp_play { background: url(../img/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat; height: 15px; width: 14px; }
|
||||
div.light_rounded .pp_nav .pp_pause { background: url(../img/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat; height: 15px; width: 14px; }
|
||||
|
||||
div.light_rounded .pp_arrow_previous { background: url(../img/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
|
||||
div.light_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
|
||||
div.light_rounded .pp_arrow_next { background: url(../img/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat; } /* The next arrow in the bottom nav */
|
||||
div.light_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
|
||||
|
||||
div.light_rounded .pp_bottom .pp_left { background: url(../img/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat; } /* Bottom left corner */
|
||||
div.light_rounded .pp_bottom .pp_middle { background: #fff; } /* Bottom pattern/color */
|
||||
div.light_rounded .pp_bottom .pp_right { background: url(../img/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat; } /* Bottom right corner */
|
||||
|
||||
div.light_rounded .pp_loaderIcon { background: url(../img/prettyPhoto/light_rounded/loader.gif) center center no-repeat; } /* Loader icon */
|
||||
|
||||
/* ----------------------------------
|
||||
Dark Rounded Theme
|
||||
----------------------------------- */
|
||||
|
||||
div.dark_rounded .pp_top .pp_left { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat; } /* Top left corner */
|
||||
div.dark_rounded .pp_top .pp_middle { background: url(../img/prettyPhoto/dark_rounded/contentPattern.png) top left repeat; } /* Top pattern/color */
|
||||
div.dark_rounded .pp_top .pp_right { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat; } /* Top right corner */
|
||||
|
||||
div.dark_rounded .pp_content_container .pp_left { background: url(../img/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y; } /* Left Content background */
|
||||
div.dark_rounded .pp_content_container .pp_right { background: url(../img/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y; } /* Right Content background */
|
||||
div.dark_rounded .pp_content { background: url(../img/prettyPhoto/dark_rounded/contentPattern.png) top left repeat; } /* Content background */
|
||||
div.dark_rounded .pp_next:hover { background: url(../img/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat; cursor: pointer; } /* Next button */
|
||||
div.dark_rounded .pp_previous:hover { background: url(../img/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat; cursor: pointer; } /* Previous button */
|
||||
div.dark_rounded .pp_expand { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat; cursor: pointer; } /* Expand button */
|
||||
div.dark_rounded .pp_expand:hover { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
|
||||
div.dark_rounded .pp_contract { background: url(../img/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat; cursor: pointer; } /* Contract button */
|
||||
div.dark_rounded .pp_contract:hover { background: url(../img/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
|
||||
div.dark_rounded .pp_close { width: 75px; height: 22px; background: url(../img/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat; cursor: pointer; } /* Close button */
|
||||
div.dark_rounded .pp_details { position: relative; }
|
||||
div.dark_rounded .pp_description { margin-right: 85px; }
|
||||
div.dark_rounded .currentTextHolder { color: #c4c4c4; }
|
||||
div.dark_rounded .pp_description { color: #fff; }
|
||||
div.dark_rounded #pp_full_res .pp_inline { color: #fff; }
|
||||
div.dark_rounded .pp_gallery a.pp_arrow_previous,
|
||||
div.dark_rounded .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
|
||||
div.dark_rounded .pp_nav .pp_play { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat; height: 15px; width: 14px; }
|
||||
div.dark_rounded .pp_nav .pp_pause { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat; height: 15px; width: 14px; }
|
||||
|
||||
div.dark_rounded .pp_arrow_previous { background: url(../img/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
|
||||
div.dark_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
|
||||
div.dark_rounded .pp_arrow_next { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat; } /* The next arrow in the bottom nav */
|
||||
div.dark_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
|
||||
|
||||
div.dark_rounded .pp_bottom .pp_left { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat; } /* Bottom left corner */
|
||||
div.dark_rounded .pp_bottom .pp_middle { background: url(../img/prettyPhoto/dark_rounded/contentPattern.png) top left repeat; } /* Bottom pattern/color */
|
||||
div.dark_rounded .pp_bottom .pp_right { background: url(../img/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat; } /* Bottom right corner */
|
||||
|
||||
div.dark_rounded .pp_loaderIcon { background: url(../img/prettyPhoto/dark_rounded/loader.gif) center center no-repeat; } /* Loader icon */
|
||||
|
||||
|
||||
/* ----------------------------------
|
||||
Dark Square Theme
|
||||
----------------------------------- */
|
||||
|
||||
div.dark_square .pp_left ,
|
||||
div.dark_square .pp_middle,
|
||||
div.dark_square .pp_right,
|
||||
div.dark_square .pp_content { background: #000; }
|
||||
|
||||
div.dark_square .currentTextHolder { color: #c4c4c4; }
|
||||
div.dark_square .pp_description { color: #fff; }
|
||||
div.dark_square .pp_loaderIcon { background: url(../img/prettyPhoto/dark_square/loader.gif) center center no-repeat; } /* Loader icon */
|
||||
|
||||
div.dark_square .pp_expand { background: url(../img/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat; cursor: pointer; } /* Expand button */
|
||||
div.dark_square .pp_expand:hover { background: url(../img/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
|
||||
div.dark_square .pp_contract { background: url(../img/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat; cursor: pointer; } /* Contract button */
|
||||
div.dark_square .pp_contract:hover { background: url(../img/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
|
||||
div.dark_square .pp_close { width: 75px; height: 22px; background: url(../img/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat; cursor: pointer; } /* Close button */
|
||||
div.dark_square .pp_details { position: relative; }
|
||||
div.dark_square .pp_description { margin: 0 85px 0 0; }
|
||||
div.dark_square #pp_full_res .pp_inline { color: #fff; }
|
||||
div.dark_square .pp_gallery a.pp_arrow_previous,
|
||||
div.dark_square .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
|
||||
div.dark_square .pp_nav { clear: none; }
|
||||
div.dark_square .pp_nav .pp_play { background: url(../img/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat; height: 15px; width: 14px; }
|
||||
div.dark_square .pp_nav .pp_pause { background: url(../img/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat; height: 15px; width: 14px; }
|
||||
|
||||
div.dark_square .pp_arrow_previous { background: url(../img/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
|
||||
div.dark_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
|
||||
div.dark_square .pp_arrow_next { background: url(../img/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat; } /* The next arrow in the bottom nav */
|
||||
div.dark_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
|
||||
|
||||
div.dark_square .pp_next:hover { background: url(../img/prettyPhoto/dark_square/btnNext.png) center right no-repeat; cursor: pointer; } /* Next button */
|
||||
div.dark_square .pp_previous:hover { background: url(../img/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat; cursor: pointer; } /* Previous button */
|
||||
|
||||
|
||||
/* ----------------------------------
|
||||
Light Square Theme
|
||||
----------------------------------- */
|
||||
|
||||
div.light_square .pp_left ,
|
||||
div.light_square .pp_middle,
|
||||
div.light_square .pp_right,
|
||||
div.light_square .pp_content { background: #fff; }
|
||||
|
||||
div.light_square .pp_content .ppt { color: #000; }
|
||||
div.light_square .pp_expand { background: url(../img/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat; cursor: pointer; } /* Expand button */
|
||||
div.light_square .pp_expand:hover { background: url(../img/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
|
||||
div.light_square .pp_contract { background: url(../img/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat; cursor: pointer; } /* Contract button */
|
||||
div.light_square .pp_contract:hover { background: url(../img/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
|
||||
div.light_square .pp_close { width: 75px; height: 22px; background: url(../img/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat; cursor: pointer; } /* Close button */
|
||||
div.light_square .pp_details { position: relative; }
|
||||
div.light_square .pp_description { margin-right: 85px; }
|
||||
div.light_square #pp_full_res .pp_inline { color: #000; }
|
||||
div.light_square .pp_gallery a.pp_arrow_previous,
|
||||
div.light_square .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
|
||||
div.light_square .pp_nav .pp_play { background: url(../img/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat; height: 15px; width: 14px; }
|
||||
div.light_square .pp_nav .pp_pause { background: url(../img/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat; height: 15px; width: 14px; }
|
||||
|
||||
div.light_square .pp_arrow_previous { background: url(../img/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
|
||||
div.light_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
|
||||
div.light_square .pp_arrow_next { background: url(../img/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat; } /* The next arrow in the bottom nav */
|
||||
div.light_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
|
||||
|
||||
div.light_square .pp_next:hover { background: url(../img/prettyPhoto/light_square/btnNext.png) center right no-repeat; cursor: pointer; } /* Next button */
|
||||
div.light_square .pp_previous:hover { background: url(../img/prettyPhoto/light_square/btnPrevious.png) center left no-repeat; cursor: pointer; } /* Previous button */
|
||||
|
||||
div.light_square .pp_loaderIcon { background: url(../img/prettyPhoto/light_rounded/loader.gif) center center no-repeat; } /* Loader icon */
|
||||
|
||||
|
||||
/* ----------------------------------
|
||||
Facebook style Theme
|
||||
----------------------------------- */
|
||||
|
||||
div.facebook .pp_top .pp_left { background: url(../img/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat; } /* Top left corner */
|
||||
div.facebook .pp_top .pp_middle { background: url(../img/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x; } /* Top pattern/color */
|
||||
div.facebook .pp_top .pp_right { background: url(../img/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat; } /* Top right corner */
|
||||
|
||||
div.facebook .pp_content .ppt { color: #000; }
|
||||
div.facebook .pp_content_container .pp_left { background: url(../img/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y; } /* Content background */
|
||||
div.facebook .pp_content_container .pp_right { background: url(../img/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y; } /* Content background */
|
||||
div.facebook .pp_content { background: #fff; } /* Content background */
|
||||
div.facebook .pp_expand { background: url(../img/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat; cursor: pointer; } /* Expand button */
|
||||
div.facebook .pp_expand:hover { background: url(../img/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
|
||||
div.facebook .pp_contract { background: url(../img/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat; cursor: pointer; } /* Contract button */
|
||||
div.facebook .pp_contract:hover { background: url(../img/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
|
||||
div.facebook .pp_close { width: 22px; height: 22px; background: url(../img/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat; cursor: pointer; } /* Close button */
|
||||
div.facebook .pp_details { position: relative; }
|
||||
div.facebook .pp_description { margin: 0 37px 0 0; }
|
||||
div.facebook #pp_full_res .pp_inline { color: #000; }
|
||||
div.facebook .pp_loaderIcon { background: url(../img/prettyPhoto/facebook/loader.gif) center center no-repeat; } /* Loader icon */
|
||||
|
||||
div.facebook .pp_arrow_previous { background: url(../img/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat; height: 22px; margin-top: 0; width: 22px; } /* The previous arrow in the bottom nav */
|
||||
div.facebook .pp_arrow_previous.disabled { background-position: 0 -96px; cursor: default; }
|
||||
div.facebook .pp_arrow_next { background: url(../img/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat; height: 22px; margin-top: 0; width: 22px; } /* The next arrow in the bottom nav */
|
||||
div.facebook .pp_arrow_next.disabled { background-position: -32px -96px; cursor: default; }
|
||||
div.facebook .pp_nav { margin-top: 0; }
|
||||
div.facebook .pp_nav p { font-size: 15px; padding: 0 3px 0 4px; }
|
||||
div.facebook .pp_nav .pp_play { background: url(../img/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat; height: 22px; width: 22px; }
|
||||
div.facebook .pp_nav .pp_pause { background: url(../img/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat; height: 22px; width: 22px; }
|
||||
|
||||
div.facebook .pp_next:hover { background: url(../img/prettyPhoto/facebook/btnNext.png) center right no-repeat; cursor: pointer; } /* Next button */
|
||||
div.facebook .pp_previous:hover { background: url(../img/prettyPhoto/facebook/btnPrevious.png) center left no-repeat; cursor: pointer; } /* Previous button */
|
||||
|
||||
div.facebook .pp_bottom .pp_left { background: url(../img/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat; } /* Bottom left corner */
|
||||
div.facebook .pp_bottom .pp_middle { background: url(../img/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x; } /* Bottom pattern/color */
|
||||
div.facebook .pp_bottom .pp_right { background: url(../img/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat; } /* Bottom right corner */
|
||||
|
||||
|
||||
/* ------------------------------------------------------------------------
|
||||
DO NOT CHANGE
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
div.pp_pic_holder a:focus { outline:none; }
|
||||
|
||||
div.pp_overlay {
|
||||
background: #000;
|
||||
display: none;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 9500;
|
||||
}
|
||||
|
||||
div.pp_pic_holder {
|
||||
display: none;
|
||||
position: absolute;
|
||||
width: 100px;
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
|
||||
.pp_top {
|
||||
height: 20px;
|
||||
position: relative;
|
||||
}
|
||||
* html .pp_top { padding: 0 20px; }
|
||||
|
||||
.pp_top .pp_left {
|
||||
height: 20px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
}
|
||||
.pp_top .pp_middle {
|
||||
height: 20px;
|
||||
left: 20px;
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
}
|
||||
* html .pp_top .pp_middle {
|
||||
left: 0;
|
||||
position: static;
|
||||
}
|
||||
|
||||
.pp_top .pp_right {
|
||||
height: 20px;
|
||||
left: auto;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.pp_content { height: 40px; min-width: 40px; }
|
||||
* html .pp_content { width: 40px; }
|
||||
|
||||
.pp_fade { display: none; }
|
||||
|
||||
.pp_content_container {
|
||||
position: relative;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.pp_content_container .pp_left { padding-left: 20px; }
|
||||
.pp_content_container .pp_right { padding-right: 20px; }
|
||||
|
||||
.pp_content_container .pp_details {
|
||||
float: left;
|
||||
margin: 10px 0 2px 0;
|
||||
}
|
||||
.pp_description {
|
||||
display: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.pp_social { float: left; margin: 7px 0 0 0; }
|
||||
.pp_social .facebook { float: left; position: relative; top: -1px; margin-left: 5px; width: 55px; overflow: hidden; }
|
||||
.pp_social .twitter { float: left; }
|
||||
|
||||
.pp_nav {
|
||||
clear: right;
|
||||
float: left;
|
||||
margin: 3px 10px 0 0;
|
||||
}
|
||||
|
||||
.pp_nav p {
|
||||
float: left;
|
||||
margin: 2px 4px;
|
||||
}
|
||||
|
||||
.pp_nav .pp_play,
|
||||
.pp_nav .pp_pause {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
text-indent: -10000px;
|
||||
}
|
||||
|
||||
a.pp_arrow_previous,
|
||||
a.pp_arrow_next {
|
||||
display: block;
|
||||
float: left;
|
||||
height: 15px;
|
||||
margin-top: 3px;
|
||||
overflow: hidden;
|
||||
text-indent: -10000px;
|
||||
width: 14px;
|
||||
}
|
||||
|
||||
.pp_hoverContainer {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 2000;
|
||||
}
|
||||
|
||||
.pp_gallery {
|
||||
display: none;
|
||||
left: 50%;
|
||||
margin-top: -50px;
|
||||
position: absolute;
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
.pp_gallery div {
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.pp_gallery ul {
|
||||
float: left;
|
||||
height: 35px;
|
||||
margin: 0 0 0 5px;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.pp_gallery ul a {
|
||||
border: 1px #000 solid;
|
||||
border: 1px rgba(0,0,0,0.5) solid;
|
||||
display: block;
|
||||
float: left;
|
||||
height: 33px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.pp_gallery ul a:hover,
|
||||
.pp_gallery li.selected a { border-color: #fff; }
|
||||
|
||||
.pp_gallery ul a img { border: 0; }
|
||||
|
||||
.pp_gallery li {
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 0 5px 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.pp_gallery li.default a {
|
||||
background: url(../img/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;
|
||||
display: block;
|
||||
height: 33px;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.pp_gallery li.default a img { display: none; }
|
||||
|
||||
.pp_gallery .pp_arrow_previous,
|
||||
.pp_gallery .pp_arrow_next {
|
||||
margin-top: 7px !important;
|
||||
}
|
||||
|
||||
a.pp_next {
|
||||
background: url(../img/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
|
||||
display: block;
|
||||
float: right;
|
||||
height: 100%;
|
||||
text-indent: -10000px;
|
||||
width: 49%;
|
||||
}
|
||||
|
||||
a.pp_previous {
|
||||
background: url(../img/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
|
||||
display: block;
|
||||
float: left;
|
||||
height: 100%;
|
||||
text-indent: -10000px;
|
||||
width: 49%;
|
||||
}
|
||||
|
||||
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 {
|
||||
position: absolute; right: 0; top: 0;
|
||||
display: block;
|
||||
line-height:22px;
|
||||
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 {
|
||||
line-height: 1 !important;
|
||||
}
|
||||
|
||||
#pp_full_res .pp_inline {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#pp_full_res .pp_inline p { margin: 0 0 15px 0; }
|
||||
|
||||
div.ppt {
|
||||
color: #fff;
|
||||
display: none;
|
||||
font-size: 17px;
|
||||
margin: 0 0 5px 15px;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------
|
||||
Miscellaneous
|
||||
------------------------------------------------------------------------- */
|
||||
|
52
public/assets/teaser/dc/css/reset.css
Normal file
@ -0,0 +1,52 @@
|
||||
/* RESET CSS */
|
||||
|
||||
/* v1.0 | 20080212 */
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
body {
|
||||
line-height: normal;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
padding:0;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after, q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
/* remember to define focus styles! */
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* remember to highlight inserts somehow! */
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
BIN
public/assets/teaser/dc/img/homethumb_1.jpg
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
public/assets/teaser/dc/img/homethumb_2.jpg
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
public/assets/teaser/dc/img/homethumb_3.jpg
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
public/assets/teaser/dc/img/main/body-bg.jpg
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
public/assets/teaser/dc/img/main/content-bar.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
public/assets/teaser/dc/img/main/content-bg.jpg
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/teaser/dc/img/main/footer-bg.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
public/assets/teaser/dc/img/main/gameforgelogo-hover.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
public/assets/teaser/dc/img/main/gameforgelogo.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
public/assets/teaser/dc/img/main/headcontent-bg.jpg
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
public/assets/teaser/dc/img/main/headcontent-youtube.png
Normal file
After Width: | Height: | Size: 106 KiB |
BIN
public/assets/teaser/dc/img/main/nav-bar.jpg
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
public/assets/teaser/dc/img/main/nav-btn-hover.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/assets/teaser/dc/img/main/nav-btn.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/teaser/dc/img/main/news-list.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/assets/teaser/dc/img/main/playbutton-hover.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
public/assets/teaser/dc/img/main/playbutton.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
public/assets/teaser/dc/img/main/socials-facebook-ymir.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/teaser/dc/img/main/socials-facebook.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
public/assets/teaser/dc/img/main/socials-rss.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/assets/teaser/dc/img/main/socials-twitter.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
public/assets/teaser/dc/img/main/story.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
public/assets/teaser/dc/img/media/artwork-1-thumb.jpg
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
public/assets/teaser/dc/img/media/artwork-1.jpg
Normal file
After Width: | Height: | Size: 204 KiB |
BIN
public/assets/teaser/dc/img/media/artwork-2-thumb.jpg
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
public/assets/teaser/dc/img/media/artwork-2.jpg
Normal file
After Width: | Height: | Size: 376 KiB |
BIN
public/assets/teaser/dc/img/media/artwork-3-thumb.jpg
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
public/assets/teaser/dc/img/media/artwork-3.jpg
Normal file
After Width: | Height: | Size: 378 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-1-thumb.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-1.jpg
Normal file
After Width: | Height: | Size: 293 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-2-thumb.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-2.jpg
Normal file
After Width: | Height: | Size: 319 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-3-thumb.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-3.jpg
Normal file
After Width: | Height: | Size: 398 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-4-thumb.jpg
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-4.jpg
Normal file
After Width: | Height: | Size: 85 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-5-thumb.jpg
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-5.jpg
Normal file
After Width: | Height: | Size: 104 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-6-thumb.jpg
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/assets/teaser/dc/img/media/screenshot-6.jpg
Normal file
After Width: | Height: | Size: 104 KiB |
BIN
public/assets/teaser/dc/img/media/trailer-1-thumb.jpg
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
public/assets/teaser/dc/img/media/trailer-2-thumb.jpg
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-1-1280x960.jpg
Normal file
After Width: | Height: | Size: 447 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-1-1600x1200.jpg
Normal file
After Width: | Height: | Size: 527 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-1-1920x1080.jpg
Normal file
After Width: | Height: | Size: 538 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-1-1920x1200.jpg
Normal file
After Width: | Height: | Size: 612 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-1-thumb.jpg
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-2-1280x960.jpg
Normal file
After Width: | Height: | Size: 427 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-2-1600x1200.jpg
Normal file
After Width: | Height: | Size: 488 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-2-1920x1080.jpg
Normal file
After Width: | Height: | Size: 517 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-2-1920x1200.jpg
Normal file
After Width: | Height: | Size: 587 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-2-thumb.jpg
Normal file
After Width: | Height: | Size: 9.7 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-3-1280x960.jpg
Normal file
After Width: | Height: | Size: 604 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-3-1600x1200.jpg
Normal file
After Width: | Height: | Size: 826 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-3-1920x1080.jpg
Normal file
After Width: | Height: | Size: 855 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-3-1920x1200.jpg
Normal file
After Width: | Height: | Size: 971 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-3-thumb.jpg
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-4-1280x960.jpg
Normal file
After Width: | Height: | Size: 518 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-4-1600x1200.jpg
Normal file
After Width: | Height: | Size: 613 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-4-1920x1080.jpg
Normal file
After Width: | Height: | Size: 669 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-4-1920x1200.jpg
Normal file
After Width: | Height: | Size: 745 KiB |
BIN
public/assets/teaser/dc/img/media/wallpaper-4-thumb.jpg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/assets/teaser/dc/img/play_ro.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/dark_rounded/btnNext.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 130 B |
After Width: | Height: | Size: 227 B |
BIN
public/assets/teaser/dc/img/prettyPhoto/dark_rounded/loader.gif
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/dark_rounded/sprite.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/dark_square/btnNext.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 121 B |
After Width: | Height: | Size: 227 B |
BIN
public/assets/teaser/dc/img/prettyPhoto/dark_square/loader.gif
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/dark_square/sprite.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.5 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/default/loader.gif
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/default/sprite.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/default/sprite_next.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/default/sprite_prev.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/default/sprite_x.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/default/sprite_y.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/assets/teaser/dc/img/prettyPhoto/facebook/btnNext.png
Normal file
After Width: | Height: | Size: 845 B |
BIN
public/assets/teaser/dc/img/prettyPhoto/facebook/btnPrevious.png
Normal file
After Width: | Height: | Size: 828 B |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 137 B |
After Width: | Height: | Size: 136 B |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 227 B |
BIN
public/assets/teaser/dc/img/prettyPhoto/facebook/loader.gif
Normal file
After Width: | Height: | Size: 2.5 KiB |