Initial commit
487
pressroom/www/php/style/animations.css
Normal file
@@ -0,0 +1,487 @@
|
||||
.animated_element
|
||||
{
|
||||
visibility: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.fadeIn, .scale, .slideRight, .slideRightBack, .slideRight200, .slideLeft, .slideLeftBack, .slideLeft50, .slideDown, .slideDownBack, .slideDown200, .slideUp, .slideUpBack, .width, .height
|
||||
{
|
||||
animation-timing-function: cubic-bezier(.75, 0, .25, 1);
|
||||
-webkit-animation-timing-function: cubic-bezier(.75, 0, .25, 1);
|
||||
visibility: visible !important;
|
||||
}
|
||||
.slideRightBack, .slideLeftBack, .slideDownBack, .slideUpBack
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
/* --- fadeIn --- */
|
||||
.fadeIn
|
||||
{
|
||||
animation-name: fadeIn;
|
||||
-webkit-animation-name: fadeIn;
|
||||
}
|
||||
@keyframes fadeIn
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fadeIn
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
/* --- scale --- */
|
||||
.scale
|
||||
{
|
||||
animation-name: scale;
|
||||
-webkit-animation-name: scale;
|
||||
}
|
||||
@keyframes scale
|
||||
{
|
||||
0%
|
||||
{
|
||||
transform: scale(0.2);
|
||||
}
|
||||
100%
|
||||
{
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes scale
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: scale(0.2);
|
||||
}
|
||||
100%
|
||||
{
|
||||
-webkit-transform: scale(1);
|
||||
}
|
||||
}
|
||||
/* --- slideRight --- */
|
||||
.slideRight
|
||||
{
|
||||
animation-name: slideRight;
|
||||
-webkit-animation-name: slideRight;
|
||||
}
|
||||
@keyframes slideRight
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideRight
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
/* --- slideRightBack --- */
|
||||
.slideRightBack
|
||||
{
|
||||
animation-name: slideRightBack;
|
||||
-webkit-animation-name: slideRightBack;
|
||||
}
|
||||
@keyframes slideRightBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateX(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideRightBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
/* --- slideRight200 --- */
|
||||
.slideRight200
|
||||
{
|
||||
animation-name: slideRight200;
|
||||
-webkit-animation-name: slideRight200;
|
||||
}
|
||||
@keyframes slideRight200
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateX(-200%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideRight200
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-200%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
/* --- slideLeft --- */
|
||||
.slideLeft
|
||||
{
|
||||
animation-name: slideLeft;
|
||||
-webkit-animation-name: slideLeft;
|
||||
}
|
||||
@keyframes slideLeft
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateX(100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideLeft
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
/* --- slideLeftBack --- */
|
||||
.slideLeftBack
|
||||
{
|
||||
animation-name: slideLeftBack;
|
||||
-webkit-animation-name: slideLeftBack;
|
||||
}
|
||||
@keyframes slideLeftBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateX(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateX(100%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideLeftBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(100%);
|
||||
}
|
||||
}
|
||||
/* --- slideLeft50 --- */
|
||||
.slideLeft50
|
||||
{
|
||||
animation-name: slideLeft50;
|
||||
-webkit-animation-name: slideLeft50;
|
||||
}
|
||||
@keyframes slideLeft50
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateX(50%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideLeft50
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(50%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
/* --- slideDown --- */
|
||||
.slideDown
|
||||
{
|
||||
animation-name: slideDown;
|
||||
-webkit-animation-name: slideDown;
|
||||
}
|
||||
@keyframes slideDown
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideDown
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
/* --- slideDownBack --- */
|
||||
.slideDownBack
|
||||
{
|
||||
animation-name: slideDownBack;
|
||||
-webkit-animation-name: slideDownBack;
|
||||
}
|
||||
@keyframes slideDownBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateY(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideDownBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
/* --- slideDown --- */
|
||||
.slideDown200
|
||||
{
|
||||
animation-name: slideDown200;
|
||||
-webkit-animation-name: slideDown200;
|
||||
}
|
||||
@keyframes slideDown200
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideDown200
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
/* --- slideUp --- */
|
||||
.slideUp
|
||||
{
|
||||
animation-name: slideUp;
|
||||
-webkit-animation-name: slideUp;
|
||||
}
|
||||
|
||||
@keyframes slideUp
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateY(100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes slideUp
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0%);
|
||||
}
|
||||
}
|
||||
/* --- slideUpBack --- */
|
||||
.slideUpBack
|
||||
{
|
||||
animation-name: slideUpBack;
|
||||
-webkit-animation-name: slideUpBack;
|
||||
}
|
||||
|
||||
@keyframes slideUpBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateY(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateY(100%);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes slideUpBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(100%);
|
||||
}
|
||||
}
|
||||
/* --- width --- */
|
||||
.width
|
||||
{
|
||||
animation-name: width;
|
||||
-webkit-animation-name: width;
|
||||
}
|
||||
|
||||
@keyframes width
|
||||
{
|
||||
0%
|
||||
{
|
||||
width: 0%;
|
||||
}
|
||||
100%
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes width
|
||||
{
|
||||
0%
|
||||
{
|
||||
width: 0%;
|
||||
}
|
||||
100%
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
/* --- height --- */
|
||||
.height
|
||||
{
|
||||
animation-name: height;
|
||||
-webkit-animation-name: height;
|
||||
}
|
||||
|
||||
@keyframes height
|
||||
{
|
||||
0%
|
||||
{
|
||||
height: 0%;
|
||||
}
|
||||
100%
|
||||
{
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes height
|
||||
{
|
||||
0%
|
||||
{
|
||||
height: 0%;
|
||||
}
|
||||
100%
|
||||
{
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
914
pressroom/www/php/style/dark_skin.css
Normal file
@@ -0,0 +1,914 @@
|
||||
body
|
||||
{
|
||||
background-color: #2d3136;
|
||||
}
|
||||
.site_container,
|
||||
.value_container
|
||||
{
|
||||
background-color: #363B40;
|
||||
}
|
||||
.site_container.boxed
|
||||
{
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
|
||||
-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
|
||||
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.header_container.style_2
|
||||
{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.header_top_bar_container .latest_news_scrolling_list_container
|
||||
{
|
||||
border-color: #363b40;
|
||||
}
|
||||
.post_details li.date,
|
||||
.more, .more[type="submit"],
|
||||
.post.single .post_details,
|
||||
.share_box,
|
||||
.taxonomies a,
|
||||
.comment_form .text_input:focus,
|
||||
.comment_form textarea:focus,
|
||||
.contact_form .text_input:focus,
|
||||
.contact_form textarea:focus,
|
||||
.column.border_top,
|
||||
.accordion .ui-accordion-header,
|
||||
.list,
|
||||
.search_form input[type="text"]:focus,
|
||||
.item_content.border_top
|
||||
{
|
||||
border-color: #464D53;
|
||||
}
|
||||
.box_header,
|
||||
.more.active,
|
||||
.more:hover,
|
||||
.tabs_navigation.small li a:hover,
|
||||
.tabs_navigation.small li a.selected,
|
||||
.tabs_navigation.small li.ui-tabs-active a,
|
||||
.more.highlight,
|
||||
.more.active:hover,
|
||||
.taxonomies a:hover,
|
||||
.review_summary .number,
|
||||
.accordion .ui-accordion-header.ui-state-active,
|
||||
.mobile-menu-switch
|
||||
{
|
||||
border-color: #8CC152;
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6,
|
||||
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
|
||||
.box_header,
|
||||
.read_more,
|
||||
.tabs_navigation li a,
|
||||
.more,
|
||||
.more[type="submit"],
|
||||
.more.highlight:hover,
|
||||
.tabs_navigation.small li a,
|
||||
.tabs_navigation.small li a:hover,
|
||||
.tabs_navigation.small li a.selected,
|
||||
.tabs_navigation.small li.ui-tabs-active a,
|
||||
blockquote,
|
||||
label,
|
||||
.comment_form input,
|
||||
.comment_form textarea,
|
||||
.contact_form input,
|
||||
.contact_form textarea,
|
||||
.review_block h5,
|
||||
.review_summary h5,
|
||||
.list li,
|
||||
.list li a,
|
||||
.dropcap .dropcap_label h3,
|
||||
input,
|
||||
textarea,
|
||||
.mobile-menu li a,
|
||||
.mobile-menu li.selected ul a,
|
||||
.mobile-menu li.selected ul li.selected ul a,
|
||||
.slider_posts_list li.current h5,
|
||||
.slider_posts_list li:hover h5,
|
||||
.bread_crumb li a:hover
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
.box_header,
|
||||
.tabs_navigation li a,
|
||||
.post a.comments_number,
|
||||
.blog.rating .post .value_bar,
|
||||
.author .value_bar,
|
||||
.divider,
|
||||
.pagination li a,
|
||||
blockquote,
|
||||
.comment_form input,
|
||||
.comment_form textarea,
|
||||
.contact_form input,
|
||||
.contact_form textarea,
|
||||
.review_block,
|
||||
.review_summary .value_bar,
|
||||
.item_content .features_icon,
|
||||
.accordion .ui-accordion-header .ui-accordion-header-icon,
|
||||
.announcement,
|
||||
.dropcap .dropcap_label,
|
||||
input,
|
||||
textarea,
|
||||
.mobile-menu li a,
|
||||
.mobile-menu li.selected ul a,
|
||||
.mobile-menu li.selected ul li.selected ul a,
|
||||
.slider_posts_list .slider_posts_list_progress_block
|
||||
{
|
||||
background-color: #42494F;
|
||||
}
|
||||
.tabs_navigation.small,
|
||||
.slider_posts_list li
|
||||
{
|
||||
border-color: #42494F;
|
||||
}
|
||||
.post_details li.category,
|
||||
.slider_navigation .slider_control a:hover,
|
||||
a.slider_control:hover,
|
||||
.slider_posts_list .slider_posts_list_bar,
|
||||
.read_more .arrow,
|
||||
.tabs_navigation li a:hover,
|
||||
.tabs_navigation li a.selected,
|
||||
.tabs_navigation li.ui-tabs-active a,
|
||||
.post .comments_number:hover,
|
||||
.footer .post .comments_number:hover,
|
||||
.more.active,
|
||||
.more:hover,
|
||||
.slider_posts_list_container a.slider_control,
|
||||
.pagination li a:hover,
|
||||
.pagination li.selected a,
|
||||
.taxonomies a:hover,
|
||||
.value_container .value_bar,
|
||||
.accordion .ui-accordion-header.ui-state-active,
|
||||
.accordion .ui-accordion-header:hover .ui-accordion-header-icon,
|
||||
.dropcap .dropcap_label.active,
|
||||
.icon.fullscreen:hover,
|
||||
.gallery_popup .slider_navigation .slider_control a:hover,
|
||||
.mobile-menu-switch .line,
|
||||
.mobile-menu-switch:hover,
|
||||
.mobile-menu li.selected a,
|
||||
.mobile-menu li.selected ul li.selected a,
|
||||
.mobile-menu li.selected ul li.selected ul li.selected a
|
||||
{
|
||||
background-color: #8CC152;
|
||||
}
|
||||
.tabs_navigation li.ui-tabs-active span,
|
||||
.post .comments_number:hover .arrow_comments,
|
||||
.footer .post .comments_number:hover .arrow_comments
|
||||
{
|
||||
border-color: #8CC152 transparent;
|
||||
}
|
||||
.blog ul.post_details.simple li.category,
|
||||
.blog ul.post_details.simple li.category a,
|
||||
.post.single .post_details a,
|
||||
.more.highlight,
|
||||
.more.active:hover,
|
||||
.review_summary .number,
|
||||
.about_subtitle,
|
||||
.announcement .expose,
|
||||
p a
|
||||
{
|
||||
color: #8CC152;
|
||||
}
|
||||
ul.post_details.simple li
|
||||
{
|
||||
background: none;
|
||||
}
|
||||
.post_details li.date,
|
||||
.post a.comments_number,
|
||||
.author h6,
|
||||
.bread_crumb li,
|
||||
.bread_crumb li a,
|
||||
.pagination li a,
|
||||
.post.single li.detail,
|
||||
.taxonomies a,
|
||||
.posted_by abbr.timeago,
|
||||
.post.single .sentence .text,
|
||||
.gallery_popup .sentence .text,
|
||||
.slider_posts_list li h5
|
||||
{
|
||||
color: #9DA4AB;
|
||||
}
|
||||
.post .arrow_comments
|
||||
{
|
||||
border-color: #42494F transparent;
|
||||
}
|
||||
p,
|
||||
.review_block .list li,
|
||||
.review_block .list li a,
|
||||
.review_summary .text p
|
||||
{
|
||||
color: #D7DCE0;
|
||||
}
|
||||
span.number,
|
||||
span.odometer.number,
|
||||
.post.single .sentence .author,
|
||||
.gallery_popup .sentence .author,
|
||||
blockquote .author,
|
||||
input.hint,
|
||||
textarea.hint,
|
||||
.comment_form .hint,
|
||||
.contact_form .hint,
|
||||
.posted_by .in_reply,
|
||||
.slider_posts_list li .date
|
||||
{
|
||||
color: #858D94;
|
||||
}
|
||||
::-webkit-input-placeholder
|
||||
{
|
||||
color: #858D94;
|
||||
}
|
||||
:-moz-placeholder
|
||||
{
|
||||
color: #858D94;
|
||||
}
|
||||
::-moz-placeholder
|
||||
{
|
||||
color: #858D94;
|
||||
}
|
||||
:-ms-input-placeholder
|
||||
{
|
||||
color: #858D94;
|
||||
}
|
||||
.tabs_navigation li a
|
||||
{
|
||||
border-color: #52595F;
|
||||
}
|
||||
.footer_container
|
||||
{
|
||||
background-color: #2D3136;
|
||||
}
|
||||
.divider.subheader_arrow
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/subheader_arrow.png");
|
||||
}
|
||||
.pagination li.left a
|
||||
{
|
||||
background-image: url("../images/icons/navigation/dark_bg/pagination_arrow_left.png");
|
||||
}
|
||||
.pagination li.right a
|
||||
{
|
||||
background-image: url("../images/icons/navigation/dark_bg/pagination_arrow_right.png");
|
||||
}
|
||||
blockquote
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/quote_content.png");
|
||||
}
|
||||
#comments_list .children .comment .parent_arrow
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/comment_reply.png");
|
||||
}
|
||||
.bullet.style_1
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/bullet_style_1.png");
|
||||
padding-left: 15px;
|
||||
}
|
||||
.bullet.style_2
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/bullet_style_2.png");
|
||||
}
|
||||
.bullet.style_3
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/bullet_style_3.png");
|
||||
}
|
||||
.bullet.style_4
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/bullet_style_4.png");
|
||||
}
|
||||
.item_content .not_found
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/404.png");
|
||||
}
|
||||
.app
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/app.png");
|
||||
}
|
||||
.calendar
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/calendar.png");
|
||||
}
|
||||
.chart
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/chart.png");
|
||||
}
|
||||
.chat
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/chat.png");
|
||||
}
|
||||
.clock
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/clock.png");
|
||||
}
|
||||
.database
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/database.png");
|
||||
}
|
||||
.document
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/document.png");
|
||||
}
|
||||
.envelope
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/envelope.png");
|
||||
}
|
||||
.faq
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/faq.png");
|
||||
}
|
||||
.graph
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/graph.png");
|
||||
}
|
||||
.image
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/image.png");
|
||||
}
|
||||
.laptop
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/laptop.png");
|
||||
}
|
||||
.magnifier
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/magnifier.png");
|
||||
}
|
||||
.features_icon.mobile
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/mobile.png");
|
||||
}
|
||||
.pin
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/pin.png");
|
||||
}
|
||||
.printer
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/printer.png");
|
||||
}
|
||||
.quote
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/quote.png");
|
||||
}
|
||||
.screen
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/screen.png");
|
||||
}
|
||||
.speaker
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/speaker.png");
|
||||
}
|
||||
.video
|
||||
{
|
||||
background-image: url("../images/icons/features/dark_bg/video.png");
|
||||
}
|
||||
li.detail.category
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/post_category.png");
|
||||
}
|
||||
.detail.date
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/post_date.png");
|
||||
}
|
||||
.detail.author
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/post_author.png");
|
||||
}
|
||||
.detail.views
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/post_views.png");
|
||||
}
|
||||
.detail.comments
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/post_comments.png");
|
||||
}
|
||||
.taxonomies.tags
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/post_footer_tags.png");
|
||||
}
|
||||
.taxonomies.categories
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/post_footer_category.png");
|
||||
}
|
||||
.behance
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/behance.png");
|
||||
}
|
||||
.bing
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/bing.png");
|
||||
}
|
||||
.blogger
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/blogger.png");
|
||||
}
|
||||
.deezer
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/deezer.png");
|
||||
}
|
||||
.designfloat
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/designfloat.png");
|
||||
}
|
||||
.deviantart
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/deviantart.png");
|
||||
}
|
||||
.digg
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/digg.png");
|
||||
}
|
||||
.digg
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/digg.png");
|
||||
}
|
||||
.dribbble
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/dribbble.png");
|
||||
}
|
||||
.envato
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/envato.png");
|
||||
}
|
||||
.facebook
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/facebook.png");
|
||||
}
|
||||
.flickr
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/flickr.png");
|
||||
}
|
||||
.form
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/form.png");
|
||||
}
|
||||
.forrst
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/forrst.png");
|
||||
}
|
||||
.foursquare
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/foursquare.png");
|
||||
}
|
||||
.friendfeed
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/friendfeed.png");
|
||||
}
|
||||
.googleplus
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/googleplus.png");
|
||||
}
|
||||
.instagram
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/instagram.png");
|
||||
}
|
||||
.linkedin
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/linkedin.png");
|
||||
}
|
||||
.mail
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/mail.png");
|
||||
}
|
||||
.mobile
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/mobile.png");
|
||||
}
|
||||
.myspace
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/myspace.png");
|
||||
}
|
||||
.picasa
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/picasa.png");
|
||||
}
|
||||
.pinterest
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/pinterest.png");
|
||||
}
|
||||
.reddit
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/reddit.png");
|
||||
}
|
||||
.rss
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/rss.png");
|
||||
}
|
||||
.skype
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/skype.png");
|
||||
}
|
||||
.soundcloud
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/soundcloud.png");
|
||||
}
|
||||
.spotify
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/spotify.png");
|
||||
}
|
||||
.stumbleupon
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/stumbleupon.png");
|
||||
}
|
||||
.technorati
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/technorati.png");
|
||||
}
|
||||
.tumblr
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/tumblr.png");
|
||||
}
|
||||
.twitter
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/twitter.png");
|
||||
}
|
||||
.vimeo
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/vimeo.png");
|
||||
}
|
||||
.wykop
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/wykop.png");
|
||||
}
|
||||
.xing
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/xing.png");
|
||||
}
|
||||
.youtube
|
||||
{
|
||||
background-image: url("../images/icons/social/dark_bg/youtube.png");
|
||||
}
|
||||
.light .behance
|
||||
{
|
||||
background-image: url("../images/icons/social/behance.png");
|
||||
}
|
||||
.light .bing
|
||||
{
|
||||
background-image: url("../images/icons/social/bing.png");
|
||||
}
|
||||
.light .blogger
|
||||
{
|
||||
background-image: url("../images/icons/social/blogger.png");
|
||||
}
|
||||
.light .deezer
|
||||
{
|
||||
background-image: url("../images/icons/social/deezer.png");
|
||||
}
|
||||
.light .designfloat
|
||||
{
|
||||
background-image: url("../images/icons/social/designfloat.png");
|
||||
}
|
||||
.light .deviantart
|
||||
{
|
||||
background-image: url("../images/icons/social/deviantart.png");
|
||||
}
|
||||
.light .digg
|
||||
{
|
||||
background-image: url("../images/icons/social/digg.png");
|
||||
}
|
||||
.light .digg
|
||||
{
|
||||
background-image: url("../images/icons/social/digg.png");
|
||||
}
|
||||
.light .dribbble
|
||||
{
|
||||
background-image: url("../images/icons/social/dribbble.png");
|
||||
}
|
||||
.light .envato
|
||||
{
|
||||
background-image: url("../images/icons/social/envato.png");
|
||||
}
|
||||
.light .facebook
|
||||
{
|
||||
background-image: url("../images/icons/social/facebook.png");
|
||||
}
|
||||
.light .flickr
|
||||
{
|
||||
background-image: url("../images/icons/social/flickr.png");
|
||||
}
|
||||
.light .form
|
||||
{
|
||||
background-image: url("../images/icons/social/form.png");
|
||||
}
|
||||
.light .forrst
|
||||
{
|
||||
background-image: url("../images/icons/social/forrst.png");
|
||||
}
|
||||
.light .foursquare
|
||||
{
|
||||
background-image: url("../images/icons/social/foursquare.png");
|
||||
}
|
||||
.light .friendfeed
|
||||
{
|
||||
background-image: url("../images/icons/social/friendfeed.png");
|
||||
}
|
||||
.light .googleplus
|
||||
{
|
||||
background-image: url("../images/icons/social/googleplus.png");
|
||||
}
|
||||
.light .instagram
|
||||
{
|
||||
background-image: url("../images/icons/social/instagram.png");
|
||||
}
|
||||
.light .linkedin
|
||||
{
|
||||
background-image: url("../images/icons/social/linkedin.png");
|
||||
}
|
||||
.light .mail
|
||||
{
|
||||
background-image: url("../images/icons/social/mail.png");
|
||||
}
|
||||
.light .mobile
|
||||
{
|
||||
background-image: url("../images/icons/social/mobile.png");
|
||||
}
|
||||
.light .myspace
|
||||
{
|
||||
background-image: url("../images/icons/social/myspace.png");
|
||||
}
|
||||
.light .picasa
|
||||
{
|
||||
background-image: url("../images/icons/social/picasa.png");
|
||||
}
|
||||
.light .pinterest
|
||||
{
|
||||
background-image: url("../images/icons/social/pinterest.png");
|
||||
}
|
||||
.light .reddit
|
||||
{
|
||||
background-image: url("../images/icons/social/reddit.png");
|
||||
}
|
||||
.light .rss
|
||||
{
|
||||
background-image: url("../images/icons/social/rss.png");
|
||||
}
|
||||
.light .skype
|
||||
{
|
||||
background-image: url("../images/icons/social/skype.png");
|
||||
}
|
||||
.light .soundcloud
|
||||
{
|
||||
background-image: url("../images/icons/social/soundcloud.png");
|
||||
}
|
||||
.light .spotify
|
||||
{
|
||||
background-image: url("../images/icons/social/spotify.png");
|
||||
}
|
||||
.light .stumbleupon
|
||||
{
|
||||
background-image: url("../images/icons/social/stumbleupon.png");
|
||||
}
|
||||
.light .technorati
|
||||
{
|
||||
background-image: url("../images/icons/social/technorati.png");
|
||||
}
|
||||
.light .tumblr
|
||||
{
|
||||
background-image: url("../images/icons/social/tumblr.png");
|
||||
}
|
||||
.light .twitter
|
||||
{
|
||||
background-image: url("../images/icons/social/twitter.png");
|
||||
}
|
||||
.light .vimeo
|
||||
{
|
||||
background-image: url("../images/icons/social/vimeo.png");
|
||||
}
|
||||
.light .wykop
|
||||
{
|
||||
background-image: url("../images/icons/social/wykop.png");
|
||||
}
|
||||
.light .xing
|
||||
{
|
||||
background-image: url("../images/icons/social/xing.png");
|
||||
}
|
||||
.light .youtube
|
||||
{
|
||||
background-image: url("../images/icons/social/youtube.png");
|
||||
}
|
||||
.bread_crumb .separator
|
||||
{
|
||||
background-image: url("../images/icons/navigation/dark_bg/breadcrumb_arrow.png");
|
||||
}
|
||||
.accordion .ui-accordion-header .ui-accordion-header-icon
|
||||
{
|
||||
background-image: url("../images/icons/navigation/dark_bg/accordion_arrow_down.png");
|
||||
}
|
||||
/* --- menu --- */
|
||||
.menu_container
|
||||
{
|
||||
border-top-color: #464D53;
|
||||
border-bottom-color: #464D53;
|
||||
background: #363B40;
|
||||
}
|
||||
.menu_container.sticky.move
|
||||
{
|
||||
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.4);
|
||||
-moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.4);
|
||||
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.4);
|
||||
border-bottom-color: transparent;
|
||||
}
|
||||
.menu_container.sticky.move .sf-menu li
|
||||
{
|
||||
border-bottom-color: transparent;
|
||||
}
|
||||
.sf-menu li
|
||||
{
|
||||
background-color: #363B40;
|
||||
border-bottom-color: #42494F;
|
||||
border-top-color: #464D53;
|
||||
}
|
||||
.sf-menu li a,
|
||||
.sf-menu li a:visited
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
.menu_container .sf-menu li.submenu a,
|
||||
.menu_container .sf-menu li.selected.submenu a,
|
||||
.menu_container .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-image: url("../images/icons/navigation/dark_bg/menu_arrow.png");
|
||||
}
|
||||
.sf-menu a:hover,
|
||||
.sf-menu a:hover
|
||||
{
|
||||
background-color: #42494F;
|
||||
}
|
||||
.sf-menu li.submenu ul,
|
||||
.menu_container .sf-menu li:hover ul a,
|
||||
.menu_container .sf-menu li.submenu:hover ul a,
|
||||
.menu_container .sf-menu li ul li a,
|
||||
.menu_container .sf-menu li.submenu:hover ul li.selected ul li a
|
||||
{
|
||||
background-color: #2D3136;
|
||||
}
|
||||
.menu_container .sf-menu li ul li a:hover, .menu_container .sf-menu li ul li.selected a,
|
||||
.menu_container .sf-menu li.submenu ul li a:hover, .menu_container .sf-menu li.submenu:hover ul li.selected a,
|
||||
.menu_container .sf-menu li.submenu:hover ul li.selected ul li a:hover, .menu_container .sf-menu li.submenu:hover ul li ul li.selected a, .menu_container .sf-menu li.submenu:hover ul li.selected ul li.selected a,
|
||||
.menu_container .sf-menu li:hover ul li.sfHover>a,
|
||||
ul.sf-menu .mega_menu,
|
||||
ul.sf-menu .mega_menu li,
|
||||
.sf-menu li.submenu .mega_menu
|
||||
{
|
||||
background-color: #212429;
|
||||
}
|
||||
.sf-menu li:hover, .sf-menu li.selected,
|
||||
.sf-menu li.submenu:hover,
|
||||
.sf-menu li:hover a, .sf-menu li.selected a,
|
||||
.sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #42494F;
|
||||
border-top-color: #8CC152;
|
||||
border-bottom-color: #42494F;
|
||||
}
|
||||
/* --- menu style 2 & 3 & 5 & 6 & 7 & 8 & 9 & 10 --- */
|
||||
.style_2.menu_container
|
||||
{
|
||||
background: #42494F;
|
||||
border-color: #42494F;
|
||||
}
|
||||
.style_2 .sf-menu
|
||||
{
|
||||
border-top-color: #52595F;
|
||||
}
|
||||
.style_2 .sf-menu li
|
||||
{
|
||||
background-color: #42494F;
|
||||
border-bottom-color: #42494F;
|
||||
border-top-color: #52595F;
|
||||
}
|
||||
.style_2 .sf-menu a:hover,
|
||||
.style_3 .sf-menu a:hover
|
||||
{
|
||||
background-color: #8CC152;
|
||||
}
|
||||
.style_2 .sf-menu li:hover, .style_2 .sf-menu li.selected,
|
||||
.style_2 .sf-menu li.submenu:hover,
|
||||
.style_2 .sf-menu li:hover a, .style_2 .sf-menu li.selected a,
|
||||
.style_2 .sf-menu li.submenu:hover a,
|
||||
.style_3 .sf-menu li:hover, .style_3 .sf-menu li.selected,
|
||||
.style_3 .sf-menu li.submenu:hover,
|
||||
.style_3 .sf-menu li:hover a, .style_3 .sf-menu li.selected a,
|
||||
.style_3 .sf-menu li.submenu:hover a,
|
||||
.style_5 .sf-menu li:hover, .style_5 .sf-menu li.selected,
|
||||
.style_5 .sf-menu li.submenu:hover,
|
||||
.style_5 .sf-menu li:hover a, .style_5 .sf-menu li.selected a,
|
||||
.style_5 .sf-menu li.submenu:hover a,
|
||||
.style_10 .sf-menu li:hover, .style_10 .sf-menu li.selected,
|
||||
.style_10 .sf-menu li.submenu:hover,
|
||||
.style_10 .sf-menu li:hover a, .style_10 .sf-menu li.selected a,
|
||||
.style_10 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #8CC152;
|
||||
border-top-color: #8CC152;
|
||||
border-bottom-color: #8CC152;
|
||||
}
|
||||
.style_2 .sf-menu li a,
|
||||
.style_2 .sf-menu li.selected a,
|
||||
.style_2 .sf-menu li:hover a,
|
||||
.style_3 .sf-menu li.selected a,
|
||||
.style_3 .sf-menu li:hover a,
|
||||
.style_5 .sf-menu li a,
|
||||
.style_6 .sf-menu li.selected a,
|
||||
.style_6 .sf-menu li:hover a,
|
||||
.style_7 .sf-menu li a,
|
||||
.style_8 .sf-menu li.selected a,
|
||||
.style_8 .sf-menu li:hover a,
|
||||
.style_9 .sf-menu li a,
|
||||
.style_10 .sf-menu li.selected a,
|
||||
.style_10 .sf-menu li:hover a
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
/* --- menu style 3 --- */
|
||||
.style_3.menu_container,
|
||||
.style_3 .sf-menu li
|
||||
{
|
||||
border-top-color: #8CC152;
|
||||
}
|
||||
/* --- menu style 4 --- */
|
||||
.style_4.menu_container,
|
||||
.style_4 .sf-menu li
|
||||
{
|
||||
background-color: #42494F;
|
||||
border-color: #42494F;
|
||||
}
|
||||
.style_4 .sf-menu li:hover, .style_4 .sf-menu li.selected,
|
||||
.style_4 .sf-menu li.submenu:hover,
|
||||
.style_4 .sf-menu li:hover a, .style_4 .sf-menu li.selected a,
|
||||
.style_4 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #363B40;
|
||||
border-bottom-color: #363B40;
|
||||
border-top-color: #8CC152;
|
||||
}
|
||||
/* --- menu style 5 & 7 & 9 & 10 --- */
|
||||
.style_5.menu_container,
|
||||
.style_5 .sf-menu li,
|
||||
.style_7.menu_container,
|
||||
.style_7 .sf-menu li,
|
||||
.style_9.menu_container,
|
||||
.style_9 .sf-menu li
|
||||
{
|
||||
background-color: #2D3136;
|
||||
border-color: #2D3136;
|
||||
}
|
||||
.style_5 .sf-menu a:hover,
|
||||
.style_10 .sf-menu a:hover
|
||||
{
|
||||
background-color: #8CC152;
|
||||
}
|
||||
/* --- menu style 6 --- */
|
||||
.style_6.menu_container.sticky.move,
|
||||
.style_6.menu_container,
|
||||
.style_6.menu_container.sticky.move .sf-menu li,
|
||||
.style_6 .sf-menu li
|
||||
{
|
||||
border-bottom-color: #2D3136;
|
||||
}
|
||||
.style_6 .sf-menu a:hover
|
||||
{
|
||||
background-color: #2D3136;
|
||||
}
|
||||
.style_6 .sf-menu li:hover, .style_6 .sf-menu li.selected,
|
||||
.style_6 .sf-menu li.submenu:hover,
|
||||
.style_6 .sf-menu li:hover a, .style_6 .sf-menu li.selected a,
|
||||
.style_6 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #2D3136;
|
||||
}
|
||||
/* --- menu style 7 --- */
|
||||
.style_7 .sf-menu a:hover
|
||||
{
|
||||
background-color: #25282A;
|
||||
}
|
||||
.style_7 .sf-menu li:hover, .style_7 .sf-menu li.selected,
|
||||
.style_7 .sf-menu li.submenu:hover,
|
||||
.style_7 .sf-menu li:hover a, .style_7 .sf-menu li.selected a,
|
||||
.style_7 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #363B40;
|
||||
border-top-color: #363B40;
|
||||
border-bottom-color: #363B40;
|
||||
color: #FFF;
|
||||
}
|
||||
/* --- menu style 8 & 9 & 10 --- */
|
||||
.style_8 .sf-menu li,
|
||||
.style_8.menu_container,
|
||||
.style_10 .sf-menu li,
|
||||
.style_10.menu_container
|
||||
{
|
||||
border-top-color: #363B40;
|
||||
}
|
||||
.style_8 .sf-menu a:hover,
|
||||
.style_9 .sf-menu a:hover
|
||||
{
|
||||
background-color: #42494F;
|
||||
}
|
||||
.style_8 .sf-menu li:hover, .style_8 .sf-menu li.selected,
|
||||
.style_8 .sf-menu li.submenu:hover,
|
||||
.style_8 .sf-menu li:hover a, .style_8 .sf-menu li.selected a,
|
||||
.style_8 .sf-menu li.submenu:hover a,
|
||||
.style_9 .sf-menu li:hover, .style_9 .sf-menu li.selected,
|
||||
.style_9 .sf-menu li.submenu:hover,
|
||||
.style_9 .sf-menu li:hover a, .style_9 .sf-menu li.selected a,
|
||||
.style_9 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #42494F;
|
||||
border-top-color: #42494F;
|
||||
border-bottom-color: #42494F;
|
||||
}
|
||||
386
pressroom/www/php/style/high_contrast_skin.css
Normal file
@@ -0,0 +1,386 @@
|
||||
a:focus,
|
||||
.comment_form [type='submit']:focus,
|
||||
.contact_form [type='submit']:focus,
|
||||
.tabs_navigation li a:focus,
|
||||
.social_icons .social_icon:focus
|
||||
{
|
||||
outline: 1px dotted #FFF;
|
||||
}
|
||||
a,
|
||||
a:hover,
|
||||
.read_more:hover,
|
||||
.more.active,
|
||||
.more:hover,
|
||||
.post .comments_number:hover,
|
||||
.taxonomies a:hover,
|
||||
.pagination li a:hover,
|
||||
.slider_posts_list li h5
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
.slider_content_box ul.post_details li.category a,
|
||||
.social_icons .social_icon,
|
||||
.pagination li.left a,
|
||||
.pagination li.right a
|
||||
{
|
||||
text-decoration: none;
|
||||
}
|
||||
.icon,
|
||||
.footer_container,
|
||||
.icon.fullscreen:hover,
|
||||
.site_container,
|
||||
.value_container,
|
||||
.gallery_popup,
|
||||
.gallery_overlay,
|
||||
.menu_container
|
||||
{
|
||||
background-color: #000;
|
||||
}
|
||||
.box_header,
|
||||
.more.active,
|
||||
.more:hover,
|
||||
.tabs_navigation.small li a:hover,
|
||||
.tabs_navigation.small li a.selected,
|
||||
.tabs_navigation.small li.ui-tabs-active a,
|
||||
.more.highlight,
|
||||
.more.active:hover,
|
||||
.taxonomies a:hover,
|
||||
.review_summary .number,
|
||||
.accordion .ui-accordion-header.ui-state-active,
|
||||
.mobile-menu-switch
|
||||
{
|
||||
border-color: #FFDD00;
|
||||
}
|
||||
.slider_content_box ul.post_details li.category a
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
.post_details li.category,
|
||||
.post_details li.category a,
|
||||
.read_more:hover,
|
||||
.more.active,
|
||||
.more:hover,
|
||||
.post .comments_number:hover,
|
||||
.footer .post .comments_number:hover,
|
||||
.more.highlight:hover,
|
||||
.taxonomies a:hover,
|
||||
.pagination li a:hover,
|
||||
.pagination li.selected a,
|
||||
.value_container .value_bar .number,
|
||||
.tabs_navigation li a:hover,
|
||||
.tabs_navigation li a.selected,
|
||||
.tabs_navigation li.ui-tabs-active a,
|
||||
.accordion .ui-accordion-header.ui-state-active h4,
|
||||
.mobile-menu li.selected a,
|
||||
.mobile-menu li.selected ul li.selected a,
|
||||
.mobile-menu li.selected ul li.selected ul li.selected a
|
||||
{
|
||||
color: #000;
|
||||
}
|
||||
.post_details li.category,
|
||||
.slider_navigation .slider_control a:hover,
|
||||
a.slider_control:hover,
|
||||
.slider_posts_list .slider_posts_list_bar,
|
||||
.read_more .arrow,
|
||||
.tabs_navigation li a:hover,
|
||||
.tabs_navigation li a.selected,
|
||||
.tabs_navigation li.ui-tabs-active a,
|
||||
.post .comments_number:hover,
|
||||
.footer .post .comments_number:hover,
|
||||
.more.active,
|
||||
.more:hover,
|
||||
.slider_posts_list_container a.slider_control,
|
||||
.pagination li a:hover,
|
||||
.pagination li.selected a,
|
||||
.taxonomies a:hover,
|
||||
.value_container .value_bar,
|
||||
.accordion .ui-accordion-header.ui-state-active,
|
||||
.accordion .ui-accordion-header:hover .ui-accordion-header-icon,
|
||||
.dropcap .dropcap_label.active,
|
||||
.gallery_popup .slider_navigation .slider_control a:hover,
|
||||
.gallery_popup .slider_navigation .slider_control a,
|
||||
.mobile-menu-switch .line,
|
||||
.mobile-menu-switch:hover,
|
||||
.mobile-menu li.selected a,
|
||||
.mobile-menu li.selected ul li.selected a,
|
||||
.mobile-menu li.selected ul li.selected ul li.selected a
|
||||
{
|
||||
background-color: #FFDD00 ;
|
||||
}
|
||||
.tabs_navigation li.ui-tabs-active span,
|
||||
.post .comments_number:hover .arrow_comments,
|
||||
.footer .post .comments_number:hover .arrow_comments
|
||||
{
|
||||
border-color: #FFDD00 transparent;
|
||||
}
|
||||
.blog ul.post_details.simple li.category,
|
||||
.blog ul.post_details.simple li.category a,
|
||||
.post.single .post_details a,
|
||||
.more.highlight,
|
||||
.more.active:hover,
|
||||
.review_summary .number,
|
||||
.about_subtitle,
|
||||
.announcement .expose,
|
||||
p a,
|
||||
span.number,
|
||||
span.odometer.number
|
||||
{
|
||||
color: #FFDD00;
|
||||
}
|
||||
.post .arrow_comments
|
||||
{
|
||||
border-color: #42494F transparent;
|
||||
}
|
||||
p,
|
||||
.review_block .list li,
|
||||
.review_block .list li a,
|
||||
.review_summary .text p
|
||||
{
|
||||
color: #D7DCE0;
|
||||
}
|
||||
input.hint,
|
||||
textarea.hint,
|
||||
.comment_form .hint,
|
||||
.contact_form .hint,
|
||||
.posted_by .in_reply
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
.footer_container
|
||||
{
|
||||
border-top: 1px solid #464D53;
|
||||
}
|
||||
.divider.subheader_arrow
|
||||
{
|
||||
background-image: url("../images/icons/other/high_contrast/subheader_arrow.png");
|
||||
}
|
||||
blockquote
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/quote_content.png");
|
||||
}
|
||||
.read_more .arrow
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/call_to_action_arrow.png");
|
||||
}
|
||||
.slider_navigation .slider_control a,
|
||||
a.slider_control
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_right.png");
|
||||
background-color: #FFDD00;
|
||||
}
|
||||
.slider_navigation .slider_control:first-child a,
|
||||
a.slider_control.left
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_left.png");
|
||||
}
|
||||
.pagination li.left a
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/pagination_arrow_left.png");
|
||||
}
|
||||
.pagination li.right a
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/pagination_arrow_right.png");
|
||||
}
|
||||
a.slider_control.up
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_up.png");
|
||||
}
|
||||
a.slider_control.down
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/navigation_arrow_down.png");
|
||||
}
|
||||
#comments_list .children .comment .parent_arrow
|
||||
{
|
||||
background-image: url("../images/icons/other/dark_bg/comment_reply.png");
|
||||
}
|
||||
.accordion .ui-accordion-header:hover .ui-accordion-header-icon
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/accordion_arrow_down_hover.png");
|
||||
}
|
||||
.accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon
|
||||
{
|
||||
background-image: url("../images/icons/navigation/high_contrast/accordion_arrow_up.png");
|
||||
}
|
||||
.item_content .not_found
|
||||
{
|
||||
background-image: url("../images/icons/other/high_contrast/404.png");
|
||||
}
|
||||
.app
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/app.png");
|
||||
}
|
||||
.calendar
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/calendar.png");
|
||||
}
|
||||
.chart
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/chart.png");
|
||||
}
|
||||
.chat
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/chat.png");
|
||||
}
|
||||
.clock
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/clock.png");
|
||||
}
|
||||
.database
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/database.png");
|
||||
}
|
||||
.document
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/document.png");
|
||||
}
|
||||
.envelope
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/envelope.png");
|
||||
}
|
||||
.faq
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/faq.png");
|
||||
}
|
||||
.graph
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/graph.png");
|
||||
}
|
||||
.image
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/image.png");
|
||||
}
|
||||
.laptop
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/laptop.png");
|
||||
}
|
||||
.magnifier
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/magnifier.png");
|
||||
}
|
||||
.features_icon.mobile
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/mobile.png");
|
||||
}
|
||||
.pin
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/pin.png");
|
||||
}
|
||||
.printer
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/printer.png");
|
||||
}
|
||||
.quote
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/quote.png");
|
||||
}
|
||||
.screen
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/screen.png");
|
||||
}
|
||||
.speaker
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/speaker.png");
|
||||
}
|
||||
.video
|
||||
{
|
||||
background-image: url("../images/icons/features/high_contrast/video.png");
|
||||
}
|
||||
/* --- menu --- */
|
||||
.menu_container.sticky.move,
|
||||
.menu_container.sticky.move .sf-menu li
|
||||
{
|
||||
border-bottom-color: #464d53;
|
||||
}
|
||||
.sf-menu li
|
||||
{
|
||||
background-color: #000;
|
||||
}
|
||||
.sf-menu li a,
|
||||
.sf-menu li a:visited
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
.sf-menu a:hover,
|
||||
.sf-menu a:hover
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
.sf-menu li:hover, .sf-menu li.selected,
|
||||
.sf-menu li.submenu:hover,
|
||||
.sf-menu li:hover a, .sf-menu li.selected a,
|
||||
.sf-menu li.submenu:hover a
|
||||
{
|
||||
border-top-color: #FFDD00;
|
||||
}
|
||||
/* --- font selector --- */
|
||||
.font_selector
|
||||
{
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 15%;
|
||||
width: 45px;
|
||||
z-index: 10;
|
||||
}
|
||||
.font_selector .increase,
|
||||
.font_selector .decrease
|
||||
{
|
||||
display: block;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
background-repeat: no-repeat;
|
||||
background-color: #FFDD00;
|
||||
}
|
||||
.font_selector .increase
|
||||
{
|
||||
background-image: url("../images/icons/other/high_contrast/font_increase.png");
|
||||
}
|
||||
.font_selector .decrease
|
||||
{
|
||||
background-image: url("../images/icons/other/high_contrast/font_decrease.png");
|
||||
}
|
||||
/* --- aminations --- */
|
||||
.slideRightBack, .slideLeftBack, .slideDownBack, .slideUpBack
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
/* --- slideRightBackBack --- */
|
||||
a.slider_control, .icon.fullscreen.animated
|
||||
{
|
||||
visibility: visible;
|
||||
}
|
||||
a.slider_control, .icon.fullscreen.animated
|
||||
{
|
||||
-webkit-animation-duration: 0ms;
|
||||
animation-duration: 0ms;
|
||||
}
|
||||
.slideRightBack
|
||||
{
|
||||
animation-name: slideRightBack;
|
||||
-webkit-animation-name: slideRightBack;
|
||||
}
|
||||
@keyframes slideRightBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes slideRightBack
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-100%);
|
||||
}
|
||||
100%
|
||||
{
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0%);
|
||||
}
|
||||
}
|
||||
BIN
pressroom/www/php/style/images/ui-bg_flat_0_aaaaaa_40x100.png
Normal file
|
After Width: | Height: | Size: 274 B |
BIN
pressroom/www/php/style/images/ui-bg_flat_0_eeeeee_40x100.png
Normal file
|
After Width: | Height: | Size: 274 B |
BIN
pressroom/www/php/style/images/ui-bg_flat_55_ffffff_40x100.png
Normal file
|
After Width: | Height: | Size: 271 B |
BIN
pressroom/www/php/style/images/ui-bg_flat_75_ffffff_40x100.png
Normal file
|
After Width: | Height: | Size: 271 B |
BIN
pressroom/www/php/style/images/ui-bg_glass_65_ffffff_1x400.png
Normal file
|
After Width: | Height: | Size: 272 B |
|
After Width: | Height: | Size: 384 B |
|
After Width: | Height: | Size: 387 B |
|
After Width: | Height: | Size: 407 B |
BIN
pressroom/www/php/style/images/ui-icons_0073ea_256x240.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
pressroom/www/php/style/images/ui-icons_454545_256x240.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
pressroom/www/php/style/images/ui-icons_666666_256x240.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
pressroom/www/php/style/images/ui-icons_ff0084_256x240.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
pressroom/www/php/style/images/ui-icons_ffffff_256x240.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
529
pressroom/www/php/style/jquery.qtip.css
Normal file
@@ -0,0 +1,529 @@
|
||||
/*
|
||||
* qTip2 - Pretty powerful tooltips
|
||||
* http://craigsworks.com/projects/qtip2/
|
||||
*
|
||||
* Version: nightly
|
||||
* Copyright 2009-2010 Craig Michael Thompson - http://craigsworks.com
|
||||
*
|
||||
* Dual licensed under MIT or GPLv2 licenses
|
||||
* http://en.wikipedia.org/wiki/MIT_License
|
||||
* http://en.wikipedia.org/wiki/GNU_General_Public_License
|
||||
*
|
||||
* Date: Sat May 14 07:50:22 PDT 2011
|
||||
*/
|
||||
|
||||
/* Fluid class for determining actual width in IE */
|
||||
.ui-tooltip-fluid{
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
position: static !important;
|
||||
float: left !important;
|
||||
}
|
||||
|
||||
.ui-tooltip, .qtip{
|
||||
position: absolute;
|
||||
left: -28000px;
|
||||
top: -28000px;
|
||||
display: none;
|
||||
max-width: 280px;
|
||||
min-width: 50px;
|
||||
|
||||
font-size: 10.5px;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.ui-tooltip-content{
|
||||
position: relative;
|
||||
padding: 5px 9px;
|
||||
overflow: hidden;
|
||||
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
|
||||
text-align: left;
|
||||
word-wrap: break-word;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ui-tooltip-titlebar{
|
||||
position: relative;
|
||||
min-height: 14px;
|
||||
padding: 5px 35px 5px 10px;
|
||||
overflow: hidden;
|
||||
|
||||
border-width: 1px 1px 0;
|
||||
border-style: solid;
|
||||
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.ui-tooltip-titlebar + .ui-tooltip-content{ border-top-width: 0px !important; }
|
||||
|
||||
/*! Default close button class */
|
||||
.ui-tooltip-titlebar .ui-state-default{
|
||||
position: absolute;
|
||||
right: 4px;
|
||||
top: 50%;
|
||||
margin-top: -9px;
|
||||
|
||||
cursor: pointer;
|
||||
outline: medium none;
|
||||
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
* html .ui-tooltip-titlebar .ui-state-default{
|
||||
top: 16px;
|
||||
}
|
||||
|
||||
.ui-tooltip-titlebar .ui-icon,
|
||||
.ui-tooltip-icon .ui-icon{
|
||||
display: block;
|
||||
text-indent: -1000em;
|
||||
}
|
||||
|
||||
.ui-tooltip-icon, .ui-tooltip-icon .ui-icon{
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.ui-tooltip-icon .ui-icon{
|
||||
width: 18px;
|
||||
height: 14px;
|
||||
|
||||
text-align: center;
|
||||
text-indent: 0;
|
||||
font: normal bold 10px/13px Tahoma,sans-serif;
|
||||
|
||||
color: inherit;
|
||||
background: transparent none no-repeat -100em -100em;
|
||||
}
|
||||
|
||||
|
||||
/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
|
||||
.ui-tooltip-focus{
|
||||
|
||||
}
|
||||
|
||||
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
|
||||
.ui-tooltip-hover{
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*! Default tooltip style */
|
||||
.ui-tooltip-titlebar,
|
||||
.ui-tooltip-content{
|
||||
border-color: #F1D031;
|
||||
background-color: #FFFFA3;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.ui-tooltip-titlebar{
|
||||
background-color: #FFEF93;
|
||||
}
|
||||
|
||||
.ui-tooltip-titlebar .ui-tooltip-icon{
|
||||
border-color: #CCC;
|
||||
background: #F1F1F1;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.ui-tooltip-titlebar .ui-state-hover{
|
||||
border-color: #AAA;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
|
||||
/*! Light tooltip style */
|
||||
.ui-tooltip-light .ui-tooltip-titlebar,
|
||||
.ui-tooltip-light .ui-tooltip-content{
|
||||
border-color: #E2E2E2;
|
||||
color: #454545;
|
||||
}
|
||||
|
||||
.ui-tooltip-light .ui-tooltip-content{
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.ui-tooltip-light .ui-tooltip-titlebar{
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
|
||||
|
||||
/*! Dark tooltip style */
|
||||
.ui-tooltip-dark .ui-tooltip-titlebar,
|
||||
.ui-tooltip-dark .ui-tooltip-content{
|
||||
border-color: #303030;
|
||||
color: #f3f3f3;
|
||||
}
|
||||
|
||||
.ui-tooltip-dark .ui-tooltip-content{
|
||||
background-color: #505050;
|
||||
}
|
||||
|
||||
.ui-tooltip-dark .ui-tooltip-titlebar{
|
||||
background-color: #404040;
|
||||
}
|
||||
|
||||
.ui-tooltip-dark .ui-tooltip-icon{
|
||||
border-color: #444;
|
||||
}
|
||||
|
||||
.ui-tooltip-dark .ui-tooltip-titlebar .ui-state-hover{
|
||||
border-color: #303030;
|
||||
}
|
||||
|
||||
|
||||
/*! Cream tooltip style */
|
||||
.ui-tooltip-cream .ui-tooltip-titlebar,
|
||||
.ui-tooltip-cream .ui-tooltip-content{
|
||||
border-color: #F9E98E;
|
||||
color: #A27D35;
|
||||
}
|
||||
|
||||
.ui-tooltip-cream .ui-tooltip-content{
|
||||
background-color: #FBF7AA;
|
||||
}
|
||||
|
||||
.ui-tooltip-cream .ui-tooltip-titlebar{
|
||||
background-color: #F0DE7D;
|
||||
}
|
||||
|
||||
.ui-tooltip-cream .ui-state-default .ui-tooltip-icon{
|
||||
background-position: -82px 0;
|
||||
}
|
||||
|
||||
|
||||
/*! Red tooltip style */
|
||||
.ui-tooltip-red .ui-tooltip-titlebar,
|
||||
.ui-tooltip-red .ui-tooltip-content{
|
||||
border-color: #D95252;
|
||||
color: #912323;
|
||||
}
|
||||
|
||||
.ui-tooltip-red .ui-tooltip-content{
|
||||
background-color: #F78B83;
|
||||
}
|
||||
|
||||
.ui-tooltip-red .ui-tooltip-titlebar{
|
||||
background-color: #F06D65;
|
||||
}
|
||||
|
||||
.ui-tooltip-red .ui-state-default .ui-tooltip-icon{
|
||||
background-position: -102px 0;
|
||||
}
|
||||
|
||||
.ui-tooltip-red .ui-tooltip-icon{
|
||||
border-color: #D95252;
|
||||
}
|
||||
|
||||
.ui-tooltip-red .ui-tooltip-titlebar .ui-state-hover{
|
||||
border-color: #D95252;
|
||||
}
|
||||
|
||||
|
||||
/*! Green tooltip style */
|
||||
.ui-tooltip-green .ui-tooltip-titlebar,
|
||||
.ui-tooltip-green .ui-tooltip-content{
|
||||
border-color: #90D93F;
|
||||
color: #3F6219;
|
||||
}
|
||||
|
||||
.ui-tooltip-green .ui-tooltip-content{
|
||||
background-color: #CAED9E;
|
||||
}
|
||||
|
||||
.ui-tooltip-green .ui-tooltip-titlebar{
|
||||
background-color: #B0DE78;
|
||||
}
|
||||
|
||||
.ui-tooltip-green .ui-state-default .ui-tooltip-icon{
|
||||
background-position: -42px 0;
|
||||
}
|
||||
|
||||
|
||||
/*! Blue tooltip style */
|
||||
.ui-tooltip-blue .ui-tooltip-titlebar,
|
||||
.ui-tooltip-blue .ui-tooltip-content{
|
||||
border-color: #ADD9ED;
|
||||
color: #5E99BD;
|
||||
}
|
||||
|
||||
.ui-tooltip-blue .ui-tooltip-content{
|
||||
background-color: #E5F6FE;
|
||||
}
|
||||
|
||||
.ui-tooltip-blue .ui-tooltip-titlebar{
|
||||
background-color: #D0E9F5;
|
||||
}
|
||||
|
||||
.ui-tooltip-blue .ui-state-default .ui-tooltip-icon{
|
||||
background-position: -2px 0;
|
||||
}.ui-tooltip .ui-tooltip-tip{
|
||||
margin: 0 auto;
|
||||
overflow: hidden;
|
||||
|
||||
background: transparent !important;
|
||||
border: 0px dashed transparent !important;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.ui-tooltip .ui-tooltip-tip,
|
||||
.ui-tooltip .ui-tooltip-tip *{
|
||||
position: absolute;
|
||||
|
||||
line-height: 0.1px !important;
|
||||
font-size: 0.1px !important;
|
||||
color: #123456;
|
||||
|
||||
background: transparent;
|
||||
border: 0px dashed transparent;
|
||||
}
|
||||
|
||||
.ui-tooltip .ui-tooltip-tip canvas{ position: static; }#qtip-overlay{
|
||||
position: absolute;
|
||||
left: -10000em;
|
||||
top: -10000em;
|
||||
|
||||
background-color: black;
|
||||
|
||||
opacity: 0.7;
|
||||
filter:alpha(opacity=70);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
|
||||
}
|
||||
|
||||
/*! Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE6+, Safari 2+ */
|
||||
.ui-tooltip-shadow{
|
||||
-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
|
||||
-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.ui-tooltip-shadow .ui-tooltip-titlebar,
|
||||
.ui-tooltip-shadow .ui-tooltip-content{
|
||||
filter: progid:DXImageTransform.Microsoft.Shadow(Color='gray', Direction=135, Strength=3);
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Color='gray', Direction=135, Strength=3)";
|
||||
|
||||
_margin-bottom: -3px; /* IE6 */
|
||||
.margin-bottom: -3px; /* IE7 */
|
||||
}
|
||||
|
||||
|
||||
/*! Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
|
||||
.ui-tooltip-rounded,
|
||||
.ui-tooltip-rounded .ui-tooltip-content,
|
||||
.ui-tooltip-tipsy,
|
||||
.ui-tooltip-tipsy .ui-tooltip-content,
|
||||
.ui-tooltip-youtube,
|
||||
.ui-tooltip-youtube .ui-tooltip-content{
|
||||
-moz-border-radius: 4px;
|
||||
-webkit-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.ui-tooltip-rounded .ui-tooltip-titlebar,
|
||||
.ui-tooltip-tipsy .ui-tooltip-titlebar,
|
||||
.ui-tooltip-youtube .ui-tooltip-titlebar{
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
|
||||
.ui-tooltip-rounded .ui-tooltip-titlebar + .ui-tooltip-content,
|
||||
.ui-tooltip-tipsy .ui-tooltip-titlebar + .ui-tooltip-content,
|
||||
.ui-tooltip-youtube .ui-tooltip-titlebar + .ui-tooltip-content{
|
||||
-moz-border-radius: 0 0 5px 5px;
|
||||
-webkit-border-radius: 0 0 5px 5px;
|
||||
border-radius: 0 0 5px 5px;
|
||||
}
|
||||
|
||||
|
||||
/*! Youtube tooltip style */
|
||||
.ui-tooltip-youtube{
|
||||
-webkit-box-shadow: 0 0 3px #333;
|
||||
-moz-box-shadow: 0 0 3px #333;
|
||||
box-shadow: 0 0 3px #333;
|
||||
}
|
||||
|
||||
.ui-tooltip-youtube .ui-tooltip-titlebar,
|
||||
.ui-tooltip-youtube .ui-tooltip-content{
|
||||
background: transparent;
|
||||
background: rgba(0, 0, 0, 0.85);
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000)";
|
||||
|
||||
color: white;
|
||||
border-color: #CCCCCC;
|
||||
}
|
||||
|
||||
.ui-tooltip-youtube .ui-tooltip-icon{
|
||||
border-color: #222;
|
||||
}
|
||||
|
||||
.ui-tooltip-youtube .ui-tooltip-titlebar .ui-state-hover{
|
||||
border-color: #303030;
|
||||
}
|
||||
|
||||
|
||||
/* jQuery TOOLS Tooltip style */
|
||||
.ui-tooltip-jtools{
|
||||
background: #232323;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
background-image: -moz-linear-gradient(top, #717171, #232323);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
|
||||
|
||||
border: 2px solid #ddd;
|
||||
border: 2px solid rgba(241,241,241,1);
|
||||
|
||||
-moz-border-radius: 2px;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
|
||||
-webkit-box-shadow: 0 0 12px #333;
|
||||
-moz-box-shadow: 0 0 12px #333;
|
||||
box-shadow: 0 0 12px #333;
|
||||
}
|
||||
|
||||
/* IE Specific */
|
||||
.ui-tooltip-jtools .ui-tooltip-titlebar{
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)";
|
||||
}
|
||||
.ui-tooltip-jtools .ui-tooltip-content{
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)";
|
||||
}
|
||||
|
||||
.ui-tooltip-jtools .ui-tooltip-titlebar,
|
||||
.ui-tooltip-jtools .ui-tooltip-content{
|
||||
background: transparent;
|
||||
color: white;
|
||||
border: 0 dashed transparent;
|
||||
}
|
||||
|
||||
.ui-tooltip-jtools .ui-tooltip-icon{
|
||||
border-color: #555;
|
||||
}
|
||||
|
||||
.ui-tooltip-jtools .ui-tooltip-titlebar .ui-state-hover{
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
|
||||
/* Cluetip style */
|
||||
.ui-tooltip-cluetip{
|
||||
-webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
|
||||
-moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
|
||||
box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.ui-tooltip-cluetip .ui-tooltip-titlebar{
|
||||
background-color: #87876A;
|
||||
color: white;
|
||||
border: 0 dashed transparent;
|
||||
}
|
||||
|
||||
.ui-tooltip-cluetip .ui-tooltip-content{
|
||||
background-color: #D9D9C2;
|
||||
color: #111;
|
||||
border: 0 dashed transparent;
|
||||
}
|
||||
|
||||
.ui-tooltip-cluetip .ui-tooltip-icon{
|
||||
border-color: #808064;
|
||||
}
|
||||
|
||||
.ui-tooltip-cluetip .ui-tooltip-titlebar .ui-state-hover{
|
||||
border-color: #696952;
|
||||
color: #696952;
|
||||
}
|
||||
|
||||
|
||||
/* Tipsy style */
|
||||
.ui-tooltip-tipsy{
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipsy .ui-tooltip-titlebar,
|
||||
.ui-tooltip-tipsy .ui-tooltip-content{
|
||||
background: transparent;
|
||||
background: rgba(0, 0, 0, .87);
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000)";
|
||||
|
||||
color: white;
|
||||
border: 0px transparent;
|
||||
|
||||
font-size: 11px;
|
||||
font-family: 'Lucida Grande', sans-serif;
|
||||
font-weight: bold;
|
||||
line-height: 16px;
|
||||
text-shadow: 0 1px black;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipsy .ui-tooltip-titlebar{
|
||||
padding: 6px 35px 0 10;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipsy .ui-tooltip-content{
|
||||
padding: 6px 10;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipsy .ui-tooltip-icon{
|
||||
border-color: #222;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipsy .ui-tooltip-titlebar .ui-state-hover{
|
||||
border-color: #303030;
|
||||
}
|
||||
|
||||
|
||||
/* Tipped style */
|
||||
.ui-tooltip-tipped{
|
||||
|
||||
}
|
||||
|
||||
.ui-tooltip-tipped .ui-tooltip-titlebar,
|
||||
.ui-tooltip-tipped .ui-tooltip-content{
|
||||
border: 3px solid #959FA9;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipped .ui-tooltip-titlebar{
|
||||
background: #3A79B8;
|
||||
background-image: -moz-linear-gradient(top, #3A79B8, #2E629D);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#3A79B8), to(#2E629D));
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)";
|
||||
|
||||
color: white;
|
||||
font-weight: normal;
|
||||
font-family: serif;
|
||||
|
||||
border-bottom-width: 0;
|
||||
-moz-border-radius: 3px 3px 0 0;
|
||||
-webkit-border-radius: 3px 3px 0 0;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipped .ui-tooltip-content{
|
||||
background-color: #F9F9F9;
|
||||
color: #454545;
|
||||
|
||||
-moz-border-radius: 0 0 3px 3px;
|
||||
-webkit-border-radius: 0 0 3px 3px;
|
||||
border-radius: 0 0 3px 3px;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipped .ui-tooltip-icon{
|
||||
border: 2px solid #285589;
|
||||
background: #285589;
|
||||
}
|
||||
|
||||
.ui-tooltip-tipped .ui-tooltip-icon .ui-icon{
|
||||
background-color: #FBFBFB;
|
||||
color: #555;
|
||||
}
|
||||
189
pressroom/www/php/style/menu_styles.css
Normal file
@@ -0,0 +1,189 @@
|
||||
/* --- menu style 2 & 3 & 5 & 6 & 7 & 8 & 9 & 10 --- */
|
||||
.style_2.menu_container
|
||||
{
|
||||
background: #F0F0F0;
|
||||
border-color: #F0F0F0;
|
||||
}
|
||||
.style_2 .sf-menu
|
||||
{
|
||||
border-top: 3px solid #E0E0E0;
|
||||
}
|
||||
.style_2 .sf-menu li
|
||||
{
|
||||
background-color: #F0F0F0;
|
||||
border-bottom-color: #F0F0F0;
|
||||
border-top-color: #E0E0E0;
|
||||
}
|
||||
.style_2 .sf-menu>li
|
||||
{
|
||||
margin-top: -3px;
|
||||
}
|
||||
.style_2 .sf-menu li.submenu a,
|
||||
.style_7 .sf-menu li.selected.submenu a,
|
||||
.style_7 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-image: url("../images/icons/navigation/menu_arrow.png");
|
||||
}
|
||||
.style_2 .sf-menu a:hover,
|
||||
.style_3 .sf-menu a:hover
|
||||
{
|
||||
background-color: #ED1C24;
|
||||
}
|
||||
.style_2 .sf-menu li:hover, .style_2 .sf-menu li.selected,
|
||||
.style_2 .sf-menu li.submenu:hover,
|
||||
.style_2 .sf-menu li:hover a, .style_2 .sf-menu li.selected a,
|
||||
.style_2 .sf-menu li.submenu:hover a,
|
||||
.style_3 .sf-menu li:hover, .style_3 .sf-menu li.selected,
|
||||
.style_3 .sf-menu li.submenu:hover,
|
||||
.style_3 .sf-menu li:hover a, .style_3 .sf-menu li.selected a,
|
||||
.style_3 .sf-menu li.submenu:hover a,
|
||||
.style_5 .sf-menu li:hover, .style_5 .sf-menu li.selected,
|
||||
.style_5 .sf-menu li.submenu:hover,
|
||||
.style_5 .sf-menu li:hover a, .style_5 .sf-menu li.selected a,
|
||||
.style_5 .sf-menu li.submenu:hover a,
|
||||
.style_10 .sf-menu li:hover, .style_10 .sf-menu li.selected,
|
||||
.style_10 .sf-menu li.submenu:hover,
|
||||
.style_10 .sf-menu li:hover a, .style_10 .sf-menu li.selected a,
|
||||
.style_10 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #ED1C24;
|
||||
border-top-color: #ED1C24;
|
||||
border-bottom-color: #ED1C24;
|
||||
}
|
||||
.style_2 .sf-menu li.selected.submenu a,
|
||||
.style_2 .sf-menu li.submenu:hover a,
|
||||
.style_3 .sf-menu li.selected.submenu a,
|
||||
.style_3 .sf-menu li.submenu:hover a,
|
||||
.style_5 .sf-menu li.submenu a,
|
||||
.style_6 .sf-menu li.selected.submenu a,
|
||||
.style_6 .sf-menu li.submenu:hover a,
|
||||
.style_7 .sf-menu li.submenu a,
|
||||
.style_8 .sf-menu li.selected.submenu a,
|
||||
.style_8 .sf-menu li.submenu:hover a,
|
||||
.style_9 .sf-menu li.submenu a,
|
||||
.style_10 .sf-menu li.selected.submenu a,
|
||||
.style_10 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-image: url("../images/icons/navigation/dark_bg/menu_arrow.png");
|
||||
}
|
||||
.style_2 .sf-menu li.selected a,
|
||||
.style_2 .sf-menu li:hover a,
|
||||
.style_3 .sf-menu li.selected a,
|
||||
.style_3 .sf-menu li:hover a,
|
||||
.style_5 .sf-menu li a,
|
||||
.style_6 .sf-menu li.selected a,
|
||||
.style_6 .sf-menu li:hover a,
|
||||
.style_7 .sf-menu li a,
|
||||
.style_8 .sf-menu li.selected a,
|
||||
.style_8 .sf-menu li:hover a,
|
||||
.style_9 .sf-menu li a,
|
||||
.style_10 .sf-menu li.selected a,
|
||||
.style_10 .sf-menu li:hover a
|
||||
{
|
||||
color: #FFF;
|
||||
}
|
||||
/* --- menu style 3 --- */
|
||||
.style_3.menu_container,
|
||||
.style_3 .sf-menu li
|
||||
{
|
||||
border-top-color: #ED1C24;
|
||||
}
|
||||
/* --- menu style 4 --- */
|
||||
.style_4.menu_container,
|
||||
.style_4 .sf-menu li
|
||||
{
|
||||
background-color: #F0F0F0;
|
||||
border-color: #F0F0F0;
|
||||
}
|
||||
.style_4 .sf-menu li:hover, .style_4 .sf-menu li.selected,
|
||||
.style_4 .sf-menu li.submenu:hover,
|
||||
.style_4 .sf-menu li:hover a, .style_4 .sf-menu li.selected a,
|
||||
.style_4 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #FFF;
|
||||
border-bottom-color: #FFF;
|
||||
border-top-color: #ED1C24;
|
||||
}
|
||||
/* --- menu style 5 & 7 & 9 & 10 --- */
|
||||
.style_5.menu_container,
|
||||
.style_5 .sf-menu li,
|
||||
.style_7.menu_container,
|
||||
.style_7 .sf-menu li,
|
||||
.style_9.menu_container,
|
||||
.style_9 .sf-menu li
|
||||
{
|
||||
background-color: #363B40;
|
||||
border-color: #363B40;
|
||||
}
|
||||
.style_5 .sf-menu a:hover,
|
||||
.style_10 .sf-menu a:hover
|
||||
{
|
||||
background-color: #ED1C24;
|
||||
}
|
||||
/* --- menu style 6 --- */
|
||||
.style_6 .sf-menu
|
||||
{
|
||||
margin-top: 0;
|
||||
}
|
||||
.style_6.menu_container,
|
||||
.style_6 .sf-menu li
|
||||
{
|
||||
border-bottom-color: #363B40;
|
||||
border-top: none;
|
||||
}
|
||||
.style_6.menu_container
|
||||
{
|
||||
border-bottom-width: 3px;
|
||||
}
|
||||
.style_6 .sf-menu a:hover
|
||||
{
|
||||
background-color: #363B40;
|
||||
}
|
||||
.style_6 .sf-menu li:hover, .style_6 .sf-menu li.selected,
|
||||
.style_6 .sf-menu li.submenu:hover,
|
||||
.style_6 .sf-menu li:hover a, .style_6 .sf-menu li.selected a,
|
||||
.style_6 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #363B40;
|
||||
}
|
||||
/* --- menu style 7 --- */
|
||||
.style_7 .sf-menu a:hover
|
||||
{
|
||||
background-color: #25282A;
|
||||
}
|
||||
.style_7 .sf-menu li:hover, .style_7 .sf-menu li.selected,
|
||||
.style_7 .sf-menu li.submenu:hover,
|
||||
.style_7 .sf-menu li:hover a, .style_7 .sf-menu li.selected a,
|
||||
.style_7 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #FFF;
|
||||
border-top-color: #FFF;
|
||||
border-bottom-color: #FFF;
|
||||
color: #25282A;
|
||||
}
|
||||
/* --- menu style 8 & 9 & 10 --- */
|
||||
.style_8 .sf-menu li,
|
||||
.style_8.menu_container,
|
||||
.style_10 .sf-menu li,
|
||||
.style_10.menu_container
|
||||
{
|
||||
border-top-color: #FFF;
|
||||
}
|
||||
.style_8 .sf-menu a:hover,
|
||||
.style_9 .sf-menu a:hover
|
||||
{
|
||||
background-color: #42494F;
|
||||
}
|
||||
.style_8 .sf-menu li:hover, .style_8 .sf-menu li.selected,
|
||||
.style_8 .sf-menu li.submenu:hover,
|
||||
.style_8 .sf-menu li:hover a, .style_8 .sf-menu li.selected a,
|
||||
.style_8 .sf-menu li.submenu:hover a,
|
||||
.style_9 .sf-menu li:hover, .style_9 .sf-menu li.selected,
|
||||
.style_9 .sf-menu li.submenu:hover,
|
||||
.style_9 .sf-menu li:hover a, .style_9 .sf-menu li.selected a,
|
||||
.style_9 .sf-menu li.submenu:hover a
|
||||
{
|
||||
background-color: #42494F;
|
||||
border-top-color: #42494F;
|
||||
border-bottom-color: #42494F;
|
||||
}
|
||||
98
pressroom/www/php/style/odometer-theme-default.css
Normal file
@@ -0,0 +1,98 @@
|
||||
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
|
||||
display: -moz-inline-box;
|
||||
-moz-box-orient: vertical;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
*vertical-align: auto;
|
||||
position: relative;
|
||||
}
|
||||
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
|
||||
*display: inline;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
|
||||
display: -moz-inline-box;
|
||||
-moz-box-orient: vertical;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
*vertical-align: auto;
|
||||
position: relative;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
|
||||
*display: inline;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
|
||||
display: -moz-inline-box;
|
||||
-moz-box-orient: vertical;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
*vertical-align: auto;
|
||||
visibility: hidden;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
|
||||
*display: inline;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
|
||||
text-align: left;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
|
||||
display: block;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
|
||||
display: block;
|
||||
-webkit-backface-visibility: hidden;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
|
||||
display: block;
|
||||
-webkit-transform: translateZ(0);
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
|
||||
position: absolute;
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
|
||||
-webkit-transition: -webkit-transform 2s;
|
||||
-moz-transition: -moz-transform 2s;
|
||||
-ms-transition: -ms-transform 2s;
|
||||
-o-transition: -o-transform 2s;
|
||||
transition: transform 2s;
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
|
||||
-webkit-transform: translateY(-100%);
|
||||
-moz-transform: translateY(-100%);
|
||||
-ms-transform: translateY(-100%);
|
||||
-o-transform: translateY(-100%);
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
|
||||
-webkit-transform: translateY(-100%);
|
||||
-moz-transform: translateY(-100%);
|
||||
-ms-transform: translateY(-100%);
|
||||
-o-transform: translateY(-100%);
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
|
||||
-webkit-transition: -webkit-transform 2s;
|
||||
-moz-transition: -moz-transform 2s;
|
||||
-ms-transition: -ms-transform 2s;
|
||||
-o-transition: -o-transform 2s;
|
||||
transition: transform 2s;
|
||||
-webkit-transform: translateY(0);
|
||||
-moz-transform: translateY(0);
|
||||
-ms-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
|
||||
font-family: "Helvetica Neue", sans-serif;
|
||||
line-height: 1.1em;
|
||||
}
|
||||
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
|
||||
text-align: center;
|
||||
}
|
||||
170
pressroom/www/php/style/prettyPhoto.css
Normal file
@@ -0,0 +1,170 @@
|
||||
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(../images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
|
||||
div.pp_default .pp_top .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) top left repeat-x}
|
||||
div.pp_default .pp_top .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
|
||||
div.pp_default .pp_content .ppt{color:#f8f8f8}
|
||||
div.pp_default .pp_content_container .pp_left{background:url(../images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
|
||||
div.pp_default .pp_content_container .pp_right{background:url(../images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
|
||||
div.pp_default .pp_next:hover{background:url(../images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_previous:hover{background:url(../images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_expand{background:url(../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
|
||||
div.pp_default .pp_expand:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_contract{background:url(../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
|
||||
div.pp_default .pp_contract:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_close{width:30px;height:30px;background:url(../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
|
||||
div.pp_default .pp_gallery ul li a{background:url(../images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
|
||||
div.pp_default .pp_social{margin-top:7px}
|
||||
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(../images/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 a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(../images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
|
||||
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
|
||||
div.pp_default .pp_content_container .pp_details{margin-top:5px}
|
||||
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
|
||||
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
|
||||
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:700;line-height:14px;margin:5px 50px 5px 0}
|
||||
div.pp_default .pp_bottom .pp_left{background:url(../images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
|
||||
div.pp_default .pp_bottom .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
|
||||
div.pp_default .pp_bottom .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
|
||||
div.pp_default .pp_loaderIcon{background:url(../images/prettyPhoto/default/loader.gif) center center no-repeat}
|
||||
div.light_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}
|
||||
div.light_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}
|
||||
div.light_rounded .pp_next:hover{background:url(../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_previous:hover{background:url(../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_expand{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_expand:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_contract{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_contract:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
|
||||
div.light_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}
|
||||
div.light_rounded .pp_arrow_next{background:url(../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}
|
||||
div.light_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}
|
||||
div.light_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}
|
||||
div.dark_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}
|
||||
div.dark_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}
|
||||
div.dark_rounded .pp_content_container .pp_left{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}
|
||||
div.dark_rounded .pp_content_container .pp_right{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}
|
||||
div.dark_rounded .pp_next:hover{background:url(../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_previous:hover{background:url(../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_expand{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_expand:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_contract{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_contract:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
|
||||
div.dark_rounded .pp_description{margin-right:85px;color:#fff}
|
||||
div.dark_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}
|
||||
div.dark_rounded .pp_arrow_next{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}
|
||||
div.dark_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}
|
||||
div.dark_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}
|
||||
div.dark_rounded .pp_loaderIcon{background:url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat}
|
||||
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 .pp_description{color:#fff;margin:0 85px 0 0}
|
||||
div.dark_square .pp_loaderIcon{background:url(../images/prettyPhoto/dark_square/loader.gif) center center no-repeat}
|
||||
div.dark_square .pp_expand{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_expand:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_contract{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_contract:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_nav{clear:none}
|
||||
div.dark_square .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.dark_square .pp_arrow_previous{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}
|
||||
div.dark_square .pp_arrow_next{background:url(../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}
|
||||
div.dark_square .pp_next:hover{background:url(../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor:pointer}
|
||||
div.dark_square .pp_previous:hover{background:url(../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}
|
||||
div.light_square .pp_expand{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_expand:hover{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_contract{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_contract:hover{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
|
||||
div.light_square .pp_nav .pp_play{background:url(../images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
|
||||
div.light_square .pp_arrow_previous{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}
|
||||
div.light_square .pp_arrow_next{background:url(../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}
|
||||
div.light_square .pp_next:hover{background:url(../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor:pointer}
|
||||
div.light_square .pp_previous:hover{background:url(../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}
|
||||
div.facebook .pp_top .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
|
||||
div.facebook .pp_top .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
|
||||
div.facebook .pp_top .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
|
||||
div.facebook .pp_content_container .pp_left{background:url(../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
|
||||
div.facebook .pp_content_container .pp_right{background:url(../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
|
||||
div.facebook .pp_expand{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_expand:hover{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_contract{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_contract:hover{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_close{width:22px;height:22px;background:url(../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
|
||||
div.facebook .pp_description{margin:0 37px 0 0}
|
||||
div.facebook .pp_loaderIcon{background:url(../images/prettyPhoto/facebook/loader.gif) center center no-repeat}
|
||||
div.facebook .pp_arrow_previous{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
|
||||
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
|
||||
div.facebook .pp_arrow_next{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
|
||||
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(../images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
|
||||
div.facebook .pp_nav .pp_pause{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
|
||||
div.facebook .pp_next:hover{background:url(../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
|
||||
div.facebook .pp_previous:hover{background:url(../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
|
||||
div.facebook .pp_bottom .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
|
||||
div.facebook .pp_bottom .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
|
||||
div.facebook .pp_bottom .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
|
||||
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_content{height:40px;min-width:40px}
|
||||
* html .pp_content{width:40px}
|
||||
.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}
|
||||
.pp_description{display:none;margin:0}
|
||||
.pp_social{float:left;margin:0}
|
||||
.pp_social .facebook{float:left;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;white-space:nowrap;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;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
|
||||
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
|
||||
.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(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
|
||||
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
|
||||
a.pp_next{background:url(../images/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(../images/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_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
|
||||
#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}
|
||||
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
|
||||
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
|
||||
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
|
||||
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
|
||||
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
|
||||
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}
|
||||
div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}
|
||||
div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}
|
||||
div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}
|
||||
div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}
|
||||
div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}
|
||||
div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat}
|
||||
div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}
|
||||
div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}
|
||||
.pp_top,.pp_bottom{height:20px;position:relative}
|
||||
* html .pp_top,* html .pp_bottom{padding:0 20px}
|
||||
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
|
||||
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
|
||||
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
|
||||
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
|
||||
.pp_fade,.pp_gallery li.default a img{display:none}
|
||||
46
pressroom/www/php/style/reset.css
Normal file
@@ -0,0 +1,46 @@
|
||||
html, body, div, span, applet, object, iframe, p, blockquote,
|
||||
a, abbr, acronym, big, cite, code,
|
||||
del, dfn, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, sub, sup, tt, var,
|
||||
dl, dt, dd,
|
||||
fieldset, form, label, legend {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-weight: inherit;
|
||||
font-style: inherit;
|
||||
font-size: 100%;
|
||||
font-family: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* remember to define focus styles! */
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
color: black;
|
||||
background: white;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
/*border-spacing: 0;*/
|
||||
}
|
||||
caption, th, td {
|
||||
text-align: left;
|
||||
font-weight: normal;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: "";
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: "" "";
|
||||
}
|
||||
1515
pressroom/www/php/style/responsive.css
Normal file
4152
pressroom/www/php/style/style.css
Normal file
134
pressroom/www/php/style/superfish.css
Normal file
@@ -0,0 +1,134 @@
|
||||
|
||||
/*** ESSENTIAL STYLES ***/
|
||||
.sf-menu, .sf-menu * {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
.sf-menu {
|
||||
line-height: 1.0;
|
||||
}
|
||||
.sf-menu ul {
|
||||
position: absolute;
|
||||
top: -999em;
|
||||
width: 10em; /* left offset of submenus need to match (see below) */
|
||||
}
|
||||
.sf-menu ul li {
|
||||
width: 100%;
|
||||
}
|
||||
.sf-menu li:hover {
|
||||
visibility: inherit; /* fixes IE7 'sticky bug' */
|
||||
}
|
||||
.sf-menu li {
|
||||
float: left;
|
||||
position: relative;
|
||||
}
|
||||
.sf-menu a {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
.sf-menu li:hover ul,
|
||||
.sf-menu li.sfHover ul {
|
||||
left: 0;
|
||||
top: 2.5em; /* match top ul list item height */
|
||||
z-index: 99;
|
||||
}
|
||||
ul.sf-menu li:hover li ul,
|
||||
ul.sf-menu li.sfHover li ul {
|
||||
top: -999em;
|
||||
}
|
||||
ul.sf-menu li li:hover ul,
|
||||
ul.sf-menu li li.sfHover ul {
|
||||
left: 10em; /* match ul width */
|
||||
top: 0;
|
||||
}
|
||||
ul.sf-menu li li:hover li ul,
|
||||
ul.sf-menu li li.sfHover li ul {
|
||||
top: -999em;
|
||||
}
|
||||
ul.sf-menu li li li:hover ul,
|
||||
ul.sf-menu li li li.sfHover ul {
|
||||
left: 10em; /* match ul width */
|
||||
top: 0;
|
||||
}
|
||||
|
||||
/*** DEMO SKIN ***/
|
||||
.sf-menu {
|
||||
float: left;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.sf-menu a {
|
||||
border-left: 1px solid #fff;
|
||||
border-top: 1px solid #CFDEFF;
|
||||
padding: .75em 1em;
|
||||
text-decoration:none;
|
||||
}
|
||||
.sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
|
||||
color: #13a;
|
||||
}
|
||||
.sf-menu li {
|
||||
background: #BDD2FF;
|
||||
}
|
||||
.sf-menu li li {
|
||||
background: #AABDE6;
|
||||
}
|
||||
.sf-menu li li li {
|
||||
background: #9AAEDB;
|
||||
}
|
||||
.sf-menu li:hover, .sf-menu li.sfHover,
|
||||
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
|
||||
background: #CFDEFF;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/*** arrows **/
|
||||
.sf-menu a.sf-with-ul {
|
||||
padding-right: 2.25em;
|
||||
min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
|
||||
}
|
||||
.sf-sub-indicator {
|
||||
position: absolute;
|
||||
display: block;
|
||||
right: .75em;
|
||||
top: 1.05em; /* IE6 only */
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
text-indent: -999em;
|
||||
overflow: hidden;
|
||||
}
|
||||
a > .sf-sub-indicator { /* give all except IE6 the correct values */
|
||||
top: .8em;
|
||||
background-position: 0 -100px; /* use translucent arrow for modern browsers*/
|
||||
}
|
||||
/* apply hovers to modern browsers */
|
||||
a:focus > .sf-sub-indicator,
|
||||
a:hover > .sf-sub-indicator,
|
||||
a:active > .sf-sub-indicator,
|
||||
li:hover > a > .sf-sub-indicator,
|
||||
li.sfHover > a > .sf-sub-indicator {
|
||||
background-position: -10px -100px; /* arrow hovers for modern browsers*/
|
||||
}
|
||||
|
||||
/* point right for anchors in subs */
|
||||
.sf-menu ul .sf-sub-indicator { background-position: -10px 0; }
|
||||
.sf-menu ul a > .sf-sub-indicator { background-position: 0 0; }
|
||||
/* apply hovers to modern browsers */
|
||||
.sf-menu ul a:focus > .sf-sub-indicator,
|
||||
.sf-menu ul a:hover > .sf-sub-indicator,
|
||||
.sf-menu ul a:active > .sf-sub-indicator,
|
||||
.sf-menu ul li:hover > a > .sf-sub-indicator,
|
||||
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
|
||||
background-position: -10px 0; /* arrow hovers for modern browsers*/
|
||||
}
|
||||
|
||||
/*** shadows for all but IE6 ***/
|
||||
.sf-shadow ul {
|
||||
padding: 0 8px 9px 0;
|
||||
-moz-border-radius-bottomleft: 17px;
|
||||
-moz-border-radius-topright: 17px;
|
||||
-webkit-border-top-right-radius: 17px;
|
||||
-webkit-border-bottom-left-radius: 17px;
|
||||
}
|
||||
.sf-shadow ul.sf-shadow-off {
|
||||
background: transparent;
|
||||
}
|
||||